diff --git a/profiles/wcm_base/CHANGELOG.txt b/profiles/wcm_base/CHANGELOG.txt
index e422523e64452786d8f8fda65c439c99ddfbc4f1..621b9ada779caffeff512d1c3892055eee637e8d 100644
--- a/profiles/wcm_base/CHANGELOG.txt
+++ b/profiles/wcm_base/CHANGELOG.txt
@@ -1,3 +1,11 @@
+WCM Base 7.x-1.x, 2016-08-29
+----------------------------
+- WCM Search:
+ - Removed apachesolr and related contrib modules.
+ - Reconfigured search pages to only use Search API and Views.
+ - Replaced default Panopoly node index with custom node index.
+ - Added tabs for quick switching between nodes and files in search results.
+
 WCM Base 7.x-1.x, 2016-08-24
 ----------------------------
 - WCM Base: Updated panopoly to 1.40, and updated contrib modules: context, ctools,
diff --git a/profiles/wcm_base/build-wcm_base-dev.make b/profiles/wcm_base/build-wcm_base-dev.make
index 7153843dc01a61de8cde58c47235e19c99b951f2..5796ed80345f07b5ecc23a95335b6a05798bea71 100644
--- a/profiles/wcm_base/build-wcm_base-dev.make
+++ b/profiles/wcm_base/build-wcm_base-dev.make
@@ -50,6 +50,7 @@ projects[ocio_omega_2][options][working-copy] = TRUE
 projects[ocio_omega_3][options][working-copy] = TRUE
 projects[ocio_omega_4][options][working-copy] = TRUE
 projects[ocio_seven][options][working-copy] = TRUE
+projects[wcm_omega][options][working-copy] = TRUE
 
 ;libraries
 libraries[ocio_modernizr][options][working-copy] = TRUE
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/Apache_Solr_Document.php b/profiles/wcm_base/modules/contrib/apachesolr/Apache_Solr_Document.php
deleted file mode 100644
index 3d1b924229f0d6a46c143f5f22c6c1a0a34bb626..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/Apache_Solr_Document.php
+++ /dev/null
@@ -1,410 +0,0 @@
-<?php
-/**
- * Copyright (c) 2007-2009, Conduit Internet Technologies, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- *  - Redistributions of source code must retain the above copyright notice,
- *    this list of conditions and the following disclaimer.
- *  - Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *  - Neither the name of Conduit Internet Technologies, Inc. nor the names of
- *    its contributors may be used to endorse or promote products derived from
- *    this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- *
- * @copyright Copyright 2007-2009 Conduit Internet Technologies, Inc. (http://conduit-it.com)
- * @license New BSD (http://solr-php-client.googlecode.com/svn/trunk/COPYING)
- * @version $Id: Document.php 15 2009-08-04 17:53:08Z donovan.jimenez $
- *
- * @package Apache
- * @subpackage Solr
- * @author Donovan Jimenez <djimenez@conduit-it.com>
- */
-
-/**
- * Additional code Copyright (c) 2011 by Peter Wolanin, and 
- * additional contributors.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
-
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program as the file LICENSE.txt; if not, please see
- * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
- */ 
-
-/**
- * Holds Key / Value pairs that represent a Solr Document along with any associated boost
- * values. Field values can be accessed by direct dereferencing such as:
- *
- * @code
- * $document->title = 'Something';
- * echo $document->title;
- *
- * Additionally, the field values can be iterated with foreach
- *
- * @code
- *   foreach ($document as $fieldName => $fieldValue) {
- *   ...
- *   }
- * </code>
- */
-class ApacheSolrDocument implements IteratorAggregate {
-
-  /**
-   * Document boost value
-   *
-   * @var float
-   */
-  protected $_documentBoost = FALSE;
-
-  /**
-   * Document field values, indexed by name
-   *
-   * @var array
-   */
-  protected $_fields = array();
-
-  /**
-   * Document field boost values, indexed by name
-   *
-   * @var array array of floats
-   */
-  protected $_fieldBoosts = array();
-
-  /**
-   * Clear all boosts and fields from this document
-   */
-  public function clear() {
-    $this->_documentBoost = FALSE;
-
-    $this->_fields = array();
-    $this->_fieldBoosts = array();
-  }
-
-  /**
-   * Get current document boost
-   *
-   * @return mixed
-   *   will be false for default, or else a float
-   */
-  public function getBoost() {
-    return $this->_documentBoost;
-  }
-
-  /**
-   * Set document boost factor
-   *
-   * @param mixed $boost
-   *   Use false for default boost, else cast to float that should be > 0 or will be treated as false
-   */
-  public function setBoost($boost) {
-    $boost = (float) $boost;
-
-    if ($boost > 0.0) {
-      $this->_documentBoost = $boost;
-    }
-    else {
-      $this->_documentBoost = FALSE;
-    }
-  }
-
-  /**
-   * Add a value to a multi-valued field
-   *
-   * NOTE: the solr XML format allows you to specify boosts
-   * PER value even though the underlying Lucene implementation
-   * only allows a boost per field. To remedy this, the final
-   * field boost value will be the product of all specified boosts
-   * on field values - this is similar to SolrJ's functionality.
-   *
-   * @code
-   *   $doc = new ApacheSolrDocument();
-   *   $doc->addField('foo', 'bar', 2.0);
-   *   $doc->addField('foo', 'baz', 3.0);
-   *   // resultant field boost will be 6!
-   *   echo $doc->getFieldBoost('foo');
-   *
-   * @param string $key
-   * @param mixed $value
-   * @param mixed $boost
-   *   Use false for default boost, else cast to float that should be > 0 or will be treated as false
-   */
-  public function addField($key, $value, $boost = FALSE) {
-    if (!isset($this->_fields[$key])) {
-      // create holding array if this is the first value
-      $this->_fields[$key] = array();
-    }
-    else if (!is_array($this->_fields[$key])) {
-      // move existing value into array if it is not already an array
-      $this->_fields[$key] = array($this->_fields[$key]);
-    }
-
-    if ($this->getFieldBoost($key) === FALSE) {
-      // boost not already set, set it now
-      $this->setFieldBoost($key, $boost);
-    }
-    else if ((float) $boost > 0.0) {
-      // multiply passed boost with current field boost - similar to SolrJ implementation
-      $this->_fieldBoosts[$key] *= (float) $boost;
-    }
-
-    // add value to array
-    $this->_fields[$key][] = $value;
-  }
-
-  /**
-   * Handle the array manipulation for a multi-valued field
-   *
-   * @param string $key
-   * @param string $value
-   * @param mixed $boost
-   *   Use false for default boost, else cast to float that should be > 0 or will be treated as false
-   *
-   * @deprecated Use addField(...) instead
-   */
-  public function setMultiValue($key, $value, $boost = FALSE) {
-    $this->addField($key, $value, $boost);
-  }
-
-  /**
-   * Get field information
-   *
-   * @param string $key
-   * @return mixed associative array of info if field exists, false otherwise
-   */
-  public function getField($key) {
-    if (isset($this->_fields[$key])) {
-      return array(
-        'name' => $key,
-        'value' => $this->_fields[$key],
-        'boost' => $this->getFieldBoost($key)
-      );
-    }
-
-    return FALSE;
-  }
-
-  /**
-   * Set a field value. Multi-valued fields should be set as arrays
-   * or instead use the addField(...) function which will automatically
-   * make sure the field is an array.
-   *
-   * @param string $key
-   * @param mixed $value
-   * @param mixed $boost
-   *   Use false for default boost, else cast to float that should be > 0 or will be treated as false
-   */
-  public function setField($key, $value, $boost = FALSE) {
-    $this->_fields[$key] = $value;
-    $this->setFieldBoost($key, $boost);
-  }
-
-  /**
-   * Get the currently set field boost for a document field
-   *
-   * @param string $key
-   * @return float
-   *   currently set field boost, false if one is not set
-   */
-  public function getFieldBoost($key) {
-    return isset($this->_fieldBoosts[$key]) ? $this->_fieldBoosts[$key] : FALSE;
-  }
-
-  /**
-   * Set the field boost for a document field
-   *
-   * @param string $key
-   *   field name for the boost
-   * @param mixed $boost
-   *   Use false for default boost, else cast to float that should be > 0 or will be treated as false
-   */
-  public function setFieldBoost($key, $boost) {
-    $boost = (float) $boost;
-
-    if ($boost > 0.0) {
-      $this->_fieldBoosts[$key] = $boost;
-    }
-    else {
-      $this->_fieldBoosts[$key] = FALSE;
-    }
-  }
-
-  /**
-   * Return current field boosts, indexed by field name
-   *
-   * @return array
-   */
-  public function getFieldBoosts() {
-    return $this->_fieldBoosts;
-  }
-
-  /**
-   * Get the names of all fields in this document
-   *
-   * @return array
-   */
-  public function getFieldNames() {
-    return array_keys($this->_fields);
-  }
-
-  /**
-   * Get the values of all fields in this document
-   *
-   * @return array
-   */
-  public function getFieldValues() {
-    return array_values($this->_fields);
-  }
-
-  /**
-   * IteratorAggregate implementation function. Allows usage:
-   *
-   * @code
-   *   foreach ($document as $key => $value) {
-   *     ...
-   *   }
-   *
-   */
-  public function getIterator() {
-    $arrayObject = new ArrayObject($this->_fields);
-
-    return $arrayObject->getIterator();
-  }
-
-  /**
-   * Magic get for field values
-   *
-   * @param string $key
-   * @return mixed
-   */
-  public function __get($key) {
-    return $this->_fields[$key];
-  }
-
-  /**
-   * Magic set for field values. Multi-valued fields should be set as arrays
-   * or instead use the addField(...) function which will automatically
-   * make sure the field is an array.
-   *
-   * @param string $key
-   * @param mixed $value
-   */
-  public function __set($key, $value) {
-    $this->setField($key, $value);
-  }
-
-  /**
-   * Magic isset for fields values.  Do not call directly. Allows usage:
-   *
-   * @code
-   *   isset($document->some_field);
-   *
-   * @param string $key
-   * @return boolean
-   *   Whether the given key is set in the document
-   */
-  public function __isset($key) {
-    return isset($this->_fields[$key]);
-  }
-
-  /**
-   * Magic unset for field values. Do not call directly. Allows usage:
-   *
-   * @code
-   *   unset($document->some_field);
-   *
-   * @param string $key
-   */
-  public function __unset($key) {
-    unset($this->_fields[$key]);
-    unset($this->_fieldBoosts[$key]);
-  }
-
-  /**
-   * Create an XML fragment from a ApacheSolrDocument instance appropriate for use inside a Solr add call
-   *
-   * @param ApacheSolrDocument $document
-   *
-   * @return string
-   *   an xml formatted string from the given document
-   */
-  public static function documentToXml(ApacheSolrDocument $document) {
-    $xml = '<doc';
-
-    if ($document->getBoost() !== FALSE) {
-      $xml .= ' boost="' . $document->getBoost() . '"';
-    }
-
-    $xml .= '>';
-
-    foreach ($document as $key => $value) {
-      $key = htmlspecialchars($key, ENT_QUOTES, 'UTF-8');
-      $fieldBoost = $document->getFieldBoost($key);
-
-      if (is_array($value)) {
-        foreach ($value as $multivalue) {
-          $xml .= '<field name="' . $key . '"';
-
-          if ($fieldBoost !== FALSE) {
-            $xml .= ' boost="' . $fieldBoost . '"';
-
-            // Only set the boost for the first field in the set
-            $fieldBoost = FALSE;
-          }
-
-          $xml .= '>' . htmlspecialchars($multivalue, ENT_NOQUOTES, 'UTF-8') . '</field>';
-        }
-      }
-      else {
-        $xml .= '<field name="' . $key . '"';
-
-        if ($fieldBoost !== FALSE) {
-          $xml .= ' boost="' . $fieldBoost . '"';
-        }
-
-        $xml .= '>' . htmlspecialchars($value, ENT_NOQUOTES, 'UTF-8') . '</field>';
-      }
-    }
-
-    $xml .= '</doc>';
-
-    // Remove any control characters to avoid Solr XML parser exception
-    return self::stripCtrlChars($xml);
-  }
-
-  /**
-   * Replace control (non-printable) characters from string that are invalid to Solr's XML parser with a space.
-   *
-   * @param string $string
-   * @return string
-   */
-  public static function stripCtrlChars($string) {
-    // See:  http://w3.org/International/questions/qa-forms-utf-8.html
-    // Printable utf-8 does not include any of these chars below x7F
-    return preg_replace('@[\x00-\x08\x0B\x0C\x0E-\x1F]@', ' ', $string);
-  }
-}
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/CHANGELOG.txt b/profiles/wcm_base/modules/contrib/apachesolr/CHANGELOG.txt
deleted file mode 100644
index b9895cecc31f1ec1d74b0956da5d085f3b33d034..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/CHANGELOG.txt
+++ /dev/null
@@ -1,923 +0,0 @@
-Apache Solr integration 7.x-1.x, xxxx-xx-xx
------------------------------
-
-Apache Solr integration 7.x-1.8, 2015-12-02
------------------------------
-SA-CONTRIB-2015-170 by Dave Reid, theapi: fix for anonymous users can delete Solr environments that are not default.
-
-Apache Solr integration 7.x-1.7, 2014-08-29
------------------------------
-#2151325 by JulienD: Remove useless files[] directive from .info files.
-#2187689 by siliconmeadow: Fixed the misspelling of 'successfully'.
-#1984502 by blazindrop, bforchhammer: Fixed Don't include time dependent configuration and state in ctools exports.
-#2237145 by Dave Reid: Fixed The default Solr search should have it's tab appear first on the search page.
-#2288867 by larowlan: Fixed Search results built twice when using search pages with a search box.
-#1439564 by recidive, Nick_vh, bforchhammer, neochief, jhedstrom, dawehner: Added Index bundles Export/Import.
-#2287599 by BarisW: Added Provide Context integration.
-#1314664 by stefan.r, pwolanin, Nick_vh, mindbat, brunogoossens | brianV: Fixed Search pages custom pages title setting does nothing.
-#2287599 by BarisW: Added Provide Context integration.
-#2023349 by juampy, theapi: Fixed addParam('mm', '100%') does not work as expected because it should be considered a single_value_params.
-#2237113 by cilefen: Fix for wrong per-field array key in apachesolr_get_field_mappings()
-#2157849 by pwolanin: copy the final 4.2 Solr Config files from the common schema project
-#2157849 | Copy over the new Solr Config files from the common schema project
-
-Apache Solr integration 7.x-1.6, 2013-11-14
------------------------------
-#2008832 by Nick_vh, j0rd: Re-apply added Allow turning off 'successful" actions in watchdog.
-REVERTED: #1827868 and releated path changes in #2008832
-
-Apache Solr integration 7.x-1.5, 2013-10-23
------------------------------
-#2118947 by Nick_vh: Added Allow mapping to accept multiple index_callbacks().
-#1828014 by ianthomas_uk, Nick_vh, DeFr: Fixed Mass re-indexation can miss (a lot of) content.
-#2106693 by wulff: Fixed Drush help refers to non-existent command.
-#2011492 by ianmthomasuk: Added Remove duplicated indexing code. (2/2)
-#2093031 by Nick_vh: Fixed Speed up indexing process significantly : make use of the filter cache.
-#1925026 by blazindrop: Added Allow modules to modify query used to select nodes for reindexing.
-#2012244 by Nick_vh, joseph.zhao: Added In Drupal 7, using short summary in the teaser.
-#1938976 by ajw, Nick_vh: Fixed Escape sort strings to support function sorts like geodist().
-#1361854 by acbramley, Nick_vh, wiifm: Added Ability to control the 'Did you mean?' by asking Solr for spellcheck.extendedResults.
-#1828134 by ianmthomasuk, Nick_vh: Fixed apachesolr_entity_delete() should apply to all writable environments.
-#2006602 by pwolanin, David_Rothstein: Fixed Documents are deleted from the Solr index in read-only environments.
-#1916558 by jwalz: Fixed Custom Filters are ignored in facet blocks on non-search paths.
-#2008832 by Nick_vh, j0rd: Added Allow to optionally turn off 'successful" actions in watchdog.
-#1952296 by David_Rothstein, zerolab, SamChez: Added Date facet granularity support.
-#1930686 by kevin.dutra: Fixed Multiple search pages can have the same path.
-REVERTED: #1827868 by ianmthomasuk, Nick_vh: Added Improve usability of admin interface when using multiple environments.
-#1433366 by Darren Oh | becw: Added Text field values not mapped in field_apachesolr_field_mappings().
-#1881878 by thsutton: Added Include source field ID in facet admin interface.
-#1365304 by brianV, deviantintegral, Nick_vh: Fixed Date field minimum/maximum range callbacks don't handle some cases; cause Solr exceptions.
-#1834862 by rupl: Improve documentation of hook_apachesolr_query_alter().
-#1825426 by cpliakas: Added an API function apachesolr_get_field_mappings().
-#1827216 by ianmthomasuk, ciss, Nick_vh: Fixed Bundle specific overrides for status callback and document callback ignored.
-#2072211 by pwolanin: Document the behavior of apachesolr_access() relative to hook_node_access().
-#1708200 by ianmthomasuk: Added Improve error reporting for invalid sorts and invalid solr responses.
-#1852088 by pwolanin | brianV: Fixed Apachesolr search results come back with $doc->url starting with 'default'.
-#2089845 by Nick_vh: Fixed When indexing, the module pings solr way too much.
-#2033913 by Nick_vh | epieddy: Fixed Small error in schema.xml.
-#1974124 by Nick_vh: Fixed Allow a more configurable soft commit status so we can start taking advantage of Solr 4."
-#2014067 by David_Rothstein: Fixed File types provided by the File Entity module are not always recognized by Apache Solr.
-
-Apache Solr integration 7.x-1.4, 2013-07-25
------------------------------
-#1807552 by pwolanin: further fixes to use the right language field.
-#2050747 by pwolanin: fix for Anonymous user names are not indexed correctly, empty facet value causes Solr error.
-#1565766 by j0rd: follow-up to not re-load the entity if it's passed in.
-#2032987 by rupertj: fix for entity_get_info() called but result never used.
-#1977832 by blazindrop: fix for Hidden fields in displays are still indexed.
-#1807552 by pwolanin: fix for regression: urls must be rendered at display time in search results.
-#1974076 by Nick_vh, pwolanin: Allow search pages to suppress the search form box on core search pages also.
-#1965210 by pwolanin: fix for More Like This blocks configuration page broken by Solr 3.x vs 4.x schema key positions.
-
-Apache Solr integration 7.x-1.3, 2013-06-10
------------------------------
-#1918434 by pwolanin, ajw: fix negative filter queries in validFilterValue() (in commit cdf1e9722d8dece450077)
-#2013805 by janusman: Add watchdog logging for index deletes.
-#1757470 by j0rd: Fix for Boolean field type facet mapping.
-#2012944 by Nick_vh: fix for Call to undefined function apachesolr_environment_variable_set() in update.
-#1933080 by mr.baileys: fix for API docs for hook_apachesolr_delete_by_query().
-#1952444 by kevin.dutra: Bring back the book facet.
-#1984530 by blazindrop: Remove non-existent ctools export callbacks.
-#1978404 by PatchRanger: Fix for Illegal string offset warnings in test.
-#1565766 by grndlvl, David_Rothstein: Pass the full entity to Apache Solr status callbacks.
-#1935266 by David_Rothstein: Fix for apachesolr_search_apachesolr_entity_info_alter() resets the result callback.
-#2006602 by David_Rothstein: Fix for Documents are deleted from the Solr index in read-only environments.
-#1965204 by jantoine, pwolanin: fix for Facets on * as path breaks search, mutiple queries run.
-#1897556 by pwolanin: revert change so fields are again multiple by default.
-#1937598 by kevin.dutra: Fix for Update date boost not applied.
-#1946132 by mkalkbrenner: Fix for Invalid arguments passed to theme_apachesolr_search_snippets().
-#1814080 by pwolanin: stop cacheing the sort block for simplicity.
-#1992602 by drunken monkey: fix for Wrong field used for spellcheck index creation.
-#1988100 by pwolanin: Add back qt=standard support.
-#1988090 by pwolanin: Fix for highlighting should use STRONG not EM tags.
-#1985526 by pwolanin: Add back buildOnOptimize for the spellchecker.
-#799970  by pwolanin: pull in changes to common config in #1984442
-#1917376 by kevin.dutra, pwolanin: Fix for Index configuration form lacks order.
-
-Apache Solr integration 7.x-1.2, 2013-04-10
------------------------------
-#1314664 by pwolanin: Fix for Search pages custom pages don't use %value in title.
-#1966044 by pwolanin: Fix for Local params in search box unexpectedly affect Solr query parsing.
-#1950426 by mkalkbrenner: Fixed ERROR: multiple values encountered for non multiValued field.
-#1954302 by mkalkbrenner: Added Isolate some re-usable code from apachesolr_index_entity_to_documents().
-#1953976 by mkalkbrenner | j0rd: Fixed avoid use variable_set() in anything related to indexing content (because of performance).
-#1966488 by Nick_vh, pwolanin: Fix and tests for apachesolr_index_add_tags_to_document not getting the correct body text.
-#1957070 by Nick_vh | Routh: Fixed 'Solr search index will be rebuilt." message appears at the top of every view. (Even when index has been completely rebuilt.).
-#1249616 by agentrickard, pwolanin, Nick_vh | R.Muilwijk: Fixed Apachesolr access makes assumptions that don't apply to modules like Domain Access.
-#1926896 by mkalkbrenner: Fixed missing highlighted snippets.
-#1927032 by mkalkbrenner: Fixed Avoid spaces between words and punctution marks in search result snippets.
-#1915614 by mkalkbrenner, Nick_vh: Added Complete admin settings for non-default environments.
-#1918012 by mkalkbrenner, Nick_vh, pwolanin: Added Solr query needs to be aware of more context such as Search Page ID.
-#1896470 by Nick_vh, mkalkbrenner: Fixed Integrate Apache Solr Common Configurations for Solr 3.x and 4.x (Highlighting broken).
-#1918030 by mkalkbrenner, pwolanin: Allow contrib modules to add custom settings to search pages.
-#1918566 by mkalkbrenner: Added Devel integration: debug index documents on all environments / indexes.
-#1915418 by mkalkbrenner, Nick_vh: Fixed Unable to index a node bundle in a dedicated index / environment.
-#1900036 by remimikalsen, swentel | albert78: Fixed node reference with multiple values.
-#1900006 by Nick_vh | msellers: Fixed Undefined variable causes warning on node type uninstall.
-#1874420 by Nick_vh, j0rd | dirtabulous: Fixed Solr4 Entites Not Being Removed with deleteByQuery.
-#1871866 by Nick_vh, grom358: Fixed Type bias for all entities.
-#1861544 by fizk: Fixed Incorrect use of $field_map() in SolrBaseQuery::getSolrsortUrlQuery.
-#1897556 by Nick_vh: Update documentation for all the functions and make sure it reflects reality.
-#1836262 by ianmthomasuk, Nick_vh: Added Allow indexing of a set number of items using drush.
-#1898166 by Nick_vh: Fixed Make better use of the entity cache.
-#1868870 by cpliakas | Nick_vh: Revert changes to interface cause fatal errors for modules that implement the interface.
-#1803512 by David_Rothstein | amanire: Fixed The OR operator returns no results for facets with colons in the value (such as entity reference facets).
-#1679392 by David_Rothstein, brianV: Move logic from apachesolr_default_node_facet_info() into a separate function so other modules can use it for non-node entities.
-#1814080 by Nick_vh, JordanMagnuson: Fixed Apachesolr sort block fills cache_block() table without stopping.
-#1550964 by Nick_vh, drzraf, rajivk, rjbrown99, j0rd | tinflute: Support Solr 4.0 schema.
-#1840430 by Nick_vh: Fixed add alter callbacks from facetapi to the mappings array.
-#1827320 by drumm: Fixed Upgrading from 6.x-3.x does not need apachesolr_update_7000-15.
-#1828040 by david.gil, Nick_vh: Fixed Cannot access empty property in query_type_numeric_range().inc on line 77.
-#1828014 by DeFr, Nick_vh: Fixed Mass re-indexation can miss (a lot of) content.
-#1823590 by Nick_vh, Josh Waihi: Added Tag Apachesolr index table select queries to allow other modules to alter them.
-#1825840 by firebird: Fixed Typo in menu description.
-
-Apache Solr integration 7.x-1.1, 2012-10-15
------------------------------
-#1780200 by pwolanin: document basic auth in README.
-#1226274 by pwolanin: Fixes for schema.xml version numbering and organization.
-
-Apache Solr integration 7.x-1.0, 2012-10-13
------------------------------
-#761990 by pwolanin, jhedstrom, Nick_vh, jpmckinney | morningtime: Fixed 400 Bad Status if URL length limit exceeded.
-#1811364 by Nick_vh: Fixed Add newly created content type to the indexed bundles for all environments.
-#1811456 by rupl: Fixed Improve documentation of addFilter in apachesolr.api.php.
-#1773506 by drzraf: Fixed drush solr-search notice when file entity are part of the result.
-#1688150 by HalfChem, cam8001, jhedstrom, Nick_vh: Fixed Search query string gets double encoded when core Search block form is submitted.
-#1794602 by pwolanin, Nick_vh | ppmr: Fixed Undefined index: path in ApacheSolrDocument->__get() (line 304 of ...\apachesolr\Apache_Solr_Document.
-#1773506 by drzraf: Fixed drush solr-search notice when file entity are part of the result.
-#1764334 by cpliakas: Fixed Negative percentage of documents sent to the server for indexing.
-#1806300 by Nick_vh: Separate out the creation of the document from the index process.
-#1807552 by Nick_vh, wimvds: Fixed Site and url wrong when indexing multilingual content (using i18n module).
-#1759190 by mkalkbrenner: Fixed obsolete form code?.
-#1802288 by Nick_vh: Fixed Improve testing of node deletion.
-
-Apache Solr integration 7.x-1.0-rc5, 2012-10-01
------------------------------
-#1698050 by duellj: fix for apachesolr_clean_text() should strip extra spaces.
-#1764450 by cpliakas: Improve the docblocks in apachesolr.index.inc.
-#1800324 by pwolanin: Clean up and align node access tests.
-#1799330 by pwolanin: fix for Stats table missing t() calls.
-#1787370 by pwolanin: Don't complain about schema version if it doesn't match expected naming pattern.
-#1790590 by pwolanin: Fix DrupalSolrOnlineWebTestCase  so it works with any multicore setup.
-#1799032 by pwolanin: Remove uneeded object reference in indexing function.
-#1793610 by zengenuity: Fix for regession - spelling suggestions missing.
-
-Apache Solr integration 7.x-1.0-rc4, 2012-09-21
------------------------------
-#1790894 by pwolanin: fix for Cloning an environment doesn't clone the bundles to be indexed.
-#1778050 by Nick_vh, pwolanin: fix for stale cache when CTools is already enabled.
-#1778266 by Nick_vh, mkalkbrenner: Refactoring of DrupalSolrOnlineWebTestCase to be used by Others.
-#1778266 by mkalkbrenner: Refactoring of DrupalSolrOnlineWebTestCase to be used by Others.
-#1789526 by pwolanin: Clarify lack of upgrade path from 6.x-1.x.
-#1765938 by cpliakas: Added Move the variable_get() for 'apachesolr_environments()" after the cache_set() so that URLs can be modified dynamically.
-#1782436 by cspitzlay: Fixed Error and obsolete hint in code comment.
-#1732900 by cpliakas: Added Change the wording of the generic 'Apache Solr server unavailable" error message.
-#1781040 by mkalkbrenner: Fixed Switch 'Enable spell check" does not work - spell check is allways on.
-#1786450 by Nick_vh: Fixed apachesolr.interface.inc is not always loaded.
-#1760592 by cpliakas, pwolanin: fix for core_search page does not use the current default search environment.
-#1759004 by mkalkbrenner, pwolanin: fix for apachesolr_search_custom_page_search_form_submit() kills all $_GET parameters.
-#1778150 by cpliakas, pwolanin: fix for SQL error in apachesolr_environment_load_subrecords().
-#1743138 by mundanity: Fixed Invalid argument when running Drush.
-#1751640 by cpliakas: Added drush commands to see the ID of the last item indexes as well as the next item queued for indexing.
-#1708150 by ianmthomasuk, Nick_vh, pwolanin: Added additional typing to function definitions.
-#1759110 by Nick_vh: Fixed process response fails if variable was set but never removed.
-#1741066 by Nick_vh: Added geo query type to make contrib's modules life easier.
-#1730840 by pwolanin: Normalize boolean and other values for parameters like hl.
-#1729836 by pwolanin: fix for "Results per page" option for a search page is broken.
-#1719302 by Nick_vh, msti: Fixed Running an empty facet query so the facet blocks can be displayed.
-#1722966 by greggles: Fixed make apachesolr_index_batch_index_finished() message more translateable.
-#1717628 by Nick_vh, pwolanin: Added 'Save and Edit" functionality for configuration pages - Follow ups.
-
-Apache Solr integration 7.x-1.0-rc3, 2012-08-10
-------------------------------
-#1682004 by Nick_vh: Add template hints for search results based on search page.
-#1722012 by mkalkbrenner, Nick_vh: fix for Missing argument 4 for apachesolr_multilingual_apachesolr_index_documents_alter().
-#1717490 by pwolanin: fix for Search result template suggestions relies on non-required fields.
-#1708212 by ianmthomasuk, Nick_vh: Fixed Duplicate field error when indexing single value fields.
-#1702788 by mkalkbrenner: Fixed content and teaser are empty if node->language is not default.
-#1708166 by ianmthomasuk: Fixed Thow exception if asked for invalid solr environment.
-#1717628 by Nick_vh | cpliakas: Added 'Save and Edit" functionality for configuration pages.
-#1718172 by Nick_vh, pwolanin: Fixed Move search result alter hook earlier, and make sure needed data is set.
-#1702526 by Nick_vh: Fixed apachesolr_search_page_load() is quirky.
-#1717958 by pwolanin: Fix for text_und fields should be exposed for searching in the admin section.
-#1708538 by Nick_vh: Fixed Move the start param above the query alter.
-#1700472 by pwolanin: Make 'apachesolr_search_process_response_callback' a search environment variable.
-#1439564 by recidive, neochief, Nick_vh, dawehner, jhedstrom: Added Index bundles Export/Import.
-#1652746 by martins.bertins | chrisssi: Fixed Notice: Undefined offset: 3 in _menu_translate().
-#1670198 by alanmackenzie | ruedu: Fixed Unable to export/import settings using features module.
-#1681946 by Josh Waihi: Fixed apachesolr_index_nodeapi_mass_delete() doesn't work.
-#1650096 by Nick_vh | cappadona: Fixed addParam() creates duplicate filters when dealing with fq.
-#1677050 by cpliakas: Fix for Cancel link when creating a new environment.
-#1673086 by pwolanin: Add drush commands to get, set, del environment variables.
-#1682004 by cpliakas: Added template hints for search results based on search page.
-#1672738 by Nick_vh: Added Allow a dynamic apachesolr_process_results() function.
-#1473722 by levialliance: Added Bundle specific overrides.
-#1408844 by Nick_vh, jrbeeman: Added As a site builder I want to override the environment settings in settings.php.
-#1652746 by chrisssi: Fixed Notice: Undefined offset: 3 in _menu_translate() (Zeile 775 von /var/www/includes/menu.inc).
-#1402748 by Nick_vh, killua99: Fixed Check in apachesolr_do_query() if the static of the query with that name already exists, and if so return it.
-
-Apache Solr integration 7.x-1.0-rc2, 2012-06-21
-------------------------------
-Renamed schema.xml and solrconfig.xml to rc2
-
-Apache Solr integration 7.x-1.0-rc1, 2012-06-21
-------------------------------
-#1642140 by Nick_vh: Fixed Make the search query also escape the slash and move away from menu_tail() to just 1 argument.
-#1518108 by grendzy: Added Devel interface for inspecting solr documents.
-#1402748 by Nick_vh: Fixed Check in apachesolr_do_query() if the static of the query with that name already exists, and if so return it.
-#1631702 by Nick_vh | khaled.zaidan: Fixed Report at admin/reports/apachesolr doesn't always display data from the current default solr server.
-#1647668 by paulmckibben: Fixed Error messages when indexing - Notice: Undefined property: stdClass::$nid in DatabaseStatementBase->fetchAllAssoc().
-#1475014 by ceng, Nick_vh: Fixed Drush command solr-delete-index ignores type arguments.
-#1588256 by InternetDevels.Com, Nick_vh | RaulMuroc: Fixed Warning: Invalid argument supplied for foreach() in apachesolr_entity_update() (line 1766 of /apachesolr/apachesolr.module).
-#1612530 by Nick_vh, willmoy: Added Results say '0 comments' when comment.module is disabled.
-#1522174 by pwolanin: Fixed hook_node_type_delete() is wrong.
-#1576710 by skwashd: Added Indexing with drush cron generates a lot of invalid cron notifications.
-#1543754 by iamEAP: Fixed Schema inconsistency introduced by apachesolr_update_7013.
-#1481564 by milesw: Added Allow other modules to react when there are no results.
-#1470794 by pwolanin: Added Show size of index on disk in index report.
-#1586320 by cpliakas, pwolanin: Added support for the ExternalFileField field type.
-#1613328 by cpliakas: Fixed The service_class() is not passed to apachesolr_server_status() when checking each server's status on the settings page.
-#1621142 by pwolanin: Fixed Broken logic in indexing of extra data.
-#1627484 by gnucifer: Fixed 'allowed operator" not transfered from field definitions.
-#1627604 by Nick_vh: Fixed Add query type for taxonomy_term_reference().
-#1609184 by pwolanin: Minor code cleanup in MLT response handling .
-#1611338 by remimikalsen: Added Allowing several bundles to share the same field name within a given entity type after field_mapping_alter().
-#1568126 by fearlsgroove, pwolanin: Fixed Apachesolr causes all simpletests to fail.
-#1609030 by pwolanin: Fix for Missing search page still executes search.
-#1572722 by eporama, cpliakas, wonder95: Added integration with the Entity References module.
-#1567614 by pwolanin: fix for Uninstall is not complete.
-#1559880 by pwolanin: fix for 'retain filters' checkbox does not work.
-#1558626 by pwolanin: fix for broken OR facet when value has spaces (committed in 16ef187).
-#1538244 by by julianmancera: Fix for Solr base query adds an extra slash in getPath() when there is no 'q' param.
-#1532214 by setvik, pwolanin: Fox for mergePolicy syntax has changed and throws error in Apache Solr 3.6, update config versions.
-#1536936 by pwolanin: Fix for Use json.nl=map for Luke and other json data.
-#1536628 by Nick_vh: Added exclude hook that allows to skip content without removing it from the table.
-#1536600 by Nick_vh: Fixed Performance optimizations when doing hundreds of deletes.
-#1515822 by pwolanin, Nick_vh: Added Support notion of parent entity for derived documents.
-#1519900 by pwolanin, Nick_vh, Georgique: Fixed Error in apachesolr_index_get_entities_to_index() function.
-
-Apache Solr integration 7.x-1.0-beta19, 2012-04-05
-------------------------------
-#1515580 by Nick_vh | yannou: Fixed Deleting node is impossible, stdClass problem.
-
-Apache Solr integration 7.x-1.0-beta18, 2012-04-04
-------------------------------
-#1514314 by Nick_vh, Georgique: Fixed Error in apachesolr_entity_update() Follow-up.
-#1514314 by Nick_vh, Georgique: Fixed Error in apachesolr_entity_update().
-
-Apache Solr integration 7.x-1.0-beta17, 2012-04-03
-------------------------------
-#1509790 by Nick_vh: Fixed Status is not checked when a reindex is initiated.
-#1476228 by ygerasimov: Fixed Items to index determined not correct.
-#1477732 by ygerasimov: Fixed apachesolr_index_entities() sets index position that leads to cycle.
-#1508434 by lazysoundsystem, Nick_vh: Fixed whitespace problem.
-#1481326 by Nick_vh | milesw: Fixed Queries run twice after submitting search forms on a custom search page.
-#1502088 by Nick_vh | sanpi: Fixed Missing Search dependency for Apache Solr framework.
-#1498490 by Nick_vh, milesw: Fixed Menu paths for custom search pages are broken when exported as features.
-#1475010 by Nick_vh: Fixed Date filtering to minute returns faulty results.
-#1469484 by Nick_vh, Josh Waihi: Fixed Limit select queries when checking index node table to prevent memory overload.
-#1442358 by johnennew, Nick_vh: Fixed Nodes not queued to be removed from index when unpublished.
-#1456368 by Nick_vh, pwolanin: Fixed Entities not removed when excluded, unnecessary re-indexing.
-#1470042 by klaasvw: Fixed Existing node table error on drupal update.
-#1458696 by Nick_vh | m1r1k: Fixed Apache Solr bug with re-index.
-#1418834 by levialliance | drewmacphee: Beta15+ problems with i18n and entity_translation().
-#1404284 by pwolanin: Fix for possible undefined function apachesolr_default_environment() during update.
-#1441066 by pwolanin: Fix for incorrect hook_schema() definition for {apachesolr_index_entities}.
-#1411066 by Nick_vh | heacu: Fixed Unchecking 'Custom filter" has no effect if custom filter has been entered on Edit Search Page.
-#1424578 by Nick_vh | cpliakas: Fixed Errors thrown on admin/reports/apachesolr when the server is unavailable.
-#1439492 by recidive: Fixed Features importing of search page not working.
-#1446694 by edb: Fixed env_id() length is only 32 characters on apachesolr_search_page() table.
-#1437842 by duellj: Added Facetapi block titles on empty search page should use theme_facetapi_title().
-#1442358 by johnennew, Nick_vh: Fixed Nodes not queued to be removed from index when unpublished.
-#1440394 by grendzy: fix for Field bias setting has no effect.
-#1399584 by halcyonCorsair | Nick_vh: Added As a developer I want to change environment variables with drush.
-#1423130 by pwolanin | rickmanelius: Fixed apachesolr_user_update() Issues.
-#1403810 by Nick_vh | SangersDrupalDude: Fixed some warning in admin area.
-#1419290 by Nick_vh, paulmckibben: Fixed When $conditions is empty, search_data() results in 'The Apache Solr search engine is not available" (but results are returned).
-#1429230 by Nick_vh: Fixed Default values for for mapping per-field is not added correctly.
-#1427288 by Nick_vh: Fixed Change the MergePolicy for all the solrconfigs to use LogByteMergePolicy.
-
-Apache Solr integration 7.x-1.0-beta16, 2012-02-02
-------------------------------
-#1408190 by DeFr: Fix port check for url with credentials.
-#1411354 by Nick_vh: fix for Incorrect reporting of documents indexed.
-#1357588 by becw, Bußmeyer, pwolanin: improved ctools export/import support.
-#1418136 by zengenuity, pwolanin: fix for undefined function apachesolr_index_set_last_updated() in apachesolr_access.
-#995526  by chx, pwolanin: another fix for Key length greater than 1000 bytes causes install error on MyISAM.
-#1409878 by becw: Fixed Uncaught exception when the default environment does not exist (patch).
-#1398100 by thecarlhall: Fixed Configuration throws exception when starting Solr. Follow up for 7.x-1.x
-#1409076 by Nick_vh, sdrycroft: Fixed Entities that use the 'apachesolr_index_entities()" table are not indexed.
-#1409146 by Nick_vh: Fixed Add all possible index_types() to apachesolr_index_key().
-#1408856 by Nick_vh: Remove DrupalQueue from the install.php.
-#1402746 by Nick_vh: Clean up apachesolr_do_query() so the page variable will be inside the query object.
-#1408192 by becw: Fixed Add apachesolr.interface.inc to the .info file (patch).
-#1405040 by Nick_vh | chrisssi: Fixed SQLSTATE[42S22]: Column not found: 1054.
-
-Apache Solr integration 7.x-1.0-beta15, 2012-01-12
-------------------------------
-#1397526 by Nick_vh, cpliakas: Add an option to select which search page facets link to when displayed on non-search pages. Follow-Up small bugfix
-#1397138 by Nick_vh: Create Simpletests to verify base functionality of the module.
-#1402688 by Nick_vh: Fixed Upgrade from Beta13 to Beta14 does not take the excluded types into account properly.
-
-Apache Solr integration 7.x-1.0-beta14, 2012-01-12
-------------------------------
-#1397526 by Nick_vh, cpliakas: Add an option to select which search page facets link to when displayed on non-search pages.
-#713142 by ygerasimov, pwolanin, Nick_vh: Added configuration option to a search environment if we want to use Dismax or EDismax.
-#1379128 by Nick_vh, bdragon: Fixed Treat cardinality=1 fields as single-value + caching stats response - Follow up.
-#370855 by Damien Tournoud, Nick_vh: Add configuration option to a search page if we allow user input using the url or not.
-#1392940 by Nick_vh | pwolanin: Create a 3.x solrconfig.xml that sets luceneMatchVersion.
-#1031250 by EugenMayer, Nick_vh: Added an option to index as another user instead of only anonymous.
-#1388498 by Nick_vh | pwolanin: Remove s (sortable) fields from schema.xml.
-#1379128 by Nick_vh, bdragon: Fixed Treat cardinality=1 fields as single-value + caching stats response.
-#1361422 by Nick_vh: Fixed coder issues as mentioned by the drupal testing bot.
-#1398122 by Nick_vh | thecarlhall: Fixed Trying to get property of non-object in apachesolr_search_block_view().
-#1398100 by thecarlhall: Fixed Configuration throws exception when starting Solr.
-#1396606 by cpliakas: Fixed Fatal error 'Call to undefined function apachesolr_index_status()" when visiting admin/config/search/settings.
-#1392742 by Nick_vh, pwolanin: Fixed Add solr.LengthFilterFactory to the text fields.
-#592522 by Nick_vh, pwolanin | quaoar: Fixed Hooks node_type(), taxonomy and user knocks out our database server.
-#1394276 by pwolanin, Nick_vh, Fix for logic for last indexed timestamp.
-#1388916 by rwohleb, pwolanin: Fix for ctype_digit() port validation fails for ports < 256.
-#1391850 by cpliakas: Fix for Fatal error when Solr server is not available on non-search pages.
-#1389306 by Nick_vh: Fixed Wrong helptext link if facetapi is not installed.
-#1252648 by cpliakas, Nick_vh: Added Allow for enabling facet blocks on non-search pages.
-#1161608 by scor, Nick_vh: Added Index format_username()($account).
-#1380448 by Nick_vh | longwave: Fixed Menu item description for /admin/reports/apachesolr.
-#1387272 by cpliakas: Fixed The cancel links and button submission redirects in facet configuration forms are broken.
-#1387088 by swentel, Nick_vh: Fixed apachesolr_index_mark_for_reindex() not found during enable/disable and drush can't load apachesolr.index.inc.
-#1313698 by Nick_vh, denikin: Fixed Support for search of multiword content in facets/fields .
-#966796 by Nick_vh, scor, BarisW, wesnick, swentel, LSU_JBob | Crell: Added Separate indexer for multiple entity types.
-
-Apache Solr integration 7.x-1.x-beta13, 2011-12-21
-------------------------------
-#1376278 by Nick_vh: Fixed Inconsistent behavior of data facets producing unlimited filtering, inconsistent counts, or gap mismatches.
-#1372952 by pwolanin | albertosouza: Fixed Wrong variable in apachesolr.module.
-
-Apache Solr integration 7.x-1.0-beta12, 2011-12-12
-------------------------------
-#1369208 by pwolanin: Add configure links in .info files.
-#1369184 by pwolanin: Restore MLT block edit use of block module configure form.
-#1369144 by pwolanin: Fix for cleanup settings table and restore cron index operation.
-#1353422 by Nick_vh | Marty2081: Added Using view modes in 'more like this" block.
-#1212610 by Nick_vh | jeff.maes: Fixed Notice: Undefined index: module in apachesolr_search_form_search_form_alter(). - follow up
-#1365304 by brianV: Fixed Date field minimum/maximum range callbacks don't handle some cases; cause Solr exceptions.
-#1365940 by Nick_vh: Fixed Move all indexing functions to apachesolr.module.
-#1364564 by Nick_vh, pwolanin: Clarify % on the index page.
-#1357820 by Nick_vh | vrc3: Fixed Titles for taxonomy pages are double encoded.
-#1358730 by Nick_vh | rooby: Fixed Facet only searching isn't working.
-#1362294 by pwolanin: Fix for undefined variable: title in apachesolr_get_user_title().
-#1059372 by jpmckinney, Georgique, Nick_vh: Fixed References integration is broken.
-#1323676 by Nick_vh: Global functions should be context driven.
-#1359294 by Nick_vh: Follow-up : Fixed Test is not enabling the correct modules.
-#1359386 by Nick_vh: Replace all instances of $_GET['q'] with current_path().
-#1359294 by Nick_vh: Fixed Test is not enabling the correct modules.
-#1358158 by pwolanin | SangersDrupalDude: Fixed Schema issues on update to D7.
-#1351908 by Nick_vh: Added UI comments and improvements.
-#1349532 by Nick_vh: Added UI remake of the bias pages.
-#1357548 by Nick_vh: Make the unit tests for solr succeed if there is no solr environment available.
-#1356038 by Nick_vh: Added More like this / Blocks Admin UI rework.
-#1356018 by Nick_vh: Fixed Remove admin/system from solrconfig.xlm.
-#1344690 by Nick_vh: Added Search page should be cloneable.
-#1333904 by Nick_vh | vrc3: Added Please restore flexible 'results per page" option - follow up.
-#1292364 by Nick_vh, scor: Added UI redesign.
-#1336324 by Nick_vh | tinker: Added Get Solr version number to determine feature sets like facet ranges and location search.
-#1347092 by Nick_vh | cfuller12: Fixed Solrsort appears to be broken in beta11.
-#1344576 by Nick_vh: Fixed More like this should be environment dependent.
-#1344570 by Nick_vh: Fixed When installing solr the 'visit the admin page" link is not working.
-
-Apache Solr integration 7.x-1.0-beta11, 2011-11-16
-------------------------------
-#1328886 by drasgardian, Nick_vh, pwolanin: fix for access module fails for realm names with spaces.
-#1340232 by milesw, Nick_vh: Added Did You Mean suggestions should be broken out from core search form.
-#1343646 by Nick_vh: Fixed Empty Search behavior is not working.
-#1301646 by Nick_vh: Fixed Coder Review + Drupal coding standard.
-#1097976 by Nick_vh, jpmckinney: Fixed Use ShowFileRequestHandler, gettableFiles is deprecated.
-#1342134 by Nick_vh: Fixed 'Creating default object from empty value" Notice in node access and indexing test.
-#1341860 by pwolanin: Fixed Notice: Undefined index: fq in apachesolr_search_conditions_default() (line 401 of apachesolr_search().module).
-#1053126 by jpmckinney, Nick_vh | pwolanin: Remove duplicate sort hooks in 7.x? follow-up.
-#1053126 by jpmckinney, Nick_vh | pwolanin: Remove duplicate sort hooks in 7.x?.
-#1341854 by pwolanin: Pass the query object into hooks altering search results.
-#1340552 by pwolanin: Make facet generation more flexible/overrideable.
-#1341840 by pwolanin: Fix for undefined index 'core_search' while running tests.
-#1271964 by Nick_vh | wmostrey: Fix for no way to delete content recommendation blocks.
-#1314406 by Nick_vh, scor: Fixed De-duplication of the apachesolr_search_execute() and apachesolr_search_user_defined_search_page().
-#1161538 by Nick_vh, pwolanin | domidc: Fixed The numeric field id should not be used for Solr index field names.
-#1333904 by Nick_vh | vrc3: Restore flexible 'results per page' option.
-#1161444 by Nick_vh | cpliakas: Modify Facet API field definitions to reflect API change for the 'query type" key.
-#1334216 by Nick_vh: Fixed Convert all static parameters to drupal_static().
-#1328854 by Josh Waihi: Added Tag cron database queries to allow modules to alter conditions of updating index table.
-#1323758 by Nick_vh | Frippuz: Fixed hook_apachesolr_process_results() make no impact on results.
-#1265124 by InternetDevels.Com: Fixed Not output pager in search results.
-#1324842 by Nick_vh: Added setAvailableSorts to the api.
-#1000532 by craigmc, jpmckinney: Fixed Non-current/valid Node Types not excluded from index.
-#1320906 by Nick_vh | brianV: Fixed Taxonomy Search page title should be dynamic based on term.
-#1320076 by Nick_vh | egarias: Fixed Results per page should be non-negative integer less than 200.
-#1320634 by Nick_vh | jummonk: Fixed Search pages saved in static array before they are created in DB => PDO exception on creation of menu_router() records.
-#1319542 by jgalletta: Fixed Undefined index: get in apachesolr_search_user_defined_search_form_submit().
-#1313698 by Nick_vh, denikin: Fixed Support for search of date content in facets/fields
-#1316578 by Nick_vh | rooby: Added some documentation somewhere that says you need the facetapi module for facets.
-
-
-Apache Solr integration 7.x-1.0-beta10, 2011-10-19
-------------------------------
-#1312718 by pwolanin: fix for menu rebuild problems when installing apachesolr_search.
-#1134610 by pcambra, JoeMcGuire, Ravi.J: schema support for ctools export of settings.
-#1314664 by Nick_vh, brianV: fix for Search pages completely ignore the title set in the configuration.
-#1314260 by Nick_vh: Fixed hook_apachesolr_query_prepare() not also correctly documented.
-#1313698 by Nick_vh, denikin: Fixed Support for search of multiword content in facets/fields .
-#1309572 by Nick_vh: Fixed Creating new search page gives error when trying to find the search page variable.
-#1204480 by Nick_vh | chriscalip: Fixed Please update apachesolr.api.php naming convention from HOOK_ to hook_.
-#1212610 by Nick_vh: Fixed Notice: Undefined index: module in apachesolr_search_form_search_form_alter().
-#1309564 by Nick_vh: Fixed Simplifying syntax between isset and empty for search_box() in custom page.
-
-Apache Solr integration 7.x-1.0-beta9, 2011-10-13
-------------------------------
-#1307526 by pwolanin, Nick_vh: Fixes for update path, core search functionality.
-#1264786 by grndlvl: fix for double ellipses on search snippets.
-#1305282 by pwolanin, Nick_vh: Fixed Search pages problems.
-#1283924 by rjmackay, lazysoundsystem, jweowu: fix for notice undefined index errors.
-#1305052 by cpliakas: fix for Negative facets not displayed when the mincount is 0.
-#1279164 by pwolanin, fix for 'bundle' is not a required field, but apachesolr treats it as such.
-#1300380 by Nick_vh, pwolanin: Search environments not clear about being active or online.
-#1294846 by Nick_vh: Added Refactoring of the search pages.
-#1188824 by pwolanin: fix for very large watchdog entries when index is in read-only mode.
-#1270826 by pwolanin, brianV: fix for search page regex fails for complex queries.
-#989398  by pwolanin, Nick_vh: Fix tests after moving conf files.
-#1167136 by cpliakas: fix for fields attached to nodes added as facets regardless off the collection type.
-#1225554 by pwolanin: fix for pagination missing in the search page administration.
-#817286  by pfrenssen: API docs cleanup.
-#901376  by LiuShaz, pwolanin: insure UTF-8 encoding is used for POST searches.
-#1288080 by Nick_vh, brianV: make facets based on date fields work.
-#1201534 by BrianV, pwolanin: restore date field indexing.
-#1230380 by Shawn_Smiley: fix for Undefined index: 'facet mincount allowed'.
-#1292328 by Nick_vh: add clone environment feature, tweak the UI.
-#1187888 by pwolanin: move conf to a subdirectory and start supporting solr 3.3+.
-#1237472 by DeFr, sfyn: Fix for _constructURL method misforms urls with username/password.
-#1258658 by pwolanin: Fix failing node access test due to core 7.3 change.
-#1248366 by Dave Reid: Fix declaration of getInfo() test functions.
-#1219178 by cpliakas: Added support for customizable minimum facet counts.
-#1216184 by cpliakas: remove unneeded static variable.
-#1204450 by blazey: fix for parameter error in apachesolr_taxonomy module.
-#1150174 by mr.andrey, pwolanin: Strip content of script and similar tags when indexing.
-#1183742 by MrHaroldA, pwolanin: Index all numeric field API fields by default.
-#1188614 by ASupinski: Expand Hook_Hook_Info to include other hooks.
-
-Apache Solr integration 7.x-1.0-beta8, 2011-06-13
-------------------------------
-#1174960 by pwolanin: fix critical indexing bug from DBTNG error in apachesolr_cron_check_node_table().
-#1148612 by pwolanin: fix regression; Clicking "Relevancy" has no effect after choosing another sort.
-
-Apache Solr integration 7.x-1.0-beta7, 2011-05-24
-------------------------------
-#1162600 by pwolanin: Display an error if the schema version in use is incompatible.
-#1162078 by jpmckinney: fix for Undefined variable: stats_summary.
-#1159172 by jpmckinney: Remove unused facet functions.
-#1167172 by cpliakas: Improve the breadcrumb handling for facet settings forms.
-#1157864 by cpliakas: Integrate with Facet API's depencency plugin system.
-#912758  by pwolanin: use Facet API's support for faceting missing values.
-#1098860 by jpmckinney: Add apachesolr_cron_check_node_table back to cron.
-#1159172 by cpliakas: Remove unused facet functions.
-#926564  by jpmckinney: Add get_subqueries().
-#1064972 by jpmckinney: Use is_callable not function_exists, where applicable.
-#1097988 by pwolanin: Add omitHeader to save on bandwidth.
-#1154770 by jpmckinney, pwolanin: Must double quote filter query values if containing space or colon.
-#1152382 by cpliakas, pwolanin: Modify Facet API adapter for api changes.
-#1131288 by jpmckinney: Fix install and other follow-ups for renaming "server" to "search environment".
-#1150988 by pwolanin: Fix for facet blocks based on custom fields displaying field keys instead of labels.
-#1150220 by pwolanin: Fix for MLT requests are not going through query alter.
-#1150306 by pwolanin: fix for double URL encoding of plus sign (+) on search, after changing sort filters.
-
-Apache Solr integration 7.x-1.0-beta6, 2011-05-06
-------------------------------
-#1148768 by pwolanin: move the read-only index setting to the environment edit page.
-#1146976 by pwolanin: Rename hook_apachesolr_modify_query to hook_apachesolr_query_alter and other API clean up.
-#1146296 by pwolanin: integrate with Facet API current search block code.
-#1145036 by slip, pwolanin: Add support for facet browsing to custom search pages.
-#1131288 by pwolanin: Rename "server" to "search environment" for better conceptual clarity.
-#1122186 by slip, pwolanin: Allow custom user-specified search pages, supporting API changes.
-#1127520 by cpliakas, pwolanin: make the breadcrumb look reasonable on facet form.
-#1127302 by Janusman: some variables were not removed on uninstall.
-#1126806 by pwolanin, Janusman: restore facet browsing functionality.
-#1126488 by cpliakas: Implemented hierarchical taxonomy facets.
-#1126284 by pwolanin: add enabled filters tab on every server edit page.
-#1126282 by pwolanin: fix facet mincount param.
-#1124844 by pwolanin: Port over facet API adapter and hooks.
-#1121170 by pwolanin: remove facet-related code to prep for Facet API integration.
-#1122348 by pwolanin: Rework query class to provide uniform methods of getting and setting params.
-
-Apache Solr integration 7.x-1.0-beta-5, 2011-04-07
-------------------------------
-#799970  by pwolanin: update README for config changes.
-#1118646 by cpliakas, pwolanin: Fields now displayed on search index report page.
-#1117152 by cpliakas: Added a cancel link to the server edit page.
-#1117606 by cpliakas: Resolved inconsistencies with the caller parameter.
-#1118508 by pwolanin: Make the Apache Solr config link show up next to Search module.
-#1117128 by jpmckinney: Follow-up to #1088208
-
-Apache Solr integration 7.x-1.0-beta4, 2011-04-04
-------------------------------
-#1116030 by cpliakas, pwolanin: Added titles to settings pages to add transparency as to which server's settings are being edited.
-#1112022 by pwolanin, elliotttf: index node last_comment_timestamp too.
-#1114798 by pwolanin: enhancements to config based on Solr 3.1 examples.
-#1108618 by pwolanin: make numeric fields in 7.x use a sortable data type by default.
-#1103602 by pwolanin: prevent PHP Notice when there is an invalid term reference field.
-#1097988 by jpmckinney: avoid 'using default converter' warning on Solr startup.
-#920482  by jpmckinney: $info_split['date'] template variable should contain changed, not created, date.
-#379512  by pwolanin: separate schema field for indexing comments and "extra" information.
-#871440  by jpmckinney: Solr taxonomy page displays search form and blocks when the user has no access.
-#761990  by jhedstrom, pwolanin: switch to POST for long search ULRs.
-#1112362 by pwolanin: cleanup following #1107502 to better use drupal_http_request.
-#1107502 by pwolanin: Merge relevant parts of php client into DrupalApacheSolrService.
-#899590  by jpmckinney, elliotttf: Support indexing of attached fields that are not facets.
-#993476  by jpmckinney, pwolanin: allow arbitrary results per page in the 0-200 range.
-#1080652 by elliotttf, pwolanin: Allow other modules to return search results on solr failure.
-#562214  by ecofinn, wmostry, jpmckinney: Problems with double-encoded ampersands.
-#997480  by jpmckinney | davidwhthomas: Facet checkboxes are duplicated following other javascript activity on page.
-#1098038 by pwolanin, mgifford: fix spelling suggestion incorrect use of LABEL tag.
-#1099390 by jpmckinney: Fatal error: Call to undefined function apachesolr_nodeaccess_build_subquery().
-#1098222 by pwolanin: Rename and make the nodeaccess module more generic.
-#1092910 by pwolanin: missing date field conversions from #1088208.
-#1090530 by pwolanin: Further schema-related code fixes following from #1088208.
-#783366  by elliotttf: Invoke hook_apachesolr_prepare_query() in apachesolr_search_browse
-#1078766 by elliotttf: code-style cleanup according Coder module.
-#1049114 by Steven Jones, james.williams, Janusman: restore hierarchical taxonomy facets.
-#1088208 by pwolanin | Janusman: simplify the schmea to eliminate node-specific fields.
-#1089342 by elliotttf: Content Biasing not working.
-#996800  by elliotttf: trim host, port, and path strings to prevent connection errors.
-#1020780 by jpmckinney, pwolanin: cleanup of variable_get to apachesolr_server_variable_get conversion.
-#1085630 by pwolanin: Index taxonomy term ancestors into term reference-based field.
-#1050000 by pwolanin: More generically prevent calling nodeapi update_index when indexing.
-#1060536 by jpmckinney: Long title and Default shortcut link obscured in overlay.
-#1060550 by jpmckinney: admin/build/block should be admin/structure/block.
-#704190  by pwolanin | robertDouglass | jpmckinney: Add page callbacks to display conf files in the index in reports.
-#925608  by jpmckinney | janusman: Quick perf improvement: cache term ancestors on indexing.
-#1059380 by jpmckinney: apachesolr_fields_list_display_callback doesn't return if $facet in list_allowed_values.
-#1059368 by jpmckinney: apachesolr_clear_cache as a #submit callback doesn't work.
-#1072884 by justinrandell: incorrect use of query->condition() in apachesolr_cron().
-#901720  by jpmckinney | robertDouglass: Highlighting snippets in search results not flexible enough, and logic improvement.
-#1064782 by jpmckinney: Use module_load_include, module_load_install instead of include_once.
-#791916  by Network | jpmckinney: Allow facet search block to have children always show.
-#937328  by Davy Van Den Bremt | pwolanin: Drush support for indexing remaining nodes.
-#1060698 by dww | jpmckinney: Always display the current value of apachesolr_cron_limit in the admin UI.
-#904312  by pounard: Use drupal_get_breadcrumb() not menu_get_active_breadcrumb().
-#616888  by bangpound: Pass delta to MLT blocks' theme function.
-#864146  by pwolanin | jpmckinney: Fixed When moving fq to q.alt, we should parenthesize each fq.
-#896324  by ahankinson | jpmckinney: Fixed module_invoke() called too late.
-#840358  by pwolanin | torstenzenk: Fixed Error searching Taxonomies.
-#991444  by Nick_vh: None of start, end, gap should show up as date facets.
-#835674  by pwolanin: Remove search module dependency from apachesolr.
-#961570  by jpmckinney: if apachesolr_search was the default search module in D6, make it so in D7.
-#878996  by pwolanin | weri: Added Don't break the loop.
-#1050044 by pwolanin: hook_theme API fix, and revert to using core theme('search_results').
-#1026916 by dmitry_bezer: apachesolr_get_enabled_facets() mandatory parameter was omitted.
-#528086  by pwolanin: Fix for special html entity search and display bugs.
-#1020780 by pwolanin: Store variable settings per server for better flexibility.
-#891962  by jurcello, pwolanin: avoid incorrect filter substring matches, emit correct query string.
-#1018768 by pwolanin: fix notices during failed search request.
-
-Apache Solr integration 7.x-1.0-BETA3, 2011-01-06
-------------------------------
-#1017836 by Janusman, pwolanin: fix empty search behavior.
-#1017624 by pwolanin: Fix for "Did you mean" suggestion does not show.
-#1007848 by pwolanin: Fixes for apachesolr_nodeaccess for Drupal 7.
-#1017258 by pwolanin: Fix help text when there are no search results.
-#1013122 by pwolanin: some JS cleanup to use jQuery proxy.
-#1013136 by pwolanin: fix retain filters checkbox.
-#1009398 by pwolanin: fix content bias forms.
-#1007860 by pwolanin: API fix for hook_apachesolr_modify_query, add type hinting.
-#1007824 by pwolanin: use contextual links to avoid block caching mode issues.
-#1003500 fix icon and icon path.
-#957652  by aegnor, pwolanin: fix str_replace may remove a substring in filter_extract.
-
-Apache Solr integration 7.x-1.0-BETA2, 2010-12-18
-------------------------------
-#983458  by craig_ : mass update and mass delete ignore setting apachesolr_read_only.
-#996976  by scor: list item class should be an array, not a string.
-#995526  by pwolanin: Alter server schema so we don't exceed the MyISAM key size limit.
-#1000396 by dmitry_bezer: Edit server form ignored "Make this server the default" checkbox.
-#997240  by VladGh: fix parameters for apachesolr_server_edit_form for PHP 5.3.
-#993448  by pwolanin, scor: get Solr result docs as stdClass instead of Apache_Solr_Document.
-
-Apache Solr integration 7.x-1.0-BETA1, 2010-12-09
-------------------------------
-#979198 by pwolanin, janusman: Missing 'module' property on facet $block objects.
-#992860 by pwolanin, davereid: Taxonomy indexing and faceting has to be per field, not per vocab.
-#991590 by larskleiner: fix for API change to timezone param in format_date().
-#989730 by pwolanin: Using tdate instead of data cases java exception in using rord().
-#989658 by pwolanin: Drupal 7 allows multiple term refernece fields for the same vocabulary.
-#989398 by pwolanin: get some actual tests working.
-#983892 by pwolanin: update schema to use long instead of int, plus tdate fields.
-#983894 by pwolanin: add a set of conf files that can be used to create a test core.
-#983572 by amateescu, pwolanin: fix for empty filter values causing Solr error.
-#795912 by pwolanin patch 64: fixes various settings forms and variables, avoids a notice, removes use of md5() in favor of drupal_hash_base64().
-#982846 by pwolanin: split out (and deprecate) the taxonomy path hijack feature.
-#982840 by pwolanin: OO cleanup for Drupal 7 coding standards.
-#982490 by pwolanin: rip out Drupal 6.x update functions, update README.
-#904100 by das-peter, pwolanin: prevent missing table error when comment module not enabled.
-#795912 by pwolanin patch 62: requirements fixes, add a button to test server settings.
-#795912 by pwolanin patch 61: fix up server add/edit/delete funcitonality.
-#795912 by pwolanin, crell patch 60: - makes Field API handling more generic, adds a framework
-        for handling multiple Solr servers, and moves the nodeaccess module out of the contrib dir.
-#885950 by pwolanin, csevb10: preserve added/removed filters when filterstring is re-parsed.
-#864160 by pwolanin: Allow the caller a last chance to modify the query and params.
-#536990 by pwolanin | jpmckinney, janusman: always index content as an anonymous user.
-#835850 by pwolanin: add more replicated files to solrconfig.xml master section.
-#830976 by eosrei, pwolanin: make sure we return a non-zero ping time on success.
-#795912 by tjwallace, dmitry_bezer, jpmckinney, pwolanin: inital Drupal 7 port.
-
-Apache Solr integration 6.x-2.0-BETA1, 2010-04-08
-------------------------------
-#660754 by jhedstrom: Added Allow key sorting of facets.
-#614644 by netsensei | robertDouglass: Fixed Forms attached to Apachesolr search results won't work.
-#747346 by robertDouglass, pwolanin | lazysoundsystem: Fixed Typo in apachesolr_search().module.
-#763072 by robertDouglass, justinrandell | pwolanin: Fixed warnings when indexing old, crappy html.
-#658278 by cpliakas | JThan: Fixed Errors when building the search index in PHP 5.3.
-#765486 by robertDouglass: Fixed Several cases where Luke cache not getting cleared and resulting in errors.
-#765448 by robertDouglass: Fixed Facet blocks for hierarchical taxonomy broken.
-#751420 by pwolanin, skwashd | Damien Tournoud, Scott Reynolds: Fixed apachesolr_site_hash() calls md5() twice.
-#750426 by mkalkbrenner, pwolanin | robertDouglass: Fixed fieldType textTight conficts with fieldType text and textSpell.
-
-Apache Solr integration 6.x-2.0-BETA1, 2010-03-24
-------------------------------
-#649038 by brunodbo, slip | robertDouglass: Fixed Search not working on 404 page.
-
-Apache Solr integration 6.x-2.0-ALPHA3, 2010-03-22
-------------------------------
-#610656 by pwolanin, claudiu.cristea | Scott Reynolds: Fixed Facets requests for non-enabled modules.
-#686390 by pwolanin | rjbrown99: Fixed Wrong number of initial items in taxonomy facet under certain conditions.
-#573734 by drewish | robertDouglass: Added Index controls should be radio buttons with one form submission button.
-#736540 by drewish | Scott Reynolds: Changed Minimize UPDATE queries in apachesolr_nodeapi_mass_update().
-#687738 by David Lesieur | anantagati: Fixed Avoid introducing empty 'filters' query string.
-#733116 by pwolanin | drewish: Changed Implement hook_flush_caches().
-#719356 by robertDouglass, mathieu | flk: Fixed Indexing cron triggers sigsegv in apachesolr.module line 387.
-#744038 by siliconmeadow: Changed Change of Drush extension command naming conventions.
-#558160 by robertDouglass, mihha | DenRaf, mcarbone, haxney: Added date facet for cck fields.
-#666936 by pwolanin, robertDouglass, claudiu.cristea | justindodge: Fixed apachesolr.js - Drupal.behaviors.apachesolr does not respect context.
-#708424 by janusman: Changed Change gmdate() to Drupal format_date() in date facets to support localization.
-
-Apache Solr integration 6.x-2.0-ALPHA2, 2010-01-08
-------------------------------
-#679522 by pwolanin, Add gettableFiles to solr admin interface config.
-http://drupal.org/cvs?commit=309746 by robertDouglass, add entity='comment' to comments on indexing.
-#672882 by David Lesieur: Fixed Broken 'Show more' link on taxonomy facets.
-#604566 by robertDouglass | jhedstrom: Fixed index_value() never set for CCK fields that aren't of type text, node or user referrence.
-#672530 by robertDouglass: Fixed Change array key names from display callback to display_callback() and indexing callback to indexing_callback().
-#672518 by robertDouglass: Fixed Add new trie prefixes to helper function .
-#551582 by drewish: Fixed Show value instead of key in CCK facets.
-#668396 by pwolanin, closer to fix from #655006 for PHP notices.
-#664818 by robertDouglass, pounard, pwolanin | Scott Reynolds: Fixed Wrong watchdog() usage.
-#657648 by kcoop: Added Add Smaller Limit Options to Apache Solr Cron Indexing.
-
-Apache Solr integration 6.x-2.0-ALPHA1, 2009-12-26
-------------------------------
-#664818 by robertDouglass, pounard, pwolanin | Scott Reynolds: Fixed Wrong watchdog() usage.
-#662232 by pwolanin | anarchivist: Changed Use language-neutral code like D7.
-#666648 by pwolanin: Changed Make hook_apachesolr_update_index() more generic by taking a namespace param also.
-#667110 by pwolanin: Fixed Replace bogus use of pager_query().
-#667124 by pwolanin: Fixed Use current query not altered query for the breadcrumb.
-#667650 by Dave Reid: Fixed Results of apachesolr_process_response() should return absolute URLs.
-#664572 by pwolanin: Added Add schema and core name to admin screen.
-#664860 by pounard: Fixed Wrong t() usage in apachesolr_field_name_map().
-#528086 by pwolanin, better (but still problematic) handling of entities.
-#662232 by pwolanin, index zxx as the Language neutral code.
-#401234 by mkalkbrenner, janusman, and pwolanin, reflect hierarchical taxonomy vocabulary in facets.
-#661952 by pwolanin, fix no results help text for dismax syntax.
-#348668 by pwolanin, add indexing of the 'node' entity string.
-#641954 by anarchivist, swentel, pwolanin, update schema.xml.
-#651044 by kcoop use node title for comment title when comment has no title.
-#655006 by Scott Reynolds, pwolanin fix warnings on constants.
-#652512 by robertDouglass enable use of more than just the default solr server.
-#642602 by robertDouglass, change 'content type' to 'content_type' in facet definitions.
-#641452 by robertDouglass, prevent admin from trying to re-index when in read-only mode.
-#372767 by socki, robertDouglass, pwolanin allow MLT blocks to be filtered by type and custom filters.
-#372336 by der, janusman, robertDouglass, allow name sorting of facet links.
-#611670 by pwolanin, allow modules to abort the building of documents for indexing.
-#628080 by pwolanin, update to use Solr PHP library r22 and check for it in hook_requirements.
-#638236 by mkalkbrenner and robertDouglass, undocumented dependency on taxonomy module.
-#562458 by janusman, fix typo preventing menu_rebuild regarding taxonomy hijack.
-#630798 by joshk, robertDouglass make cache_apachesolr table to facilitate better memcache utilization.
-#623046 by robertDouglass make the results that come back from a search more useful.
-#622120 by robertDouglass make the "Show more" block selection dynamic to accommodate other modules.
-#621922 by robertDouglass make the "Show more" js more robust.
-#612024 by pwolanin, Add method to allow requests to additional Solr servelets.
-#561082 by pwolanin, consolidate Solr delete queries on cron.
-#580404 by pwolanin per content type comment exclusion.
-#597174 by Frando, add hook_apachesolr_prepare_query() to enable custom sorts.
-#591278 by robertDouglass fix bug that was preventing hook_apachesolr_modify_query from working correctly.
-#590982 by swentel fix warnings on indexing.
-#554136 by emackn, Jaza make results-per-page alterable.
-#580764 by robertDougalss Add a new contrib module that allows searching on just comments.
-#548160 by robertDouglass get rid of functions that begin with underscore. Yuck.
-#580404 by robertDouglass make indexing of comments optional. New variable, apachesolr_index_comments_with_node.
-#538636 by robertDouglass allow modules to register document handlers so that multiple documents can be indexed per entity.
-#557382 by Josh Waihi, Scott Reynolds mlt blocks were double encoding titles.
-#578008 by robertDouglass improve performance by not including unused facet queries.
-#552152 by robertDouglass OR operator for facet blocks.
-#576092 by robertDouglass use Drush to search the site using Solr.
-#576040 by robertDouglass use Drush to download the SolrPhpClient: drush solr phpclient
-#457826 by janusman Make the behavior of empty searches configurable.
-#573038 by robertDouglass Automatically create facets for user and node reference CCK fields.
-#570476 by robertDouglass add initial Drush support with commands drush solr delete index and drush solr reindex.
-#570476 by robertDouglass allow for deleting or reindexing single content types.
-#456420 by anarchivist, janusman, robertDouglass Reindex using Batch API.
-#551510 by Scott Reynolds Add in ability to theme different facet blocks differently.
-#551620 by robertDouglass Type dependent facet blocks.
-#549664 by Scott Reynolds Ignore node_access for Solr Views queries.
-#551582 by robertDouglass make CCK breadcrumbs, facets, and current search show the value, not the key.
-#551278 by robertDouglass CCK mappings don't respect shared fields
-#535654 by drunken monkey Add apachesolr_server_status() function
-#543226 by drunken monkey validate port on settings form.
-#502976 by Scott Reynolds followup to Other GET parameters ignored by Apache Solr Facet Blocks
-#473554 by janusman Add an "unclick" link to search keys
-#545094 by loganfsmyth add getter and setter methods for a query's keys.
-#530910 by Damien Tournoud fix offset problem in field settings administration.
-#526344 by drunken monkey Remove apachesolr_read_only check from Drupal_ Apache_Solr_Service::_sendRawPost().
-#525980 by robertDouglass Clarify the API of apachesolr_index_updated.
-#530196 by pwolanin, fix facecount form function calls in apachesolr_og.
-#548102 by robertDouglass change wording on enabled filters page to improve usability.
-#529606 by Damien Tournoud update schema.xml with WhitespaceTokenizerFactory and SnowballPorterFilterFactory. Note that you need to stop solr, replace schema.xml, delete your index, and re-index your site.
-#528002 by janusman, Add RSS discovery to taxonomy hijack page
-#528888 by robertDouglass turn spellchecker on by default
-#528596 part 1 by robertDouglass add JS enabled checkboxes to facet and unclick links
-#525918 by robertDouglass be more forceful when reindexing; rebuild the apachesolr_search_node table completely.
-#528516 by robertDouglass add apachesolr-facet and apachesolr-unclick CSS classes to unclick and facet links.
-#528484 by robertDouglass switch to Drupal.behaviors in apachesolr.js
-#515682 by robertDouglass, add confirmation form to re-index button.
-#509526 by pwolanin, {apachesolr_search_node} table should be rebuilt when index is deleted.
-#457826 by janusman, robertDouglass - show browsable facet blocks in the search well when no search term is present to allow browsing. Hello 6.2 branch of ApacheSolr :D
-
-Apache Solr integration 6.x-1.x, xxxx-xx-xx
-------------------------------
-#508364 by pwolanin, Don't offer non-indexed fields as search options.
-#508548 by pwolanin, Don't implode params['fq'] if it's not set.
-#708424 by janusman: Changed Change gmdate() to Drupal format_date() in date facets to support localization.
-
-Apache Solr integration 6.x-1.0-RC1, 2009-07-02
-------------------------------
-#502976 by pwolanin, Scott Reynolds, robertDouglass facet links and form submissions respect non ApacheSolr $_GET parameters. Note that this changes the interface API: get_url_querystring is now get_url_queryvalues and returns and array instead of a string.
-#507708 by pwolanin, fix sort parameters to use field aliases, validate in query object.
-#299539 by kleung11 and pwolanin, use 'administer search' for permission checking.
-#503644 by pwolanin and Jeremy, make sure we strip ctrl chars last, add logging.
-#505652 by bdurbin, add apachesolr-showhide class to Show more link.
-#472600 by janusman, JacobSingh, and pwolanin, optionally hijack taxonomy pages.
-#496650 by mkalkbrenner, make unclick links work after #463900.
-#495258 comment out timeAllowed params (partial roll-back of #490076)
-#495012 by pwolanin, fix Anonymous user and other 0-value facets.
-#463900 by pwolanin and JacobSingh, facet theme function clean-up.
-#405206 by pwolanin, allow Apache Solr to be the default, let core search index 0 nodes.
-#453310 by pwolanin, allow easier theming of username display.
-#490076 by pwolanin, spellcheck more popular, maxqt to 20, limit search time.
-#358166 by David Lesieur, janusman, cptnCauliflower, and pwolanin, search for just facet(s).
-#489654 by JacobSingh, and pwolanin, allow users to set their index as "read only".
-
-Apache Solr integration 6.x-1.0-beta11, 2009-06-11
-------------------------------
-#348218 by David Lesieur, janusman, and pwolanin, retain filters for next search.
-#401046 by pwolanin, revist urlencoding of query strings.
-#467810 by aufumy, Pass in page number and caller to apachesolr_search_execute.
-#481838 by JacobSingh and pwolanin, enable plus sign in search when using clean URLs.
-#480814 by mkalkbrenner and pwolanin, add more detail to logging on errors.
-#464758 by pwolanin, 4th param to htmlspecialchars breaks PHP < 5.2.3.
-#466328 by pwolanin, fix classes for sort links.
-
-Apache Solr integration 6.x-1.0-beta10, 2009-05-14
-------------------------------
-#449414 by pwolanin, aufumy, & Scott Reynolds, refactor apachesolr_search_search().
-#462836 by pwolanin, catch fatal error in _nodeaccess if no solr.
-#461506 by pwolanin, do nothing if there are no nodes to index.
-#459930 by Scott Reynolds and pwolanin, clean up hook_enable(), uninstall, update_6004
-#453338 by pwolanin and JacobSingh, move mlt functionality into the framework module.
-#365495 by pwolanin, improve admin screens and usability of field weights.
-#454608 by pwolanin, fix current search block.
-#453182 by pwolanin, use stored path rather than forcing node/$nid.
-#448298 by JacobSingh and pwolanin, use a confirm form for index deletion.
-#454352 by Damien Tournoud, make optimize interval configurable, document variables.
-
-Apache Solr integration 6.x-1.0-beta9, 2009-04-30
-------------------------------
-#435924 by pwolanin, only clear cache on cron after updates and if the server is available.
-#405780 by blackdog and pwolanin, skip excluded node types during counting and indexing.
-#441628 by aufumy and pwolanin, update _og for negative facets, minor fixes, install/enable/update hooks.
-#447622 by pwolanin and mkalkbrenner, better encoding of html entities and CCK facets.
-#447890 by pwolanin, properly respect 'access content' permission in _nodeaccess.
-#271753 by pwolanin, more granular CCK field mappings via _alter hook.
-#436074 by pwolanin, better query class handling of negative queries.
-#442198 by Scott Reynolds and pwolanin, update the Drupal_Solr_Query_Interface interface.
-#443252 by Scott Reynolds, (bugfix for regression) make protected id public again.
-#337737 by David Lesieur, mikejoconnor and Scott Reynolds, localize arg(1) dependence.
-        Changes query get_path() to facilitate generating facets outside the search page.
-
-Apache Solr integration 6.x-1.0-beta8, 2009-04-16
-------------------------------
-#343252 by pwolanin, fix nodeaccess for method name changes, make multi-site aware.
-#432946 by pwolanin, query class and sort cleanups.
-#393480 by pwolanin and Jody Lynn, provide a book facet and facets for missing fields.
-#432140 by Damien Tournoud, use format_interval() for more attractive, localizable time intervals.
-#348029 by pwolanin, Handle negative filters and improve date facet block code.
-#254565 by drunken monkey and Scott Reynolds, change the query class to enable Views integration.
-
-Apache Solr integration 6.x-1.0-beta7, 2009-04-03
-------------------------------
-#410330 by pwolanin and bhuga, return more information for error 0.
-#293989 by bjaspan and vladimir.dolgopolov, add date facets for created and changed dates.
-#420290 by mkalkbrenner and pwolanin, add spaces around tags to avoid running words together.
-#368688 by hurleyit and pwolanin, send MLT docs instead of processed links to theme function.
-#383478 by pwolanin and JacobSingh, provide more information about autocommit lag, pending deletes.
-#339490 by aufumy, pwolanin, and JacobSingh, Organic groups Apachesolr integration, new _alter hook.
-
-Apache Solr integration 6.x-1.0-beta6, 2009-03-20
-------------------------------
-#305370 by pwolanin, Handle failed delete requests so unpublished/deleted content doesn't stay in the index.
-#407570 by pwolanin and moshe weitzman, _alter for sort links, hide for < 2 results.
-#392978 by pwolanin and ncameron, workaround for those using php 5.1, update README.
-#402984 by JacobSingh and pwolanin, put MLT menu under the general ApacheSolr settings.
-#401442 by Janusman and pwolanin, no sort block when 0 results.
-#405732 by JacobSingh, pwolanin: Update to new SolrPhpClient (r6) and make ping() use drupal_http_request.
-#405722 by JacobSingh, increase ping timeout and make it variable.
-#400882 by mkalkbrenner, fix faceting bug due to static counter in method add_field.
-#382358 by pwolanin, use tokenizer solr.CharStreamAwareWhitespaceTokenizerFactory to fix highlighting.
-
-Apache Solr integration 6.x-1.0-beta5, 2009-02-27
-------------------------------
-#305370 by pwolanin, don't delete from apachesolr table if Solr query fails.
-#385348 by moshe weitzman, use key in sort links array.
-#385362 by pwolanin, Shorten hash from 32 chars to 12.
-#383804 by JacobSingh, fix query building that broke nodeaccess.
-
-Apache Solr integration 6.x-1.0-beta4, 2009-02-23
-------------------------------
-#380670 by pwolanin, only add a bq param for a node-type boost > 'Normal'.
-#379518 by pwolanin, correct mismatch in default boost between
-        solrconfig.xml and apachesolr_search.
-#380594 by pwolanin, empty the spellcheck dictionary if the index is deleted.
-#380644 by JacobSingh, Backwards compatability for old sort fields.
-#380538 by pwolanin, fix code to find vid for taxonomy facet blocks.
-
-Apache Solr integration 6.x-1.0-beta3, 2009-02-20
-------------------------------
-#378222 by janusman and pwolanin, add boost settings for "sticky" and "promote".
-#378566 by pwolanin, nodeaccess not correctly marking single nodes for re-indexing.
-#378270 by pwolanin, suppress MLT admin link when there is no block content.
-#378196 by pwolanin, remove PHP client from CVS per Drupal.org policy.
-#231200 by janusman and pwolanin, turn on mapping of accented to non-accented
-        ISO characters for indexing and search.
-#377494 by pwolanin, Update text type in schema to new example.
-#376270 by pwolanin, also add option to bias on recent comments/changes.
-#337879 by pwolanin and blackdog, Store relative not absolute paths.
-#376255 by pwolanin, Index more node fields, use boolean fields.
-#376966 by JacobSingh and pwolanin, requesting the top terms from luke is very
-        expensive, so normally request 0, and only get them for smaller indexes.
-#375991 by pwolanin, build spellcheck index on optimize.
-#370707 by pwolanin, make sort field names consistent, make ignored multiValued.
-#375723 by pwolanin, prevent fatal error if available facet list changes.
-#373921 by JacobSingh, show pending docs on index page from autocommit.
-#371858 by pwolanin, re-fill the Luke cache after we empty it on cron.
-#372120 by pwolanin, create one MLT block by default on install of apachesolr_mlt.
-#370707 compact field names, create "order by" fields in schema.xml
-        by pwolanin and Damien Tournoud.
-#370796 avoid repeated looping/indexing in apachesolr_index_nodes() by Damien Tournoud.
-#369944 Add field aliases and further clean-up the query class, by pwolanin.
-#366959 make usage of solrsort consistent in Solr_Base_Query::solrsort by Damien Tournoud.
-#       Update errant watchdog calls that were using D5 signature by robertDouglass.
-#369780 Rearrange code for better organization and performance by robertDouglass.
-#365901 Fix bug where indexing might hang & improved API by adding a separate
-        hook for modules to indicate that a node is excluded, by pwolanin.
-#367361 Use the machine-readable name for disabled node types by pwolanin.
-#366957 Add a "configure" link to the more like this block by JacobSingh.
-#365901 Add a bias on node type (and node-type exclusion) by Damien Tournoud and pwolanin.
-
-Apache Solr integration 6.x-1.0-beta2, 2009-01-28 (changes since 6.x-1.0-alpha6 2009-Jan-08)
-------------------------------
-#365684 Get PHP library from new svn home by pwolanin
-#365620 clear stale data on hook_enable by pwolanin
-#365312 don't redirect after enabling filters by pwolanin
-#365245 invalid foreach when no facets available reported by Damien Tournoud
-#        don't let attachements be enabled since it seems be broken by pwolanin
-#363972 fix ApacheSolr to Apache Solr
-#363972 Text improvements for UI by horncologne and pwolanin
-#365063 fix module name in admin screen by pwolanin
-#365022 fatal error in MLT when no Solr server by pwolanin
-#364446 fix space problem and clean up query class by pwolanin
-#355525 fix mis-named variables, patch by pwolanin,  bug reported by flexer
-#339467 centralize/register facets blocks by paul.lovvik, JacobSingh and
-        pwolanin
-#362389 make the _image module work by pwolanin
-#364140 fix mlt schema bug, thanks to webrascal
-#364384 reorder selects to have bigger numbers at the top by pwolanin, suggested
-        by horncologne
-#350330 make sure to index dates as GMT, thanks to webrascal
-#363416 reindex without blowing away either the solr index or the core search index by pwolanin
-#360227 strip ctl chars() also on path, reported by flexer
-#348215 cleanup - simplify branching, numerically index array by pwolanin
-#348215 add missing js file with minor text chenges (js file by vladimir.dolgopolov)
-#359923 separate cron limit for apachesolr by pwolanin
-#       remove lang module - code was already added to apachesolr_search
-#292662 commit after we delete the index by pwolanin
-#356696 by pwolanin: copies the author's name to a string field for use in
-        multisite search or sorting by author.  Also snuck in non-compression on
-        the body for performance.
-#348215 by vladimir.dolgopolov: More link for additional facets.
-#292662 update README by pwolanin
-#344249 obey 32 char limit for block deltas by pwolanin
-#355479 fix PHP warning when request fails by pwolanin
-#355544 Add a ->clearCache(); in apachesolr_index_page(), by flexer and pwolanin
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/Drupal_Apache_Solr_Service.php b/profiles/wcm_base/modules/contrib/apachesolr/Drupal_Apache_Solr_Service.php
deleted file mode 100644
index a99a567527b7b93316a4946821bbf5c035996985..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/Drupal_Apache_Solr_Service.php
+++ /dev/null
@@ -1,950 +0,0 @@
-<?php
-
-/**
- * Copyright (c) 2007-2009, Conduit Internet Technologies, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- *  - Redistributions of source code must retain the above copyright notice,
- *    this list of conditions and the following disclaimer.
- *  - Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *  - Neither the name of Conduit Internet Technologies, Inc. nor the names of
- *    its contributors may be used to endorse or promote products derived from
- *    this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- *
- * @copyright Copyright 2007-2009 Conduit Internet Technologies, Inc. (http://conduit-it.com)
- * @license New BSD (http://solr-php-client.googlecode.com/svn/trunk/COPYING)
- * @version $Id: Service.php 22 2009-11-09 22:46:54Z donovan.jimenez $
- *
- * @package Apache
- * @subpackage Solr
- * @author Donovan Jimenez <djimenez@conduit-it.com>
- */
-
-/**
- * Additional code Copyright (c) 2008-2011 by Robert Douglass, James McKinney,
- * Jacob Singh, Alejandro Garza, Peter Wolanin, Nick Veenhof and additional
- * contributors.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
-
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program as the file LICENSE.txt; if not, please see
- * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
- */
-
-/**
- * Starting point for the Solr API. Represents a Solr server resource and has
- * methods for pinging, adding, deleting, committing, optimizing and searching.
- */
-
-class DrupalApacheSolrService implements DrupalApacheSolrServiceInterface {
-  /**
-   * How NamedLists should be formatted in the output.  This specifically effects facet counts. Valid values
-   * are 'map' (default) or 'flat'.
-   *
-   */
-  const NAMED_LIST_FORMAT = 'map';
-
-  /**
-   * Servlet mappings
-   */
-  const PING_SERVLET = 'admin/ping';
-  const UPDATE_SERVLET = 'update';
-  const SEARCH_SERVLET = 'select';
-  const LUKE_SERVLET = 'admin/luke';
-  const SYSTEM_SERVLET = 'admin/system';
-  const STATS_SERVLET = 'admin/stats.jsp';
-  const STATS_SERVLET_4 = 'admin/mbeans?wt=xml&stats=true';
-
-  /**
-   * Server url
-   *
-   * @var array
-   */
-  protected $parsed_url;
-
-  /**
-   * Constructed servlet full path URLs
-   *
-   * @var string
-   */
-  protected $update_url;
-
-  /**
-   * Default HTTP timeout when one is not specified (initialized to default_socket_timeout ini setting)
-   *
-   * var float
-   */
-  protected $_defaultTimeout;
-  protected $env_id;
-  protected $luke;
-  protected $stats;
-  protected $system_info;
-
-  /**
-   * Flag that denotes whether to use soft commits for Solr 4.x, defaults to FALSE.
-   *
-   * @var bool
-   */
-  protected $soft_commit = FALSE;
-
-  /**
-   * Call the /admin/ping servlet, to test the connection to the server.
-   *
-   * @param $timeout
-   *   maximum time to wait for ping in seconds, -1 for unlimited (default 2).
-   * @return
-   *   (float) seconds taken to ping the server, FALSE if timeout occurs.
-   */
-  public function ping($timeout = 2) {
-    $start = microtime(TRUE);
-
-    if ($timeout <= 0.0) {
-      $timeout = -1;
-    }
-    $pingUrl = $this->_constructUrl(self::PING_SERVLET);
-    // Attempt a HEAD request to the solr ping url.
-    $options = array(
-      'method' => 'HEAD',
-      'timeout' => $timeout,
-    );
-    $response = $this->_makeHttpRequest($pingUrl, $options);
-
-    if ($response->code == 200) {
-      // Add 0.1 ms to the ping time so we never return 0.0.
-      return microtime(TRUE) - $start + 0.0001;
-    }
-    else {
-      return FALSE;
-    }
-  }
-
-  /**
-   * Flags whether to use soft commits for Solr 4.x.
-   *
-   * @param bool $soft_commit
-   *   Whether or not to use soft commits for Solr 4.x.
-   */
-  public function setSoftCommit($soft_commit) {
-    $this->soft_commit = (bool) $soft_commit;
-  }
-
-  /**
-   * Returns the flag that denotes whether to use soft commits for Solr 4.x.
-   *
-   * @return bool
-   *   Whether to use soft commits for Solr 4.x.
-   */
-  public function getSoftCommit() {
-    return $this->soft_commit;
-  }
-
-  /**
-   * Call the /admin/system servlet
-   *
-   * @return
-   *   (array) With all the system info
-   */
-  protected function setSystemInfo() {
-    $url = $this->_constructUrl(self::SYSTEM_SERVLET, array('wt' => 'json'));
-    if ($this->env_id) {
-      $this->system_info_cid = $this->env_id . ":system:" . drupal_hash_base64($url);
-      $cache = cache_get($this->system_info_cid, 'cache_apachesolr');
-      if (isset($cache->data)) {
-        $this->system_info = json_decode($cache->data);
-      }
-    }
-    // Second pass to populate the cache if necessary.
-    if (empty($this->system_info)) {
-      $response = $this->_sendRawGet($url);
-      $this->system_info = json_decode($response->data);
-      if ($this->env_id) {
-        cache_set($this->system_info_cid, $response->data, 'cache_apachesolr');
-      }
-    }
-  }
-
-  /**
-   * Get information about the Solr Core.
-   *
-   * @return
-   *   (string) system info encoded in json
-   */
-  public function getSystemInfo() {
-    if (!isset($this->system_info)) {
-      $this->setSystemInfo();
-    }
-    return $this->system_info;
-  }
-
-  /**
-   * Sets $this->luke with the meta-data about the index from admin/luke.
-   */
-  protected function setLuke($num_terms = 0) {
-    if (empty($this->luke[$num_terms])) {
-      $params = array(
-        'numTerms' => "$num_terms",
-        'wt' => 'json',
-        'json.nl' => self::NAMED_LIST_FORMAT,
-      );
-      $url = $this->_constructUrl(self::LUKE_SERVLET, $params);
-      if ($this->env_id) {
-        $cid = $this->env_id . ":luke:" . drupal_hash_base64($url);
-        $cache = cache_get($cid, 'cache_apachesolr');
-        if (isset($cache->data)) {
-          $this->luke = $cache->data;
-        }
-      }
-    }
-    // Second pass to populate the cache if necessary.
-    if (empty($this->luke[$num_terms])) {
-      $this->luke[$num_terms] = $this->_sendRawGet($url);
-      if ($this->env_id) {
-        cache_set($cid, $this->luke, 'cache_apachesolr');
-      }
-    }
-  }
-
-  /**
-   * Get just the field meta-data about the index.
-   */
-  public function getFields($num_terms = 0) {
-    return $this->getLuke($num_terms)->fields;
-  }
-
-  /**
-   * Get meta-data about the index.
-   */
-  public function getLuke($num_terms = 0) {
-    if (!isset($this->luke[$num_terms])) {
-      $this->setLuke($num_terms);
-    }
-    return $this->luke[$num_terms];
-  }
-
-  /**
-   * Get the current solr version. This could be 1, 3 or 4
-   *
-   * @return int
-   *   1, 3 or 4. Does not give a more details version, for that you need
-   *   to get the system info.
-   */
-  public function getSolrVersion() {
-    $system_info = $this->getSystemInfo();
-    // Get our solr version number
-    if (isset($system_info->lucene->{'solr-spec-version'})) {
-      return $system_info->lucene->{'solr-spec-version'}[0];
-    }
-    return 0;
-  }
-
-  /**
-   * Sets $this->stats with the information about the Solr Core form
-   */
-  protected function setStats() {
-    $data = $this->getLuke();
-    $solr_version = $this->getSolrVersion();
-    // Only try to get stats if we have connected to the index.
-    if (empty($this->stats) && isset($data->index->numDocs)) {
-      if ($solr_version >= 4) {
-        $url = $this->_constructUrl(self::STATS_SERVLET_4);
-      }
-      else {
-        $url = $this->_constructUrl(self::STATS_SERVLET);
-      }
-      if ($this->env_id) {
-        $this->stats_cid = $this->env_id . ":stats:" . drupal_hash_base64($url);
-        $cache = cache_get($this->stats_cid, 'cache_apachesolr');
-        if (isset($cache->data)) {
-          $this->stats = simplexml_load_string($cache->data);
-        }
-      }
-      // Second pass to populate the cache if necessary.
-      if (empty($this->stats)) {
-        $response = $this->_sendRawGet($url);
-        $this->stats = simplexml_load_string($response->data);
-        if ($this->env_id) {
-          cache_set($this->stats_cid, $response->data, 'cache_apachesolr');
-        }
-      }
-    }
-  }
-
-  /**
-   * Get information about the Solr Core.
-   *
-   * Returns a Simple XMl document
-   */
-  public function getStats() {
-    if (!isset($this->stats)) {
-      $this->setStats();
-    }
-    return $this->stats;
-  }
-
-  /**
-   * Get summary information about the Solr Core.
-   */
-  public function getStatsSummary() {
-    $stats = $this->getStats();
-    $solr_version = $this->getSolrVersion();
-
-    $summary = array(
-     '@pending_docs' => '',
-     '@autocommit_time_seconds' => '',
-     '@autocommit_time' => '',
-     '@deletes_by_id' => '',
-     '@deletes_by_query' => '',
-     '@deletes_total' => '',
-     '@schema_version' => '',
-     '@core_name' => '',
-     '@index_size' => '',
-    );
-
-    if (!empty($stats)) {
-      if ($solr_version <= 3) {
-        $docs_pending_xpath = $stats->xpath('//stat[@name="docsPending"]');
-        $summary['@pending_docs'] = (int) trim(current($docs_pending_xpath));
-        $max_time_xpath = $stats->xpath('//stat[@name="autocommit maxTime"]');
-        $max_time = (int) trim(current($max_time_xpath));
-        // Convert to seconds.
-        $summary['@autocommit_time_seconds'] = $max_time / 1000;
-        $summary['@autocommit_time'] = format_interval($max_time / 1000);
-        $deletes_id_xpath = $stats->xpath('//stat[@name="deletesById"]');
-        $summary['@deletes_by_id'] = (int) trim(current($deletes_id_xpath));
-        $deletes_query_xpath = $stats->xpath('//stat[@name="deletesByQuery"]');
-        $summary['@deletes_by_query'] = (int) trim(current($deletes_query_xpath));
-        $summary['@deletes_total'] = $summary['@deletes_by_id'] + $summary['@deletes_by_query'];
-        $schema = $stats->xpath('/solr/schema[1]');
-        $summary['@schema_version'] = trim($schema[0]);
-        $core = $stats->xpath('/solr/core[1]');
-        $summary['@core_name'] = trim($core[0]);
-        $size_xpath = $stats->xpath('//stat[@name="indexSize"]');
-        $summary['@index_size'] = trim(current($size_xpath));
-      }
-      else {
-        $system_info = $this->getSystemInfo();
-        $docs_pending_xpath = $stats->xpath('//lst["stats"]/long[@name="docsPending"]');
-        $summary['@pending_docs'] = (int) trim(current($docs_pending_xpath));
-        $max_time_xpath = $stats->xpath('//lst["stats"]/str[@name="autocommit maxTime"]');
-        $max_time = (int) trim(current($max_time_xpath));
-        // Convert to seconds.
-        $summary['@autocommit_time_seconds'] = $max_time / 1000;
-        $summary['@autocommit_time'] = format_interval($max_time / 1000);
-        $deletes_id_xpath = $stats->xpath('//lst["stats"]/long[@name="deletesById"]');
-        $summary['@deletes_by_id'] = (int) trim(current($deletes_id_xpath));
-        $deletes_query_xpath = $stats->xpath('//lst["stats"]/long[@name="deletesByQuery"]');
-        $summary['@deletes_by_query'] = (int) trim(current($deletes_query_xpath));
-        $summary['@deletes_total'] = $summary['@deletes_by_id'] + $summary['@deletes_by_query'];
-        $schema = $system_info->core->schema;
-        $summary['@schema_version'] = $schema;
-        $core = $stats->xpath('//lst["core"]/str[@name="coreName"]');
-        $summary['@core_name'] = trim(current($core));
-        $size_xpath = $stats->xpath('//lst["core"]/str[@name="indexSize"]');
-        $summary['@index_size'] = trim(current($size_xpath));
-      }
-    }
-
-    return $summary;
-  }
-
-  /**
-   * Clear cached Solr data.
-   */
-  public function clearCache() {
-    // Don't clear cached data if the server is unavailable.
-    if (@$this->ping()) {
-      $this->_clearCache();
-    }
-    else {
-      throw new Exception('No Solr instance available when trying to clear the cache.');
-    }
-  }
-
-  protected function _clearCache() {
-    if ($this->env_id) {
-      cache_clear_all($this->env_id . ":stats:", 'cache_apachesolr', TRUE);
-      cache_clear_all($this->env_id . ":luke:", 'cache_apachesolr', TRUE);
-    }
-    $this->luke = array();
-    $this->stats = NULL;
-  }
-
-  /**
-   * Constructor
-   *
-   * @param $url
-   *   The URL to the Solr server, possibly including a core name.  E.g. http://localhost:8983/solr/
-   *   or https://search.example.com/solr/core99/
-   * @param $env_id
-   *   The machine name of a corresponding saved configuration used for loading
-   *   data like which facets are enabled.
-   */
-  public function __construct($url, $env_id = NULL) {
-    $this->env_id = $env_id;
-    $this->setUrl($url);
-
-    // determine our default http timeout from ini settings
-    $this->_defaultTimeout = (int) ini_get('default_socket_timeout');
-
-    // double check we didn't get 0 for a timeout
-    if ($this->_defaultTimeout <= 0) {
-      $this->_defaultTimeout = 60;
-    }
-  }
-
-  function getId() {
-    return $this->env_id;
-  }
-
-  /**
-   * Check the reponse code and thow an exception if it's not 200.
-   *
-   * @param stdClass $response
-   *   response object.
-   *
-   * @return
-   *  response object
-   * @thows Exception
-   */
-  protected function checkResponse($response) {
-    $code = (int) $response->code;
-    if ($code != 200) {
-      // Report where the user's code called the apachesolr code
-      $caller = $this->findCaller();
-      watchdog(
-        'Apache Solr',
-        t('HTTP Status: %http_status; <br>Message: %status_message; <br>Response: %response; <br>Request: %request; <br>Caller: %function (line %line of %file)'),
-        array(
-          '%http_status' => $code,
-          '%status_message' => $response->status_message,
-          '%response' => $response->data,
-          '%request' => empty($response->request) ? t('Unknown') : $response->request,
-          '%function' => isset($caller['class']) ? $caller['class'].'->'.$caller['function'].'()' : $caller['function'].'()',
-          '%line' => $caller['line'],
-          '%file' => $caller['file'],
-        ),
-        WATCHDOG_ERROR
-      );
-      throw new Exception('HTTP ' . $code . '; ' . $response->status_message);
-    }
-    return $response;
-  }
-
-  /**
-   * Determine the routine that called this query.
-   *
-   * We define "the routine that called this query" as the first entry in
-   * the call stack that is not inside /apachesolr/. That makes the climbing
-   * logic very simple, and handles variable stack depth and hook functions.
-   *
-   * Copied from includes/database/log.inc
-   *
-   * @link http://www.php.net/debug_backtrace
-   * @return
-   *   This method returns a stack trace entry similar to that generated by
-   *   debug_backtrace(). However, it flattens the trace entry and the trace
-   *   entry before it so that we get the function and args of the function that
-   *   called into the apachesolr module, not the function and args of the
-   *   Solr call itself.
-   */
-  public function findCaller() {
-    $stack = debug_backtrace();
-    $stack_count = count($stack);
-    for ($i = 0; $i < $stack_count; ++$i) {
-      if (!isset($stack[$i]['file']) || strpos($stack[$i]['file'], DIRECTORY_SEPARATOR . 'apachesolr' . DIRECTORY_SEPARATOR) === FALSE) {
-        return array(
-          'file' => isset($stack[$i]['file']) ? $stack[$i]['file'] : t('Unknown'),
-          'line' => isset($stack[$i]['line']) ? $stack[$i]['line'] : t('Unknown'),
-          'function' => $stack[$i + 1]['function'],
-          'class' => isset($stack[$i + 1]['class']) ? $stack[$i + 1]['class'] : NULL,
-          'type' => isset($stack[$i + 1]['type']) ? $stack[$i + 1]['type'] : NULL,
-          'args' => $stack[$i + 1]['args'],
-        );
-      }
-    }
-  }
-
-  /**
-   * Make a request to a servlet (a path) that's not a standard path.
-   *
-   * @param string $servlet
-   *   A path to be added to the base Solr path. e.g. 'extract/tika'
-   *
-   * @param array $params
-   *   Any request parameters when constructing the URL.
-   *
-   * @param array $options
-   *  @see drupal_http_request() $options.
-   *
-   * @return
-   *  response object
-   *
-   * @thows Exception
-   */
-  public function makeServletRequest($servlet, $params = array(), $options = array()) {
-    // Add default params.
-    $params += array(
-      'wt' => 'json',
-      'json.nl' => self::NAMED_LIST_FORMAT,
-    );
-
-    $url = $this->_constructUrl($servlet, $params);
-    $response = $this->_makeHttpRequest($url, $options);
-    return $this->checkResponse($response);
-  }
-
-  /**
-   * Central method for making a GET operation against this Solr Server
-   */
-  protected function _sendRawGet($url, $options = array()) {
-    $response = $this->_makeHttpRequest($url, $options);
-    return $this->checkResponse($response);
-  }
-
-  /**
-   * Central method for making a POST operation against this Solr Server
-   */
-  protected function _sendRawPost($url, $options = array()) {
-    $options['method'] = 'POST';
-    // Normally we use POST to send XML documents.
-    if (!isset($options['headers']['Content-Type'])) {
-      $options['headers']['Content-Type'] = 'text/xml; charset=UTF-8';
-    }
-    $response = $this->_makeHttpRequest($url, $options);
-    return $this->checkResponse($response);
-  }
-
-  /**
-   * Central method for making the actual http request to the Solr Server
-   *
-   * This is just a wrapper around drupal_http_request().
-   */
-  protected function _makeHttpRequest($url, array $options = array()) {
-    if (!isset($options['method']) || $options['method'] == 'GET' || $options['method'] == 'HEAD') {
-      // Make sure we are not sending a request body.
-      $options['data'] = NULL;
-    }
-
-    $result = drupal_http_request($url, $options);
-
-    if (!isset($result->code) || $result->code < 0) {
-      $result->code = 0;
-      $result->status_message = 'Request failed';
-      $result->protocol = 'HTTP/1.0';
-    }
-    // Additional information may be in the error property.
-    if (isset($result->error)) {
-      $result->status_message .= ': ' . check_plain($result->error);
-    }
-
-    if (!isset($result->data)) {
-      $result->data = '';
-      $result->response = NULL;
-    }
-    else {
-      $response = json_decode($result->data);
-      if (is_object($response)) {
-        foreach ($response as $key => $value) {
-          $result->$key = $value;
-        }
-      }
-    }
-    return $result;
-  }
-
-
-  /**
-   * Escape a value for special query characters such as ':', '(', ')', '*', '?', etc.
-   *
-   * NOTE: inside a phrase fewer characters need escaped, use {@link DrupalApacheSolrService::escapePhrase()} instead
-   *
-   * @param string $value
-   * @return string
-   */
-  static public function escape($value)
-  {
-    //list taken from http://lucene.apache.org/java/docs/queryparsersyntax.html#Escaping%20Special%20Characters
-    $pattern = '/(\+|-|&&|\|\||!|\(|\)|\{|}|\[|]|\^|"|~|\*|\?|:|\\\)/';
-    $replace = '\\\$1';
-
-    return preg_replace($pattern, $replace, $value);
-  }
-
-  /**
-   * Escape a value meant to be contained in a phrase for special query characters
-   *
-   * @param string $value
-   * @return string
-   */
-  static public function escapePhrase($value)
-  {
-    $pattern = '/("|\\\)/';
-    $replace = '\\\$1';
-
-    return preg_replace($pattern, $replace, $value);
-  }
-
-  /**
-   * Convenience function for creating phrase syntax from a value
-   *
-   * @param string $value
-   * @return string
-   */
-  static public function phrase($value)
-  {
-    return '"' . self::escapePhrase($value) . '"';
-  }
-
-  /**
-   * Return a valid http URL given this server's host, port and path and a provided servlet name
-   *
-   * @param $servlet
-   *  A string path to a Solr request handler.
-   * @param $params
-   * @param $parsed_url
-   *   A url to use instead of the stored one.
-   *
-   * @return string
-   */
-  protected function _constructUrl($servlet, $params = array(), $added_query_string = NULL) {
-    // PHP's built in http_build_query() doesn't give us the format Solr wants.
-    $query_string = $this->httpBuildQuery($params);
-
-    if ($query_string) {
-      $query_string = '?' . $query_string;
-      if ($added_query_string) {
-        $query_string = $query_string . '&' . $added_query_string;
-      }
-    }
-    elseif ($added_query_string) {
-      $query_string = '?' . $added_query_string;
-    }
-
-    $url = $this->parsed_url;
-    return $url['scheme'] . $url['user'] . $url['pass'] . $url['host'] . $url['port'] . $url['path'] . $servlet . $query_string;
-  }
-
-  /**
-   * Get the Solr url
-   *
-   * @return string
-   */
-  public function getUrl() {
-    return $this->_constructUrl('');
-  }
-
-  /**
-   * Set the Solr url.
-   *
-   * @param $url
-   *
-   * @return $this
-   */
-  public function setUrl($url) {
-    $parsed_url = parse_url($url);
-
-    if (!isset($parsed_url['scheme'])) {
-      $parsed_url['scheme'] = 'http';
-    }
-    $parsed_url['scheme'] .= '://';
-
-    if (!isset($parsed_url['user'])) {
-      $parsed_url['user'] = '';
-    }
-    else {
-      $parsed_url['host'] = '@' . $parsed_url['host'];
-    }
-    $parsed_url['pass'] = isset($parsed_url['pass']) ? ':' . $parsed_url['pass'] : '';
-    $parsed_url['port'] = isset($parsed_url['port']) ? ':' . $parsed_url['port'] : '';
-
-    if (isset($parsed_url['path'])) {
-      // Make sure the path has a single leading/trailing slash.
-      $parsed_url['path'] = '/' . ltrim($parsed_url['path'], '/');
-      $parsed_url['path'] = rtrim($parsed_url['path'], '/') . '/';
-    }
-    else {
-      $parsed_url['path'] = '/';
-    }
-    // For now we ignore query and fragment.
-    $this->parsed_url = $parsed_url;
-    // Force the update url to be rebuilt.
-    unset($this->update_url);
-    return $this;
-  }
-
-  /**
-   * Raw update Method. Takes a raw post body and sends it to the update service. Post body
-   * should be a complete and well formed xml document.
-   *
-   * @param string $rawPost
-   * @param float $timeout Maximum expected duration (in seconds)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function update($rawPost, $timeout = FALSE) {
-    // @todo: throw exception if updates are disabled.
-    if (empty($this->update_url)) {
-      // Store the URL in an instance variable since many updates may be sent
-      // via a single instance of this class.
-      $this->update_url = $this->_constructUrl(self::UPDATE_SERVLET, array('wt' => 'json'));
-    }
-    $options['data'] = $rawPost;
-    if ($timeout) {
-      $options['timeout'] = $timeout;
-    }
-    return $this->_sendRawPost($this->update_url, $options);
-  }
-
-  /**
-   * Add an array of Solr Documents to the index all at once
-   *
-   * @param array $documents Should be an array of ApacheSolrDocument instances
-   * @param boolean $allowDups
-   * @param boolean $overwritePending
-   * @param boolean $overwriteCommitted
-   *
-   * @return response objecte
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function addDocuments($documents, $overwrite = NULL, $commitWithin = NULL) {
-    $attr = '';
-
-    if (isset($overwrite)) {
-      $attr .= ' overwrite="' . empty($overwrite) ? 'false"' : 'true"';
-    }
-    if (isset($commitWithin)) {
-      $attr .= ' commitWithin="' . intval($commitWithin) . '"';
-    }
-
-    $rawPost = "<add{$attr}>";
-    foreach ($documents as $document) {
-      if (is_object($document) && ($document instanceof ApacheSolrDocument)) {
-        $rawPost .= ApacheSolrDocument::documentToXml($document);
-      }
-    }
-    $rawPost .= '</add>';
-
-    return $this->update($rawPost);
-  }
-
-  /**
-   * Send a commit command.  Will be synchronous unless both wait parameters are set to false.
-   *
-   * @param boolean $optimize Defaults to true
-   *   optimizes the index files. Only valid for solr versions <= 3
-   * @param boolean $waitFlush
-   *   block until index changes are flushed to disk. Only valid for solr versions <= 3
-   * @param boolean $waitSearcher
-   *   block until a new searcher is opened and registered as the main query searcher, making the changes visible.
-   * @param float $timeout
-   *   Maximum expected duration of the commit operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function commit($optimize = TRUE, $waitFlush = TRUE, $waitSearcher = TRUE, $timeout = 3600) {
-    $optimizeValue = $optimize ? 'true' : 'false';
-    $flushValue = $waitFlush ? 'true' : 'false';
-    $searcherValue = $waitSearcher ? 'true' : 'false';
-    $softCommit = $this->soft_commit ? 'true' : 'false';
-
-    $solr_version = $this->getSolrVersion();
-    if ($solr_version <= 3) {
-      $rawPost = '<commit waitSearcher="' . $searcherValue . '" waitFlush="' . $flushValue . '" optimize="' . $optimizeValue . '" />';
-    }
-    else {
-      $rawPost = '<commit waitSearcher="' . $searcherValue . '" softCommit="' . $softCommit . '" />';
-    }
-
-    $response = $this->update($rawPost, $timeout);
-    $this->_clearCache();
-    return $response;
-  }
-
-  /**
-   * Create a delete document based on document ID
-   *
-   * @param string $id Expected to be utf-8 encoded
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function deleteById($id, $timeout = 3600) {
-    return $this->deleteByMultipleIds(array($id), $timeout);
-  }
-
-  /**
-   * Create and post a delete document based on multiple document IDs.
-   *
-   * @param array $ids Expected to be utf-8 encoded strings
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function deleteByMultipleIds($ids, $timeout = 3600) {
-    $rawPost = '<delete>';
-
-    foreach ($ids as $id) {
-      $rawPost .= '<id>' . htmlspecialchars($id, ENT_NOQUOTES, 'UTF-8') . '</id>';
-    }
-    $rawPost .= '</delete>';
-
-    return $this->update($rawPost, $timeout);
-  }
-
-  /**
-   * Create a delete document based on a query and submit it
-   *
-   * @param string $rawQuery Expected to be utf-8 encoded
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   * @return stdClass response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function deleteByQuery($rawQuery, $timeout = 3600) {
-    $rawPost = '<delete><query>' . htmlspecialchars($rawQuery, ENT_NOQUOTES, 'UTF-8') . '</query></delete>';
-
-    return $this->update($rawPost, $timeout);
-  }
-
-  /**
-   * Send an optimize command.  Will be synchronous unless both wait parameters are set
-   * to false.
-   *
-   * @param boolean $waitFlush
-   *   block until index changes are flushed to disk  Removed in Solr 4.0
-   * @param boolean $waitSearcher
-   *   block until a new searcher is opened and registered as the main query searcher, making the changes visible.
-   * @param float $timeout
-   *   Maximum expected duration of the commit operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function optimize($waitFlush = TRUE, $waitSearcher = TRUE, $timeout = 3600) {
-    $flushValue = $waitFlush ? 'true' : 'false';
-    $searcherValue = $waitSearcher ? 'true' : 'false';
-    $softCommit = $this->soft_commit ? 'true' : 'false';
-
-    $solr_version = $this->getSolrVersion();
-    if ($solr_version <= 3) {
-      $rawPost = '<optimize waitSearcher="' . $searcherValue . '" waitFlush="' . $flushValue . '" />';
-    }
-    else {
-      $rawPost = '<optimize waitSearcher="' . $searcherValue . '" softCommit="' . $softCommit . '" />';
-    }
-
-    return $this->update($rawPost, $timeout);
-  }
-
-  /**
-   * Like PHP's built in http_build_query(), but uses rawurlencode() and no [] for repeated params.
-   */
-  protected function httpBuildQuery(array $query, $parent = '') {
-    $params = array();
-
-    foreach ($query as $key => $value) {
-      $key = ($parent ? $parent : rawurlencode($key));
-
-      // Recurse into children.
-      if (is_array($value)) {
-        $params[] = $this->httpBuildQuery($value, $key);
-      }
-      // If a query parameter value is NULL, only append its key.
-      elseif (!isset($value)) {
-        $params[] = $key;
-      }
-      else {
-        $params[] = $key . '=' . rawurlencode($value);
-      }
-    }
-
-    return implode('&', $params);
-  }
-
-  /**
-   * Simple Search interface
-   *
-   * @param string $query The raw query string
-   * @param array $params key / value pairs for other query parameters (see Solr documentation), use arrays for parameter keys used more than once (e.g. facet.field)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  public function search($query = '', array $params = array(), $method = 'GET') {
-    // Always use JSON. See http://code.google.com/p/solr-php-client/issues/detail?id=6#c1 for reasoning
-    $params['wt'] = 'json';
-    // Additional default params.
-    $params += array(
-      'json.nl' => self::NAMED_LIST_FORMAT,
-    );
-    if ($query) {
-      $params['q'] = $query;
-    }
-    // PHP's built in http_build_query() doesn't give us the format Solr wants.
-    $queryString = $this->httpBuildQuery($params);
-    // Check string length of the query string, change method to POST
-    $len = strlen($queryString);
-    // Fetch our threshold to find out when to flip to POST
-    $max_len = apachesolr_environment_variable_get($this->env_id, 'apachesolr_search_post_threshold', 3600);
-
-    // if longer than $max_len (default 3600) characters
-    // we should switch to POST (a typical server handles 4096 max).
-    // If this class is used independently (without environments), we switch automatically to POST at an
-    // limit of 1800 chars.
-    if (($len > 1800) && (empty($this->env_id) || ($len > $max_len))) {
-      $method = 'POST';
-    }
-
-    if ($method == 'GET') {
-      $searchUrl = $this->_constructUrl(self::SEARCH_SERVLET, array(), $queryString);
-      return $this->_sendRawGet($searchUrl);
-    }
-    else if ($method == 'POST') {
-      $searchUrl = $this->_constructUrl(self::SEARCH_SERVLET);
-      $options['data'] = $queryString;
-      $options['headers']['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';
-      return $this->_sendRawPost($searchUrl, $options);
-    }
-    else {
-      throw new Exception("Unsupported method '$method' for search(), use GET or POST");
-    }
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/LICENSE.txt b/profiles/wcm_base/modules/contrib/apachesolr/LICENSE.txt
deleted file mode 100644
index d159169d1050894d3ea3b98e1c965c4058208fe1..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/LICENSE.txt
+++ /dev/null
@@ -1,339 +0,0 @@
-                    GNU GENERAL PUBLIC LICENSE
-                       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-                            Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-                    GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-  2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections
-    1 and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable.  However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-  5. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded.  In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-                            NO WARRANTY
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-                     END OF TERMS AND CONDITIONS
-
-            How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License along
-    with this program; if not, write to the Free Software Foundation, Inc.,
-    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) year name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
-  `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
-  <signature of Ty Coon>, 1 April 1989
-  Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs.  If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/README.txt b/profiles/wcm_base/modules/contrib/apachesolr/README.txt
deleted file mode 100644
index 25287c9bc073bfd23a4507fe43e0319d522e28b5..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/README.txt
+++ /dev/null
@@ -1,203 +0,0 @@
-
-This module integrates Drupal with the Apache Solr search platform. Solr search
-can be used as a replacement for core content search and boasts both extra
-features and better performance. Among the extra features is the ability to have
-faceted search on facets ranging from content author to taxonomy to arbitrary
-Field API fields.
-
-The module comes with a schema.xml, solrconfig.xml, and protwords.txt file which
-must be used in your Solr installation.
-
-This module depends on the search framework in core.  When used in combination
-with core search module, Apache Solr is not the default search. Access it via a
-new tab on the default search page, called "Site".  You may configure it
-to be default at ?q=admin/config/search/settings
-
-Updating from 6.x
------------------
-
-IMPORTANT: there is no upgrade path from 6.x-1.x or 6.x-2.x. If you previously
-installed those modules you must disable and uninstall them prior to
-installing 7.x-1.x.
-
-You will have to install the new schema.xml and solrconfig.xml files, and restart
-the Solr server (or core) and delete your index and reindex all content.
-
-Installation
-------------
-
-Prerequisite: Java 5 or higher (a.k.a. 1.5.x).  PHP 5.2.4 or higher.
-
-Install the Apache Solr Drupal module as you would any Drupal module. Note
-that the Drupal 7.x-1.x branch does not require the SolrPhpClient to
-be installed. All necessary code is now included with this module.
-
-Before enabling the module, you must have a working Solr server, or be
-subscribed to a service like Acquia Search.
-
-The Debian/Ubuntu packages for Solr should NOT be used to install Solr.
-For example, do NOT install the solr or solr-jetty packages.
-
-Download the latest Solr 1.4.x or 3.x release (e.g. 1.4.1 or 3.6.1) from:
-http://www.apache.org/dyn/closer.cgi/lucene/solr/
-
-Apache Lucene 3.1, 3.2 or 3.3, have a possible index corruption bug on
-server crash or power loss (LUCENE-3418) and have bugs that interfere
-with the Drupal admin reports. Solr 3.4 has a problem with
-SortMissingLast so Solr 3.5.0 or later is strongly preferred.
-
-Unpack the Solr tarball somewhere not visible to the web (not in your
-webserver docroot and not inside of your Drupal directory).
-
-The Solr download comes with an example application that you can use for
-testing, development, and even for smaller production sites. This
-application is found at apache-solr-1.4.1/example.
-
-You must use 3 Solr configuration files that come with the Drupal
-module or the integration will not work correctly.
-
-For Solr 1.4 use the ones found in:
-solr-conf/solr-1.4/
-
-for Solr 3.5.0 or 3.6.1 use:
-solr-conf/solr-3.x/
-
-While the Solr 1.4 files will work for Solr 3.5+, they are not optimal
-and you will be missing important new features.
-
-For example, when deploying solr 1.4:
-
-Move apache-solr-1.4.1/example/solr/conf/schema.xml and rename it to
-something like schema.bak. Then move the solr-conf/solr-1.4/schema.xml
-that comes with this Drupal module to take its place.
-
-Similarly, move apache-solr-1.4.1/example/solr/conf/solrconfig.xml and rename
-it like solrconfig.bak. Then move the solr-conf/solr-1.4/solrconfig.xml
-that comes with this module to take its place.
-
-Finally, move apache-solr-1.4.1/example/solr/conf/protwords.txt and rename it
-protwords.bak. Then move the solr-conf/solr-1.4/protwords.txt that comes
-with this module to take its place.
-
-Make sure that the conf directory includes the following files - the Solr core
-may not load if you don't have at least an empty file present:
-solrconfig.xml
-schema.xml
-elevate.xml
-mapping-ISOLatin1Accent.txt
-protwords.txt
-stopwords.txt
-synonyms.txt
-
-Now start the solr application by opening a shell, changing directory to
-apache-solr-1.4.1/example, and executing the command java -jar start.jar
-
-Test that your solr server is now available by visiting
-http://localhost:8983/solr/admin/
-
-Now, you should enable the "Apache Solr framework" and "Apache Solr search"
-modules. Check that you can connect to Solr at ?q=admin/setting/apachesolr
-Now run cron on your Drupal site until your content is indexed. You
-can monitor the index at ?q=admin/settings/apachesolr/index
-
-The solrconfig.xml that comes with this modules defines auto-commit, so
-it may take a few minutes between running cron and when the new content
-is visible in search.
-
-To use facets you should download facetapi http://drupal.org/project/facetapi
-This module will allow you to define and set facets next to your search pages.
-Once this module is enabled, enable blocks for facets first at
-Administer > Site configuration > Apache Solr > Enabled filters
-then position them as you like at Administer > Site building > Blocks.
-
-Access Sub-module
-------------
-The included Apache Solr Access module integrates with the node access
-system using node access grants. It does not (and can not) work
-with modules using hook_node_access() to block viewing of nodes because
-it's impossible to apply those dynamic filters to as-yet-unknown search
-results to return the correct number per page.  This same restriction
-applies to any module that does content searching or listing (e.g. Views).
-
-Settings.php
-------------
-You can override environment settings using the following syntax in your
-settings.php
-
-$conf['apachesolr_environments']['my_env_id']['url'] = 'http://localhost:8983';
-
-Configuration variables
------------------------
-
-The module provides some (hidden) variables that can be used to tweak its
-behavior:
-
- - apachesolr_luke_limit: the limit (in terms of number of documents in the
-   index) above which the module will not retrieve the number of terms per field
-   when performing LUKE queries (for performance reasons).
-
- - apachesolr_tags_to_index: the list of HTML tags that the module will index
-   (see apachesolr_index_add_tags_to_document()).
-
- - apachesolr_exclude_nodeapi_types: an array of node types each of which is
-   an array of one or more module names, such as 'comment'.  Any type listed
-   will have any listed modules' hook_node_update_index() implementation skipped
-   when indexing. This can be useful for excluding comments or taxonomy links.
-
- - apachesolr_ping_timeout: the timeout (in seconds) after which the module will
-   consider the Apache Solr server unavailable.
-
- - apachesolr_optimize_interval: the interval (in seconds) between automatic
-   optimizations of the Apache Solr index. Set to 0 to disable.
-
- - apachesolr_cache_delay: the interval (in seconds) after an update after which
-   the module will requery the Apache Solr for the index structure. Set it to
-   your autocommit delay plus a few seconds.
-
- - apachesolr_query_class: the default query class to use.
-
- - apachesolr_index_comments_with_node: TRUE | FALSE. Whether to index comments
-   along with each node.
-
- - apachesolr_cron_mass_limit: update or delete at most this many documents in
-   each Solr request, such as when making {apachesolr_search_node} consistent
-   with {node}.
-
- - apachesolr_index_user: Define with which user you want the index process to
-   happen.
-
-Troubleshooting
----------------
-Problem:
-You use http basic auth to limit access to your Solr server.
-
-Solution:
-Set the Server URL to include the username and password like
-http://username:password@example.com:8080/solr
-
-Problem:
-Links to nodes appear in the search results with a different host name or
-subdomain than is preferred.  e.g. sometimes at http://example.com
-and sometimes at http://www.example.com
-
-Solution:
-Set $base_url in settings.php to insure that an identical absolute url is
-generated at all times when nodes are indexed.  Alternately, set up a re-direct
-in .htaccess to prevent site visitors from accessing the site via more than one
-site address.
-
-Problem:
-The 'Solr Index Queries' test fails with file permission errors.
-
-Solution:
-When running this test you should have your tomcat/jetty running as the same user
-as the user under which PHP runs (often the same as the webserver). This is
-important because of the on-the-fly folder creation within PHP.
-
-
-Themers
-----------------
-
-See inline docs in apachesolr_theme and apachesolr_search_theme functions
-within apachesolr.module and apachesolr_search.module.
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/Solr_Base_Query.php b/profiles/wcm_base/modules/contrib/apachesolr/Solr_Base_Query.php
deleted file mode 100644
index 7e8ee1c74a4bf0b2231bcd76e46a386ab8253d64..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/Solr_Base_Query.php
+++ /dev/null
@@ -1,672 +0,0 @@
-<?php
-/**
- * This class allows you to make operations on a query that will be sent to
- * Apache Solr. methods such as adding and removing sorts, remove and replace
- * parameters, adding and removing filters, getters and setters for various
- * parameters and more
- * @file
- *   Class that defines the base query for the Apache Solr Drupal module.
- */
-
-class SolrFilterSubQuery {
-
-  /**
-   * Static shared by all instances, used to increment ID numbers.
-   */
-  protected static $idCount = 0;
-
-  /**
-   * Each query/subquery will have a unique ID.
-   */
-  public $id;
-  public $operator;
-
-  /**
-   * A keyed array where the key is a position integer and the value
-   * is an array with #name and #value properties.  Each value is a
-   * used for filter queries, e.g. array('#name' => 'is_uid', '#value' => 0)
-   * for anonymous content.
-   */
-  protected $fields = array();
-
-  /**
-   * An array of subqueries.
-   */
-  protected $subqueries = array();
-
-  function __construct($operator = 'OR') {
-    $this->operator = $operator;
-    $this->id = ++SolrFilterSubQuery::$idCount;
-  }
-
-  function __clone() {
-    $this->id = ++SolrFilterSubQuery::$idCount;
-  }
-
-  public function getFilters($name = NULL) {
-    if (empty($name)) {
-      return $this->fields;
-    }
-    reset($this->fields);
-    $matches = array();
-    foreach ($this->fields as $filter) {
-      if ($filter['#name'] == $name) {
-        $matches[] = $filter;
-      }
-    }
-    return $matches;
-  }
-
-  public function hasFilter($name, $value, $exclude = FALSE) {
-    foreach ($this->fields as $pos => $values) {
-      if ($values['#name'] == $name && $values['#value'] == $value && $values['#exclude'] == $exclude) {
-        return TRUE;
-      }
-    }
-    return FALSE;
-  }
-
-  public function addFilter($name, $value, $exclude = FALSE, $local = '') {
-    // @todo - escape the value if it has spaces in it and is not a range query or parenthesized.
-    $filter = array(
-      '#exclude' => (bool) $exclude,
-      '#name' => trim($name),
-      '#value' => trim($value),
-      '#local' => trim($local),
-    );
-    $this->fields[] = $filter;
-    return $this;
-  }
-
-  public function removeFilter($name, $value = NULL, $exclude = FALSE) {
-    // Remove from the public list of filters.
-    $this->unsetFilter($this->fields, $name, $value, $exclude);
-    return $this;
-  }
-
-  protected function unsetFilter(&$fields, $name, $value, $exclude) {
-    if (!isset($value)) {
-      foreach ($fields as $pos => $values) {
-        if ($values['#name'] == $name) {
-          unset($fields[$pos]);
-        }
-      }
-    }
-    else {
-      foreach ($fields as $pos => $values) {
-        if ($values['#name'] == $name && $values['#value'] == $value && $values['#exclude'] == $exclude) {
-          unset($fields[$pos]);
-        }
-      }
-    }
-  }
-
-  public function getFilterSubQueries() {
-    return $this->subqueries;
-  }
-
-  public function addFilterSubQuery(SolrFilterSubQuery $query) {
-    $this->subqueries[$query->id] = $query;
-    return $this;
-  }
-
-  public function removeFilterSubQuery(SolrFilterSubQuery $query) {
-    unset($this->subqueries[$query->id]);
-    return $this;
-  }
-
-  public function removeFilterSubQueries() {
-    $this->subqueries = array();
-    return $this;
-  }
-
-  public function makeFilterQuery(array $filter) {
-    $prefix = empty($filter['#exclude']) ? '' : '-';
-    if ($filter['#local']) {
-      $prefix = '{!' . $filter['#local'] . '}' . $prefix;
-    }
-    // If the field value contains a colon or a space, wrap it in double quotes,
-    // unless it is a range query or is already wrapped in double quotes or
-    // parentheses.
-    if (preg_match('/[ :]/', $filter['#value']) && !preg_match('/^[\[\{]\S+ TO \S+[\]\}]$/', $filter['#value']) && !preg_match('/^["\(].*["\)]$/', $filter['#value'])) {
-      $filter['#value'] = '"' . $filter['#value'] . '"';
-    }
-    return $prefix . $filter['#name'] . ':' . $filter['#value'];
-  }
-
-  /**
-   * Make sure our query matches the pattern name:value or name:"value"
-   * Make sure that if we are ranges we use name:[ AND ]
-   * allowed inputs :
-   * a. bundle:article
-   * b. date:[1970-12-31T23:59:59Z TO NOW]
-   * Split the text in 4 different parts
-   * 1. name, eg.: bundle or date
-   * 2. The first opening bracket (or nothing), eg.: [
-   * 3. The value of the field, eg. article or 1970-12-31T23:59:59Z TO NOW
-   * 4. The last closing bracket, eg.: ]
-   * @param string $filter
-   *   The filter to validate
-   * @return boolean
-   */
-  public static function validFilterValue($filter) {
-    $name = NULL;
-    $value = NULL;
-    $matches = array();
-    $datefields = array();
-    $datefield_match = array();
-
-    if (preg_match('/(?P<name>[^:]+):(?P<value>.+)?$/', $filter, $matches)) {
-      foreach ($matches as $match_id => $match) {
-        switch($match_id) {
-          case 'name' :
-            $name = $match;
-            break;
-          case 'value' :
-            $value = $match;
-            break;
-        }
-      }
-
-      // For the name we allow any character that fits between the A-Z0-9 range and
-      // any alternative for this in other languages. No special characters allowed.
-      // Negative filters may have a leading "-".
-      if (!preg_match('/^-?[a-zA-Z0-9_\x7f-\xff]+$/', $name)) {
-        return FALSE;
-      }
-
-      // For the value we allow anything that is UTF8
-      if (!drupal_validate_utf8($value)) {
-        return FALSE;
-      }
-
-      // Check our bracket count. If it does not match it is also not valid
-      $valid_brackets = TRUE;
-      $brackets['opening']['{'] = substr_count($value, '{');
-      $brackets['closing']['}'] = substr_count($value, '}');
-
-      $valid_brackets = $valid_brackets && ($brackets['opening']['{'] == $brackets['closing']['}']);
-      $brackets['opening']['['] = substr_count($value, '[');
-      $brackets['closing'][']'] = substr_count($value, ']');
-      $valid_brackets = $valid_brackets && ($brackets['opening']['['] == $brackets['closing'][']']);
-      $brackets['opening']['('] = substr_count($value, '(');
-      $brackets['closing'][')'] = substr_count($value, ')');
-      $valid_brackets = $valid_brackets && ($brackets['opening']['('] == $brackets['closing'][')']);
-
-      if (!$valid_brackets) {
-        return FALSE;
-      }
-
-      // Check the date field inputs
-      if (preg_match('/\[(.+) TO (.+)\]$/', $value, $datefields)) {
-        // Only Allow a value in the form of
-        // http://lucene.apache.org/solr/api/org/apache/solr/schema/DateField.html
-        // http://lucene.apache.org/solr/api/org/apache/solr/util/DateMathParser.html
-        // http://wiki.apache.org/solr/SolrQuerySyntax
-        // 1976-03-06T23:59:59.999Z (valid)
-        // * (valid)
-        // 1995-12-31T23:59:59.999Z (valid)
-        // 2007-03-06T00:00:00Z (valid)
-        // NOW-1YEAR/DAY (valid)
-        // NOW/DAY+1DAY (valid)
-        // 1976-03-06T23:59:59.999Z (valid)
-        // 1976-03-06T23:59:59.999Z+1YEAR (valid)
-        // 1976-03-06T23:59:59.999Z/YEAR (valid)
-        // 1976-03-06T23:59:59.999Z (valid)
-        // 1976-03-06T23::59::59.999Z (invalid)
-        if (!empty($datefields[1]) && !empty($datefields[2])) {
-          // Do not check to full value, only the splitted ones
-          unset($datefields[0]);
-          // Check if both matches are valid datefields
-          foreach ($datefields as $datefield) {
-            if (!preg_match('/(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:[\d\.]{2,6}Z(\S)*)|(^([A-Z\*]+)(\A-Z0-9\+\-\/)*)/', $datefield, $datefield_match)) {
-              return FALSE;
-            }
-          }
-        }
-      }
-    }
-    return TRUE;
-  }
-
-  /**
-   * Builds a set of filter queries from $this->fields and all subqueries.
-   *
-   * Returns an array of strings that can be combined into
-   * a URL query parameter or passed to Solr as fq paramters.
-   */
-  protected function rebuildFq() {
-    $fq = array();
-    foreach ($this->fields as $pos => $field) {
-      $fq[] = $this->makeFilterQuery($field);
-    }
-    foreach ($this->subqueries as $subquery) {
-      $subfq = $subquery->rebuildFq();
-      if ($subfq) {
-        $operator = $subquery->operator;
-        $fq[] = "(" . implode(" $operator ", $subfq) . ")";
-      }
-    }
-    return $fq;
-  }
-
-}
-
-class SolrBaseQuery extends SolrFilterSubQuery implements DrupalSolrQueryInterface {
-
-  /**
-   * The parameters that get sent to Solr.
-   */
-  protected $params = array('start' => 0, 'rows' => 10, 'fq' => array());
-
-  /**
-   * The search base path.
-   */
-  protected $base_path;
-  protected $field_map = array();
-
-  /**
-   * DrupalApacheSolrService object
-   */
-  protected $solr;
-  // The array keys must always be real Solr index fields.
-  protected $available_sorts;
-
-  /**
-   * The query name is used to construct a searcher string. Mostly the
-   * environment id
-   */
-  protected $name;
-  protected $context = array();
-  // Makes sure we always have a valid sort.
-  protected $solrsort = array('#name' => 'score', '#direction' => 'desc');
-  // A flag to allow the search to be aborted.
-  public $abort_search = FALSE;
-
-  // A flag to check if need to retrieve another page of the result set
-  public $page = 0;
-
-  /**
-   * @param $name
-   *   The search name, used for finding the correct blocks and other config.
-   *   Typically "apachesolr".
-   *
-   * @param $solr
-   *   An instantiated DrupalApacheSolrService Object.
-   *   Can be instantiated from apachesolr_get_solr().
-   *
-   * @param $params
-   *   Array of params to initialize the object (typically 'q' and 'fq').
-   *
-   * @param $sortstring
-   *   Visible string telling solr how to sort - added to GET query params.
-   *
-   * @param $base_path
-   *   The search base path (without the keywords) for this query, without trailing slash.
-   */
-  function __construct($name, $solr, array $params = array(), $sortstring = '', $base_path = '', $context = array()) {
-    parent::__construct();
-    $this->name = $name;
-    $this->solr = $solr;
-    $this->addContext((array) $context);
-    $this->addParams((array) $params);
-    $this->available_sorts = $this->defaultSorts();
-    $this->sortstring = trim($sortstring);
-    $this->parseSortString();
-    $this->base_path = $base_path;
-  }
-
-  protected function defaultSorts() {
-    return array(
-      'score' => array('title' => t('Relevancy'), 'default' => 'desc'),
-      'sort_label' => array('title' => t('Title'), 'default' => 'asc'),
-      'bundle' => array('title' => t('Type'), 'default' => 'asc'),
-      'sort_name' => array('title' => t('Author'), 'default' => 'asc'),
-      'ds_created' => array('title' => t('Date'), 'default' => 'desc'),
-    );
-  }
-
-  /**
-   * Get query name.
-   */
-  public function getName() {
-    return $this->name;
-  }
-
-  /**
-   * Get query searcher name (for facetapi, views, pages, etc).
-   */
-  public function getSearcher() {
-    return $this->name . '@' . $this->solr->getId();
-  }
-
-  /**
-   * Get context values.
-   */
-  public function getContext() {
-    return $this->context;
-  }
-
-  /**
-   * Set context value.
-   */
-  public function addContext(array $context) {
-    foreach ($context as $k => $v) {
-      $this->context[$k] = $v;
-    }
-    // The env_id must match that of the actual $solr object
-    $this->context['env_id'] = $this->solr->getId();
-    return $this->context;
-  }
-
-  protected $single_value_params = array(
-    'q' => TRUE, // http://wiki.apache.org/solr/SearchHandler#q
-    'q.op' => TRUE, // http://wiki.apache.org/solr/SearchHandler#q.op
-    'q.alt' => TRUE, // http://wiki.apache.org/solr/SearchHandler#q
-    'df' => TRUE,
-    'qt' => TRUE,
-    'defType' => TRUE,
-    'timeAllowed' => TRUE,
-    'omitHeader' => TRUE,
-    'debugQuery' => TRUE,
-    'start' => TRUE,
-    'rows' => TRUE,
-    'stats' => TRUE,
-    'facet' => TRUE,
-    'facet.prefix' => TRUE,
-    'facet.limit' => TRUE,
-    'facet.offset' => TRUE,
-    'facet.mincount' => TRUE,
-    'facet.missing' => TRUE,
-    'facet.method' => TRUE,
-    'facet.enum.cache.minDf' => TRUE,
-    'facet.date.start' => TRUE,
-    'facet.date.end' => TRUE,
-    'facet.date.gap' => TRUE,
-    'facet.date.hardend' => TRUE,
-    'facet.date.other' => TRUE,
-    'facet.date.include' => TRUE,
-    'hl' => TRUE,
-    'hl.snippets' => TRUE,
-    'hl.fragsize' => TRUE,
-    'hl.mergeContiguous' => TRUE,
-    'hl.requireFieldMatch' => TRUE,
-    'hl.maxAnalyzedChars' => TRUE,
-    'hl.alternateField' => TRUE,
-    'hl.maxAlternateFieldLength' => TRUE,
-    'hl.formatter' => TRUE,
-    'hl.simple.pre/hl.simple.post' => TRUE,
-    'hl.fragmenter' => TRUE,
-    'hl.fragListBuilder' => TRUE,
-    'hl.fragmentsBuilder' => TRUE,
-    'hl.useFastVectorHighlighter' => TRUE,
-    'hl.usePhraseHighlighter' => TRUE,
-    'hl.highlightMultiTerm' => TRUE,
-    'hl.regex.slop' => TRUE,
-    'hl.regex.pattern' => TRUE,
-    'hl.regex.maxAnalyzedChars' => TRUE,
-    'mm' => TRUE,
-    'spellcheck' => TRUE,
-  );
-
-  public function getParam($name) {
-    if ($name == 'fq') {
-      return $this->rebuildFq();
-    }
-    $empty = isset($this->single_value_params[$name]) ? NULL : array();
-    return isset($this->params[$name]) ? $this->params[$name] : $empty;
-  }
-
-  public function getParams() {
-    $params = $this->params;
-    $params['fq'] = $this->rebuildFq();
-    return $params;
-  }
-
-  public function getSolrParams() {
-    $params = $this->getParams();
-    // For certain fields Solr prefers a comma separated list.
-    foreach (array('fl', 'hl.fl', 'sort', 'mlt.fl') as $name) {
-      if (isset($params[$name])) {
-        $params[$name] = implode(',', $params[$name]);
-      }
-    }
-    return $params;
-  }
-
-  protected function addFq($string, $index = NULL) {
-    $string = trim($string);
-    $local = '';
-    $exclude = FALSE;
-    $name = NULL;
-    $value = NULL;
-    $matches = array();
-
-    // Check if we are dealing with an exclude
-    if (preg_match('/^-(.*)/', $string, $matches)) {
-      $exclude = TRUE;
-      $string = $matches[1];
-    }
-
-    // If {!something} is found as first character then this is a local value
-    if (preg_match('/\{!([^}]+)\}(.*)/', $string, $matches)) {
-      $local = $matches[1];
-      $string = $matches[2];
-    }
-
-    // Anything that has a name and value
-    // check if we have a : in the string
-    if (strstr($string, ':')) {
-      list($name, $value) = explode(":", $string, 2);
-    }
-    else {
-      $value = $string;
-    }
-    $this->addFilter($name, $value, $exclude, $local);
-    return $this;
-  }
-
-  public function addParam($name, $value) {
-    if (isset($this->single_value_params[$name])) {
-      if (is_array($value)) {
-        $value = end($value);
-      }
-      $this->params[$name] = $this->normalizeParamValue($value);
-      return $this;
-    }
-    // We never actually populate $this->params['fq'].  Instead
-    // we manage everything via the filter methods.
-    if ($name == 'fq') {
-      if (is_array($value)) {
-        array_walk_recursive($value, array($this, 'addFq'));
-        return $this;
-      }
-      else {
-        return $this->addFq($value);
-      }
-    }
-
-    if (!isset($this->params[$name])) {
-      $this->params[$name] = array();
-    }
-
-    if (!is_array($value)) {
-      // Convert to array for array_map.
-      $param_values = array($value);
-    }
-    else {
-      // Convert to a numerically keyed array.
-      $param_values = array_values($value);
-    }
-    $this->params[$name] = array_merge($this->params[$name], array_map(array($this, 'normalizeParamValue'), $param_values));
-
-    return $this;
-  }
-
-  protected function normalizeParamValue($value) {
-    // Convert boolean to string.
-    if (is_bool($value)) {
-      return $value ? 'true' : 'false';
-    }
-    // Convert to trimmed string.
-    return trim($value);
-  }
-
-  public function addParams(Array $params) {
-    foreach ($params as $name => $value) {
-      $this->addParam($name, $value);
-    }
-    return $this;
-  }
-
-  public function removeParam($name) {
-    unset($this->params[$name]);
-    if ($name == 'fq') {
-      $this->fields = array();
-      $this->subqueries = array();
-    }
-    return $this;
-  }
-
-  public function replaceParam($name, $value) {
-    $this->removeParam($name);
-    return $this->addParam($name, $value);
-  }
-
-  /**
-   * Handles aliases for field to make nicer URLs.
-   *
-   * @param $field_map
-   *   An array keyed with real Solr index field names with the alias as value.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  public function addFieldAliases($field_map) {
-    $this->field_map = array_merge($this->field_map, $field_map);
-    // We have to re-parse the filters.
-    $this->parseSortString();
-    return $this;
-  }
-
-  public function getFieldAliases() {
-    return $this->field_map;
-  }
-
-  public function clearFieldAliases() {
-    $this->field_map = array();
-    // We have to re-parse the filters.
-    $this->parseSortString();
-    return $this;
-  }
-
-  protected function parseSortString() {
-    // Substitute any field aliases with real field names.
-    $sortstring = strtr($this->sortstring, $this->field_map);
-    // Score is a special case - it's the default sort for Solr.
-    if ('' == $sortstring || 'score desc' == $sortstring) {
-      $this->solrsort['#name'] = 'score';
-      $this->solrsort['#direction'] = 'desc';
-      unset($this->params['sort']);
-    }
-    else {
-      // Validate and set sort parameter
-      $fields = array_keys($this->available_sorts);
-      // Loop through available sorts and escape them, to allow for function sorts like geodist() in the preg_match() below
-      foreach ($fields as $key => $field) {
-        $fields[$key] = preg_quote($field);
-      }
-      // Implode the escaped available sorts together, then preg_match() against the sort string
-      $fields = implode('|', $fields);
-      if (preg_match('/^(?:(' . $fields . ') (asc|desc),?)+$/', $sortstring, $matches)) {
-        // We only use the last match.
-        $this->solrsort['#name'] = $matches[1];
-        $this->solrsort['#direction'] = $matches[2];
-        $this->params['sort'] = array($sortstring);
-      }
-      else {
-        return FALSE;
-      }
-    }
-  }
-
-  public function getAvailableSorts() {
-    return $this->available_sorts;
-  }
-
-  public function setAvailableSort($name, $sort) {
-    // We expect non-aliased sorts to be added.
-    $this->available_sorts[$name] = $sort;
-    // Re-parse the sortstring.
-    $this->parseSortString();
-    return $this;
-  }
-
-  public function setAvailableSorts($sorts) {
-    // We expect a complete array of valid sorts.
-    $this->available_sorts = $sorts;
-    $this->parseSortString();
-    return $this;
-  }
-
-  public function removeAvailableSort($name) {
-    unset($this->available_sorts[$name]);
-    // Re-parse the sortstring.
-    $this->parseSortString();
-    return $this;
-  }
-
-  public function getSolrsort() {
-    return $this->solrsort;
-  }
-
-  public function setSolrsort($name, $direction) {
-    $this->sortstring = trim($name) . ' ' . trim($direction);
-    $this->parseSortString();
-    return $this;
-  }
-
-  public function getPath($new_keywords = NULL) {
-    if (isset($new_keywords)) {
-      return $this->base_path . '/' . $new_keywords;
-    }
-    elseif ($this->getParam('q')) {
-      return $this->base_path . '/' . $this->getParam('q');
-    }
-    else {
-      // Return with empty query (the slash). The path for a facet
-      // becomes $this->base_path . '//facetinfo';
-      // We do this so we can have a consistent way of retrieving the query +
-      // additional parameters
-      return $this->base_path . '/';
-    }
-  }
-
-  public function getSolrsortUrlQuery() {
-    $queryvalues = array();
-    $solrsort = $this->solrsort;
-    if ($solrsort && ($solrsort['#name'] != 'score')) {
-      if (isset($this->field_map[$solrsort['#name']])) {
-        $solrsort['#name'] = $this->field_map[$solrsort['#name']];
-      }
-      $queryvalues['solrsort'] = $solrsort['#name'] . ' ' . $solrsort['#direction'];
-    }
-    else {
-      // Return to default relevancy sort.
-      unset($queryvalues['solrsort']);
-    }
-    return $queryvalues;
-  }
-
-  public function search($keys = NULL) {
-    if ($this->abort_search) {
-      return NULL;
-    }
-    return $this->solr->search($keys, $this->getSolrParams());
-  }
-
-  public function solr($method) {
-    return $this->solr->$method();
-  }
-
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.admin.inc b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.admin.inc
deleted file mode 100644
index f84d5035e0ed864aa0f2d62b49b26aafff4a7e7b..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.admin.inc
+++ /dev/null
@@ -1,1373 +0,0 @@
-<?php
-
-/**
- * @file
- *   Administrative pages for the Apache Solr framework.
- */
-
-/**
- * Form to delete a search environment
- *
- * @param array $form
- * @param array $form_state
- * @param array $environment
- *
- * @return array output of confirm_form()
- */
-function apachesolr_environment_delete_form(array $form, array &$form_state, array $environment) {
-  $form['env_id'] = array(
-    '#type' => 'value',
-    '#value' => $environment['env_id'],
-  );
-  if (isset($environment['export_type']) && $environment['export_type'] == 3) {
-    $verb = t('Revert');
-  }
-  else {
-    $verb = t('Delete');
-  }
-  return confirm_form(
-    $form,
-    t('Are you sure you want to !verb search environment %name?', array('%name' => $environment['name'], '!verb' => strtolower($verb))),
-    'admin/config/search/apachesolr',
-    t('This action cannot be undone.'),
-    $verb,
-    t('Cancel')
-  );
-}
-
-/**
- * Submit handler for the delete form
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_environment_delete_form_submit(array $form, array &$form_state) {
-  if (apachesolr_environment_delete($form_state['values']['env_id'])) {
-    drupal_set_message(t('The search environment was deleted'));
-  }
-  $form_state['redirect'] = 'admin/config/search/apachesolr/settings';
-}
-
-function apachesolr_environment_edit_delete_submit($form, &$form_state) {
-  $form_state['redirect'] = 'admin/config/search/apachesolr/settings/' . $form_state['values']['env_id'] . '/delete';
-
-  // Regardlessly of the destination parameter we want to go to another page
-  unset($_GET['destination']);
-  drupal_static_reset('drupal_get_destination');
-  drupal_get_destination();
-}
-
-/**
- * Settings page for a specific environment (or default one if not provided)
- *
- * @param array|bool $environment
- *
- * @return array Render array for a settings page
- */
-function apachesolr_environment_settings_page(array $environment = array()) {
-  if (empty($environment)) {
-    $env_id = apachesolr_default_environment();
-    $environment = apachesolr_environment_load($env_id);
-  }
-  $env_id = $environment['env_id'];
-
- // Initializes output with information about which environment's setting we are
-  // editing, as it is otherwise not transparent to the end user.
-  $output = array(
-    'apachesolr_environment' => array(
-      '#theme' => 'apachesolr_settings_title',
-      '#env_id' => $env_id,
-    ),
-  );
-  $output['form'] = drupal_get_form('apachesolr_environment_edit_form', $environment);
-  return $output;
-}
-
-/**
- * Form to clone a certain environment
- *
- * @param array $form
- * @param array $form_state
- * @param array $environment
- *
- * @return array output of confirm_form()
- */
-function apachesolr_environment_clone_form(array $form, array &$form_state, array $environment) {
-  $form['env_id'] = array(
-    '#type' => 'value',
-    '#value' => $environment['env_id'],
-  );
-  return confirm_form(
-    $form,
-    t('Are you sure you want to clone search environment %name?', array('%name' => $environment['name'])),
-    'admin/config/search/apachesolr',
-    '',
-    t('Clone'),
-    t('Cancel')
-  );
-}
-
-/**
- * Submit handler for the clone form
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_environment_clone_form_submit(array $form, array &$form_state) {
-  if (apachesolr_environment_clone($form_state['values']['env_id'])) {
-    drupal_set_message(t('The search environment was cloned'));
-  }
-  $form_state['redirect'] = 'admin/config/search/apachesolr/settings';
-}
-
-/**
- * Submit handler for the confirmation page of cloning an environment
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_environment_clone_submit(array $form, array &$form_state) {
-  $form_state['redirect'] = 'admin/config/search/apachesolr/settings/' . $form_state['values']['env_id'] . '/clone';
-}
-
-/**
- * Form builder for adding/editing a Solr environment used as a menu callback.
- */
-function apachesolr_environment_edit_form(array $form, array &$form_state, array $environment = array()) {
-  if (empty($environment)) {
-    $environment = array();
-  }
-  $environment += array('env_id' => '', 'name' => '', 'url' => '', 'service_class' => '', 'conf' => array());
-
-  $form['#environment'] = $environment;
-  $form['url'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Solr server URL'),
-    '#default_value' => $environment['url'],
-    '#description' => t('Example: http://localhost:8983/solr'),
-    '#required' => TRUE,
-  );
-  $is_default = $environment['env_id'] == apachesolr_default_environment();
-  $form['make_default'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Make this Solr search environment the default'),
-    '#default_value' => $is_default,
-    '#disabled' => $is_default,
-  );
-  $form['name'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Description'),
-    '#default_value' => $environment['name'],
-    '#required' => TRUE,
-  );
-  $form['env_id'] = array(
-    '#type' => 'machine_name',
-    '#title' => t('Environment id'),
-    '#machine_name' => array(
-      'exists' => 'apachesolr_environment_load',
-    ),
-    '#default_value' => $environment['env_id'],
-    '#disabled' => !empty($environment['env_id']), // Cannot change it once set.
-    '#description' => t('Unique, machine-readable identifier for this Solr environment.'),
-    '#required' => TRUE,
-  );
-  $form['service_class'] = array(
-    '#type' => 'value',
-    '#value' => $environment['service_class'],
-  );
-  $form['conf'] = array(
-    '#tree' => TRUE,
-  );
-  $form['conf']['apachesolr_read_only'] = array(
-    '#type' => 'radios',
-    '#title' => t('Index write access'),
-    '#default_value' => isset($environment['conf']['apachesolr_read_only']) ? $environment['conf']['apachesolr_read_only'] : APACHESOLR_READ_WRITE,
-    '#options' => array(APACHESOLR_READ_WRITE => t('Read and write (normal)'), APACHESOLR_READ_ONLY => t('Read only')),
-    '#description' => t('<em>Read only</em> stops this site from sending updates to this search environment. Useful for development sites.'),
-  );
-  $form['conf']['apachesolr_direct_commit'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Commit changes after the index process has submitted them'),
-    '#description' => t('Commits the updates to solr. Uses soft commits where possible'),
-    '#default_value' => isset($environment['conf']['apachesolr_direct_commit']) ? $environment['conf']['apachesolr_direct_commit'] : false,
-  );
-  $form['conf']['apachesolr_soft_commit'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Commit changes to memory.'),
-    '#description' => t(' Reduces the load on your disk. Also known as Soft Commits, recommended for Solr 4.'),
-    '#default_value' => isset($environment['conf']['apachesolr_soft_commit']) ? $environment['conf']['apachesolr_soft_commit'] : false,
-  );
-  $form['actions'] = array(
-    '#type' => 'actions',
-  );
-  $form['actions']['save'] = array(
-    '#type' => 'submit',
-    '#validate' => array('apachesolr_environment_edit_validate'),
-    '#submit' => array('apachesolr_environment_edit_submit'),
-    '#value' => t('Save'),
-  );
-  $form['actions']['save_edit'] = array(
-    '#type' => 'submit',
-    '#validate' => array('apachesolr_environment_edit_validate'),
-    '#submit' => array('apachesolr_environment_edit_submit'),
-    '#value' => t('Save and edit'),
-  );
-  $form['actions']['test'] = array(
-    '#type' => 'submit',
-    '#validate' => array('apachesolr_environment_edit_validate'),
-    '#submit' => array('apachesolr_environment_edit_test_submit'),
-    '#value' => t('Test connection'),
-  );
-  if (!empty($environment['env_id']) && !$is_default) {
-    $form['actions']['delete'] = array(
-      '#type' => 'submit',
-      '#submit' => array('apachesolr_environment_edit_delete_submit'),
-      '#value' => t('Delete'),
-    );
-  }
-
-  // Ensures destination is an internal URL, builds "cancel" link.
-  if (isset($_GET['destination']) && !url_is_external($_GET['destination'])) {
-    $destination = $_GET['destination'];
-  }
-  else {
-    $destination = 'admin/config/search/apachesolr/settings';
-  }
-  $form['actions']['cancel'] = array(
-    '#type' => 'link',
-    '#title' => t('Cancel'),
-    '#href' => $destination,
-  );
-
-  return $form;
-}
-
-/**
- * Submit handler for the test button in the environment edit page
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_environment_edit_test_submit(array $form, array &$form_state) {
-  $ping = apachesolr_server_status($form_state['values']['url'], $form_state['values']['service_class']);
-  if ($ping) {
-    drupal_set_message(t('Your site has contacted the Apache Solr server.'));
-  }
-  else {
-    drupal_set_message(t('Your site was unable to contact the Apache Solr server.'), 'error');
-  }
-  $form_state['rebuild'] = TRUE;
-}
-
-/**
- * Validate handler for the environment edit page
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_environment_edit_validate(array $form, array &$form_state) {
-  $parts = parse_url($form_state['values']['url']);
-  foreach (array('scheme', 'host', 'path') as $key) {
-    if (empty($parts[$key])) {
-      form_set_error('url', t('The Solr server URL needs to include a !part', array('!part' => $key)));
-    }
-  }
-  if (isset($parts['port'])) {
-    // parse_url() should always give an integer for port. Since drupal_http_request()
-    // also uses parse_url(), we don't need to validate anything except the range.
-    $pattern = empty($parts['user']) ? '@://[^:]+:([^/]+)@' : '#://[^@]+@[^:]+:([^/]+)#';
-    preg_match($pattern, $form_state['values']['url'], $m);
-    if (empty($m[1]) || !ctype_digit($m[1]) || $m[1] < 1 || $m[1] > 65535) {
-      form_set_error('port', t('The port has to be an integer between 1 and 65535.'));
-    }
-    else {
-      // Normalize the url by removing extra slashes and whitespace.
-      $form_state['values']['url'] = trim($form_state['values']['url'], "/ \t\r\n\0\x0B");
-    }
-  }
-}
-
-/**
- * Submit handler for the environment  edit page
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_environment_edit_submit(array $form, array &$form_state) {
-  apachesolr_environment_save($form_state['values']);
-  if (!empty($form_state['values']['make_default'])) {
-    apachesolr_set_default_environment($form_state['values']['env_id']);
-  }
-  cache_clear_all('apachesolr:environments', 'cache_apachesolr');
-  drupal_set_message(t('The %name search environment has been saved.', array('%name' => $form_state['values']['name'])));
-  if ($form_state['values']['op'] == t('Save')) {
-    $form_state['redirect'] = 'admin/config/search/apachesolr/settings';
-  }
-  else {
-    $form_state['redirect'] = current_path();
-  }
-  // Regardlessly of the destination parameter we want to go to another page
-  unset($_GET['destination']);
-  drupal_static_reset('drupal_get_destination');
-  drupal_get_destination();
-}
-
-/**
- * Check to see if the facetapi module is installed, and if not put up
- * a message.
- *
- * Only call this function if the user is already in a position for this to
- * be useful.
- */
-function apachesolr_check_facetapi() {
-  if (!module_exists('facetapi')) {
-    $filename = db_query_range("SELECT filename FROM {system} WHERE type = 'module' AND name = 'facetapi'", 0, 1)
-      ->fetchField();
-    if ($filename && file_exists($filename)) {
-      drupal_set_message(t('If you <a href="@modules">enable the facetapi module</a>, Apache Solr Search will provide you with configurable facets.', array('@modules' => url('admin/modules'))));
-    }
-    else {
-      drupal_set_message(t('If you install the facetapi module from !href, Apache Solr Search will provide you with configurable facets.', array('!href' => url('http://drupal.org/project/facetapi'))));
-    }
-  }
-}
-
-/**
- * Form builder for general settings used as a menu callback.
- *
- * @param array $form
- * @param array $form_state
- *
- * @return array Output of the system_settings_form()
- */
-function apachesolr_settings(array $form, array &$form_state) {
-  $form = array();
-  $rows = array();
-
-  // Environment settings
-  $id = apachesolr_default_environment();
-  $environments = apachesolr_load_all_environments();
-  $default_environment = apachesolr_default_environment();
-  apachesolr_check_facetapi();
-
-  // Reserve a row for the default one
-  $rows[$default_environment] = array();
-
-  foreach ($environments as $environment_id => $data) {
-    // Define all the Operations
-    $confs = array();
-    $ops = array();
-    // Whenever facetapi is enabled we also enable our operation link
-    if (module_exists('facetapi')) {
-      $confs['facets'] = array(
-        'class' => 'operation',
-        'data' => l(t('Facets'),
-          'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/facets',
-          array('query' => array('destination' => current_path()))
-        ),
-      );
-    }
-    // These are our result and bias settings
-    if (module_exists('apachesolr_search')) {
-      $confs['result_bias'] = array(
-        'class' => 'operation',
-        'data' => l(t('Bias'),
-          'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/bias',
-          array('query' => array('destination' => current_path()))
-        ),
-      );
-    }
-    $confs['index'] = array(
-      'class' => 'operation',
-      'data' => l(t('Index'),
-        'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/index'
-      ),
-    );
-    $ops['edit'] = array(
-      'class' => 'operation',
-      'data' => l(t('Edit'),
-        'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/edit',
-        array('query' => array('destination' => current_path()))
-      ),
-    );
-
-    $ops['clone'] = array(
-      'class' => 'operation',
-      'data' => l(t('Clone'),
-        'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/clone',
-        array('query' => array('destination' => $_GET['q']))
-      ),
-    );
-    $env_name = l($data['name'], 'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/edit', array('query' => array('destination' => $_GET['q'])));
-
-    // Is this row our default environment?
-    if ($environment_id == $default_environment) {
-      $env_name = t('!environment <em>(Default)</em>', array('!environment' => $env_name));
-      $env_class_row = 'default-environment';
-    }
-    else {
-      $env_class_row = '';
-    }
-    // For every non-default we add a delete link
-    // Allow to revert a search environment or to delete it
-    $delete_value = '';
-    if (!isset($data['in_code_only'])) {
-      if ((isset($data['type']) && $data['type'] == 'Overridden')) {
-        $delete_value = array(
-          'class' => 'operation',
-          'data' => l(t('Revert'), 'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/delete'),
-        );
-      }
-      // don't allow the deletion of the default environment
-      elseif ($environment_id != $default_environment) {
-        $delete_value = array(
-          'class' => 'operation',
-          'data' => l(t('Delete'), 'admin/config/search/apachesolr/settings/' . $data['env_id'] . '/delete'),
-        );
-      }
-    }
-    $ops['delete'] = $delete_value;
-
-    // When we are receiving a http POST (so the page does not show) we do not
-    // want to check the statusses of any environment
-    $class = '';
-    if (empty($form_state['input'])) {
-      $class = apachesolr_server_status($data['url'], $data['service_class']) ? 'ok' : 'error';
-    }
-
-    $headers = array(
-      array('data' => t('Name'), 'colspan' => 2),
-      t('URL'),
-      array('data' => t('Configuration'), 'colspan' => count($confs)),
-      array('data' => t('Operations'), 'colspan' => count($ops)),
-    );
-
-    $rows[$environment_id] = array('data' =>
-      array(
-        // Cells
-        array(
-          'class' => 'status-icon',
-          'data' => '<div title="' . $class . '"><span class="element-invisible">' . $class . '</span></div>',
-        ),
-        array(
-          'class' => $env_class_row,
-          'data' => $env_name,
-        ),
-        check_plain($data['url']),
-      ),
-      'class' => array(drupal_html_class($class)),
-    );
-    // Add the links to the page
-    $rows[$environment_id]['data'] = array_merge($rows[$environment_id]['data'], $confs);
-    $rows[$environment_id]['data'] = array_merge($rows[$environment_id]['data'], $ops);
-  }
-
-  $form['apachesolr_host_settings']['actions'] = array(
-    '#markup' => '<ul class="action-links">' . drupal_render($actions) . '</ul>',
-  );
-  $form['apachesolr_host_settings']['table'] = array(
-    '#theme' => 'table',
-    '#header' => $headers,
-    '#rows' => array_values($rows),
-    '#attributes' => array('class' => array('admin-apachesolr')),
-  );
-
-  $form['advanced'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Advanced configuration'),
-    '#collapsed' => TRUE,
-    '#collapsible' => TRUE,
-  );
-  $form['advanced']['apachesolr_set_nodeapi_messages'] = array(
-    '#type' => 'radios',
-    '#title' => t('Extra help messages for administrators'),
-    '#description' => t('Adds notices to a page whenever Drupal changed content that needs reindexing'),
-    '#default_value' => variable_get('apachesolr_set_nodeapi_messages', 1),
-    '#options' => array(0 => t('Disabled'), 1 => t('Enabled')),
-  );
-
-  // Number of Items to index
-  $numbers = drupal_map_assoc(array(1, 5, 10, 20, 50, 100, 200));
-  $default_cron_limit = variable_get('apachesolr_cron_limit', 50);
-
-  // apachesolr_cron_limit may be overridden in settings.php. If its current
-  // value is not among the default set of options, add it.
-  if (!isset($numbers[$default_cron_limit])) {
-    $numbers[$default_cron_limit] = $default_cron_limit;
-  }
-  $form['advanced']['apachesolr_cron_limit'] = array(
-    '#type' => 'select',
-    '#title' => t('Number of items to index per cron run'),
-    '#default_value' => $default_cron_limit,
-    '#options' => $numbers,
-    '#description' => t('Reduce the number of items to prevent timeouts and memory errors while indexing.', array('@cron' => url('admin/reports/status')))
-  );
-
-  $options = array('apachesolr:show_error' => t('Show error message'));
-  $system_info = system_get_info('module');
-  if (module_exists('search')) {
-    foreach (search_get_info() as $module => $search_info) {
-      // Don't allow apachesolr to return results on failure of apachesolr.
-      if ($module == 'apachesolr_search') {
-        continue;
-      }
-      $options[$module] = t('Show @name search results', array('@name' => $system_info[$module]['name']));
-    }
-  }
-
-  $options['apachesolr:show_no_results'] = t('Show no results');
-  $form['advanced']['apachesolr_failure'] = array(
-    '#type' => 'select',
-    '#title' => t('On failure'),
-    '#options' => $options,
-    '#default_value' => variable_get('apachesolr_failure', 'apachesolr:show_error'),
-  );
-
-  $form['advanced']['apachesolr_watchdog_successes'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Log successful Apache Solr Search actions'),
-    '#description' => t('Watchdog will log successful adds and indexes.'),
-    '#default_value' => variable_get('apachesolr_watchdog_successes', TRUE),
-  );
-
-  return system_settings_form($form);
-}
-
-/**
- * Gets information about the fields already in solr index.
- *
- * @param array $environment
- *   The environment for which we need to ask the status from
- *
- * @return array page render array
- */
-function apachesolr_status_page($environment = array()) {
-  if (empty($environment)) {
-    $env_id = apachesolr_default_environment();
-    $environment = apachesolr_environment_load($env_id);
-  }
-  else {
-    $env_id = $environment['env_id'];
-  }
-
-  // Check for availability
-  if (!apachesolr_server_status($environment['url'], $environment['service_class'])) {
-    drupal_set_message(t('The server seems to be unavailable. Please verify the server settings at the <a href="!settings_page">settings page</a>', array('!settings_page' => url("admin/config/search/apachesolr/settings/{$environment['env_id']}/edit", array('query' =>  drupal_get_destination())))), 'warning');
-    return '';
-  }
-
-  try {
-    $solr = apachesolr_get_solr($environment["env_id"]);
-    $solr->clearCache();
-    $data = $solr->getLuke();
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    drupal_set_message(nl2br(check_plain($e->getMessage())), "warning");
-    $data = new stdClass;
-    $data->fields = array();
-  }
-
-  $messages = array();
-  if (isset($data->index->numDocs)) {
-    try {
-      // Collect the stats
-      $stats_summary = $solr->getStatsSummary();
-      module_load_include('inc', 'apachesolr', 'apachesolr.index');
-      $status = apachesolr_index_status($environment["env_id"]);
-      // We need a schema version greater than beta3. This is mostly to catch
-      // people using the Drupal 6 schema.
-      if (preg_match('/^drupal-[13]/', $stats_summary['@schema_version'])) {
-        $minimum = 'drupal-3.0-beta4';
-        if (version_compare($stats_summary['@schema_version'], $minimum, '<')) {
-          drupal_set_message(t('Your schema.xml version is too old. You must update it to at least %minimum and re-index your content.', array('%minimum' => $minimum)), 'error');
-        }
-      }
-      $pending_msg = $stats_summary['@pending_docs'] ? t('(@pending_docs sent but not yet processed)', $stats_summary) : '';
-      $index_msg = $stats_summary['@index_size'] ? t('(@index_size on disk)', $stats_summary) : '';
-      $indexed_message = t('@num Items !pending !index_msg', array(
-        '@num' => $data->index->numDocs,
-        '!pending' => $pending_msg,
-        '!index_msg' => $index_msg,
-      ));
-      $messages[] = array(t('Indexed'), $indexed_message);
-
-      $remaining_message = t('@items (@percentage% has been sent to the server)', array(
-          '@items' => format_plural($status['remaining'], t('1 item'), t('@count items')),
-          '@percentage' => ((int)min(100, 100 * ($status['total'] - $status['remaining']) / max(1, $status['total']))),
-        )
-      );
-      $messages[] = array(t('Remaining'), $remaining_message);
-
-      $messages[] = array(t('Schema'), t('@schema_version', $stats_summary));
-      if (!empty($stats_summary['@core_name'])) {
-        $messages[] = array(t('Solr Core Name'), t('@core_name', $stats_summary));
-      }
-      $messages[] = array(t('Delay'), t('@autocommit_time before updates are processed.', $stats_summary));
-      $messages[] = array(t('Pending Deletions'), t('@deletes_total', $stats_summary));
-    }
-    catch (Exception $e) {
-      watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    }
-  }
-  if (empty($messages)) {
-    $messages[] = array(t('Error'), t('No data was returned from the server. Check your log messages.'));
-  }
-  // Initializes output with information about which server's setting we are
-  // editing, as it is otherwise not transparent to the end user.
-  $output['apachesolr_index_action_status'] = array(
-    '#prefix' => '<h3>' . t('@environment: Search Index Content', array('@environment' => $environment['name'])) . '</h3>',
-    '#theme' => 'table',
-    '#header' => array(t('Type'), t('Value')),
-    '#rows' => $messages,
-  );
-
-  $output['viewmore'] = array(
-    '#markup' => l(t('View more details on the search index contents'), 'admin/reports/apachesolr'),
-  );
-
-  $write_status = apachesolr_environment_variable_get($env_id, 'apachesolr_read_only', APACHESOLR_READ_WRITE);
-  if ($write_status == APACHESOLR_READ_WRITE) {
-     $output['index_action_form'] = drupal_get_form('apachesolr_index_action_form', $env_id);
-     $output['index_config_form'] = drupal_get_form('apachesolr_index_config_form', $env_id);
-  }
-  else {
-    drupal_set_message(t('Options for deleting and re-indexing are not available because the index is read-only. This can be changed on the <a href="!settings_page">settings page</a>', array('!settings_page' => url('admin/config/search/apachesolr/settings/' . $env_id . '/edit', array('query' =>  drupal_get_destination())))), 'warning');
-  }
-
-  return $output;
-}
-
-/**
- * Get the report, eg.: some statistics and useful data from the Apache Solr index
- *
- * @param array $environment
- *
- * @return array page render array
- */
-function apachesolr_index_report(array $environment = array()) {
-  if (empty($environment)) {
-    $env_id = apachesolr_default_environment();
-    drupal_goto('admin/reports/apachesolr/' . $env_id);
-  }
-  $environments = apachesolr_load_all_environments();
-  $environments_list = array();
-  foreach ($environments as $env) {
-    $var_status = array('!name' =>$env['name']);
-    $environments_list[] = l(t('Statistics for !name', $var_status), 'admin/reports/apachesolr/' . $env['env_id']);
-  }
-  $output['environments_list'] = array(
-    '#theme' => 'item_list',
-    '#items' => $environments_list,
-  );
-
-  try {
-    $solr = apachesolr_get_solr($environment['env_id']);
-    $solr->clearCache();
-    $data = $solr->getLuke();
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    drupal_set_message(nl2br(check_plain($e->getMessage())), "warning");
-    return $output;
-  }
-
-  $messages = array();
-  $messages[] = array(t('Number of documents in index'), $data->index->numDocs);
-
-  $limit = variable_get('apachesolr_luke_limit', 20000);
-  if (isset($data->index->numDocs) && $data->index->numDocs > $limit) {
-    $messages[] = array(t('Limit'), t('You have more than @limit documents, so term frequencies are being omitted for performance reasons.', array('@limit' => $limit)));
-    $not_found = t('<em>Omitted</em>');
-  }
-  elseif (isset($data->index->numDocs)) {
-    $not_found = t('Not indexed');
-    try {
-      $solr = apachesolr_get_solr($environment['env_id']);
-      // Note: we use 2 since 1 fails on Ubuntu Hardy.
-      $data = $solr->getLuke(2);
-      if (isset($data->index->numTerms)) {
-        $messages[] = array(t('# of terms in index'), $data->index->numTerms);
-      }
-    }
-    catch (Exception $e) {
-      watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-      $data->fields = array();
-    }
-  }
-  // Initializes output with information about which server's setting we are
-  // editing, as it is otherwise not transparent to the end user.
-  $fields = (array)$data->fields;
-  if ($fields) {
-    $messages[] = array(t('# of fields in index'), count($fields));
-  }
-
-  // Output the messages we have for this page
-  $output['apachesolr_index_report'] = array(
-    '#theme' => 'table',
-    '#header' => array('type', 'value'),
-    '#rows' => $messages,
-  );
-
-  if ($fields) {
-    // Initializes table header.
-    $header = array(
-      'name' => t('Field name'),
-      'type' => t('Index type'),
-      'terms' => t('Distinct terms'),
-    );
-
-    // Builds table rows.
-    $rows = array();
-    foreach ($fields as $name => $field) {
-      // TODO: try to map the name to something more meaningful.
-      $rows[$name] = array(
-        'name' => $name,
-        'type' => $field->type,
-        'terms' => isset($field->distinct) ? $field->distinct : $not_found
-      );
-    }
-    ksort($rows);
-    // Output the fields we found for this environment
-    $output['field_table'] = array(
-      '#theme' => 'table',
-      '#header' => $header,
-      '#rows' => $rows,
-    );
-  }
-  else {
-    $output['field_table'] = array('#markup' => t('No data on indexed fields.'));
-  }
-  return $output;
-}
-
-/**
- * Page callback to show available conf files.
- *
- * @param array $environment
- *
- * @return string
- *   A non-render array but plain theme output for the config files overview. Could be done better probably
- */
-function apachesolr_config_files_overview(array $environment = array()) {
-  if (empty($environment)) {
-    $env_id = apachesolr_default_environment();
-  }
-  else {
-    $env_id = $environment['env_id'];
-  }
-
-  $xml = NULL;
-  try {
-    $solr = apachesolr_get_solr($env_id);
-    $response = $solr->makeServletRequest('admin/file', array('wt' => 'xml'));
-    $xml = simplexml_load_string($response->data);
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    drupal_set_message(nl2br(check_plain($e->getMessage())), "warning");
-  }
-
-  if ($xml) {
-    // Retrieve our items from the xml using xpath
-    $items = $xml->xpath('//lst[@name="files"]/lst');
-
-    // Add all the data of the file in a files array
-    $files = array();
-    foreach ($items as $item_id => $item) {
-      // Do not list directories. Always a bool
-      if (isset($item->bool)) {
-        continue;
-      }
-      // Get data from the files.
-      $name = ((string)$item->attributes()) ? (string)$item->attributes() : t('No name found');
-      $files[$item_id]['name'] = l($name, 'admin/reports/apachesolr/' . $env_id . '/conf/' . $name);
-
-      // Retrieve the date attribute
-      if (isset($item->date)) {
-        $modified = ((string)$item->date->attributes() == 'modified') ? (string) $item->date : t('No date found');
-        $files[$item_id]['modified'] = format_date(strtotime($modified));
-      }
-
-      // Retrieve the size attribute
-      if (isset($item->long)) {
-        $size = ((string)$item->long->attributes() == 'size') ? (string) $item->long : t('No size found');
-        $files[$item_id]['size'] = t('Size (bytes): @bytes', array('@bytes' => $size));
-      }
-    }
-    // Sort our files alphabetically
-    ksort($files);
-
-    // Initializes table header.
-    $header = array(
-      'name' => t('File name'),
-      'date' => t('Modified'),
-      'size' => t('Size'),
-    );
-
-    // Display the table of field names, index types, and term counts.
-    $variables = array(
-      'header' => $header,
-      'rows' => $files,
-    );
-    $output = theme('table', $variables);
-  }
-  else {
-    $output = '<p>' . t('No data about any file found.') . "</p>\n";
-  }
-  return $output;
-}
-
-/**
- * Page callback to show one conf file.
- *
- * @param string $name
- * @param array $environment
- *
- * @return string
- *   the requested config file
- */
-function apachesolr_config_file($name, array $environment = array()) {
-  if (empty($environment)) {
-    $env_id = apachesolr_default_environment();
-  }
-  else {
-    $env_id = $environment['env_id'];
-  }
-
-  $output = '';
-  try {
-    $solr = apachesolr_get_solr($env_id);
-    $response = $solr->makeServletRequest('admin/file', array('file' => $name));
-    $raw_file = $response->data;
-    $output = '<pre>' . check_plain($raw_file) . '</pre>';
-    drupal_set_title(check_plain($name));
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    drupal_set_message(nl2br(check_plain($e->getMessage())), "warning");
-  }
-  return $output;
-}
-
-/**
- * Form builder for the Apachesolr Indexer actions form.
- *
- * @param array $form
- * @param array $form_state
- * @param string $env_id
- *   The machine name of the environment.
- * @see apachesolr_index_action_form_delete_submit().
- *
- * @return array $form
- */
-function apachesolr_index_action_form(array $form, array $form_state, $env_id) {
-  $form = array();
-  $form['action'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Actions'),
-    '#collapsible' => TRUE,
-  );
-
-  $form['action']['env_id'] = array(
-    '#type' => 'value',
-    '#value' => $env_id,
-  );
-
-  $form['action']['cron'] = array(
-    '#prefix' => '<div>',
-    '#type' => 'submit',
-    '#value' => t('Index queued content (!amount)', array('!amount' => variable_get('apachesolr_cron_limit', 50))),
-    '#submit' => array('apachesolr_index_action_form_cron_submit'),
-  );
-  $form['action']['cron_description'] = array(
-    '#prefix' => '<span>',
-    '#suffix' => '</span></div>',
-    '#markup' => t('Indexes just as many items as 1 cron run would do.'),
-  );
-
-  $form['action']['remaining'] = array(
-    '#prefix' => '<div>',
-    '#type' => 'submit',
-    '#value' => t('Index all queued content'),
-    '#submit' => array('apachesolr_index_action_form_remaining_submit'),
-  );
-  $form['action']['remaining_description'] = array(
-    '#prefix' => '<span>',
-    '#suffix' => '</span></div>',
-    '#markup' => t('Could take time and could put an increased load on your server.'),
-  );
-
-  $form['action']['reset'] = array(
-    '#prefix' => '<div>',
-    '#suffix' => '</div>',
-    '#type' => 'submit',
-    '#value' => t('Queue all content for reindexing'),
-    '#submit' => array('apachesolr_index_action_form_reset_submit'),
-  );
-  $form['action']['delete'] = array(
-    '#prefix' => '<div>',
-    '#type' => 'submit',
-    '#value' => t('Delete the Search & Solr index'),
-    '#submit' => array('apachesolr_index_action_form_delete_submit'),
-  );
-  $form['action']['delete_description'] = array(
-    '#prefix' => '<span>',
-    '#suffix' => '</span></div>',
-    '#markup' => t('Useful with a corrupt index or a new schema.xml.'),
-  );
-
-  return $form;
-}
-
-/**
- * Submit handler for the Indexer actions form, delete button.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_action_form_remaining_submit(array $form, array &$form_state) {
-  $destination = array();
-  if (isset($_GET['destination'])) {
-    $destination = drupal_get_destination();
-    unset($_GET['destination']);
-  }
-  $env_id = $form_state['values']['env_id'];
-  $form_state['redirect'] = array('admin/config/search/apachesolr/settings/' . $env_id . '/index/remaining', array('query' => $destination));
-}
-
-/**
- * Submit handler for the Indexer actions form, delete button.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_action_form_delete_submit(array $form, array &$form_state) {
-  $destination = array();
-  if (isset($_GET['destination'])) {
-    $destination = drupal_get_destination();
-    unset($_GET['destination']);
-  }
-  $env_id = $form_state['values']['env_id'];
-  $form_state['redirect'] = array('admin/config/search/apachesolr/settings/' . $env_id . '/index/delete', array('query' => $destination));
-}
-
-/**
- * Submit handler for the Indexer actions form, delete button.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_action_form_reset_submit(array $form, array &$form_state) {
-  $destination = array();
-  if (isset($_GET['destination'])) {
-    $destination = drupal_get_destination();
-    unset($_GET['destination']);
-  }
-  $env_id = $form_state['values']['env_id'];
-  $form_state['redirect'] = array('admin/config/search/apachesolr/settings/' . $env_id . '/index/reset', array('query' => $destination));
-}
-
-/**
- * Submit handler for the deletion form.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_action_form_cron_submit(array $form, array &$form_state) {
-  if (!empty($form_state['build_info']['args'][0])) {
-    $env_id = $form_state['build_info']['args'][0];
-    $form_state['redirect'] = 'admin/config/search/apachesolr/settings/' . $env_id . '/index';
-  }
-  else {
-    $env_id = apachesolr_default_environment();
-    $form_state['redirect'] = 'admin/config/search/apachesolr';
-  }
-  apachesolr_cron($env_id);
-  drupal_set_message(t('Apachesolr cron successfully executed'));
-}
-
-/**
- * Form builder for to reindex the remaining items left in the queue.
- *
- * @see apachesolr_index_action_form_delete_confirm_submit().
- *
- * @param array $form
- * @param array $form_state
- * @param array $environment
- *
- * @return mixed
- */
-function apachesolr_index_action_form_remaining_confirm(array $form, array &$form_state, array $environment) {
-  return confirm_form($form,
-    t('Are you sure you want index all remaining content?'),
-    'admin/config/search/apachesolr/settings/' . $environment['env_id'] . '/index',
-    NULL,
-    t('Index all remaining')
-  );
-}
-
-/**
- * Submit handler for the deletion form.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_action_form_remaining_confirm_submit(array $form, array &$form_state) {
-  if (!empty($form_state['build_info']['args'][0]['env_id'])) {
-    $env_id = $form_state['build_info']['args'][0]['env_id'];
-    $form_state['redirect'] = 'admin/config/search/apachesolr/settings/' . $env_id . '/index';
-  }
-  else {
-    $env_id = apachesolr_default_environment();
-    $form_state['redirect'] = 'admin/config/search/apachesolr';
-  }
-  apachesolr_index_batch_index_remaining($env_id);
-}
-
-/**
- * Form builder for the index re-enqueue form.
- *
- * @see apachesolr_index_action_form_reset_confirm_submit().
- *
- * @param array $form
- * @param array $form_state
- * @param array $environment
- *
- * @return mixed
- */
-function apachesolr_index_action_form_reset_confirm(array $form, array &$form_state, array $environment) {
-  return confirm_form($form,
-    t('Are you sure you want to queue content for reindexing?'),
-    'admin/config/search/apachesolr/settings/' . $environment['env_id'] . '/index',
-    t('All content on the site will be queued for indexing. The documents currently in the Solr index will remain searchable.'),
-    t('Queue all content')
-  );
-}
-
-/**
- * Submit handler for the deletion form.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_action_form_reset_confirm_submit(array $form, array &$form_state) {
-  if (!empty($form_state['build_info']['args'][0]['env_id'])) {
-    $env_id = $form_state['build_info']['args'][0]['env_id'];
-    $form_state['redirect'] = 'admin/config/search/apachesolr/settings/' . $env_id . '/index';
-  }
-  else {
-    $env_id = apachesolr_default_environment();
-    $form_state['redirect'] = 'admin/config/search/apachesolr';
-  }
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  apachesolr_index_mark_for_reindex($env_id);
-  drupal_set_message(t('All the content on your site is queued for indexing. You can wait for it to be indexed during cron runs, or you can manually reindex it.'));
-}
-
-/**
- * Form builder for the index delete/clear form.
- *
- * @see apachesolr_index_action_form_delete_confirm_submit().
-
- * @param array $form
- * @param array $form_state
- * @param array $environment
- *
- * @return array output of confirm_form()
- */
-function apachesolr_index_action_form_delete_confirm(array $form, array &$form_state, array $environment) {
-  return confirm_form($form,
-    t('Are you sure you want to clear your index?'),
-    'admin/config/search/apachesolr/settings/' . $environment['env_id'] . '/index',
-    t('This will remove all data from your index and all search results will be incomplete until your site is reindexed.'),
-    t('Delete index')
-  );
-}
-
-/**
- * Submit handler for the deletion form.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_action_form_delete_confirm_submit(array $form, array &$form_state) {
-  if (!empty($form_state['build_info']['args'][0]['env_id'])) {
-    $env_id = $form_state['build_info']['args'][0]['env_id'];
-    $form_state['redirect'] = 'admin/config/search/apachesolr/settings/' . $env_id . '/index';
-  }
-  else {
-    $env_id = apachesolr_default_environment();
-    $form_state['redirect'] = 'admin/config/search/apachesolr';
-  }
-  // Rebuild our tracking table.
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  if (apachesolr_index_delete_index($env_id)) {
-    drupal_set_message(t('The index has been deleted.'));
-  }
-  else {
-    drupal_set_message(t('An error occured while trying to delete the index.'), 'error');
-  }
-}
-
-/**
- * Submit a batch job to index the remaining, non-indexed content.
- *
- * @param string $env_id
- *   The environment ID where it needs to index the remaining items for
- */
-function apachesolr_index_batch_index_remaining($env_id, $total_limit = null) {
-  $batch = array(
-    'operations' => array(
-      array(
-        'apachesolr_index_batch_index_entities',
-        array(
-          $env_id,
-          $total_limit,
-        ),
-      ),
-    ),
-    'finished' => 'apachesolr_index_batch_index_finished',
-    'title' => t('Indexing'),
-    'init_message' => t('Preparing to submit content to Solr for indexing...'),
-    'progress_message' => t('Submitting content to Solr...'),
-    'error_message' => t('Solr indexing has encountered an error.'),
-    'file' => drupal_get_path('module', 'apachesolr') . '/apachesolr.admin.inc',
-  );
-  batch_set($batch);
-}
-
-
-/**
- * Batch Operation Callback
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param $total_limit
- *   The total number of items to index across all batches
- * @param array $context
- *
- * @return false
- *   return false when an exception was caught
- *
- * @throws Exception
- *   When solr gives an error, throw an exception that solr is not available
- */
-function apachesolr_index_batch_index_entities($env_id, $total_limit = NULL, &$context) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  if (empty($context['sandbox'])) {
-    try {
-      // Get the $solr object
-      $solr = apachesolr_get_solr($env_id);
-      // If there is no server available, don't continue.
-      if (!$solr->ping()) {
-        throw new Exception(t('No Solr instance available during indexing.'));
-      }
-    }
-    catch (Exception $e) {
-      watchdog('Apache Solr', $e->getMessage(), NULL, WATCHDOG_ERROR);
-      return FALSE;
-    }
-
-    $status = apachesolr_index_status($env_id);
-    $context['sandbox']['progress'] = 0;
-    $context['sandbox']['submitted'] = 0;
-
-    // How many items do we want to index? All or a limited set of items
-    if (empty($total_limit)) {
-      $context['sandbox']['max'] = $status['remaining'];
-    }
-    else {
-      $context['sandbox']['max'] = $total_limit;
-    }
-  }
-
-  // We can safely process the apachesolr_cron_limit nodes at a time without a
-  // timeout or out of memory error.
-  $limit = variable_get('apachesolr_cron_limit', 50);
-
-  // Reduce the limit for our final batch if we would be processing more than had been requested
-  if ($limit + $context['sandbox']['progress'] > $context['sandbox']['max']) {
-    $limit = $context['sandbox']['max'] - $context['sandbox']['progress'];
-  }
-
-  if ($context['sandbox']['max'] >= $context['sandbox']['progress'] + $limit) {
-    $context['sandbox']['progress'] += $limit;
-  }
-  else {
-    $context['sandbox']['progress'] = $context['sandbox']['max'];
-  }
-  $context['sandbox']['submitted'] += apachesolr_index_entities($env_id, $limit);
-
-  $arguments = array(
-    '@current' => $context['sandbox']['progress'],
-    '@total' => $context['sandbox']['max'],
-    '@submitted' => $context['sandbox']['submitted'],
-    );
-  $context['message'] = t('Inspected @current of @total entities. Submitted @submitted documents to Solr', $arguments);
-
-  // Inform the batch engine that we are not finished, and provide an
-  // estimation of the completion level we reached.
-  $context['finished'] = empty($context['sandbox']['max']) ? 1 : $context['sandbox']['progress'] / $context['sandbox']['max'];
-
-  // Put the total into the results section when we're finished so we can
-  // show it to the admin.
-  if ($context['finished']) {
-    $context['results']['count'] = $context['sandbox']['progress'];
-    $context['results']['submitted'] = $context['sandbox']['submitted'];
-    $context['results']['env_id'] = $env_id;
-  }
-}
-
-/**
- * Batch 'finished' callback
- *
- * @param bool $success
- *   Whether the batch ended with success or not
- * @param array $results
- * @param array $operations
- */
-function apachesolr_index_batch_index_finished($success, array $results, array $operations) {
-  $message = '';
-  // $results['count'] will not be set if Solr is unavailable.
-  if (isset($results['count'])) {
-    $message .= format_plural($results['count'], '1 item processed successfully. ', '@count items successfully processed. ');
-  }
-  if (isset($results['submitted'])) {
-    $message .= format_plural($results['submitted'], '1 document successfully sent to Solr.', '@count documents successfully sent to Solr.');
-  }
-  if ($success) {
-    // Directly process those documents if direct commit was enabled.
-    $direct_commit = apachesolr_environment_variable_get($results['env_id'], 'apachesolr_direct_commit', FALSE);
-    if ($direct_commit) {
-      // Get the $solr object
-      $solr = apachesolr_get_solr($results['env_id']);
-      $solr->commit();
-    }
-    $type = 'status';
-  }
-  else {
-    // An error occurred. $operations contains the unprocessed operations.
-    $error_operation = reset($operations);
-    $message .= ' ' . t('An error occurred while processing @num with arguments: @args', array('@num' => $error_operation[0], '@args' => print_r($error_operation[0], TRUE)));
-    $type = 'error';
-  }
-  drupal_set_message($message, $type);
-}
-
-/**
- * Form builder for the bundle configuration form.
- *
- * @see apachesolr_index_config_form_submit().
- *
- * @param array $form
- * @param array $form_state
- * @param string $env_id
- *   The machine name of the environment.
- *
- * @return array $form
- */
-function apachesolr_index_config_form(array $form, array $form_state, $env_id) {
-  $form['config'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Configuration'),
-    '#collapsible' => TRUE,
-  );
-
-  $form['config']['bundles'] = array(
-    '#type' => 'markup',
-    '#markup' => t('Select the entity types and bundles that should be indexed.'),
-  );
-
-  // For future extensibility, when we have multiple cores.
-  $form['config']['env_id'] = array(
-    '#type' => 'value',
-    '#value' => $env_id,
-  );
-
-  foreach (entity_get_info() as $entity_type => $entity_info) {
-    if (!empty($entity_info['apachesolr']['indexable'])) {
-      $options = array();
-      foreach ($entity_info['bundles'] as $key => $info) {
-        $options[$key] = $info['label'];
-      }
-      asort($options);
-
-      $form['config']['entities']['#tree'] = TRUE;
-      $form['config']['entities'][$entity_type] = array(
-        '#type' => 'checkboxes',
-        '#title' => check_plain($entity_info['label']),
-        '#options' => $options,
-        '#default_value' => apachesolr_get_index_bundles($env_id, $entity_type),
-      );
-    }
-  }
-
-  $form['config']['submit'] = array('#type' => 'submit', '#value' => t('Save'));
-
-  return $form;
-}
-
-/**
- * Submit handler for the bundle configuration form.
- *
- * @param array $form
- * @param array $form_state
- */
-function apachesolr_index_config_form_submit(array $form, array &$form_state) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $form_values = $form_state['values'];
-  $env_id = $form_values['env_id'];
-
-  foreach ($form_values['entities'] as $entity_type => $bundles) {
-    $existing_bundles = apachesolr_get_index_bundles($env_id, $entity_type);
-    $all_bundles = array_keys($bundles);
-    $new_bundles = array_values(array_filter($bundles));
-    apachesolr_index_set_bundles($env_id, $entity_type, $new_bundles);
-
-    // Remove all excluded bundles - this happens on form submit
-    // even if there is no change so the admin can remove
-    // bundles if there was an error.
-    $excluded_bundles = array_diff($all_bundles, $new_bundles);
-    if (apachesolr_index_delete_bundles($env_id, $entity_type, $excluded_bundles)) {
-      $callback = apachesolr_entity_get_callback($entity_type, 'bundles changed callback');
-      if (!empty($callback)) {
-        call_user_func($callback, $env_id, $existing_bundles, $new_bundles);
-      }
-    }
-    else {
-      drupal_set_message(t('Search is temporarily unavailable. If the problem persists, please contact the site administrator.'), 'error');
-    }
-  }
-
-  // Clear the entity cache, since we will be changing its data.
-  entity_info_cache_clear();
-  cache_clear_all('apachesolr:environments', 'cache_apachesolr');
-  drupal_set_message(t('Your settings have been saved.'));
-}
-
-/**
- * Page callback for node/%node/devel/apachesolr.
- *
- * @param object $node
- * @return string debugging information
- */
-function apachesolr_devel($node) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $item = new stdClass();
-  $item->entity_type = 'node';
-  $item->entity_id = $node->nid;
-  $output = '';
-  foreach (apachesolr_load_all_environments() as $env_id => $environment) {
-    $documents = apachesolr_index_entity_to_documents($item, $env_id);
-    $output .= '<h1>' . t('Environment %name (%env_id)', array('%name' => $environment['name'], '%env_id' => $env_id)). '</h1>';
-    foreach ($documents as $document) {
-      $debug_data = array();
-      foreach ($document as $key => $value) {
-        $debug_data[$key] = $value;
-      }
-      $output .= kdevel_print_object($debug_data);
-    }
-  }
-  return $output;
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.api.php b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.api.php
deleted file mode 100644
index 3e16721977ad4015029d485457e59ac4ea43bc67..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.api.php
+++ /dev/null
@@ -1,458 +0,0 @@
-<?php
-/**
- * @file
- *   Exposed Hooks in 7.x:
- */
-
-/**
- * Lets modules know when the default environment is changed.
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param string $old_env_id
- *   The old machine name of the environment.
- */
-function hook_apachesolr_default_environment($env_id, $old_env_id) {
-  $page = apachesolr_search_page_load('core_search');
-  if ($page && $page['env_id'] != $env_id) {
-    $page['env_id'] = $env_id;
-    apachesolr_search_page_save($page);
-  }
-}
-
-/**
- * Add index mappings for Field API types. The default mappings array
- * handles just list fields and taxonomy term reference fields, such as:
- *
- * $mappings['list_text'] = array(
- *   'indexing_callback' => array('apachesolr_fields_list_indexing_callback'),
- *   'index_type' => 'string',
- *   'map callback' => 'apachesolr_fields_list_display_callback',
- *   'facets' => TRUE,
- * ),
- *
- * In your implementation you can add additional field types such as:
- * $mappings['number_integer']['number'] = array(...);
- *
- * You can also add mapping for a specific field. This will take precedence
- * over any mapping for a general field type. A field-specific mapping would
- * looks like:
- * $mappings['per-field']['field_model_name'] = array(...);
- *
- * Much more information can be found below in the example implementation or in
- * facetapi.api.php. If you feel restricted with the options as set below
- * there is nothing that stops you from implementing facetapi directly. However
- * it is recommended to not directly talk to solr fields since this could break
- * in the future.
- *
- * @return array $mappings
- *   An associative array of mappings as defined by modules that implement
- *   hook_apachesolr_field_mappings().
- */
-function hook_apachesolr_field_mappings() {
-  $mappings = array(
-    // Example for a field API type. See extensive documentation below
-    'number_float' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'index_type' => 'tfloat',
-      'facets' => TRUE,
-      'query types' => array('term', 'numeric_range'),
-      'query type' => 'term',
-      'facet mincount allowed' => TRUE,
-    ),
-    // Example for a field API field
-    'per-field' => array(
-      // machine name of the field in Field API
-      'field_price' => array(
-        // REQUIRED FIELDS //
-        // Function callback to return the value that will be put in to
-        // the solr index
-        'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-
-        // NON REQUIRED FIELDS //
-        // See apachesolr_index_key() for the correct type. Defaults string
-        'index_type' => 'string',
-        // How to display the values when they return as a facet
-        'map callback' => 'apachesolr_fields_list_facet_map_callback',
-        // Does your facet have a dynamic name? Add function call here and will
-        // have the name of the return value
-        'name callback' => FALSE,
-        // If a custom field needs to be searchable but does not need to be faceted you
-        // can change the 'facets' parameter to FALSE.
-        'facets' => FALSE,
-        // Do you want to allow items without value
-        'facet missing allowed' => FALSE,
-        // (optional)  Whether or not the facet supports the
-        //    "minimum facet count" setting. Defaults to TRUE.
-        'facet mincount allowed' => FALSE,
-        // Field API allows any field to be multi-valued.
-        // If we set this to false we are able to sort
-        'dependency plugins' => array('bundle', 'role'),
-        // Does your solr index has a hierarchy?
-        // See facetapi_get_taxonomy_hierarchy for details or
-        // view the mapping of taxonomy_term_reference
-        'hierarchy callback' => FALSE,
-        // There are different query types to return information from Solr
-        // term : Regular strings
-        // date : Everything regarding dates
-        // numeric_range : Useful when you have widgets that depend
-        //   on statistics coming from Solr
-        'query types' => array('term', 'numeric_range'),
-        // Backwards compatible with previous facetapi versions.
-        // Pick the main query type
-        'query type' => 'term',
-        // What dependencies do you have (see facetapi)
-        'multiple' => TRUE,
-      ),
-    ),
-  );
-  return $mappings;
-}
-
-/**
- * Alter hook for apachesolr_field_mappings().
- *
- * Add or alter index mappings for Field API types. The default mappings array
- * handles just list fields and taxonomy term reference fields, in the same way
- * as documented in hook_apachesolr_field_mappings.
- *
- * @param array $mappings
- *   An associative array of mappings as defined by modules that implement
- *   hook_apachesolr_field_mappings().
- * @param string $entity_type
- *   The entity type for which you want to alter the field mappings
- */
-function hook_apachesolr_field_mappings_alter(array &$mappings, $entity_type) {
-  // Enable indexing for text fields
-  $mappings['text'] = array(
-    'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-    'map callback' => '',
-    'index_type' => 'string',
-    'facets' => TRUE,
-    'facet missing allowed' => TRUE,
-    'dependency plugins' => array('bundle', 'role'),
-    'hierarchy callback' => FALSE,
-    'name callback' => '',
-    'facet mincount allowed' => FALSE,
-    'multiple' => FALSE,
-  );
-
-  // Add our per field mapping here so we can sort on the
-  // price by making it single. Solr cannot sort on multivalued fields
-  // field_price is our identifier of a custom field, and it was decided to
-  // index in the same way as a number_float field.
-  $mappings['per-field']['field_price'] = $mappings['number_float'];
-  $mappings['per-field']['field_price']['multiple'] = FALSE;
-}
-
-/**
- * Prepare the query by adding parameters, sorts, etc.
- *
- * This hook is invoked before the query is cached. The cached query is used
- * after the search such as for building facet and sort blocks, so parameters
- * added during this hook may be visible to end users.
- *
- * This is otherwise the same as HOOK_apachesolr_query_alter(), but runs before
- * it.
- *
- * @param DrupalSolrQueryInterface $query
- *  An object implementing DrupalSolrQueryInterface. No need for &.
- */
-function hook_apachesolr_query_prepare(DrupalSolrQueryInterface $query) {
-  // Add a sort on the node ID.
-  $query->setAvailableSort('entity_id', array(
-    'title' => t('Node ID'),
-    'default' => 'asc',
-  ));
-}
-
-/**
- * Assigns a readable name to your custom solr field
- *
- * @param array $map
- */
-function hook_apachesolr_field_name_map_alter(array &$map) {
-  $map['xs_node'] = t('The full node object');
-}
-
-/**
- * Alter the query after it's prepared and cached.
- *
- * Any module performing a search should call
- * drupal_alter('apachesolr_query', $query). That function then invokes this
- * hook. It allows modules to modify the query object and its parameters.
- *
- * A module implementing HOOK_apachesolr_query_alter() may set
- * $query->abort_search to TRUE to flag the query to be aborted.
- *
- * @param DrupalSolrQueryInterface $query
- *   An object implementing DrupalSolrQueryInterface. No need for &.
- *
- * @see /admin/reports/apachesolr
- * - This report displays the active solr index fields and can help you
- *   create Solr filters based on the data currently in your system
- */
-function hook_apachesolr_query_alter(DrupalSolrQueryInterface $query) {
-  // I only want to see articles by the admin.
-  //
-  // NOTE: this "is_uid" filter does NOT refer to the English word "is"
-  // It is a combination of flags representing Integer-Single, which is
-  // abbreviated with the letters i and s.
-  //
-  // @see the <dynamicField> definitions in schema.xml or schema-solr3.xml
-  $query->addFilter("is_uid", 1);
-
-  // Only search titles.
-  $query->replaceParam('qf', 'label');
-
-  // Restrict results to a single content type (use machine name).
-  $query->addFilter('bundle', 'my_content_type');
-
-  // Exclude results by setting the third argument of addFilter to TRUE.
-  // This filter will return all content types EXCEPT my_content_type nodes.
-  $query->addFilter('bundle', 'my_content_type', TRUE);
-
-  // Restrict results to several content types (use machine names).
-  // You could also solve this using the SolrFilterSubQuery object and append it
-  // to the original query.
-  $content_types = array(
-    'content_type_1',
-    'content_type_2',
-  );
-  $query->addFilter('bundle', '('. implode(' OR ', $content_types) .')');
-}
-
-/**
- * Allows a module to modify the delete query.
- *
- * @param string $query
- *   This is not an instance of DrupalSolrQueryInterface, it is the raw query
- *   that is being sent to Solr. Defaults to "*:*".
- */
-function hook_apachesolr_delete_by_query_alter(&$query) {
-  // Use the site hash so that you only delete this site's content.
-  if ($query == '*:*') {
-    $query = 'hash:' . apachesolr_site_hash();
-  }
-  else {
-    $query .= ' AND hash:' . apachesolr_site_hash();
-  }
-}
-
-/**
- * This is the place to look for the replacement to hook_apachesolr_node_exclude
- * You should define a replacement for the status callback and return
- * FALSE for entities which you do not want to appear in the index and TRUE for
- * those that you want to include
- */
-
-/**
- * This is invoked for each entity that is being inspected to be added to the
- * index. if any module returns TRUE, the entity is skipped for indexing.
- *
- * @param string $entity_id
- * @param string $entity_type
- * @param object $row
- *   A complete set of data from the indexing table.
- * @param string $env_id
- *   The machine name of the environment.
- * @return boolean
- */
-function hook_apachesolr_exclude($entity_id, $entity_type, $row, $env_id) {
-  // Never index media entities to core_1
-  if ($entity_type == 'media' && $env_id == 'core_1') {
-    return TRUE;
-  }
-  return FALSE;
-}
-
-/**
- * This is invoked for each entity from the type of ENTITY_TYPE that is being
- * inspected to be added to the index. if any module returns TRUE, 
- * the entity is skipped for indexing.
- *
- * @param string $entity_id
- * @param object $row
- *   A complete set of data from the indexing table.
- * @param string $env_id
- *   The machine name of the environment.
- * @return boolean
- */
-function hook_apachesolr_ENTITY_TYPE_exclude($entity_id, $row, $env_id) {
-  // Never index ENTITY_TYPE to core_1
-  if ($env_id == 'core_1') {
-    return TRUE;
-  }
-  return FALSE;
-}
-
-/**
- * Add information to index other entities.
- * There are some modules in http://drupal.org that can give a good example of
- * custom entity indexing such as apachesolr_user, apachesolr_term
- *
- * @param array $entity_info
- */
-function hook_apachesolr_entity_info_alter(array &$entity_info) {
-  // REQUIRED VALUES
-  // myentity should be replaced with user/node/custom entity
-  $entity_info['node'] = array();
-  // Set this entity as indexable
-  $entity_info['node']['indexable'] = TRUE;
-  // Validate each entity if it can be indexed or not. Multiple callbacks are
-  // allowed. If one of them returns false it won't be indexed
-  $entity_info['node']['status callback'][] = 'apachesolr_index_node_status_callback';
-  // Build up a custom document.
-  $entity_info['node']['document callback'][] = 'apachesolr_index_node_solr_document';
-  // What to do when a reindex is issued. Most probably this will reset all the
-  // items in the index_table
-  $entity_info['node']['reindex callback'] = 'apachesolr_index_node_solr_reindex';
-
-  // OPTIONAL VALUES
-  // Index in a separate table? Useful for huge datasets.
-  $entity_info['node']['index_table'] = 'apachesolr_index_entities_node';
-  // Execute custom callback on each cron run.
-  // See apachesolr_index_node_check_table
-  $entity_info['node']['cron_check'] = 'apachesolr_index_node_check_table';
-  // Specific output processing for the results
-  $entity_info['node']['result callback'] = 'apachesolr_search_node_result';
-
-  // BUNDLE SPECIFIC OVERRIDES
-  // The following can be overridden on a per-bundle basis.
-  // The bundle-specific settings will take precedence over the entity settings.
-  $entity_info['node']['bundles']['page']['apachesolr']['result callback'] = 'apachesolr_search_node_result';
-  $entity_info['node']['bundles']['page']['apachesolr']['status callback'][] = 'apachesolr_index_node_status_callback';
-  $entity_info['node']['bundles']['page']['apachesolr']['document callback'][] = 'apachesolr_index_node_solr_document';
-}
-
-
-/**
- * This is invoked by apachesolr_search.module for each document returned in a
- * search. This has been introduced in 6.x-beta7 as a replacement for the call
- * to HOOK_nodeapi().
- *
- * @param ApacheSolrDocument $document
- *   The ApacheSolrDocument instance.
- * @param array $extra
- * @param DrupalSolrQueryInterface $query
- */
-function hook_apachesolr_search_result_alter(ApacheSolrDocument $document, array &$extra, DrupalSolrQueryInterface $query) {
-}
-
-/**
- * This is invoked by apachesolr_search.module for the whole resultset returned
- * in a search.
- *
- * @param array $results
- *   The returned search results.
- * @param DrupalSolrQueryInterface $query
- *   The query for which we want to process the results from
- */
-function hook_apachesolr_process_results(array &$results, DrupalSolrQueryInterface $query) {
-  foreach ($results as $id => $result) {
-    $results[$id]['title'] = t('[Result] !title', array('!title' => $result['title']));
-  }
-}
-
-/**
- * Respond to search environment deletion.
- *
- * This hook is invoked from apachesolr_environment_delete() after the
- * environment is removed from the database.
- *
- * @param array $environment
- *   The environment object that is being deleted.
- */
-function hook_apachesolr_environment_delete(array $environment) {
-}
-
-/**
- *
- * Modify the build array for any search output build by Apache Solr
- * This includes core and custom pages and makes it very easy to modify both
- * of them at once
- *
- * @param array $build
- * @param array $search_page
- */
-function hook_apachesolr_search_page_alter(array &$build, array $search_page) {
-  // Adds a text to the top of the page
-  $info = array('#markup' => t('Add information to every search page'));
-  array_unshift($build, $info);
-}
-
-/**
- * Modify the search types as found in the search pages administration
- *
- * @param array $search_types
- */
-function hook_apachesolr_search_types_alter(&$search_types) {
-  $search_types['ss_language'] = array(
-    'name' => apachesolr_field_name_map('ss_language'),
-    'default menu' => 'search/language/%',
-    'title callback' => 'custom_title_callback',
-  );
-}
-
-/**
- * Build the documents before sending them to Solr.
- * The function is the follow-up for apachesolr_update_index
- *
- * @param ApacheSolrDocument $document
- * @param object $entity
- * @param string $entity_type
- * @param string $env_id
- *   The machine name of the environment.
- */
-function hook_apachesolr_index_document_build(ApacheSolrDocument $document, $entity, $entity_type, $env_id) {
-
-}
-
-/**
- * Build the documents before sending them to Solr.
- *
- * Supports all types of
- * hook_apachesolr_index_document_build_' . $entity_type($documents[$id], $entity, $env_id);
- *
- * The function is the follow-up for apachesolr_update_index but then for
- * specific entity types
- *
- * @param ApacheSolrDocument $document
- * @param object $entity
- * @param string $env_id
- *   The machine name of the environment.
- */
-function hook_apachesolr_index_document_build_ENTITY_TYPE(ApacheSolrDocument $document, $entity, $env_id) {
-  // Index field_main_image as a separate field
-  if ($entity->type == 'profile') {
-    $user = user_load(array('uid' => $entity->uid));
-    // Hard coded field, not recommended for inexperienced users.
-    $document->setMultiValue('sm_field_main_image', $user->picture);
-  }
-}
-
-/**
- * Alter the prepared documents from one entity before sending them to Solr.
- *
- * @param $documents
- *   Array of ApacheSolrDocument objects.
- * @param object $entity
- * @param string $entity_type
- * @param string $env_id
- *   The machine name of the environment.
- */
-function hook_apachesolr_index_documents_alter(array &$documents, $entity, $entity_type, $env_id) {
-  // Do whatever altering you need here
-}
-
-
-/**
- * Modify the returned spellings suggestions. The environment is available
- * as an argument so the search query can be retrieved if necessary
- *
- * @param array $suggestions
- * @param string $env_id
- */
-function hook_apachesolr_suggestions_alter(&$suggestions, $env_id) {
-  // Modify the suggestions here
-}
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.css b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.css
deleted file mode 100644
index a79b4b6efd0093218952cc1622f7e1d66f0506b7..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.css
+++ /dev/null
@@ -1,36 +0,0 @@
-
-table.admin-apachesolr td.icon {
-  background: no-repeat center;
-  width: 16px;
-}
-table.admin-apachesolr td.operation {
-  width: 16px;
-}
-table.admin-apachesolr tr.ok {
-  background-color : #E5FFE2;
-}
-table.admin-apachesolr tr.error {
-  color: #8C2E0B;
-  background-color : #FEF5F1;
-}
-
-table.admin-apachesolr td.status-icon {
-  width: 16px;
-  padding-right: 0;
-}
-table.admin-apachesolr td.status-icon div {
-  background-repeat: no-repeat;
-  height: 16px;
-  width: 16px;
-}
-table.admin-apachesolr tr {
-  border-bottom: 1px solid #ccc;
-}
-
-table.admin-apachesolr tr td.default-environment {
-  font-weight: bold;
-}
-
-table.admin-apachesolr tr.error td.status-icon div {
-  background-image: url(/misc/message-16-error.png);
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.index.inc b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.index.inc
deleted file mode 100644
index ea7ba109ebed1508818f577ff6dc7038614f511b..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.index.inc
+++ /dev/null
@@ -1,1521 +0,0 @@
-<?php
-
-/**
- * @file
- * Functions related to Apache Solr indexing operations.
- */
-
-/**
- * Processes all index queues associated with the passed environment.
- *
- * An environment usually indexes one or more entity types. Each entity type
- * stores its queue in a database table that is defined in the entity type's
- * info array. This function processes N number of items in each queue table,
- * where N is the limit passed as the second argument.
- *
- * The indexing routine allows developers to selectively bypass indexing on a
- * per-entity basis by implementing the following hooks:
- * - hook_apachesolr_exclude()
- * - hook_apachesolr_ENTITY_TYPE_exclude()
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param int $limit
- *   The number of items to process per queue table. For example, if there are
- *   two entities that are being indexed in this environment and they each have
- *   their own queue table, setting a limit of 50 will send a maximum number of
- *   100 documents to the Apache Solr server.
- *
- * @return int
- *   The total number of documents sent to the Apache Solr server for indexing.
- *
- * @see apachesolr_index_get_entities_to_index()
- * @see apachesolr_index_entity_to_documents()
- * @see apachesolr_index_send_to_solr()
- */
-function apachesolr_index_entities($env_id, $limit) {
-  $documents_submitted = 0;
-
-  try {
-    // Get the $solr object
-    $solr = apachesolr_get_solr($env_id);
-    // If there is no server available, don't continue.
-    if (!$solr->ping(variable_get('apachesolr_ping_timeout', 4))) {
-      throw new Exception(t('No Solr instance available during indexing.'));
-    }
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    return FALSE;
-  }
-
-  foreach (entity_get_info() as $entity_type => $info) {
-    // With each pass through the callback, retrieve the next group of nids.
-    $rows = apachesolr_index_get_entities_to_index($env_id, $entity_type, $limit);
-    // If there are none for this entity type - ignore it and go to the next
-    // entity type.
-    if (!count($rows)) {
-      continue;
-    }
-    $documents = array();
-    foreach ($rows as $row) {
-      $row_documents = apachesolr_index_entities_document($row, $entity_type, $env_id);
-      $documents = array_merge($documents, $row_documents);
-    }
-
-    $indexed = apachesolr_index_send_to_solr($env_id, $documents);
-    if ($indexed !== FALSE) {
-      $documents_submitted += count($documents);
-      // Check who's the last in line
-      $last_row = end($rows);
-
-      // set our last position to the entity id and changed value so we can
-      // keep track where we left off
-      if (!empty($last_row->changed) && !empty($last_row->entity_id)) {
-        apachesolr_set_last_index_position($env_id, $entity_type, $last_row->changed, $last_row->entity_id);
-      }
-      else {
-        $message = 'Failure recording indexing progress. Last entity id processed: %entity_id with timestamp %last_changed';
-        $variables = array(
-          '%entity_id' => $last_row->entity_id,
-          '%last_changed' => $last_row->changed,
-        );
-        // Add it to watchdog
-        watchdog('Apache Solr', $message, $variables, WATCHDOG_ERROR);
-      }
-      apachesolr_set_last_index_updated($env_id, REQUEST_TIME);
-    }
-  }
-  return $documents_submitted;
-}
-
-/**
- * Convert a certain entity from the apachesolr index table to a set of documents. 1 entity
- * can be converted in multiple documents if the apachesolr_index_entity_to_documents decides to do so.
- *
- * @param array $row
- *   A row from the indexing table
- * @param string $entity_type
- *   The type of the entity
- * @param string $env_id
- *   The machine name of the environment.
- *
- * @return array of ApacheSolrDocument(s)
- */
-function apachesolr_index_entities_document($row, $entity_type, $env_id) {
-  $documents = array();
-  if (!empty($row->status)) {
-    // Let any module exclude this entity from the index.
-    $build_document = TRUE;
-    foreach (module_implements('apachesolr_exclude') as $module) {
-      $exclude = module_invoke($module, 'apachesolr_exclude', $row->entity_id, $entity_type, $row, $env_id);
-      // If the hook returns TRUE we should exclude the entity
-      if (!empty($exclude)) {
-        $build_document = FALSE;
-      }
-    }
-    foreach (module_implements('apachesolr_' . $entity_type . '_exclude') as $module) {
-      $exclude = module_invoke($module, 'apachesolr_' . $entity_type . '_exclude', $row->entity_id, $row, $env_id);
-      // If the hook returns TRUE we should exclude the entity
-      if (!empty($exclude)) {
-        $build_document = FALSE;
-      }
-    }
-    if ($build_document) {
-      $documents = array_merge($documents, apachesolr_index_entity_to_documents($row, $env_id));
-    }
-  }
-  else {
-    // Delete the entity from our index if the status callback returned 0
-    apachesolr_remove_entity($env_id, $row->entity_type, $row->entity_id);
-  }
-  // Clear entity cache for this specific entity
-  entity_get_controller($row->entity_type)->resetCache(array($row->entity_id));
-  return $documents;
-}
-/**
- * Returns the total number of documents that are able to be indexed and the
- * number of documents left to be indexed.
- *
- * This is a helper function for modules that implement hook_search_status().
- *
- * @param string $env_id
- *   The machine name of the environment.
- *
- * @return array
- *   An associative array with the key-value pairs:
- *   - remaining: The number of items left to index.
- *   - total: The total number of items to index.
- *
- * @see hook_search_status()
- */
-function apachesolr_index_status($env_id) {
-  $remaining = 0;
-  $total = 0;
-
-  foreach (entity_get_info() as $entity_type => $info) {
-    $bundles = apachesolr_get_index_bundles($env_id, $entity_type);
-    if (empty($bundles)) {
-      continue;
-    }
-
-    $table = apachesolr_get_indexer_table($entity_type);
-    $query = db_select($table, 'aie')
-      ->condition('aie.status', 1)
-      ->condition('aie.bundle', $bundles)
-      ->addTag('apachesolr_index_' . $entity_type);
-
-    $total += $query->countQuery()->execute()->fetchField();
-
-    $query = _apachesolr_index_get_next_set_query($env_id, $entity_type);
-    $remaining += $query->countQuery()->execute()->fetchField();
-  }
-  return array('remaining' => $remaining, 'total' => $total);
-}
-
-/**
- * Worker callback for apachesolr_index_entities().
- *
- * Loads and proccesses the entity queued for indexing and converts into one or
- * more documents that are sent to the Apache Solr server for indexing.
- *
- * The entity is loaded as the user specified in the "apachesolr_index_user"
- * system variable in order to prevent sentive data from being indexed and
- * displayed to underprivileged users in search results. The index user defaults
- * to a user ID of "0", which is the anonymous user.
- *
- * After the entity is loaded, it will be handed over to
- * apachesolr_convert_entity_to_documents() to be converted to an array via
- * the callback specified in the entity type's info array. The array that the
- * entity is converted to is the model of the document sent to the Apache Solr
- * server for indexing. This function allows developers to modify the document
- * by implementing the following hooks:
- * - apachesolr_index_document_build()
- * - apachesolr_index_document_build_ENTITY_TYPE()
- * - apachesolr_index_documents_alter()
- *
- * @param stdClass $item
- *   The data returned by the queue table containing:
- *   - entity_id: An integer containing the unique identifier of the entity, for
- *     example a node ID or comment ID.
- *   - entity_type: The unique identifier for the entity, i.e. "node", "file".
- *   - bundle: The machine-readable name of the bundle the passed entity is
- *     associated with.
- *   - status: The "published" status of the entity. The status will also be set
- *     to "0" when entity is deleted but the Apache Solr server is unavailable.
- *   - changed: A timestamp flagging when the entity was last modified.
- * @param string $env_id
- *   The machine name of the environment.
- *
- * @return array
- *   An associative array of documents that are sent to the Apache Solr server
- *   for indexing.
- *
- * @see apachesolr_index_nodes() for the old-skool version.
- */
-function apachesolr_index_entity_to_documents($item, $env_id) {
-  global $user;
-  drupal_save_session(FALSE);
-  $saved_user = $user;
-  // build the content for the index as an anonymous user to avoid exposing restricted fields and such.
-  // By setting a variable, indexing can take place as a different user
-  $uid = variable_get('apachesolr_index_user', 0);
-  if ($uid == 0) {
-    $user = drupal_anonymous_user();
-  }
-  else {
-    $user = user_load($uid);
-  }
-  // Pull out all of our pertinent data.
-  $entity_type = $item->entity_type;
-
-  // Entity cache will be reset at the end of the indexing algorithm, to use the cache properly whenever
-  // the code does another entity_load
-  $entity = entity_load($entity_type, array($item->entity_id));
-  $entity = $entity ? reset($entity) : FALSE;
-
-  if (empty($entity)) {
-    // If the object failed to load, just stop.
-    return FALSE;
-  }
-
-  $documents = apachesolr_convert_entity_to_documents($entity, $entity_type, $env_id);
-
-  // Restore the user.
-  $user = $saved_user;
-  drupal_save_session(TRUE);
-
-  return $documents;
-}
-
-/**
- * The given entity is converted to an array via the callback
- * specified in the entity type's info array. The array that the entity is
- * converted to is the model of the document sent to the Apache Solr server for
- * indexing. This function allows developers to modify the document by
- * implementing the following hooks:
- * - apachesolr_index_document_build()
- * - apachesolr_index_document_build_ENTITY_TYPE()
- * - apachesolr_index_documents_alter()
- *
- * This function's code has been isolated from
- * apachesolr_index_entity_to_documents() to a separate function to be re-used
- * by apachesolr_multilingual_apachesolr_index_documents_alter().
- *
- * @param object $entity
- *   The entity for which we want a document.
- * @param string $entity_type
- *   The type of entity we're processing.
- * @param string $env_id
- *   The machine name of the environment.
- *
- * @return array
- *   An associative array of documents that are sent to the Apache Solr server
- *   for indexing.
- */
-function apachesolr_convert_entity_to_documents($entity, $entity_type, $env_id) {
-  list($entity_id, $vid, $bundle) = entity_extract_ids($entity_type, $entity);
-
-  // Create a new document, and do the bare minimum on it.
-  $document = _apachesolr_index_process_entity_get_document($entity, $entity_type);
-
-  //Get the callback array to add stuff to the document
-  $document_callbacks = apachesolr_entity_get_callback($entity_type, 'document callback', $bundle);
-  $documents = array();
-  foreach ($document_callbacks as $document_callback) {
-    // Call a type-specific callback to add stuff to the document.
-    $documents = array_merge($documents, $document_callback($document, $entity, $entity_type, $env_id));
-  }
-
-  //do this for all possible documents that were returned by the callbacks
-  foreach ($documents as $document) {
-    // Call an all-entity hook to add stuff to the document.
-    module_invoke_all('apachesolr_index_document_build', $document, $entity, $entity_type, $env_id);
-
-    // Call a type-specific hook to add stuff to the document.
-    module_invoke_all('apachesolr_index_document_build_' . $entity_type, $document, $entity, $env_id);
-
-    // Final processing to ensure that the document is properly structured.
-    // All records must have a label field, which is used for user-friendly labeling.
-    if (empty($document->label)) {
-      $document->label = '';
-    }
-
-    // All records must have a "content" field, which is used for fulltext indexing.
-    // If we don't have one, enter an empty value.  This does mean that the entity
-    // will not be fulltext searchable.
-    if (empty($document->content)) {
-      $document->content = '';
-    }
-
-    // All records must have a "teaser" field, which is used for abbreviated
-    // displays when no highlighted text is available.
-    if (empty($document->teaser)) {
-      $document->teaser = truncate_utf8($document->content, 300, TRUE);
-    }
-  }
-
-  // Now allow modules to alter each other's additions for maximum flexibility.
-
-  // Hook to allow modifications of the retrieved results
-  foreach (module_implements('apachesolr_index_documents_alter') as $module) {
-    $function = $module . '_apachesolr_index_documents_alter';
-    $function($documents, $entity, $entity_type, $env_id);
-  }
-
-  return $documents;
-}
-
-/**
- * Index an array of documents to solr.
- *
- * @param $env_id
- * @param array $documents
- *
- * @return bool|int number indexed, or FALSE on failure.
- * @throws Exception
- */
-function apachesolr_index_send_to_solr($env_id, array $documents) {
-  // Get the $solr object
-  $solr = apachesolr_get_solr($env_id);
-
-  // Do not index when we do not have any documents to send
-  // Send TRUE because this is not an error
-  if (empty($documents)) {
-    return TRUE;
-  }
-  // Send the document off to Solr.
-  $log_success = variable_get('apachesolr_watchdog_successes', TRUE);
-  if ($log_success) {
-    watchdog('Apache Solr', 'Adding @count documents.', array('@count' => count($documents)));
-  }
-  try {
-    $docs_chunk = array_chunk($documents, 20);
-    foreach ($docs_chunk as $docs) {
-      $solr->addDocuments($docs);
-    }
-    if ($log_success) {
-      watchdog('Apache Solr', 'Indexing succeeded on @count documents', array(
-        '@count' => count($documents),
-      ), WATCHDOG_INFO);
-    }
-    return count($documents);
-  }
-  catch (Exception $e) {
-    if (!empty($docs)) {
-      foreach ($docs as $doc) {
-        $eids[] = $doc->entity_type . '/' . $doc->entity_id;
-      }
-    }
-    watchdog('Apache Solr', 'Indexing failed on one of the following entity ids: @eids <br /> !message', array(
-      '@eids' => implode(', ', $eids),
-      '!message' => nl2br(strip_tags($e->getMessage())),
-    ), WATCHDOG_ERROR);
-    return FALSE;
-  }
-}
-
-function _apachesolr_tags_to_index() {
-  $tags_to_index = variable_get('apachesolr_tags_to_index', array(
-    'h1' => 'tags_h1',
-    'h2' => 'tags_h2_h3',
-    'h3' => 'tags_h2_h3',
-    'h4' => 'tags_h4_h5_h6',
-    'h5' => 'tags_h4_h5_h6',
-    'h6' => 'tags_h4_h5_h6',
-    'u' => 'tags_inline',
-    'b' => 'tags_inline',
-    'i' => 'tags_inline',
-    'strong' => 'tags_inline',
-    'em' => 'tags_inline',
-    'a' => 'tags_a'
-  ));
-  return $tags_to_index;
-}
-
-/**
- * Extract HTML tag contents from $text and add to boost fields.
- *
- * @param ApacheSolrDocument $document
- * @param string $text
- *   must be stripped of control characters before hand.
- *
- */
-function apachesolr_index_add_tags_to_document(ApacheSolrDocument $document, $text) {
-  $tags_to_index = _apachesolr_tags_to_index();
-
-  // Strip off all ignored tags.
-  $allowed_tags = '<' . implode('><', array_keys($tags_to_index)) . '>';
-  $text = strip_tags($text, $allowed_tags);
-
-  preg_match_all('@<(' . implode('|', array_keys($tags_to_index)) . ')[^>]*>(.*)</\1>@Ui', $text, $matches);
-  foreach ($matches[1] as $key => $tag) {
-    $tag = drupal_strtolower($tag);
-    // We don't want to index links auto-generated by the url filter.
-    if ($tag != 'a' || !preg_match('@(?:http://|https://|ftp://|mailto:|smb://|afp://|file://|gopher://|news://|ssl://|sslv2://|sslv3://|tls://|tcp://|udp://|www\.)[a-zA-Z0-9]+@', $matches[2][$key])) {
-      if (!isset($document->{$tags_to_index[$tag]})) {
-        $document->{$tags_to_index[$tag]} = '';
-      }
-      $document->{$tags_to_index[$tag]} .= ' ' . apachesolr_clean_text($matches[2][$key]);
-    }
-  }
-}
-
-/**
- * Returns a generic Solr document object for this entity.
- *
- * This function will do the basic processing for the document that is common
- * to all entities, but virtually all entities will need their own additional
- * processing.
- *
- * @param object $entity
- *   The entity for which we want a document.
- * @param string $entity_type
- *   The type of entity we're processing.
- * @return ApacheSolrDocument
- */
-function _apachesolr_index_process_entity_get_document($entity, $entity_type) {
-  list($entity_id, $vid, $bundle) = entity_extract_ids($entity_type, $entity);
-
-  $document = new ApacheSolrDocument();
-
-  // Define our url options in advance. This differs depending on the
-  // language
-  $languages = language_list();
-  $url_options = array('absolute' => TRUE);
-  if (isset($entity->language) && isset($languages[$entity->language])) {
-    $url_options['language'] = $languages[$entity->language];
-  }
-
-  $document->id = apachesolr_document_id($entity_id, $entity_type);
-  $document->site = url(NULL, $url_options);
-  $document->hash = apachesolr_site_hash();
-
-  $document->entity_id = $entity_id;
-  $document->entity_type = $entity_type;
-  $document->bundle = $bundle;
-  $document->bundle_name = entity_bundle_label($entity_type, $bundle);
-
-  if (empty($entity->language)) {
-    // 'und' is the language-neutral code in Drupal 7.
-    $document->ss_language = LANGUAGE_NONE;
-  }
-  else {
-    $document->ss_language = $entity->language;
-  }
-
-  $path = entity_uri($entity_type, $entity);
-  // A path is not a requirement of an entity
-  if (!empty($path)) {
-    $document->path = $path['path'];
-    $document->url = url($path['path'], $path['options'] + $url_options);
-    // Path aliases can have important information about the content.
-    // Add them to the index as well.
-    if (function_exists('drupal_get_path_alias')) {
-      // Add any path alias to the index, looking first for language specific
-      // aliases but using language neutral aliases otherwise.
-      $output = drupal_get_path_alias($document->path, $document->ss_language);
-      if ($output && $output != $document->path) {
-        $document->path_alias = $output;
-      }
-    }
-  }
-  return $document;
-}
-
-/**
- * Returns an array of rows from a query based on an indexing environment.
- * @todo Remove the read only because it is not environment specific
- *
- * @param $env_id
- * @param $entity_type
- * @param $limit
- *
- * @return array list of row to index
- */
-function apachesolr_index_get_entities_to_index($env_id, $entity_type, $limit) {
-  $rows = array();
-  if (variable_get('apachesolr_read_only', 0)) {
-    return $rows;
-  }
-  $bundles = apachesolr_get_index_bundles($env_id, $entity_type);
-  if (empty($bundles)) {
-    return $rows;
-  }
-
-  // Get next batch of entities to index
-  $query = _apachesolr_index_get_next_set_query($env_id, $entity_type);
-  
-  $query->range(0, $limit);
-  $records = $query->execute();
-
-  $status_callbacks = array();
-  foreach ($records as $record) {
-    if (!isset($status_callbacks[$record->bundle])) {
-      $status_callbacks[$record->bundle] = apachesolr_entity_get_callback($entity_type, 'status callback', $record->bundle);
-    }
-    // Check status and status callbacks before sending to the index
-    if (is_array($status_callbacks[$record->bundle])) {
-      foreach ($status_callbacks[$record->bundle] as $status_callback) {
-        if (is_callable($status_callback)) {
-          // by placing $status in front we prevent calling any other callback
-          // after one status callback returned false
-          $record->status = $record->status && $status_callback($record->entity_id, $record->entity_type);
-        }
-      }
-    }
-    $rows[] = $record;
-  }
-  return $rows;
-}
-
-/**
- * Delete the whole index for an environment.
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param string $entity_type
- *   (optional) specify to remove just this entity_type from the index.
- * @param string $bundle
- *   (optional) also specify a bundle to remove just the bundle from
- *   the index.
- *
- * @return
- *   TRUE for success, FALSE if an error occured.
- */
-function apachesolr_index_delete_index($env_id, $entity_type = NULL, $bundle = NULL) {
-  if (apachesolr_environment_variable_get($env_id, 'apachesolr_read_only', APACHESOLR_READ_WRITE) == APACHESOLR_READ_ONLY) {
-    watchdog('Apache Solr', 'Trying to update the Solr index while the environment %env_id is read-only in function %function', array('%function' => __FUNCTION__, '%env_id' => $env_id), WATCHDOG_WARNING);
-    return FALSE;
-  }
-  // Instantiate a new Solr object.
-  try {
-    $solr = apachesolr_get_solr($env_id);
-    $query = '*:*';
-
-    if (!empty($entity_type) && !empty($bundle)) {
-      $query = "(bundle:$bundle AND entity_type:$entity_type) OR sm_parent_entity_bundle:{$entity_type}-{$bundle}";
-    }
-    elseif (!empty($bundle)) {
-      $query = "(bundle:$bundle)";
-    }
-
-    // Allow other modules to modify the delete query.
-    // For example, use the site hash so that you only delete this site's
-    // content:  $query = 'hash:' . apachesolr_site_hash()
-    drupal_alter('apachesolr_delete_by_query', $query);
-    $solr->deleteByQuery($query);
-    $solr->commit();
-
-    // Log the query used for deletion.
-    watchdog('Apache Solr', 'Deleted documents from index with query @query', array('@query' => $query), WATCHDOG_INFO);
-
-    if (!empty($entity_type)) {
-      $reindex_callback = apachesolr_entity_get_callback($entity_type, 'reindex callback');
-      if (is_callable($reindex_callback)) {
-        $reindex_callback($env_id, $bundle);
-      }
-    }
-    else {
-      apachesolr_index_mark_for_reindex($env_id);
-    }
-
-    apachesolr_set_last_index_updated($env_id, REQUEST_TIME);
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    return FALSE;
-  }
-  return TRUE;
-}
-
-/**
- * Internal function that identifies entities that are still due to be indexed.
- *
- * @param string $env_id Environment ID
- * @param string $entity_type
- *
- * @return SelectQuery
- */
-function _apachesolr_index_get_next_set_query($env_id, $entity_type) {
-  $table = apachesolr_get_indexer_table($entity_type);
-  // Get $last_entity_id and $last_changed.
-  $last_index_position = apachesolr_get_last_index_position($env_id, $entity_type);
-  $bundles = apachesolr_get_index_bundles($env_id, $entity_type);
-
-  $last_entity_id = $last_index_position['last_entity_id'];
-  $last_changed = $last_index_position['last_changed'];
-
-  // Find the next batch of entities to index for this entity type.  Note that
-  // for ordering we're grabbing the oldest first and then ordering by ID so
-  // that we get a definitive order.
-  // Also note that we fetch ALL fields from the indexer table
-  $query = db_select($table, 'aie')
-    ->fields('aie')
-    ->condition('aie.bundle', $bundles)
-    ->condition('aie.status', 1)
-    ->condition(db_or()
-      ->condition('aie.changed', $last_changed, '>')
-      // Tie breaker for entities that were changed at exactly
-      // the same second as the last indexed entity
-      ->condition(db_and()
-        ->condition('aie.changed', $last_changed, '=')
-        ->condition('aie.entity_id', $last_entity_id, '>')
-      )
-    )
-    // It is important that everything is indexed in order of changed date and
-    // then on entity_id because otherwise the conditions above will not match
-    // correctly
-    ->orderBy('aie.changed', 'ASC')
-    ->orderBy('aie.entity_id', 'ASC')
-    ->addTag('apachesolr_index_' . $entity_type);
-
-  if ($table == 'apachesolr_index_entities') {
-    // Other, entity-specific tables don't need this condition.
-    $query->condition('aie.entity_type', $entity_type);
-  }
-  return $query;
-}
-
-/**
- * Delete from the index documents with the entity type and any of the excluded bundles.
- *
- * Also deletes all documents that have the entity type and bundle as a parent.
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param string $entity_type
- * @param array $excluded_bundles
- *
- * @return true on success, false on failure.
- */
-function apachesolr_index_delete_bundles($env_id, $entity_type, array $excluded_bundles) {
-  if (apachesolr_environment_variable_get($env_id, 'apachesolr_read_only', APACHESOLR_READ_WRITE) == APACHESOLR_READ_ONLY) {
-    watchdog('Apache Solr', 'Trying to update the Solr index while the environment %env_id is read-only in function %function', array('%function' => __FUNCTION__, '%env_id' => $env_id), WATCHDOG_WARNING);
-    return FALSE;
-  }
-  // Remove newly omitted bundles.
-  try {
-    $solr = apachesolr_get_solr($env_id);
-    foreach ($excluded_bundles as $bundle) {
-      $query = "(bundle:$bundle AND entity_type:$entity_type) OR sm_parent_entity_bundle:{$entity_type}-{$bundle}";
-
-      // Allow other modules to modify the delete query.
-      // For example, use the site hash so that you only delete this site's
-      // content:  $query = 'hash:' . apachesolr_site_hash()
-      drupal_alter('apachesolr_delete_by_query', $query);
-      $solr->deleteByQuery($query);
-
-      // Log the query used for deletion.
-      watchdog('Apache Solr', 'Deleted documents from index with query @query', array('@query' => $query), WATCHDOG_INFO);      
-    }
-    if ($excluded_bundles) {
-      $solr->commit();
-    }
-    return TRUE;
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    return FALSE;
-  }
-}
-
-/**
- * Delete an entity from the index.
- *
- * Also deletes all documents that have the deleted document as a parent.
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param string $entity_type
- * @param string $entity_id
- *
- * @return true on success, false on failure.
- */
-function apachesolr_index_delete_entity_from_index($env_id, $entity_type, $entity_id) {
-  static $failed = FALSE;
-  if ($failed) {
-    return FALSE;
-  }
-  if (apachesolr_environment_variable_get($env_id, 'apachesolr_read_only', APACHESOLR_READ_WRITE) == APACHESOLR_READ_ONLY) {
-    watchdog('Apache Solr', 'Trying to update the Solr index while the environment %env_id is read-only in function %function', array('%function' => __FUNCTION__, '%env_id' => $env_id), WATCHDOG_WARNING);
-    return FALSE;
-  }
-  try {
-    $solr = apachesolr_get_solr($env_id);
-    $document_id = apachesolr_document_id($entity_id, $entity_type);
-    $query = "id:\"$document_id\" OR sm_parent_document_id:\"$document_id\"";
-    $solr->deleteByQuery($query);
-    // Log the query used for deletion.
-    watchdog('Apache Solr', 'Deleted documents from index with query @query', array('@query' => $query), WATCHDOG_INFO);    
-    apachesolr_set_last_index_updated($env_id, REQUEST_TIME);
-    return TRUE;
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    // Don't keep trying queries if they are failing.
-    $failed = TRUE;
-    return FALSE;
-  }
-}
-
-/**
- * Mark a certain entity type for a specific environment for reindexing.
- *
- * @param $env_id
- * @param null $entity_type
- */
-function apachesolr_index_mark_for_reindex($env_id, $entity_type = NULL) {
-  foreach (entity_get_info() as $type => $entity_info) {
-    if (($type == $entity_type) || ($entity_type == NULL)) {
-      if (isset($entity_info['apachesolr']) && ($entity_info['apachesolr']['indexable'])) {
-        $reindex_callback = apachesolr_entity_get_callback($type, 'reindex callback');
-        if (!empty($reindex_callback)) {
-          call_user_func($reindex_callback, $env_id);
-        }
-      }
-    }
-  }
-  apachesolr_clear_last_index_position($env_id, $entity_type);
-  cache_clear_all('*', 'cache_apachesolr', TRUE);
-}
-
-/**
- * Sets what bundles on the specified entity type should be indexed.
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param string $entity_type
- *   The entity type to index.
- * @param array $bundles
- *   The machine names of the bundles to index.
- *
- * @throws Exception
- */
-function apachesolr_index_set_bundles($env_id, $entity_type, array $bundles) {
-  $transaction = db_transaction();
-  try {
-    db_delete('apachesolr_index_bundles')
-      ->condition('env_id', $env_id)
-      ->condition('entity_type', $entity_type)
-      ->execute();
-
-    if ($bundles) {
-      $insert = db_insert('apachesolr_index_bundles')
-        ->fields(array('env_id', 'entity_type', 'bundle'));
-
-      foreach ($bundles as $bundle) {
-        $insert->values(array(
-          'env_id' => $env_id,
-          'entity_type' => $entity_type,
-          'bundle' => $bundle,
-        ));
-      }
-      $insert->execute();
-    }
-  }
-  catch (Exception $e) {
-    $transaction->rollback();
-    // Re-throw the exception so we are aware of the failure.
-    throw $e;
-  }
-}
-
-// This really should be in core, but it isn't yet.  When it gets added to core,
-// we can remove this version.
-// @see http://drupal.org/node/969180
-if (!function_exists('entity_bundle_label')) {
-
-/**
- * Returns the label of a bundle.
- *
- * @param string $entity_type
- *   The entity type; e.g. 'node' or 'user'.
- * @param string $bundle_name
- *   The bundle for which we want the label from
- *
- * @return
- *   A string with the human-readable name of the bundle, or FALSE if not specified.
- */
-function entity_bundle_label($entity_type, $bundle_name) {
-  $labels = &drupal_static(__FUNCTION__, array());
-
-  if (empty($labels)) {
-    foreach (entity_get_info() as $type => $info) {
-      foreach ($info['bundles'] as $bundle => $bundle_info) {
-        $labels[$type][$bundle] = !empty($bundle_info['label']) ? $bundle_info['label'] : FALSE;
-      }
-    }
-  }
-
-  return $labels[$entity_type][$bundle_name];
-}
-
-}
-
-/**
- * Builds the node-specific information for a Solr document.
- *
- * @param ApacheSolrDocument $document
- *   The Solr document we are building up.
- * @param object $node
- *   The entity we are indexing.
- * @param string $entity_type
- *   The type of entity we're dealing with.
- * @param string $env_id
- *   The type of entity we're dealing with.
- *
- * @return array A set of ApacheSolrDocument documents
- */
-function apachesolr_index_node_solr_document(ApacheSolrDocument $document, $node, $entity_type, $env_id) {
-  // None of these get added unless they are explicitly in our schema.xml
-  $document->label = apachesolr_clean_text($node->title);
-
-  // Build the node body.
-  $language = !empty($node->language) ? $node->language : LANGUAGE_NONE;
-  $build = node_view($node, 'search_index', $language);
-  // Remove useless html crap out of the render.
-  unset($build['#theme']);
-  // Allow cache if it's present
-  $build['#cache'] = true;
-  // Render it into html
-  $text = drupal_render($build);
-  $document->content = apachesolr_clean_text($text);
-
-  // Adding the teaser
-  if (isset($node->teaser)) {
-    $document->teaser = apachesolr_clean_text($node->teaser);
-  }
-  else {
-    // If there is no node teaser we will have to generate the teaser
-    // ourselves. We have to be careful to not leak the author and other
-    // information that is normally also not visible.
-    if (isset($node->body[$language][0]['safe_summary'])) {
-      $document->teaser = apachesolr_clean_text($node->body[$language][0]['safe_summary']);
-    }
-    else {
-      $document->teaser = truncate_utf8($document->content, 300, TRUE);
-    }
-  }
-
-  // Author information
-  if ($node->uid == 0 || strlen($node->name) == 0) {
-    // @see user_validate_name(). !'0' === TRUE.
-    $document->ss_name = '0';
-  }
-  else {
-    $document->ss_name = $node->name;
-    // We want the name to be searchable for keywords.
-    $document->tos_name = $node->name;
-  }
-  // Index formatted username so it can be searched and sorted on.
-  $account = (object) array('uid' => $node->uid, 'name' => $node->name);
-  $username = format_username($account);
-  $document->ss_name_formatted = $username;
-  $document->tos_name_formatted = $username;
-  $document->is_uid = $node->uid;
-  $document->bs_status = $node->status;
-  $document->bs_sticky = $node->sticky;
-  $document->bs_promote = $node->promote;
-  $document->is_tnid = $node->tnid;
-  $document->bs_translate = $node->translate;
-
-  // Timestamp of the node
-  $document->ds_created = apachesolr_date_iso($node->created);
-  $document->ds_changed = apachesolr_date_iso($node->changed);
-
-  // Comment counts + time
-  if (isset($node->last_comment_timestamp) && !empty($node->comment_count)) {
-    $document->ds_last_comment_timestamp = apachesolr_date_iso($node->last_comment_timestamp);
-    $document->ds_last_comment_or_change = apachesolr_date_iso(max($node->last_comment_timestamp, $node->changed));
-    $document->is_comment_count = $node->comment_count;
-  }
-  else {
-    $document->ds_last_comment_or_change = apachesolr_date_iso($node->changed);
-  }
-
-  // Fetch extra data normally not visible, including comments.
-  // We do this manually (with module_implements instead of node_invoke_nodeapi)
-  // because we want a keyed array to come back. Only in this way can we decide
-  // whether to index comments or not.
-  $extra = array();
-  $excludes = variable_get('apachesolr_exclude_nodeapi_types', array());
-  $exclude_nodeapi = isset($excludes[$node->type]) ? $excludes[$node->type] : array();
-
-  foreach (module_implements('node_update_index') as $module) {
-    // Invoke nodeapi if this module has not been excluded, for example,
-    // exclude 'comment' for a type to skip indexing its comments.
-    if (empty($exclude_nodeapi[$module])) {
-      $function = $module . '_node_update_index';
-      if ($output = $function($node)) {
-        $extra[$module] = $output;
-      }
-    }
-  }
-
-  // Adding the text of the comments
-  if (isset($extra['comment'])) {
-    $comments = $extra['comment'];
-    // Remove comments from the extra fields
-    unset($extra['comment']);
-    $document->ts_comments = apachesolr_clean_text($comments);
-    // @todo: do we want to reproduce apachesolr_add_tags_to_document() for comments?
-  }
-  // If there are other extra fields, add them to the document
-  if (!empty($extra)) {
-    // Use an omit-norms text field since this is generally going to be short; not
-    // really a full-text field.
-    $document->tos_content_extra = apachesolr_clean_text(implode(' ', $extra));
-  }
-
-  // Add additional indexing based on the body of each record.
-  apachesolr_index_add_tags_to_document($document, $text);
-
-  //  Generic use case for future reference. Callbacks can
-  //  allow you to send back multiple documents
-  $documents = array();
-  $documents[] = $document;
-  return $documents;
-}
-
-/**
- * Function that will be executed if the node bundles were updated.
- * Currently it does nothing, but it could potentially do something later on.
- *
- * @param $env_id
- * @param $existing_bundles
- * @param $new_bundles
- */
-function apachesolr_index_node_bundles_changed($env_id, $existing_bundles, $new_bundles) {
-  // Nothing to do for now.
-}
-
-/**
- * Reindexing callback for ApacheSolr, for nodes.
- *
- * @param string $env_id
- *   The machine name of the environment.
- * @param string|null $bundle
- *   (optional) The bundle type to reindex. If not used
- *   all bundles will be re-indexed.
- *
- * @return null
- *   returns NULL if the specified bundle is not in the indexable bundles list
- *
- * @throws Exception
- */
-function apachesolr_index_node_solr_reindex($env_id, $bundle = NULL) {
-  $indexer_table = apachesolr_get_indexer_table('node');
-  $transaction = db_transaction();
-  try {
-    $indexable_bundles = apachesolr_get_index_bundles($env_id, 'node');
-
-    if ($bundle && !empty($indexable_bundles) && !in_array($bundle, $indexable_bundles)) {
-      // The bundle specified is not in the indexable bundles list.
-      return NULL;
-    }
-
-    // Leave status 0 rows - those need to be
-    // removed from the index later.
-    $delete = db_delete($indexer_table);
-    $delete->condition('status', 1);
-
-    if (!empty($bundle)) {
-      $delete->condition('bundle', $bundle);
-    }
-    elseif (!empty($indexable_bundles)) {
-      $delete->condition('bundle', $indexable_bundles, 'IN');
-    }
-
-    $delete->execute();
-
-    $select = db_select('node', 'n');
-    $select->condition('status', 1);
-    $select->addExpression("'node'", 'entity_type');
-    $select->addField('n', 'nid', 'entity_id');
-    $select->addField('n', 'type', 'bundle');
-    $select->addField('n', 'status', 'status');
-    $select->addExpression(REQUEST_TIME, 'changed');
-
-    if ($bundle) {
-      // Mark all nodes of the specified content type for reindexing.
-      $select->condition('n.type', $bundle);
-    }
-    elseif (!empty($indexable_bundles)) {
-      // Restrict reindex to content types in the indexable bundles list.
-      $select->condition('n.type', $indexable_bundles, 'IN');
-    }
-
-    $insert = db_insert($indexer_table)
-      ->fields(array('entity_id', 'bundle', 'status', 'entity_type', 'changed'))
-      ->from($select)
-      ->execute();
-  }
-  catch (Exception $e) {
-    $transaction->rollback();
-    throw $e;
-  }
-}
-
-/**
- * Status callback for ApacheSolr, for nodes.
- * after indexing a certain amount of nodes
- *
- * @param $entity_id
- * @param $entity_type
- * @param $entity
- *   In the case where the status is being checked while the entity is being
- *   saved, this contains the full entity object. In other cases, it will be
- *   NULL.
- *
- * @return int
- *   The status of the node
- */
-function apachesolr_index_node_status_callback($entity_id, $entity_type, $entity = NULL) {
-  if ($entity === NULL) {
-    $entity = entity_load($entity_type, array($entity_id));
-    $entity = $entity ? reset($entity) : FALSE;
-  }
-  if (empty($entity)) {
-    // If the object failed to load, just stop.
-    return FALSE;
-  }
-  // Make sure we have an integer value.
-  // Anything different from 1 becomes zero
-  return ($entity->status == 1 ? 1 : 0);
-}
-
-/**
- * Callback that converts term_reference field into an array
- *
- * @param object $node
- * @param string $field_name
- * @param string $index_key
- * @param array $field_info
- * @return array $fields
- *   fields that will be indexed for this term reference
- */
-function apachesolr_term_reference_indexing_callback($node, $field_name, $index_key, array $field_info) {
-  // Keep ancestors cached
-  $ancestors = &drupal_static(__FUNCTION__, array());
-
-  $fields = array();
-  $vocab_names = array();
-  if (!empty($node->{$field_name}) && function_exists('taxonomy_get_parents_all')) {
-    $field = $node->$field_name;
-    list($lang, $items) = each($field);
-    foreach ($items as $item) {
-      // Triple indexing of tids lets us do efficient searches (on tid)
-      // and do accurate per field or per-vocabulary faceting.
-
-      // By including the ancestors to a term in the index we make
-      // sure that searches for general categories match specific
-      // categories, e.g. Fruit -> apple, a search for fruit will find
-      // content categorized with apple.
-      if (!isset($ancestors[$item['tid']])) {
-        $ancestors[$item['tid']] = taxonomy_get_parents_all($item['tid']);
-      }
-      foreach ($ancestors[$item['tid']] as $ancestor) {
-        // Index parent term against the field. Note that this happens
-        // regardless of whether the facet is set to show as a hierarchy or not.
-        // We would need a separate field if we were to index terms without any
-        // hierarchy at all.
-        // If the term is singular, then we cannot add another value to the
-        // document as the field is single
-        if ($field_info['multiple']) {
-          $fields[] = array(
-            'key' => $index_key,
-            'value' => $ancestor->tid,
-          );
-        }
-        $fields[] = array(
-          'key' => 'tid',
-          'value' => $ancestor->tid,
-        );
-        $fields[] = array(
-          'key' => 'im_vid_' . $ancestor->vid,
-          'value' => $ancestor->tid,
-        );
-        $name = apachesolr_clean_text($ancestor->name);
-        $vocab_names[$ancestor->vid][] = $name;
-        // We index each name as a string for cross-site faceting
-        // using the vocab name rather than vid in field construction .
-        $fields[] = array(
-          'key' => 'sm_vid_' . apachesolr_vocab_name($ancestor->vid),
-          'value' => $name,
-        );
-      }
-    }
-    // Index the term names into a text field for MLT queries and keyword searching.
-    foreach ($vocab_names as $vid => $names) {
-      $fields[] = array(
-        'key' => 'tm_vid_' . $vid . '_names',
-        'value' => implode(' ', $names),
-      );
-    }
-  }
-  return $fields;
-}
-
-/**
- * Helper function - return a safe (PHP identifier) vocabulary name.
- *
- * @param integer $vid
- * @return string
- */
-function apachesolr_vocab_name($vid) {
-  $names = &drupal_static(__FUNCTION__, array());
-
-  if (!isset($names[$vid])) {
-    $vocab_name = db_query('SELECT v.name FROM {taxonomy_vocabulary} v WHERE v.vid = :vid', array(':vid' => $vid))->fetchField();
-    $names[$vid] = preg_replace('/[^a-zA-Z0-9_\x7f-\xff]/', '_', $vocab_name);
-    // Fallback for names ending up all as '_'.
-    $check = rtrim($names[$vid], '_');
-    if (!$check) {
-      $names[$vid] = '_' . $vid . '_';
-    }
-  }
-  return $names[$vid];
-}
-
-/**
- * Callback that converts list module field into an array
- * For every multivalued value we also add a single value to be able to
- * use the stats
- *
- * @param object $entity
- * @param string $field_name
- * @param string $index_key
- * @param array $field_info
- * @return array $fields
- */
-function apachesolr_fields_default_indexing_callback($entity, $field_name, $index_key, array $field_info) {
-  $fields = array();
-  $numeric = TRUE;
-  if (!empty($entity->{$field_name})) {
-    $field = $entity->$field_name;
-    list($lang, $values) = each($field);
-    switch ($field_info['index_type']) {
-      case 'integer':
-      case 'half-int':
-      case 'sint':
-      case 'tint':
-      case 'thalf-int':
-      case 'boolean':
-        $function = 'intval';
-        break;
-      case 'float':
-      case 'double':
-      case 'sfloat':
-      case 'sdouble':
-      case 'tfloat':
-      case 'tdouble':
-        $function = 'apachesolr_floatval';
-        break;
-      default:
-        $numeric = FALSE;
-        $function = 'apachesolr_clean_text';
-    }
-    for ($i = 0; $i < count($values); $i++) {
-      $fields[] = array(
-        'key' => $index_key,
-        'value' => $function($values[$i]['value']),
-      );
-    }
-    // Also store the first value of the field in a singular index for multi value fields
-    if ($field_info['multiple'] && $numeric && !empty($values[0])) {
-      $singular_field_info = $field_info;
-      $singular_field_info['multiple'] = FALSE;
-      $single_key = apachesolr_index_key($singular_field_info);
-      $fields[] = array(
-        'key' => $single_key,
-        'value' => $function($values[0]['value']),
-      );
-    }
-  }
-  return $fields;
-}
-
-/**
- * This function is used during indexing to normalize the DATE and DATETIME
- * fields into the appropriate format for Apache Solr.
- *
- * @param object $entity
- * @param string $field_name
- * @param string $index_key
- * @param array $field_info
- * @return array $fields
- */
-function apachesolr_date_default_indexing_callback($entity, $field_name, $index_key, array $field_info) {
-  $fields = array();
-  if (!empty($entity->{$field_name})) {
-    $field = $entity->$field_name;
-    list($lang, $values) = each($field);
-    // Construct a Solr-ready date string in UTC time zone based on the field's date string and time zone.
-    $tz = new DateTimeZone(isset($field['timezone']) ? $field['timezone'] : 'UTC');
-
-    // $fields may end up having two values; one for the start date
-    // and one for the end date.
-    foreach ($values as $value) {
-      if ($date = date_create($value['value'], $tz)) {
-        $index_value = apachesolr_date_iso($date->format('U'));
-        $fields[] = array(
-          'key' => $index_key,
-          'value' => $index_value,
-        );
-      }
-
-      if (isset($value['value2'])) {
-        if ($date = date_create($value['value2'], $tz)) {
-          $index_value = apachesolr_date_iso($date->format('U'));
-          $fields[] = array(
-            // The value2 element is the end date. Therefore it gets indexed
-            // into its own Solr field.
-            'key' => $index_key . '_end',
-            'value' => $index_value,
-          );
-        }
-      }
-    }
-  }
-  return $fields;
-}
-
-/**
- * This function is used during indexing to normalize the DATESTAMP fields
- * into the appropriate format for Apache Solr.
- *
- * @param object $entity
- * @param string $field_name
- * @param string $index_key
- * @param array $field_info
- * @return array $fields
- */
-function apachesolr_datestamp_default_indexing_callback($entity, $field_name, $index_key, array $field_info) {
-  $fields = array();
-  if (!empty($entity->{$field_name})) {
-    // $fields may end up having two values; one for the start date
-    // and one for the end date.
-    $field = $entity->$field_name;
-    list($lang, $values) = each($field);
-
-    foreach ($values as $value) {
-      if (isset($value['value']) && $value['value'] != 0) {
-        $index_value = apachesolr_date_iso($value['value']);
-        $fields[] = array(
-          'key' => $index_key,
-          'value' => $index_value,
-        );
-      }
-      if (isset($value['value2']) && $value['value'] != 0) {
-        $index_value = apachesolr_date_iso($value['value2']);
-        $fields[] = array(
-          // The value2 element is the end date. Therefore it gets indexed
-          // into its own Solr field.
-          'key' => $index_key . '_end',
-          'value' => $index_value,
-        );
-      }
-    }
-  }
-  return $fields;
-}
-
-function apachesolr_floatval($value) {
-  return sprintf('%0.20f', $value);
-}
-
-/**
- *  Indexing callback for the node_reference module
- *  by the references module
- *
- * @param object $entity
- * @param string $field_name
- * @param string $index_key
- * @param array $field_info
- * @return array $fields
- */
-function apachesolr_nodereference_indexing_callback($entity, $field_name, $index_key, array $field_info) {
-  $fields = array();
-  // Druapl 7 core sets all fields to use LANGUAGE_NONE even if the entity
-  // (e.g. node) is flagged as being in a specific language.
-  if (!empty($entity->{$field_name}) && isset($entity->{$field_name}[LANGUAGE_NONE])) {
-    $index_key = apachesolr_index_key($field_info);
-    foreach ($entity->{$field_name}[LANGUAGE_NONE] as $reference) {
-      if ($index_value = (!empty($reference['nid'])) ? $reference['nid'] : FALSE) {
-        $fields[] = array(
-          'key' => $index_key,
-          'value' => $index_value,
-        );
-      }
-    }
-  }
-  return $fields;
-}
-
-/**
- *  Indexing callback for the user_reference module
- *  by the references module
- *
- * @param object $entity
- * @param string $field_name
- * @param string $index_key
- * @param array $field_info
- * @return array $fields
- */
-function apachesolr_userreference_indexing_callback($entity, $field_name, $index_key, array $field_info) {
-  $fields = array();
-  // Druapl 7 core sets all fields to use LANGUAGE_NONE even if the entity
-  // (e.g. node) is flagged as being in a specific language.
-  if (!empty($entity->{$field_name}) && isset($entity->{$field_name}[LANGUAGE_NONE])) {
-    $index_key = apachesolr_index_key($field_info);
-    foreach ($entity->{$field_name}[LANGUAGE_NONE] as $reference) {
-      if ($index_value = (isset($reference['uid']) && strlen($reference['uid'])) ? $reference['uid'] : FALSE) {
-        $fields[] = array(
-          'key' => $index_key,
-          'value' => $index_value,
-        );
-      }
-    }
-  }
-  return $fields;
-}
-
-/**
- * Indexing callback for entityreference fields.
- *
- * @param object $entity
- * @param string $field_name
- * @param string $index_key
- * @param array $field_info
- * @return array $fields
- *
- */
-function apachesolr_entityreference_indexing_callback($entity, $field_name, $index_key, $field_info) {
-  $fields = array();
-  if (!empty($entity->{$field_name}) && array_key_exists(LANGUAGE_NONE, $entity->$field_name)) {
-
-    // Gets entity type and index key. We need to prefix the ID with the entity
-    // type so we know what entity we are dealing with in the mapping callback.
-    $entity_type = $field_info['field']['settings']['target_type'];
-    $index_key = apachesolr_index_key($field_info);
-
-    // Iterates over all references and adds them to the fields.
-    foreach ($entity->{$field_name}[LANGUAGE_NONE] as $reference) {
-      if ($id = (!empty($reference['target_id'])) ? $reference['target_id'] : FALSE) {
-        $fields[] = array(
-          'key' => $index_key,
-          'value' => $entity_type . ':' . $id,
-        );
-      }
-    }
-  }
-  return $fields;
-}
-
-/**
- * hook_cron() helper to try to make the index table consistent with their
- * respective entity table.
- */
-function apachesolr_index_node_check_table() {
-  // Check for unpublished content that wasn't deleted from the index.
-  $table = apachesolr_get_indexer_table('node');
-  // We do not check more nodes than double the cron limit per time
-  // Update or delete at most this many in each Solr query.
-  $limit = variable_get('apachesolr_cron_mass_limit', 500);
-  $query = db_select($table, 'aie')
-    ->fields('n', array('nid', 'status'))
-    ->where('aie.status <> n.status')
-    ->range(0, ($limit * 2))
-    ->addTag('apachesolr_index_node');
-  $query->innerJoin('node', 'n', 'n.nid = aie.entity_id');
-  $nodes = $query->execute()->fetchAllAssoc('nid');
-
-  $node_lists = array_chunk($nodes, $limit, TRUE);
-  foreach ($node_lists as $nodes) {
-    watchdog('Apache Solr', 'On cron running apachesolr_nodeapi_mass_update() on nids @nids', array('@nids' => implode(',', array_keys($nodes))), WATCHDOG_NOTICE);
-    if (!apachesolr_index_nodeapi_mass_update($nodes, $table)) {
-      // Solr query failed - so stop trying.
-      break;
-    }
-  }
-
-  // Check for deleted content that wasn't deleted from the index.
-  $query = db_select($table, 'aien')
-    ->isNull('n.nid')
-    ->range(0, ($limit*2));
-  $query->addExpression('aien.entity_id', 'nid');
-  $query->leftJoin('node', 'n', 'n.nid = aien.entity_id');
-  $nodes = $query->execute()->fetchAllAssoc('nid');
-  $node_lists = array_chunk($nodes, $limit, TRUE);
-
-  foreach ($node_lists as $nodes) {
-    watchdog('Apache Solr', 'On cron running apachesolr_nodeapi_mass_delete() on nids @nids', array('@nids' => implode(',', array_keys($nodes))), WATCHDOG_NOTICE);
-    if (!apachesolr_index_nodeapi_mass_delete($nodes, $table)) {
-      // Solr query failed - so stop trying.
-      break;
-    }
-  }
-}
-
-/**
- * Mass Update nodes from the solr indexer table
- *
- * @param array $nodes
- * @param string $table
- * @return boolean
- *   true if we mass updated, false if failed
- */
-function apachesolr_index_nodeapi_mass_update(array $nodes, $table = NULL) {
-  if (empty($nodes)) {
-    return TRUE;
-  }
-  if (empty($table)) {
-    $table = apachesolr_get_indexer_table('node');
-  }
-
-  if (apachesolr_environment_variable_get(apachesolr_default_environment(), 'apachesolr_read_only', APACHESOLR_READ_WRITE) == APACHESOLR_READ_ONLY) {
-    watchdog('Apache Solr', 'Trying to update the Solr index while the environment %env_id is read-only in function %function', array('%function' => __FUNCTION__, '%env_id' => apachesolr_default_environment()), WATCHDOG_WARNING);
-    return FALSE;
-  }
-
-  $published_ids = array();
-  $unpublished_ids = array();
-  foreach ($nodes as $node) {
-    if ($node->status) {
-      $published_ids[$node->nid] = apachesolr_document_id($node->nid);
-    }
-    else {
-      $unpublished_ids[$node->nid] = apachesolr_document_id($node->nid);
-    }
-  }
-  try {
-    $env_id = apachesolr_default_environment();
-    $solr = apachesolr_get_solr($env_id);
-    $solr->deleteByMultipleIds($unpublished_ids);
-    apachesolr_set_last_index_updated($env_id, REQUEST_TIME);
-
-      // There was no exception, so update the table.
-    if ($published_ids) {
-      db_update($table)
-        ->fields(array('changed' => REQUEST_TIME, 'status' => 1))
-        ->condition('entity_id', array_keys($published_ids), 'IN')
-        ->execute();
-    }
-    if ($unpublished_ids) {
-      db_update($table)
-        ->fields(array('changed' => REQUEST_TIME, 'status' => 0))
-        ->condition('entity_id', array_keys($unpublished_ids), 'IN')
-        ->execute();
-    }
-    return TRUE;
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    return FALSE;
-  }
-}
-
-/**
- * Mass delete nodes from the solr indexer tables.
- *
- * @param array $nodes
- * @param string $table
- * @return boolean
- *   true if we mass updated, false if failed
- */
-function apachesolr_index_nodeapi_mass_delete(array $nodes, $table = NULL) {
-  if (empty($nodes)) {
-    return TRUE;
-  }
-  if (empty($table)) {
-    $table = apachesolr_get_indexer_table('node');
-  }
-
-  if (apachesolr_environment_variable_get(apachesolr_default_environment(), 'apachesolr_read_only', APACHESOLR_READ_WRITE) == APACHESOLR_READ_ONLY) {
-    watchdog('Apache Solr', 'Trying to update the Solr index while the environment %env_id is read-only in function %function', array('%function' => __FUNCTION__, '%env_id' => apachesolr_default_environment()), WATCHDOG_WARNING);
-    return FALSE;
-  }
-
-  $ids = array();
-  $nids = array();
-  foreach ($nodes as $node) {
-    $ids[] = apachesolr_document_id($node->nid);
-    $nids[] = $node->nid;
-  }
-  try {
-    $env_id = apachesolr_default_environment();
-    $solr = apachesolr_get_solr($env_id);
-    $solr->deleteByMultipleIds($ids);
-    apachesolr_set_last_index_updated($env_id, REQUEST_TIME);
-    // There was no exception, so update the table.
-    db_delete($table)
-      ->condition('entity_id', $nids, 'IN')
-      ->execute();
-    return TRUE;
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    return FALSE;
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.info b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.info
deleted file mode 100644
index 45d33e0c513499b7798bb47f4b01508e3621b1a9..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.info
+++ /dev/null
@@ -1,28 +0,0 @@
-name = Apache Solr framework
-description = Framework for searching with Solr
-package = Search Toolkit
-core = 7.x
-configure = admin/config/search/apachesolr/settings
-
-files[] = apachesolr.interface.inc
-files[] = Drupal_Apache_Solr_Service.php
-files[] = Apache_Solr_Document.php
-files[] = Solr_Base_Query.php
-files[] = plugins/facetapi/adapter.inc
-files[] = plugins/facetapi/query_type_date.inc
-files[] = plugins/facetapi/query_type_term.inc
-files[] = plugins/facetapi/query_type_numeric_range.inc
-files[] = plugins/facetapi/query_type_geo.inc
-files[] = tests/Dummy_Solr.php
-files[] = tests/apachesolr_base.test
-files[] = tests/solr_index_and_search.test
-files[] = tests/solr_base_query.test
-files[] = tests/solr_base_subquery.test
-files[] = tests/solr_document.test
-
-; Information added by Drupal.org packaging script on 2015-12-02
-version = "7.x-1.8"
-core = "7.x"
-project = "apachesolr"
-datestamp = "1449085462"
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.install b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.install
deleted file mode 100644
index 7bc09b8f93eab2e1c657ea2ae36bce2864608386..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.install
+++ /dev/null
@@ -1,922 +0,0 @@
-<?php
-
-/**
- * @file
- *   Install and related hooks for apachesolr_search.
- */
-
-/**
- * Implements hook_requirements().
- */
-function apachesolr_requirements($phase) {
-  $requirements = array();
-  if ($phase != 'runtime') {
-    return $requirements;
-  }
-  // Ensure translations don't break at install time
-  $t = get_t();
-  $has_settings = FALSE;
-  $id = apachesolr_default_environment();
-  $environment = apachesolr_environment_load($id);
-  if (!$environment || empty($environment['url'])) {
-    $requirements['apachesolr'] = array(
-      'title' => $t('Apache Solr'),
-      'value' => $t('Missing environment configuration'),
-      'description' => $t('Missing or invalid Solr environment record for the default environment ID %id.', array('%id' => $id)),
-      'severity' => REQUIREMENT_ERROR,
-    );
-  }
-  else {
-    $has_settings = TRUE;
-  }
-
-  if ($has_settings) {
-    $ping = FALSE;
-    try {
-      $solr = apachesolr_get_solr($id);
-      $ping = @$solr->ping(variable_get('apachesolr_ping_timeout', 4));
-      // If there is no $solr object, there is no instance available, so don't continue.
-      if (!$ping) {
-        throw new Exception(t('No Solr instance available when checking requirements.'));
-      }
-    }
-    catch (Exception $e) {
-      watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    }
-    $value = $ping ? $t('Your site has contacted the Apache Solr server.') : $t('Your site was unable to contact the Apache Solr server.');
-    $severity = $ping ? REQUIREMENT_OK : REQUIREMENT_ERROR;
-    $requirements['apachesolr'] = array(
-      'title' => $t('Apache Solr'),
-      'value' => $value,
-      'description' => $t('Default environment url: <br/> %url',  array('%url' => $environment['url'])),
-      'severity' => $severity,
-    );
-  }
-
-  return $requirements;
-}
-
-/**
- * Implements hook_install().
- */
-function apachesolr_install() {
-  module_load_include('inc', 'apachesolr', 'apachesolr_search.admin');
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  // Create one MLT block.
-  apachesolr_search_mlt_save_block(array('name' => st('More like this')));
-  db_insert('apachesolr_environment')->fields(array('env_id' => 'solr', 'name' => 'localhost server', 'url' => 'http://localhost:8983/solr'))->execute();
-
-  // Initialize the entities to index. We enable all node types by default
-  $info = entity_get_info('node');
-  $bundles = array_keys($info['bundles']);
-  $env_id = apachesolr_default_environment();
-  apachesolr_index_set_bundles($env_id, 'node', $bundles);
-
-  drupal_set_message(st('Apache Solr is enabled. Visit the <a href="@settings_link">settings page</a>.', array('@settings_link' => url('admin/config/search/apachesolr'))));
-}
-
-/**
- * Implements hook_enable().
- */
-function apachesolr_enable() {
-  // Completely build the index table.
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $env_id = apachesolr_default_environment();
-  apachesolr_index_mark_for_reindex($env_id);
-}
-
-/**
- * Implements hook_schema().
- */
-function apachesolr_schema() {
-
-  $table = drupal_get_schema_unprocessed('system', 'cache');
-  $table['description'] = 'Cache table for apachesolr to store Luke data and indexing information.';
-  $schema['cache_apachesolr'] = $table;
-
-  $schema['apachesolr_environment'] = array(
-    'description' => 'The Solr search environment table.',
-    // Enable CTools exportables based on this table.
-    'export' => array(
-      // Environment machine name.
-      'key' => 'env_id',
-      // Description of key.
-      'key name' => 'Environment machine name',
-      // Apache Solr doesn't allow disabling environments.
-      'can disable' => FALSE,
-      // Variable name to use in exported code.
-      'identifier' => 'environment',
-      // Thin wrapper for the environment save callback.
-      'save callback' => 'apachesolr_ctools_environment_save',
-      // Thin wrapper for the environment delete callback.
-      'delete callback' => 'apachesolr_ctools_environment_delete',
-      // Includes the environment variables in 'conf' as well as the fields in this table.
-      'export callback' => 'apachesolr_ctools_environment_export',
-      // Use the same hook as the API name below.
-      'default hook' => 'apachesolr_environments',
-      // CTools API implementation.
-      'api' => array(
-        'owner' => 'apachesolr',
-        'api' => 'apachesolr_environments',
-        'minimum_version' => 1,
-        'current_version' => 1,
-      ),
-    ),
-    'fields' => array(
-      'env_id' => array(
-        'description' => 'Unique identifier for the environment',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-      ),
-      'name' => array(
-        'description' => 'Human-readable name for the server',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => ''
-      ),
-      'url' => array(
-        'description' => 'Full url for the server',
-        'type' => 'varchar',
-        'length' => 1000,
-        'not null' => TRUE,
-      ),
-      'service_class' => array(
-        'description' => 'Optional class name to use for connection',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => ''
-      ),
-    ),
-    'primary key' => array('env_id'),
-  );
-  $schema['apachesolr_environment_variable'] = array(
-    'description' => 'Variable values for each Solr search environment.',
-    'fields' => array(
-      'env_id' => array(
-        'description' => 'Unique identifier for the environment',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-      ),
-      'name' => array(
-        'description' => 'The name of the variable.',
-        'type' => 'varchar',
-        'length' => 128,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'value' => array(
-        'description' => 'The value of the variable.',
-        'type' => 'blob',
-        'not null' => TRUE,
-        'size' => 'big',
-      ),
-    ),
-    'primary key' => array('env_id', 'name'),
-  );
-
-  // Technically the entity system does not require an integer ID.
-  // However, documentation mentions :
-  // id: The name of the property that contains the primary id of the
-  // entity. Every entity object passed to the Field API must have this
-  // property and its value must be numeric.
-
-  //Predefine an amount of types that get their own table
-  $types = array(
-      'other' => 'apachesolr_index_entities',
-      'node' => 'apachesolr_index_entities_node',
-  );
-  foreach ($types as $type => $table) {
-    $schema[$table] = array(
-      'description' => 'Stores a record of when an entity changed to determine if it needs indexing by Solr.',
-      'fields' => array(
-        'entity_type' => array(
-          'description' => 'The type of entity.',
-          'type' => 'varchar',
-          'length' => 32,
-          'not null' => TRUE,
-        ),
-        'entity_id' => array(
-          'description' => 'The primary identifier for an entity.',
-          'type' => 'int',
-          'unsigned' => TRUE,
-          'not null' => TRUE,
-        ),
-        'bundle' => array(
-          'description' => 'The bundle to which this entity belongs.',
-          'type' => 'varchar',
-          'length' => 128,
-          'not null' => TRUE,
-        ),
-        'status' => array(
-          'description' => 'Boolean indicating whether the entity should be in the index.',
-          'type' => 'int',
-          'not null' => TRUE,
-          'default' => 1,
-        ),
-        'changed' => array(
-          'description' => 'The Unix timestamp when an entity was changed.',
-          'type' => 'int',
-          'not null' => TRUE,
-          'default' => 0,
-        ),
-      ),
-      'indexes' => array(
-        'bundle_changed' => array('bundle', 'changed'),
-      ),
-      'primary key' => array('entity_id'),
-    );
-    if ($type == 'other') {
-      // Need the entity type also in the pkey for multiple entities in one table.
-      $schema[$table]['primary key'][] = 'entity_type';
-    }
-  }
-
-  $schema['apachesolr_index_bundles'] = array(
-    'description' => 'Records what bundles we should be indexing for a given environment.',
-    'fields' => array(
-      'env_id' => array(
-        'description' => 'The name of the environment.',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-      ),
-      'entity_type' => array(
-        'description' => 'The type of entity.',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-      ),
-      'bundle' => array(
-        'description' => 'The bundle to index.',
-        'type' => 'varchar',
-        'length' => 128,
-        'not null' => TRUE,
-      ),
-    ),
-    'primary key' => array('env_id', 'entity_type', 'bundle'),
-  );
-  return $schema;
-}
-
-/**
- * Implements hook_uninstall().
- */
-function apachesolr_uninstall() {
-  // Remove variables.
-  variable_del('apachesolr_default_environment');
-  variable_del('apachesolr_rows');
-  variable_del('apachesolr_site_hash');
-  variable_del('apachesolr_index_last');
-  variable_del('apachesolr_search_mlt_blocks');
-  variable_del('apachesolr_cron_limit');
-  variable_del('apachesolr_exclude_nodeapi_types');
-  variable_del('apachesolr_failure');
-  variable_del('apachesolr_index_updated');
-  variable_del('apachesolr_read_only');
-  variable_del('apachesolr_set_nodeapi_messages');
-  variable_del('apachesolr_last_optimize');
-  variable_del('apachesolr_update_from_6303');
-  // Remove blocks.
-  db_delete('block')->condition('module', 'apachesolr')->execute();
-}
-
-/**
- * Add a table to track Solr servers.
- */
-function apachesolr_update_7000() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  $schema['apachesolr_server'] = array(
-    'description' => 'The Solr server table.',
-    'fields' => array(
-     'server_id' => array(
-        'description' => 'Unique identifier for the server',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-      ),
-      'name' => array(
-        'description' => 'Human-readable name for the server',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => ''
-      ),
-      'scheme' => array(
-        'description' => 'Preferred scheme for the registered server',
-        'type' => 'varchar',
-        'length' => 10,
-        'not null' => TRUE,
-        'default' => 'http'
-      ),
-      'host' => array(
-        'description' => 'Host name for the registered server',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => ''
-      ),
-      'port' => array(
-        'description' => 'Port number for the registered server',
-        'type' => 'int',
-        'not null' => TRUE,
-      ),
-      'path' => array(
-        'description' => 'Path to the registered server',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => ''
-      ),
-      'service_class' => array(
-        'description' => 'Optional class name to use for connection',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => ''
-      ),
-    ),
-    'primary key' => array('server_id'),
-  );
-  db_create_table('apachesolr_server', $schema['apachesolr_server']);
-  // Insert into the table the current single server record.
-  $host = variable_get('apachesolr_host', 'localhost');
-  $port = variable_get('apachesolr_port', '8983');
-  $path = variable_get('apachesolr_path', '/solr');
-  db_insert('apachesolr_server')->fields(array('server_id' => 'solr', 'name' => 'Apache Solr server', 'host' => $host, 'port' => $port, 'path' => $path))->execute();
-  variable_set('apachesolr_default_server', 'solr');
-  variable_del('apachesolr_host');
-  variable_del('apachesolr_port');
-  variable_del('apachesolr_path');
-  $value = variable_get('apachesolr_service_class', NULL);
-  if (is_array($value)) {
-    list($module, $filepath, $class) = $value;
-    variable_set('apachesolr_service_class', $class);
-  }
-  variable_del('apachesolr_logging');
-}
-
-
-/**
- * Re-jigger the schema to use fewer, shorter keys.
- */
-function apachesolr_update_7001() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  if (db_field_exists('apachesolr_server', 'asid')) {
-    // You installed the beta1 and need to be fixed up.
-    db_drop_field('apachesolr_server', 'asid');
-    db_drop_unique_key('apachesolr_server', 'server_id');
-    db_add_primary_key('apachesolr_server', array('server_id'));
-    db_drop_unique_key('apachesolr_server', 'host_post_path');
-    db_change_field('apachesolr_server', 'port', 'port',
-      array(
-        'description' => 'Port number for the registered server',
-        'type' => 'int',
-        'not null' => TRUE,
-      )
-    );
-  }
-}
-
-/**
- * Create the per-server variable table.
- */
-function apachesolr_update_7002() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  $schema['apachesolr_server_variable'] = array(
-    'description' => 'Variable values for each Solr server.',
-    'fields' => array(
-     'server_id' => array(
-        'description' => 'Unique identifier for the server',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-      ),
-      'name' => array(
-        'description' => 'The name of the variable.',
-        'type' => 'varchar',
-        'length' => 128,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'value' => array(
-        'description' => 'The value of the variable.',
-        'type' => 'blob',
-        'not null' => TRUE,
-        'size' => 'big',
-      ),
-    ),
-    'primary key' => array('server_id', 'name'),
-  );
-  db_create_table('apachesolr_server_variable', $schema['apachesolr_server_variable']);
-  $server_id = variable_get('apachesolr_default_server', 'solr');
-  // Variables to be migrated:
-  $conf['apachesolr_enabled_facets'] = variable_get('apachesolr_enabled_facets', NULL);
-  $conf['apachesolr_search_query_fields'] = variable_get('apachesolr_search_query_fields', NULL);
-  $conf['apachesolr_search_type_boosts'] = variable_get('apachesolr_search_type_boosts', NULL);
-  $conf['apachesolr_search_comment_boost'] = variable_get('apachesolr_search_comment_boost', NULL);
-  $conf['apachesolr_search_changed_boost'] = variable_get('apachesolr_search_changed_boost', NULL);
-  $conf['apachesolr_search_sticky_boost'] = variable_get('apachesolr_search_sticky_boost', NULL);
-  $conf['apachesolr_search_promote_boost'] = variable_get('apachesolr_search_promote_boost', NULL);
-  $conf['apachesolr_search_excluded_types'] = variable_get('apachesolr_search_excluded_types', NULL);
-  foreach ($conf as $name => $value) {
-    if ($value !== NULL) {
-      db_merge('apachesolr_server_variable')
-        ->key(array('server_id' => $server_id, 'name' => $name))
-        ->fields(array('value' => serialize($value)))
-        ->execute();
-    }
-    variable_del($name);
-  }
-}
-
-/**
- * Move excluded comment types into a new variable.
- */
-function apachesolr_update_7003() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  // Same as apachesolr_update_6006()
-  $exclude_comment_types = variable_get('apachesolr_exclude_comments_types', NULL);
-  if (is_array($exclude_comment_types)) {
-    $exclude = array();
-    foreach ($exclude_comment_types as $type) {
-      $exclude[$type]['comment'] = TRUE;
-    }
-    variable_set('apachesolr_exclude_nodeapi_types', $exclude);
-  }
-  variable_del('apachesolr_exclude_comments_types');
-}
-
-/**
- * Update apachesolr_failure variable.
- */
-function apachesolr_update_7004() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  $failure = variable_get('apachesolr_failure', NULL);
-  switch ($failure) {
-    case 'show_error':
-      variable_set('apachesolr_failure', 'apachesolr:show_error');
-      break;
-    case 'show_drupal_results':
-      variable_set('apachesolr_failure', 'node');
-      break;
-    case 'show_no_results':
-      variable_set('apachesolr_failure', 'apachesolr:show_no_results');
-      break;
-  }
-}
-
-/**
- * Re-jigger the schema to use just a url column.
- */
-function apachesolr_update_7005() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  if (db_field_exists('apachesolr_server', 'port')) {
-    // You installed the beta3 and need to be fixed up.
-    $servers = db_query('SELECT * FROM {apachesolr_server}')->fetchAllAssoc('server_id', PDO::FETCH_ASSOC);
-    db_drop_field('apachesolr_server', 'scheme');
-    db_drop_field('apachesolr_server', 'port');
-    db_drop_field('apachesolr_server', 'path');
-    db_change_field('apachesolr_server', 'host', 'url',
-      array(
-        'description' => 'Full url for the server',
-        'type' => 'varchar',
-        'length' => 1000,
-        'not null' => TRUE,
-      )
-    );
-    foreach ($servers as $id => $server) {
-      $port = $server['port'] ? ':' . $server['port'] : '';
-      $url = $server['scheme'] . '://' . $server['host'] . $port . $server['path'];
-    db_update('apachesolr_server')
-      ->fields(array('url' => $url))
-      ->condition('server_id', $id)
-      ->execute();
-    }
-  }
-}
-
-/**
- * Remove facet-related variable deprecated by the Facet API integration.
- */
-function apachesolr_update_7006() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  variable_del('apachesolr_facetstyle');
-  variable_del('apachesolr_facet_show_children');
-  variable_del('apachesolr_facet_query_limits');
-  variable_del('apachesolr_facet_query_limit_default');
-}
-
-/**
- * Rename tables to make them more generic.
- */
-function apachesolr_update_7007() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  db_drop_primary_key('apachesolr_server');
-  db_drop_primary_key('apachesolr_server_variable');
-  db_rename_table('apachesolr_server', 'apachesolr_environment');
-  db_rename_table('apachesolr_server_variable', 'apachesolr_environment_variable');
-  db_change_field('apachesolr_environment', 'server_id', 'env_id', array(
-    'description' => 'Unique identifier for the environment',
-    'type' => 'varchar',
-    'length' => 64,
-    'not null' => TRUE)
-  );
-  db_change_field('apachesolr_environment_variable', 'server_id', 'env_id', array(
-    'description' => 'Unique identifier for the environment',
-    'type' => 'varchar',
-    'length' => 64,
-    'not null' => TRUE)
-  );
-  db_add_primary_key('apachesolr_environment', array('env_id'));
-  db_add_primary_key('apachesolr_environment_variable', array('env_id', 'name'));
-  $id = variable_get('apachesolr_default_server', NULL);
-  if (isset($id)) {
-    variable_set('apachesolr_default_environment', $id);
-  }
-  variable_del('apachesolr_default_server');
-}
-
-/**
- * Remove more facet-related variable deprecated by the Facet API integration.
- */
-function apachesolr_update_7008() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  variable_del('apachesolr_facet_missing');
-  variable_del('apachesolr_facet_query_initial_limits');
-  variable_del('apachesolr_facet_query_sorts');
-  variable_del('apachesolr_facet_sort_active');
-  variable_del('apachesolr_operator');
-}
-
-/**
- * Update Facet API block deltas to account for removal of numeric ID from field names.
- */
-function apachesolr_update_7009() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  // Only run when facetapi is available and/or installed
-  if (module_exists('facetapi')) {
-    module_load_include('inc', 'facetapi', 'facetapi.block');
-    // Get all searchers
-    $searchers = facetapi_get_searcher_info();
-    $realms = facetapi_get_realm_info();
-    foreach ($searchers as $searcher_id => $searcher) {
-      foreach ($realms as $realm_id => $realm) {
-        foreach (field_info_fields() as $field_name => $field) {
-          // Generate the old delta
-          $facet_name_old = $field['id'] . '_' . $field['field_name'];
-          $delta_old = facetapi_build_delta($searcher['name'], $realm['name'], $facet_name_old);
-          $delta_old = substr(drupal_hash_base64($delta_old), 0, 32);
-          // Generate the new delta
-          $facet_name = $field['field_name'];
-          $delta = facetapi_build_delta($searcher['name'], $realm['name'], $facet_name);
-          $delta = substr(drupal_hash_base64($delta), 0, 32);
-          db_update('block')
-            ->fields(array('delta' => $delta))
-            ->condition('module', 'facetapi')
-            ->condition('delta', $delta_old)
-            ->execute();
-        }
-      }
-    }
-  }
-}
-
-/**
- * Update cache table schema for Drupal 7.
- */
-function apachesolr_update_7010() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  db_drop_field('cache_apachesolr', 'headers');
-  return 'Updated cache table schema for Drupal 7.';
-}
-
-/**
- * Change the namespace for the indexer from apachesolr_search to apachesolr
- */
-function apachesolr_update_7011() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  $stored = variable_get('apachesolr_index_last', array());
-  if (isset($stored['apachesolr_search'])) {
-    $stored['apachesolr'] = $stored['apachesolr_search'];
-    unset($stored['apachesolr_search']);
-    variable_set('apachesolr_index_last', $stored);
-  }
-  return 'Updated the namespace variable for the index process.';
-}
-
-/**
- * Rename some variables and update the database tables
- */
-function apachesolr_update_7012() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  // @see: drupal_load()
-  if (!function_exists('apachesolr_default_environment')) {
-    include_once dirname(__FILE__) . '/apachesolr.module';
-  }
-
-  $env_id = apachesolr_default_environment();
-
-  // Variable changed from integer to array with environment integers
-  $stored = variable_get('apachesolr_index_last', array());
-  if (isset($stored['apachesolr'])) {
-    $stored[$env_id]['node']['last_entity_id'] = $stored['apachesolr']['last_nid'];
-    $stored[$env_id]['node']['last_changed'] = $stored['apachesolr']['last_change'];
-    unset($stored['apachesolr']);
-    variable_set('apachesolr_index_last', $stored);
-  }
-  $last = variable_get('apachesolr_index_updated', NULL);
-  if (isset($last)) {
-    variable_set('apachesolr_index_updated', array($env_id => (int) $last));
-  }
-
-  // Change namespace to environment id
-  $excluded_types = apachesolr_environment_variable_get('apachesolr', 'apachesolr_search_excluded_types', array());
-  if (!empty($excluded_types)) {
-    apachesolr_environment_variable_set($env_id, 'apachesolr_search_excluded_types', $excluded_types);
-    apachesolr_environment_variable_del('apachesolr', 'apachesolr_search_excluded_types');
-  }
-
-  // Install the new schema
-  //Predefine an amount of types that get their own table
-  $types = array(
-      'other' => 'apachesolr_index_entities',
-      'node' => 'apachesolr_index_entities_node',
-  );
-  foreach ($types as $type => $table) {
-    $schema[$table] = array(
-      'description' => 'Stores a record of when an entity changed to determine if it needs indexing by Solr.',
-      'fields' => array(
-        'entity_type' => array(
-          'description' => 'The type of entity.',
-          'type' => 'varchar',
-          'length' => 32,
-          'not null' => TRUE,
-        ),
-        'entity_id' => array(
-          'description' => 'The primary identifier for an entity.',
-          'type' => 'int',
-          'unsigned' => TRUE,
-          'not null' => TRUE,
-        ),
-        'bundle' => array(
-          'description' => 'The bundle to which this entity belongs.',
-          'type' => 'varchar',
-          'length' => 128,
-          'not null' => TRUE,
-        ),
-        'status' => array(
-          'description' => 'Boolean indicating whether the entity is visible to non-administrators (eg, published for nodes).',
-          'type' => 'int',
-          'not null' => TRUE,
-          'default' => 1,
-        ),
-        'changed' => array(
-          'description' => 'The Unix timestamp when an entity was changed.',
-          'type' => 'int',
-          'not null' => TRUE,
-          'default' => 0,
-        ),
-      ),
-      'indexes' => array(
-        'changed' => array('bundle', 'status', 'changed'),
-      ),
-      'primary key' => array('entity_id'),
-    );
-    if ($type == 'other') {
-      // Need the entity type also in the pkey for multiple entities in one table.
-      $schema[$table]['primary key'][] = 'entity_type';
-    }
-    // Create the table
-    db_create_table($table, $schema[$table]);
-  }
-
-  $schema['apachesolr_index_bundles'] = array(
-    'description' => 'Records what bundles we should be indexing for a given environment.',
-    'fields' => array(
-      'env_id' => array(
-        'description' => 'The name of the environment.',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-      ),
-      'entity_type' => array(
-        'description' => 'The type of entity.',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-      ),
-      'bundle' => array(
-        'description' => 'The bundle to index.',
-        'type' => 'varchar',
-        'length' => 128,
-        'not null' => TRUE,
-      ),
-    ),
-    'primary key' => array('env_id', 'entity_type', 'bundle'),
-  );
-  db_create_table('apachesolr_index_bundles', $schema['apachesolr_index_bundles']);
-
-
-  // Move the data from apachesolr_search_node to apachesolr_index_entities_node
-  $select = db_select('apachesolr_search_node', 'asn');
-  $select->join('node', 'n', 'asn.nid = n.nid');
-  $select->addField('n', 'nid', 'entity_id');
-  $select->addField('n', 'type', 'bundle');
-  $select->addField('asn', 'status', 'status');
-  $select->addField('asn', 'changed', 'changed');
-  $select->addExpression("'node'", 'entity_type');
-  $return_value = db_insert('apachesolr_index_entities_node')
-    ->fields(array('entity_id', 'bundle', 'status', 'changed', 'entity_type'))
-    ->from($select)
-    ->execute();
-  // Drop the table apachesolr_search_node
-  db_drop_table('apachesolr_search_node');
-
-  $environments = apachesolr_load_all_environments();
-  foreach ($environments as $env_id => $environment) {
-    $excluded_types = apachesolr_environment_variable_get($env_id, 'apachesolr_search_excluded_types', array());
-    // Get indexable entity types
-    $options = array();
-    foreach (entity_get_info() as $entity_type => $entity_info) {
-      if ($entity_type == 'node') {
-        foreach ($entity_info['bundles'] as $key => $info) {
-          // See if it was excluded & only of entity node. We will not enable
-          // other entity types by default
-          if (empty($excluded_types[$key])) {
-            $options[$entity_type][$key] = $key;
-          }
-        }
-      }
-    }
-    // Set all except the excluded types
-    // @see apachesolr_index_set_bundles()
-    foreach ($options as $entity_type => $bundles) {
-      db_delete('apachesolr_index_bundles')
-        ->condition('env_id', $env_id)
-        ->condition('entity_type', $entity_type)
-        ->execute();
-
-      if ($bundles) {
-        $insert = db_insert('apachesolr_index_bundles')
-          ->fields(array('env_id', 'entity_type', 'bundle'));
-
-        foreach ($bundles as $bundle) {
-          $insert->values(array(
-            'env_id' => $env_id,
-            'entity_type' => $entity_type,
-            'bundle' => $bundle,
-          ));
-        }
-        $insert->execute();
-      }
-    }
-    // Remove the excluded types
-    apachesolr_environment_variable_del($env_id, 'apachesolr_search_excluded_types');
-  }
-}
-
-/**
- * Make consistent (and reduce) field lengths which cause excess pkey length.
- */
-function apachesolr_update_7013() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  db_drop_primary_key('apachesolr_index_entities');
-  db_change_field('apachesolr_index_entities', 'entity_type', 'entity_type', array(
-    'description' => 'The type of entity.',
-    'type' => 'varchar',
-    'length' => 32,
-    'not null' => TRUE)
-  );
-  db_add_primary_key('apachesolr_index_entities', array('entity_id', 'entity_type'));
-  db_change_field('apachesolr_index_entities_node', 'entity_type', 'entity_type', array(
-    'description' => 'The type of entity.',
-    'type' => 'varchar',
-    'length' => 32,
-    'not null' => TRUE)
-  );
-  db_drop_primary_key('apachesolr_index_bundles');
-  db_change_field('apachesolr_index_bundles', 'env_id', 'env_id', array(
-    'description' => 'Unique identifier for the environment',
-    'type' => 'varchar',
-    'length' => 64,
-    'not null' => TRUE)
-  );
-  db_change_field('apachesolr_index_bundles', 'entity_type', 'entity_type', array(
-    'description' => 'The type of entity.',
-    'type' => 'varchar',
-    'length' => 32,
-    'not null' => TRUE)
-  );
-  db_add_primary_key('apachesolr_index_bundles', array('env_id', 'entity_type', 'bundle'));
-}
-
-/**
- * Remove status from the key.
- */
-function apachesolr_update_7014() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  $types = array(
-    'other' => 'apachesolr_index_entities',
-    'node' => 'apachesolr_index_entities_node',
-  );
-  foreach ($types as $type => $table) {
-    db_drop_index($table, 'changed');
-    db_add_index($table, 'bundle_changed', array('bundle', 'changed'));
-  }
-}
-
-
-/**
- * Fix primary key schema mismatch for those who cleanly installed with beta16.
- */
-function apachesolr_update_7015() {
-  if (variable_get('apachesolr_update_from_6303', FALSE)) {
-    return NULL;
-  }
-
-  // Brand new installations since update_7013 have the wrong primary key.
-  db_drop_primary_key('apachesolr_index_entities');
-  db_add_primary_key('apachesolr_index_entities', array('entity_id', 'entity_type'));
-}
-
-/**
- * Clean up apachesolr_update_from_6303.
- *
- * This variable had been used to bypass 7.x-1.x updates which are redundant
- * with 6.x-3.x.
- */
-function apachesolr_update_7016() {
-  variable_del('apachesolr_update_from_6303');
-}
-
-/**
- * Turn global variables in environment specific ones.
- */
-function apachesolr_update_7017() {
-  // @see: drupal_load()
-  if (!function_exists('apachesolr_environment_variable_set')) {
-    include_once dirname(__FILE__) . '/apachesolr.module';
-  }
-
-  $stored = variable_get('apachesolr_index_last', array());
-  foreach ($stored as $env_id => $entity_info) {
-    apachesolr_environment_variable_set($env_id, 'apachesolr_index_last', $entity_info);
-  }
-  variable_del('apachesolr_index_last');
-
-  $updated = variable_get('apachesolr_index_updated', array());
-  $optimized = variable_get('apachesolr_last_optimize', 0);
-  foreach ($updated as $env_id => $timestamp) {
-    apachesolr_environment_variable_set($env_id, 'apachesolr_index_updated', $timestamp);
-    apachesolr_environment_variable_set($env_id, 'apachesolr_last_optimize', $optimized);
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.interface.inc b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.interface.inc
deleted file mode 100644
index a296ed3ef3dc8ac91feeabad8ac1e6d46d579fa8..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.interface.inc
+++ /dev/null
@@ -1,544 +0,0 @@
-<?php
-
-/**
- * The interface for all 'query' objects.
- */
-interface DrupalSolrQueryInterface {
-
-  /**
-   * Get query name.
-   */
-  function getName();
-
-  /**
-   * Get query searcher name (for facetapi, views, pages, etc).
-   */
-  function getSearcher();
-
-  /**
-   * Get context values.
-   */
-  function getContext();
-
-  /**
-   * Set context value.
-   */
-  function addContext(array $context);
-
-  /**
-   * Returns all filters matching $name, if set; otherwise, returns all filters.
-   *
-   * @param string $name
-   *   The facet field name to match. If NULL, all filters will be returned.
-   *
-   * @return array
-   *   All matching filters.
-   */
-  function getFilters($name = NULL);
-
-  /**
-   * Tests whether a filter is already present in the query.
-   *
-   * @param string $name
-   *   The facet field name to check.
-   * @param string $value
-   *   The facet value to check.
-   * @param boolean $exclude
-   *   Optional, defaults to FALSE, must match the filter.
-   *
-   * @return boolean
-   *   TRUE or FALSE.
-   */
-  function hasFilter($name, $value, $exclude = FALSE);
-
-  /**
-   * Adds a filter to the query.
-   *
-   * @param string $name
-   *   The facet field name.
-   * @param string $value
-   *   The facet field value.
-   * @param boolean $exclude
-   *   Set to TRUE to filter out documents matching $value.
-   * @param string $local
-   *   Solr LocalParams.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function addFilter($name, $value, $exclude = FALSE, $local = '');
-
-  /**
-   * Removes a filter from the query.
-   *
-   * @param string $name
-   *   The name of the facet field to remove.
-   * @param string $value
-   *   The value of the facet field to remove. If NULL, all filters matching
-   *   $name are removed.
-   * @param boolean $exclude
-   *   If $value is not NULL, only filters matching both $value and $exclude are
-   *   removed. Ignored if $value is NULL.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function removeFilter($name, $value = NULL, $exclude = FALSE);
-
-  /**
-   * Returns all subqueries to the query.
-   *
-   * @return array
-   *   All subqueries to the query.
-   */
-  function getFilterSubQueries();
-
-  /**
-   * Adds a subquery to the query.
-   *
-   * @param SolrFilterSubQuery $query
-   *   The query to add to the orginal query - may have keywords or filters.
-   * @param string $fq_operator
-   *   The operator to use within the filter part of the subquery
-   * @param string $q_operator
-   *   The operator to use in joining the subquery to the main keywords. Note:
-   *   this is unlikely to work with the Dismax handler when the main query is
-   *   only keywords.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function addFilterSubQuery(SolrFilterSubQuery $query);
-
-  /**
-   * Removes a specific subquery.
-   *
-   * @param DrupalSolrQueryInterface $query
-   *   The query to remove.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function removeFilterSubQuery(SolrFilterSubQuery $query);
-
-  /**
-   * Removes all subqueries.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function removeFilterSubQueries();
-
-  /**
-   * Transforms a single filter in a form suitable for use in a Solr query.
-   *
-   * @param array $filter
-   *   A filter as an array with the keys '#name', for the facet field name,
-   *   '#value', for the facet field value, '#local', for Solr LocalParams, and
-       '#exclude' set to TRUE if it is an exclusion filter.
-   *
-   * @return string
-   *   A Solr fq parameter value.
-   */
-  function makeFilterQuery(array $filter);
-
-  /**
-   * Gets the value of a parameter.
-   *
-   * @param string $name
-   *   The parameter name.
-   *
-   * @return
-   *   The value of the parameter.
-   */
-  function getParam($name);
-
-  /**
-   * Gets all parameters in normalized form.
-   *
-   * @return array
-   *   All parameters as key-value pairs.
-   */
-  function getParams();
-
-  /**
-   * Gets parameters in a form suitable for use in a Solr query.
-   *
-   * @return array
-   *   All parameters as key-value pairs, where values have been transformed
-   *   into Solr parameter values.
-   */
-  function getSolrParams();
-
-  /**
-   * Adds a param to be sent when running the Solr search.
-   *
-   * If the param is single-valued, this will replace rather than add the value.
-   *
-   * @param string $name
-   *   A Solr param name, e.g. 'q' or 'fl'.
-   * @param $value
-   *   A Solr param value: an array of values, or a string for a single value.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function addParam($name, $value);
-
-  /**
-   * Adds multiple params to be sent when running the Solr search.
-   *
-   * If the param is single-valued, this will replace rather than add the value.
-   *
-   * @param $params
-   *   An array where the keys are param names, and the values may be strings or
-   *   arrays of strings.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function addParams(array $params);
-
-  /**
-   * Removes all values for one Solr param.
-   *
-   * @param string $name
-   *   A Solr param name, e.g. 'q' or 'fl'.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function removeParam($name);
-
-  /**
-   * Replaces a param to be sent when running the Solr search.
-   *
-   * Basically a shortcut for removeParam() plus addParam().
-   *
-   * @param string $name
-   *   A Solr param name, e.g. 'q' or 'fl'.
-   * @param $value
-   *   A Solr param value: an array of values, or a string for a single value.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function replaceParam($name, $value);
-
-  /**
-   * Handles aliases for field to make nicer URLs.
-   *
-   * @param $field_map
-   *   An array keyed with real Solr index field names with the alias as value.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function addFieldAliases($field_map);
-
-  function getFieldAliases();
-
-  function clearFieldAliases();
-
-  function getAvailableSorts();
-
-  /**
-   * Adds an available sort.
-   *
-   * @param string $name
-   *  The name of the field in the Solr index to sort on.
-   * @param array $sort
-   *  An array with the keys 'title', for the human name of the sort, and
-   *  'default', for the default sort direction ('asc' or 'desc').
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function setAvailableSort($name, $sort);
-
-  /**
-   * Removes an available sort.
-   *
-   * @param string $name
-   *  The name of the field in the Solr index to sort on.
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function removeAvailableSort($name);
-
-  /**
-   * Gets the current sort.
-   *
-   * @return array
-   *   The current sort as an array with the keys '#name', for the name of
-   *   the field, and '#direction', for the sort direction ('asc' or 'desc').
-   */
-  function getSolrsort();
-
-  /**
-   * Sets the sort.
-   *
-   * @param string $field
-   *  The name of the field in the Solr index to sort on.
-   * @param string $direction
-   *  'asc' or 'desc'
-   *
-   * @return DrupalSolrQueryInterface
-   *   The called object.
-   */
-  function setSolrsort($name, $direction);
-
-  /**
-   * Returns an array representing the URL query string for the current sort.
-   *
-   * @return array
-   *   The URL query string for the current sort.
-   */
-  function getSolrsortUrlQuery();
-
-  /**
-   * Returns the search path (including the search keywords).
-   *
-   * @param string $new_keywords
-   *   Optional. When set, this string overrides the query's current keywords.
-   *
-   * @return string
-   *   The search path.
-   */
-  function getPath($new_keywords = NULL);
-
-  /**
-   * Sends the search request to Solr, unless $query->abort_search is TRUE.
-   *
-   * @param string $keys
-   *   The search keys.
-   *
-   * @return
-   *   A stdClass response object.
-   */
-  function search($keys = NULL);
-
-  /**
-   * Calls a method, without arguments, on the Solr object with which the query
-   * object was initialized.
-   *
-   * @param string $method
-   *   The method to call on the Solr object.
-   *
-   * @return
-   *   Any method return.
-   */
-  function solr($method);
-}
-
-/**
- * The interface for all 'Service' objects.
- */
-interface DrupalApacheSolrServiceInterface {
-  /**
-   * Call the /admin/ping servlet, to test the connection to the server.
-   *
-   * @param $timeout
-   *   maximum time to wait for ping in seconds, -1 for unlimited (default 2).
-   * @return
-   *   (float) seconds taken to ping the server, FALSE if timeout occurs.
-   */
-  function ping($timeout = 2);
-
-  /**
-   * Get information about the Solr Core.
-   *
-   * @return
-   *   (string) system info encoded in json
-   */
-  function getSystemInfo();
-
-  /**
-   * Get just the field meta-data about the index.
-   */
-  function getFields($num_terms = 0);
-
-  /**
-   * Get meta-data about the index.
-   */
-  function getLuke($num_terms = 0);
-
-  /**
-   * Get information about the Solr Core.
-   *
-   * Returns a Simple XMl document
-   */
-  function getStats();
-
-  /**
-   * Get summary information about the Solr Core.
-   */
-  function getStatsSummary();
-
-  /**
-   * Clear cached Solr data.
-   */
-  function clearCache();
-
-  /**
-   * Constructor
-   *
-   * @param $url
-   *   The URL to the Solr server, possibly including a core name.  E.g. http://localhost:8983/solr/
-   *   or https://search.example.com/solr/core99/
-   * @param $env_id
-   *   The machine name of a corresponding saved configuration used for loading
-   *   data like which facets are enabled.
-   */
-  function __construct($url, $env_id = NULL);
-
-  function getId();
-
-  /**
-   * Make a request to a servlet (a path) that's not a standard path.
-   *
-   * @param string $servlet
-   *   A path to be added to the base Solr path. e.g. 'extract/tika'
-   *
-   * @param array $params
-   *   Any request parameters when constructing the URL.
-   *
-   * @param array $options
-   *  @see drupal_http_request() $options.
-   *
-   * @return
-   *  response object
-   *
-   * @thows Exception
-   */
-  function makeServletRequest($servlet, $params = array(), $options = array());
-
-  /**
-   * Get the Solr url
-   *
-   * @return string
-   */
-  function getUrl();
-
-  /**
-   * Set the Solr url.
-   *
-   * @param $url
-   *
-   * @return $this
-   */
-  function setUrl($url);
-
-  /**
-   * Raw update Method. Takes a raw post body and sends it to the update service. Post body
-   * should be a complete and well formed xml document.
-   *
-   * @param string $rawPost
-   * @param float $timeout Maximum expected duration (in seconds)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function update($rawPost, $timeout = FALSE);
-
-  /**
-   * Add an array of Solr Documents to the index all at once
-   *
-   * @param array $documents Should be an array of ApacheSolrDocument instances
-   * @param boolean $allowDups
-   * @param boolean $overwritePending
-   * @param boolean $overwriteCommitted
-   *
-   * @return response objecte
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function addDocuments($documents, $overwrite = NULL, $commitWithin = NULL);
-
-  /**
-   * Send a commit command.  Will be synchronous unless both wait parameters are set to false.
-   *
-   * @param boolean $optimize Defaults to true
-   * @param boolean $waitFlush Defaults to true
-   * @param boolean $waitSearcher Defaults to true
-   * @param float $timeout Maximum expected duration (in seconds) of the commit operation on the server (otherwise, will throw a communication exception). Defaults to 1 hour
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function commit($optimize = TRUE, $waitFlush = TRUE, $waitSearcher = TRUE, $timeout = 3600);
-
-  /**
-   * Create a delete document based on document ID
-   *
-   * @param string $id Expected to be utf-8 encoded
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function deleteById($id, $timeout = 3600);
-
-  /**
-   * Create and post a delete document based on multiple document IDs.
-   *
-   * @param array $ids Expected to be utf-8 encoded strings
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function deleteByMultipleIds($ids, $timeout = 3600);
-
-  /**
-   * Create a delete document based on a query and submit it
-   *
-   * @param string $rawQuery Expected to be utf-8 encoded
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   * @return stdClass response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function deleteByQuery($rawQuery, $timeout = 3600);
-
-  /**
-   * Send an optimize command.  Will be synchronous unless both wait parameters are set
-   * to false.
-   *
-   * @param boolean $waitFlush
-   * @param boolean $waitSearcher
-   * @param float $timeout Maximum expected duration of the commit operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function optimize($waitFlush = TRUE, $waitSearcher = TRUE, $timeout = 3600);
-
-  /**
-   * Simple Search interface
-   *
-   * @param string $query The raw query string
-   * @param array $params key / value pairs for other query parameters (see Solr documentation), use arrays for parameter keys used more than once (e.g. facet.field)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function search($query = '', array $params = array(), $method = 'GET');
-
-  /**
-   * Get the current solr version. This could be 1, 3 or 4
-   *
-   * @return int
-   *   1, 3 or 4. Does not give a more details version, for that you need
-   *   to get the system info.
-   */
-  function getSolrVersion();
-
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.module b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.module
deleted file mode 100644
index 6a948cceecaf8ae0b49504ae6d24bd7925524963..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr.module
+++ /dev/null
@@ -1,3032 +0,0 @@
-<?php
-
-/**
- * @file
- *   Integration with the Apache Solr search application.
- */
-
-define('APACHESOLR_READ_WRITE', 0);
-define('APACHESOLR_READ_ONLY', 1);
-define('APACHESOLR_API_VERSION', '3.0');
-
-/**
- * Implements hook_init().
- */
-function apachesolr_init() {
-  if (arg(0) == 'admin') {
-    // Add the CSS for this module
-    drupal_add_css(drupal_get_path('module', 'apachesolr') . '/apachesolr.css');
-  }
-}
-
-/**
- * Implements hook_menu().
- */
-function apachesolr_menu() {
-  $items = array();
-  $items['admin/config/search/apachesolr'] = array(
-    'title'              => 'Apache Solr search',
-    'description'        => 'Administer Apache Solr.',
-    'page callback'      => 'apachesolr_status_page',
-    'access arguments'   => array('administer search'),
-    'weight'             => -8,
-    'file'               => 'apachesolr.admin.inc',
-  );
-  $items['admin/config/search/apachesolr/index'] = array(
-    'title'              => 'Default index',
-    'description'        => 'Administer Apache Solr.',
-    'page callback'      => 'apachesolr_status_page',
-    'access arguments'   => array('administer search'),
-    'weight'             => -8,
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_DEFAULT_LOCAL_TASK,
-  );
-
-  $items['admin/config/search/apachesolr/settings'] = array(
-    'title'              => 'Settings',
-    'weight'             => 10,
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_settings'),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_LOCAL_TASK,
-  );
-
-  $settings_path = 'admin/config/search/apachesolr/settings/';
-  $items[$settings_path . '%apachesolr_environment/index'] = array(
-    'title'              => 'Index',
-    'page callback'      => 'apachesolr_status_page',
-    'page arguments'     => array(5),
-    'access arguments'   => array('administer search'),
-    'weight'             => 0,
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_LOCAL_TASK,
-  );
-  $items[$settings_path . '%apachesolr_environment/index/remaining'] = array(
-    'title'              => 'Remaining',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_index_action_form_remaining_confirm', 5),
-    'file'               => 'apachesolr.admin.inc',
-    'access arguments'   => array('administer search'),
-    'type'               => MENU_CALLBACK,
-  );
-  $items[$settings_path . '%apachesolr_environment/index/delete'] = array(
-    'title'              => 'Reindex',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_index_action_form_delete_confirm', 5),
-    'file'               => 'apachesolr.admin.inc',
-    'access arguments'   => array('administer search'),
-    'type'               => MENU_CALLBACK,
-  );
-  $items[$settings_path . '%apachesolr_environment/index/reset'] = array(
-    'title'              => 'Reindex',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_index_action_form_reset_confirm', 5),
-    'file'               => 'apachesolr.admin.inc',
-    'access arguments'   => array('administer search'),
-    'type'               => MENU_CALLBACK,
-  );
-  $items[$settings_path . '%apachesolr_environment/index/reset/confirm'] = array(
-    'title'              => 'Confirm the re-indexing of all content',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_clear_index_confirm', 5),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_CALLBACK,
-  );
-  $items[$settings_path . '%apachesolr_environment/index/delete/confirm'] = array(
-    'title'              => 'Confirm index deletion',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_delete_index_confirm', 5),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_CALLBACK,
-  );
-  $items[$settings_path . '%apachesolr_environment/edit'] = array(
-    'title'              => 'Edit',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_environment_edit_form', 5),
-    'description'        => 'Edit Apache Solr search environment.',
-    'access arguments'   => array('administer search'),
-    'weight'             => 10,
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_LOCAL_TASK,
-  );
-  $items[$settings_path . '%apachesolr_environment/clone'] = array(
-    'title'              => 'Apache Solr search environment clone',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_environment_clone_form', 5),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr.admin.inc',
-  );
-  $items[$settings_path . '%apachesolr_environment/delete'] = array(
-    'title'              => 'Apache Solr search environment delete',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_environment_delete_form', 5),
-    'access callback'    => 'apachesolr_environment_delete_page_access',
-    'access arguments'   => array('administer search', 5),
-    'file'               => 'apachesolr.admin.inc',
-  );
-  $items[$settings_path . 'add'] = array(
-    'title'              => 'Add search environment',
-    'description'        => 'Add Apache Solr environment.',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_environment_edit_form'),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_LOCAL_ACTION,
-  );
-  $items['admin/config/search/apachesolr/index/confirm/clear'] = array(
-    'title'              => 'Confirm the re-indexing of all content',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_clear_index_confirm'),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_CALLBACK,
-  );
-  $items['admin/config/search/apachesolr/index/confirm/delete'] = array(
-    'title'              => 'Confirm index deletion',
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_delete_index_confirm'),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_CALLBACK,
-  );
-
-  $reports_path = 'admin/reports/apachesolr';
-  $items[$reports_path] = array(
-    'title'              => 'Apache Solr search index',
-    'description'        => 'Information about the contents of the index on the server',
-    'page callback'      => 'apachesolr_index_report',
-    'access arguments'   => array('access site reports'),
-    'file'               => 'apachesolr.admin.inc',
-  );
-  $items[$reports_path . '/%apachesolr_environment'] = array(
-    'title'              => 'Apache Solr search index',
-    'description'        => 'Information about the contents of the index on the server',
-    'page callback'      => 'apachesolr_index_report',
-    'page arguments'     => array(3),
-    'access arguments'   => array('access site reports'),
-    'file'               => 'apachesolr.admin.inc',
-  );
-  $items[$reports_path . '/%apachesolr_environment/index'] = array(
-    'title'              => 'Search index',
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_DEFAULT_LOCAL_TASK,
-  );
-  $items[$reports_path . '/%apachesolr_environment/conf'] = array(
-    'title'              => 'Configuration files',
-    'page callback'      => 'apachesolr_config_files_overview',
-    'access arguments'   => array('access site reports'),
-    'file'               => 'apachesolr.admin.inc',
-    'weight'             => 5,
-    'type'               => MENU_LOCAL_TASK,
-  );
-  $items[$reports_path . '/%apachesolr_environment/conf/%'] = array(
-    'title'              => 'Configuration file',
-    'page callback'      => 'apachesolr_config_file',
-    'page arguments'     => array(5, 3),
-    'access arguments'   => array('access site reports'),
-    'file'               => 'apachesolr.admin.inc',
-    'type'               => MENU_CALLBACK,
-  );
-  if (module_exists('devel')) {
-    $items['node/%node/devel/apachesolr'] = array(
-      'title'              => 'Apache Solr',
-      'page callback'      => 'apachesolr_devel',
-      'page arguments'     => array(1),
-      'access arguments'   => array('access devel information'),
-      'file'               => 'apachesolr.admin.inc',
-      'type'               => MENU_LOCAL_TASK,
-    );
-  }
-
-  // We handle our own menu paths for facets
-  if (module_exists('facetapi')) {
-    $file_path = drupal_get_path('module', 'facetapi');
-    $first = TRUE;
-    foreach (facetapi_get_realm_info() as $realm_name => $realm) {
-      if ($first) {
-        $first = FALSE;
-        $items[$settings_path . '%apachesolr_environment/facets'] = array(
-          'title'            => 'Facets',
-          'page callback'    => 'apachesolr_enabled_facets_page',
-          'page arguments'   =>  array($realm_name, 5),
-          'weight'           => -5,
-          'access arguments' => array('administer search'),
-          'file path'        => $file_path,
-          'file'             => 'facetapi.admin.inc',
-          'type'             => MENU_LOCAL_TASK,
-          'context'          => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
-        );
-      }
-      else {
-        $items[$settings_path . '%apachesolr_environment/facets/' . $realm_name] = array(
-          'title'            => $realm['label'],
-          'page callback'    => 'apachesolr_enabled_facets_page',
-          'page arguments'   => array($realm_name, 5),
-          'weight'           => -5,
-          'access arguments' => array('administer search'),
-          'type'             => MENU_LOCAL_TASK,
-          'context'          => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
-          'file path'        => $file_path,
-          'file'             => 'facetapi.admin.inc',
-        );
-      }
-    }
-  }
-  return $items;
-}
-
-/**
- * Wrapper for facetapi settings forms.
- */
-function apachesolr_enabled_facets_page($realm_name, $environment = NULL) {
-  $page = array();
-
-  if (isset($environment['env_id'])) {
-    $env_id = $environment['env_id'];
-  }
-  else {
-    $env_id = apachesolr_default_environment();
-  }
-  $searcher = 'apachesolr@' . $env_id;
-
-  // Initializes output with information about which environment's setting we are
-  // editing, as it is otherwise not transparent to the end user.
-  $page['apachesolr_environment'] = array(
-    '#theme' => 'apachesolr_settings_title',
-    '#env_id' => $env_id,
-  );
-  $page['settings'] = drupal_get_form('facetapi_realm_settings_form', $searcher, $realm_name);
-  return $page;
-}
-
-/**
- * Implements hook_facetapi_searcher_info().
- */
-function apachesolr_facetapi_searcher_info() {
-  $info = array();
-  // TODO: is it needed to return all of them here?
-  foreach (apachesolr_load_all_environments() as $id => $environment) {
-    $info['apachesolr@' . $id] = array(
-      'label' => t('Apache Solr environment: @environment', array('@environment' => $environment['name'])),
-      'adapter' => 'apachesolr',
-      'instance' => $id,
-      'path' => '',
-      'supports facet mincount' => TRUE,
-      'supports facet missing' => TRUE,
-      'include default facets' => FALSE,
-    );
-  }
-  return $info;
-}
-
-/**
- * Implements hook_facetapi_adapters().
- */
-function apachesolr_facetapi_adapters() {
-  return array(
-    'apachesolr' => array(
-      'handler' => array(
-        'class' => 'ApacheSolrFacetapiAdapter',
-      ),
-    ),
-  );
-}
-
-/**
- * Implements hook_facetapi_query_types().
- */
-function apachesolr_facetapi_query_types() {
-  return array(
-    'apachesolr_term' => array(
-      'handler' => array(
-        'class' => 'ApacheSolrFacetapiTerm',
-        'adapter' => 'apachesolr',
-      ),
-    ),
-    'apachesolr_date' => array(
-      'handler' => array(
-        'class' => 'ApacheSolrFacetapiDate',
-        'adapter' => 'apachesolr',
-      ),
-    ),
-    'apachesolr_numeric_range' => array(
-      'handler' => array(
-        'class' => 'ApacheSolrFacetapiNumericRange',
-        'adapter' => 'apachesolr',
-      ),
-    ),
-    'apachesolr_geo' => array(
-      'handler' => array(
-        'class' => 'ApacheSolrFacetapiGeo',
-        'adapter' => 'apachesolr',
-      ),
-    ),
-  );
-}
-
-/**
- * Implements hook_facetapi_facet_info().
- * Currently it only supports the node entity type
- */
-function apachesolr_facetapi_facet_info($searcher_info) {
-  $facets = array();
-  if ('apachesolr' == $searcher_info['adapter']) {
-    $environment = apachesolr_environment_load($searcher_info['instance']);
-
-    if (!empty($environment['conf']['facet callbacks'])) {
-      foreach ($environment['conf']['facet callbacks'] as $callback) {
-        if (is_callable($callback)) {
-          $facets = array_merge($facets, call_user_func($callback, $searcher_info));
-        }
-      }
-    }
-    elseif (isset($searcher_info['types']['node'])) {
-      $facets = apachesolr_default_node_facet_info();
-    }
-  }
-
-  return $facets;
-}
-
-/**
- * Returns an array of facets for node fields and attributes.
- *
- * @return
- *   An array of node facets.
- */
-function apachesolr_default_node_facet_info() {
-  return array_merge(apachesolr_common_node_facets(), apachesolr_entity_field_facets('node'));
-}
-
-/**
- * Returns an array of facets for the provided entity type's fields.
- *
- * @param string $entity_type
- *   An entity type machine name.
- * @return
- *   An array of facets for the fields of the requested entity type.
- */
-function apachesolr_entity_field_facets($entity_type) {
-  $facets = array();
-
-  foreach (apachesolr_entity_fields($entity_type) as $field_nm => $entity_fields) {
-    foreach ($entity_fields as $field_info) {
-      if (!empty($field_info['facets'])) {
-        $field = apachesolr_index_key($field_info);
-        $facets[$field] = array(
-          'label' => check_plain($field_info['display_name']),
-          'dependency plugins' => $field_info['dependency plugins'],
-          'field api name' => $field_info['field']['field_name'],
-          'description' => t('Filter by field @field of type @type.', array(
-            '@type' => $field_info['field']['type'],
-            '@field' => $field_info['field']['field_name'],
-          )),
-          'map callback' => $field_info['map callback'],
-          'map options' => $field_info,
-          'hierarchy callback' => $field_info['hierarchy callback'],
-        );
-        if (!empty($field_info['facet mincount allowed'])) {
-          $facets[$field]['facet mincount allowed'] = $field_info['facet mincount allowed'];
-        }
-        if (!empty($field_info['facet missing allowed'])) {
-          $facets[$field]['facet missing allowed'] = $field_info['facet missing allowed'];
-        }
-        if (!empty($field_info['query types'])) {
-          $facets[$field]['query types'] = $field_info['query types'];
-        }
-        if (!empty($field_info['allowed operators'])) {
-          $facets[$field]['allowed operators'] = $field_info['allowed operators'];
-        }
-        // TODO : This is actually deprecated but we should still support
-        // older versions of facetapi. We should remove once facetapi has RC1
-        // For reference : http://drupal.org/node/1161444
-        if (!empty($field_info['query type'])) {
-          $facets[$field]['query type'] = $field_info['query type'];
-        }
-        if (!empty($field_info['min callback'])) {
-          $facets[$field]['min callback'] = $field_info['min callback'];
-        }
-        if (!empty($field_info['max callback'])) {
-          $facets[$field]['max callback'] = $field_info['max callback'];
-        }
-        if (!empty($field_info['map callback'])) {
-          $facets[$field]['map callback'] = $field_info['map callback'];
-        }
-        if (!empty($field_info['alter callbacks'])) {
-          $facets[$field]['alter callbacks'] = $field_info['alter callbacks'];
-        }
-      }
-    }
-  }
-
-  return $facets;
-}
-
-/**
- * Helper function returning common facet definitions.
- */
-function apachesolr_common_node_facets() {
-
-  $facets['bundle'] = array(
-    'label' => t('Content type'),
-    'description' => t('Filter by content type.'),
-    'field api bundles' => array('node'),
-    'map callback' => 'facetapi_map_bundle',
-    'values callback' => 'facetapi_callback_type_values',
-    'facet mincount allowed' => TRUE,
-    'dependency plugins' => array('role'),
-  );
-
-  $facets['author'] = array(
-    'label' => t('Author'),
-    'description' => t('Filter by author.'),
-    'field' => 'is_uid',
-    'map callback' => 'facetapi_map_author',
-    'values callback' => 'facetapi_callback_user_values',
-    'facet mincount allowed' => TRUE,
-    'dependency plugins' => array('bundle', 'role'),
-  );
-
-  $facets['language'] = array(
-    'label' => t('Language'),
-    'description' => t('Filter by language.'),
-    'field' => 'ss_language',
-    'map callback' => 'facetapi_map_language',
-    'values callback' => 'facetapi_callback_language_values',
-    'facet mincount allowed' => TRUE,
-    'dependency plugins' => array('bundle', 'role'),
-  );
-
-  $facets['created'] = array(
-    'label' => t('Post date'),
-    'description' => t('Filter by the date the node was posted.'),
-    'field' => 'ds_created',
-    'query types' => array('date'),
-    'allowed operators' => array(FACETAPI_OPERATOR_AND => TRUE),
-    'map callback' => 'facetapi_map_date',
-    'min callback' => 'facetapi_get_min_date',
-    'max callback' => 'facetapi_get_max_date',
-    'dependency plugins' => array('bundle', 'role'),
-    'default sorts' => array(
-      array('active', SORT_DESC),
-      array('indexed', SORT_ASC),
-    ),
-  );
-
-  $facets['changed'] = array(
-    'label' => t('Updated date'),
-    'description' => t('Filter by the date the node was last modified.'),
-    'field' => 'ds_changed',
-    'query types' => array('date'),
-    'allowed operators' => array(FACETAPI_OPERATOR_AND => TRUE),
-    'map callback' => 'facetapi_map_date',
-    'min callback' => 'facetapi_get_min_date',
-    'max callback' => 'facetapi_get_max_date',
-    'dependency plugins' => array('bundle', 'role'),
-    'default sorts' => array(
-      array('active', SORT_DESC),
-      array('indexed', SORT_ASC),
-    ),
-  );
-
-  if (module_exists('book')) {
-    $facets['book'] = array(
-      'label' => t('Book'),
-      'description' => t('Filter by the book that the node belongs to.'),
-      'field' => 'is_book_bid',
-      'map callback' => 'apachesolr_map_book',
-      'facet mincount allowed' => TRUE,
-      'dependency plugins' => array('bundle', 'role'),
-    );
-  }
-
-  return $facets;
-}
-
-/**
- * FacetAPI mapping callback.
- */
-function apachesolr_map_book(array $values) {
-  $map = array();
-  if (!empty($values)) {
-    foreach (book_get_books() as $bid => $book) {
-      if (in_array($bid, $values)) {
-        $map[$bid] = $book['title'];
-      }
-    }
-  }
-  return $map;
-}
-
-/**
- * Implements hook_form_[form_id]_alter().
- *
- * Mark a node for re-indexing when the book outline form is saved.
- */
-function apachesolr_form_book_outline_form_alter(&$form, $form_state) {
-  $form['#submit'][] = 'apachesolr_mark_book_outline_node';
-}
-
-/**
- * Submit handler for the book outline form.
- *
- * Marks the node for re-indexing.
- */
-function apachesolr_mark_book_outline_node($form, $form_state) {
-  apachesolr_mark_entity('node', $form['#node']->nid);
-}
-
-/**
- * Determines Apache Solr's behavior when searching causes an exception (e.g. Solr isn't available.)
- * Depending on the admin settings, possibly redirect to Drupal's core search.
- *
- * @param $search_name
- *   The name of the search implementation.
- *
- * @param $querystring
- *   The search query that was issued at the time of failure.
- */
-function apachesolr_failure($search_name, $querystring) {
-  $fail_rule = variable_get('apachesolr_failure', 'apachesolr:show_error');
-
-  switch ($fail_rule) {
-    case 'apachesolr:show_error':
-      drupal_set_message(t('Search is temporarily unavailable. If the problem persists, please contact the site administrator.'), 'error');
-      break;
-    case 'apachesolr:show_no_results':
-      // Do nothing.
-      break;
-    default:
-      // If we're failing over to another module make sure the search is available.
-      if (module_exists('search')) {
-        $search_info = search_get_info();
-        if (isset($search_info[$fail_rule])) {
-          $search_info = $search_info[$fail_rule];
-          drupal_set_message(t("%search_name is not available. Your search is being redirected.", array('%search_name' => $search_name)));
-          drupal_goto('search/' . $search_info['path'] . '/' . rawurlencode($querystring));
-        }
-      }
-      // if search is not enabled, break and do nothing
-      break;
-  }
-}
-
-/**
- * Like $site_key in _update_refresh() - returns a site-specific hash.
- */
-function apachesolr_site_hash() {
-  if (!($hash = variable_get('apachesolr_site_hash', FALSE))) {
-    global $base_url;
-    // Set a random 6 digit base-36 number as the hash.
-    $hash = substr(base_convert(sha1(uniqid($base_url, TRUE)), 16, 36), 0, 6);
-    variable_set('apachesolr_site_hash', $hash);
-  }
-  return $hash;
-}
-
-/**
- * Generate a unique ID for an entity being indexed.
- *
- * @param $id
- *   An id number (or string) unique to this site, such as a node ID.
- * @param $entity
- *   A string like 'node', 'file', 'user', or some other Drupal object type.
- *
- * @return
- *   A string combining the parameters with the site hash.
- */
-function apachesolr_document_id($id, $entity_type = 'node') {
-  return apachesolr_site_hash() . "/{$entity_type}/" . $id;
-}
-
-/**
- * Mark one entity as needing re-indexing.
- */
-function apachesolr_mark_entity($entity_type, $entity_id) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $table = apachesolr_get_indexer_table($entity_type);
-  if (!empty($table)) {
-    db_update($table)
-      ->condition('entity_id', $entity_id)
-      ->fields(array('changed' => REQUEST_TIME))
-      ->execute();
-  }
-}
-
-/**
- * Implements hook_user_update().
- *
- * Mark nodes as needing re-indexing if the author name changes.
- *
- * @see http://drupal.org/node/592522
- *   Performance issue with Mysql
- * @see http://api.drupal.org/api/drupal/includes--database--database.inc/function/db_update/7#comment-15459
- *   To know why PDO in drupal does not support UPDATE and JOIN at once.
- */
-function apachesolr_user_update(&$edit, $account, $category) {
-  if (isset($account->name) && isset($account->original) && isset($account->original->name) && $account->name != $account->original->name) {
-    $table = apachesolr_get_indexer_table('node');
-    switch (db_driver()) {
-      case 'mysql' :
-        $table = db_escape_table($table);
-        $query = "UPDATE {{$table}} asn
-          INNER JOIN {node} n ON asn.entity_id = n.nid SET asn.changed = :changed
-          WHERE n.uid = :uid";
-        $result = db_query($query, array(':changed' => REQUEST_TIME,
-          ':uid' => $account->uid,
-        ));
-        break;
-      default :
-        $nids = db_select('node')
-          ->fields('node', array('nid'))
-          ->where("uid = :uid", array(':uid' => $account->uid));
-        $update = db_update($table)
-          ->condition('entity_id', $nids, 'IN')
-          ->fields(array('changed' => REQUEST_TIME))
-          ->execute();
-    }
-  }
-}
-
-/**
- * Implements hook_term_update().
- *
- * Mark nodes as needing re-indexing if a term name changes.
- *
- * @see http://drupal.org/node/592522
- *   Performance issue with Mysql
- * @see http://api.drupal.org/api/drupal/includes--database--database.inc/function/db_update/7#comment-15459
- *   To know why PDO in drupal does not support UPDATE and JOIN at once.
- * @todo the rest, such as term deletion.
- */
-function apachesolr_taxonomy_term_update($term) {
-  $table = apachesolr_get_indexer_table('node');
-  switch (db_driver()) {
-    case 'mysql' :
-      $table = db_escape_table($table);
-      $query = "UPDATE {{$table}} asn
-        INNER JOIN {taxonomy_index} ti ON asn.entity_id = ti.nid SET asn.changed = :changed
-        WHERE ti.tid = :tid";
-      $result = db_query($query, array(':changed' => REQUEST_TIME,
-        ':tid' => $term->tid,
-      ));
-      break;
-    default :
-      $nids = db_select('taxonomy_index')
-        ->fields('taxonomy_index', array('nid'))
-        ->where("tid = :tid", array(':tid' => $term->tid));
-      $update = db_update($table)
-        ->condition('entity_id', $nids, 'IN')
-        ->fields(array('changed' => REQUEST_TIME))
-        ->execute();
-  }
-}
-
-/**
- * Implement hook_comment_*().
- *
- * Mark nodes as needing re-indexing if comments are added or changed.
- * Like search_comment().
- */
-
-/**
- * Implements hook_comment_insert().
- */
-function apachesolr_comment_insert($comment) {
-  apachesolr_mark_entity('node', $comment->nid);
-}
-
-/**
- * Implements hook_comment_update().
- */
-function apachesolr_comment_update($comment) {
-  apachesolr_mark_entity('node', $comment->nid);
-}
-
-/**
- * Implements hook_comment_delete().
- */
-function apachesolr_comment_delete($comment) {
-  apachesolr_mark_entity('node', $comment->nid);
-}
-
-/**
- * Implements hook_comment_publish().
- */
-function apachesolr_comment_publish($comment) {
-  apachesolr_mark_entity('node', $comment->nid);
-}
-
-/**
- * Implements hook_comment_unpublish().
- */
-function apachesolr_comment_unpublish($comment) {
-  apachesolr_mark_entity('node', $comment->nid);
-}
-
-/**
- * Implements hook_node_type_delete().
- */
-function apachesolr_node_type_delete($info) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $env_id = apachesolr_default_environment();
-  $existing_bundles = apachesolr_get_index_bundles($env_id, 'node');
-  $new_bundles = $existing_bundles;
-  $index = array_search($info->type, $existing_bundles);
-  if ($index !== FALSE) {
-    unset($new_bundles[$index]);
-    $new_bundles = array_values($new_bundles);
-    apachesolr_index_set_bundles($env_id, 'node', $new_bundles);
-  }
-  apachesolr_index_delete_bundles($env_id, 'node', array($info->type));
-  $bundles_changed_callback = apachesolr_entity_get_callback('node', 'bundles changed callback');
-  if (!empty($bundles_changed_callback)) {
-    call_user_func($bundles_changed_callback, $env_id, $existing_bundles, $new_bundles);
-  }
-  apachesolr_environments_clear_cache();
-}
-
-/**
- * Implements hook_node_type_update().
- *
- * @see http://drupal.org/node/592522
- *   Performance issue with Mysql
- * @see http://api.drupal.org/api/drupal/includes--database--database.inc/function/db_update/7#comment-15459
- *   To know why PDO in drupal does not support UPDATE and JOIN at once.
- * @todo Support backwards compatibility
- */
-function apachesolr_node_type_update($info) {
-  if (!empty($info->old_type) && $info->old_type != $info->type) {
-    // We cannot be sure we are going before or after node module.
-    $table = apachesolr_get_indexer_table('node');
-    switch (db_driver()) {
-      case 'mysql' :
-        $table = db_escape_table($table);
-        $query = "UPDATE {{$table}} asn
-          INNER JOIN {node} n ON asn.entity_id = n.nid SET asn.changed = :changed
-          WHERE (n.type = :type OR n.type = :old_type)";
-        $result = db_query($query, array(':changed' => REQUEST_TIME,
-          ':type' => $info->type,
-          ':old_type' => $info->old_type,
-        ));
-        break;
-      default :
-        $nids = db_select('node')
-          ->fields('node', array('nid'))
-          ->where("type = :new OR type = :old", array(':new' => $info->type, ':old' => $info->old_type));
-        $update = db_update($table)
-          ->condition('entity_id', $nids, 'IN')
-          ->fields(array('changed' => REQUEST_TIME))
-          ->execute();
-    }
-    db_update('apachesolr_index_bundles')
-      ->condition('bundle', $info->old_type)
-      ->condition('entity_type', 'node')
-      ->fields(array('bundle' => $info->type))
-      ->execute();
-    apachesolr_environments_clear_cache();
-  }
-}
-
-/**
- * Implements hook_node_type_insert().
- *
- * Insert our new type into all the environments as indexable bundle type
- * @param array $info
- */
-function apachesolr_node_type_insert($info) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  // Get all our environments
-  $envs = apachesolr_load_all_environments();
-  $bundles = array();
-  foreach($envs as $env) {
-    if (isset($env['index_bundles']['node'])) {
-      $bundles = $env['index_bundles']['node'];
-    }
-    // Is the bundle already marked?
-    if (!in_array($info->type, $bundles)) {
-      $bundles[] = $info->type;
-      // Set the new bundle as indexable for all environments
-      apachesolr_index_set_bundles($env['env_id'], 'node', $bundles);
-    }
-  }
-}
-
-/**
- * Convert date from timestamp into ISO 8601 format.
- * http://lucene.apache.org/solr/api/org/apache/solr/schema/DateField.html
- */
-function apachesolr_date_iso($date_timestamp) {
-  return gmdate('Y-m-d\TH:i:s\Z', $date_timestamp);
-}
-
-/**
- * Function to flatten documents array recursively.
- *
- * @param array $documents
- *   The array of documents being indexed.
- * @param array &$tmp
- *   A container variable that will contain the flattened array.
- */
-function apachesolr_flatten_documents_array($documents, &$tmp) {
-  foreach ($documents AS $index => $item) {
-    if (is_array($item)) {
-      apachesolr_flatten_documents_array($item, $tmp);
-    }
-    elseif (is_object($item)) {
-      $tmp[] = $item;
-    }
-  }
-}
-
-/**
- * Implements hook_flush_caches().
- */
-function apachesolr_flush_caches() {
-  return array('cache_apachesolr');
-}
-
-/**
- * A wrapper for cache_clear_all to be used as a submit handler on forms that
- * require clearing Luke cache etc.
- */
-function apachesolr_clear_cache($env_id) {
-  // Reset $env_id to NULL if call originates from a form submit handler.
-  if (is_array($env_id)) {
-    $env_id = NULL;
-  }
-  try {
-    $solr = apachesolr_get_solr($env_id);
-    $solr->clearCache();
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    drupal_set_message(nl2br(check_plain($e->getMessage())), 'warning');
-  }
-}
-
-/**
- * Call drupal_set_message() with the text.
- *
- * The text is translated with t() and substituted using Solr stats.
- * @todo This is not according to drupal code standards
- */
-function apachesolr_set_stats_message($text, $type = 'status', $repeat = FALSE) {
-  try {
-    $solr = apachesolr_get_solr();
-    $stats_summary = $solr->getStatsSummary();
-    drupal_set_message(check_plain(t($text, $stats_summary)), $type, FALSE);
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-  }
-}
-
-/**
- * Returns last changed and last ID for an environment and entity type.
- */
-function apachesolr_get_last_index_position($env_id, $entity_type) {
-  $stored = apachesolr_environment_variable_get($env_id, 'apachesolr_index_last', array());
-  return isset($stored[$entity_type]) ? $stored[$entity_type] : array('last_changed' => 0, 'last_entity_id' => 0);
-}
-
-/**
- * Sets last changed and last ID for an environment and entity type.
- */
-function apachesolr_set_last_index_position($env_id, $entity_type, $last_changed, $last_entity_id) {
-  $stored = apachesolr_environment_variable_get($env_id, 'apachesolr_index_last', array());
-  $stored[$entity_type] = array('last_changed' => $last_changed, 'last_entity_id' => $last_entity_id);
-  apachesolr_environment_variable_set($env_id, 'apachesolr_index_last', $stored);
-}
-
-/**
- * Clear a specific environment, or clear all.
- */
-function apachesolr_clear_last_index_position($env_id = NULL, $entity_type = NULL) {
-  if (!empty($env_id)) {
-    $stored = apachesolr_environment_variable_get($env_id, 'apachesolr_index_last', array());
-    if ($entity_type) {
-      unset($stored[$entity_type]);
-    }
-    else {
-      $stored = array();
-    }
-    apachesolr_environment_variable_set($env_id, 'apachesolr_index_last', $stored);
-  }
-  else {
-    $environments = apachesolr_load_all_environments();
-    foreach (array_keys($environments) as $env_id) {
-      apachesolr_environment_variable_set($env_id, 'apachesolr_index_last', array());
-    }
-  }
-}
-
-/**
- * Set the timestamp of the last index update
- * @param $timestamp
- *   A timestamp or zero. If zero, the variable is deleted.
- */
-function apachesolr_set_last_index_updated($env_id, $timestamp = 0) {
-  apachesolr_environment_variable_set($env_id, 'apachesolr_index_updated', $timestamp);
-}
-
-/**
- * Get the timestamp of the last index update.
- * @return integer (timestamp)
- */
-function apachesolr_get_last_index_updated($env_id) {
-  return apachesolr_environment_variable_get($env_id, 'apachesolr_index_updated', 0);
-}
-
-/**
- * Implements hook_cron().
- * Runs the indexing process on all writable environments or just a given environment.
- */
-function apachesolr_cron($env_id = NULL) {
-  $environments = array();
-  if (empty($env_id)) {
-    $environments = array_keys(apachesolr_load_all_environments());
-  }
-  else {
-    $environments[] = $env_id;
-  }
-
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-
-  // Optimize the index (by default once a day).
-  $optimize_interval = variable_get('apachesolr_optimize_interval', 60 * 60 * 24);
-  $time = REQUEST_TIME;
-
-  foreach($environments as $env_id) {
-    $last = apachesolr_environment_variable_get($env_id, 'apachesolr_last_optimize', 0);
-
-    // Indexes in read-only mode do not change the index, so will not update, delete, or optimize during cron.
-    if (apachesolr_environment_variable_get($env_id, 'apachesolr_read_only', APACHESOLR_READ_WRITE) == APACHESOLR_READ_ONLY) {
-      continue;
-    }
-
-    // For every entity type that requires extra validation
-    foreach (entity_get_info() as $type => $info) {
-      $bundles = apachesolr_get_index_bundles($env_id, $type);
-
-      // If we're not checking any bundles of this entity type, just skip them all.
-      if (empty($bundles)) {
-        continue;
-      }
-
-      if (isset($info['apachesolr']['cron_check'])) {
-        $callback = $info['apachesolr']['cron_check'];
-        call_user_func($callback);
-      }
-    }
-
-    try {
-      $solr = apachesolr_get_solr($env_id);
-      if ($optimize_interval && ($time - $last > $optimize_interval)) {
-        $solr->optimize(FALSE, FALSE);
-        apachesolr_environment_variable_set($env_id, 'apachesolr_last_optimize', $time);
-        apachesolr_set_last_index_updated($env_id, $time);
-      }
-      // Only clear the cache if the index changed.
-      // TODO: clear on some schedule if running multi-site.
-      $updated = apachesolr_get_last_index_updated($env_id);
-      if ($updated > 0) {
-        $solr->clearCache();
-        // Re-populate the luke cache.
-        $solr->getLuke();
-        // TODO: an admin interface for setting this.  Assume for now 5 minutes.
-        if ($time - $updated >= variable_get('apachesolr_cache_delay', 300)) {
-          // Clear the updated flag.
-          apachesolr_set_last_index_updated($env_id);
-        }
-      }
-    }
-    catch (Exception $e) {
-      watchdog('Apache Solr', nl2br(check_plain($e->getMessage())) . ' in apachesolr_cron', NULL, WATCHDOG_ERROR);
-    }
-
-    // We can safely process the apachesolr_cron_limit nodes at a time without a
-    // timeout or out of memory error.
-    $limit = variable_get('apachesolr_cron_limit', 50);
-    apachesolr_index_entities($env_id, $limit);
-  }
-}
-
-/**
- * Implements hook_form_[form_id]_alter().
- *
- * Make sure to flush cache when content types are changed.
- */
-function apachesolr_form_node_type_form_alter(&$form, $form_state) {
-  $form['#submit'][] = 'apachesolr_clear_cache';
-}
-
-/**
- * Implements hook_form_[form_id]_alter(). (D7)
- *
- * Make sure to flush cache when fields are added.
- */
-function apachesolr_form_field_ui_field_overview_form_alter(&$form, $form_state) {
-  $form['#submit'][] = 'apachesolr_clear_cache';
-}
-
-/**
- * Implements hook_form_[form_id]_alter(). (D7)
- *
- * Make sure to flush cache when fields are updated.
- */
-function apachesolr_form_field_ui_field_edit_form_alter(&$form, $form_state) {
-  $form['#submit'][] = 'apachesolr_clear_cache';
-}
-
-/**
- * Sets breadcrumb trails for Facet API settings forms.
- *
- * @param FacetapiAdapter $adapter
- *   The Facet API adapter object.
- * @param array $realm
- *   The realm definition.
- */
-function apachesolr_set_facetapi_breadcrumb(FacetapiAdapter $adapter, array $realm) {
-  if ('apachesolr' == $adapter->getId()) {
-    // Hack here that depnds on our construction of the searcher name in this way.
-    list(, $env_id) = explode('@', $adapter->getSearcher());
-    // Appends additional breadcrumb items.
-    $breadcrumb = drupal_get_breadcrumb();
-    $breadcrumb[] = l(t('Apache Solr search environment edit'), 'admin/config/search/apachesolr/settings/' . $env_id);
-    $breadcrumb[] = l($realm['label'], 'admin/config/search/apachesolr/settings/' . $env_id . '/facets/' . $realm['name']);
-    drupal_set_breadcrumb($breadcrumb);
-  }
-}
-
-/**
- * Implements hook_form_[form_id]_alter(). (D7)
- */
-function apachesolr_form_facetapi_facet_settings_form_alter(&$form, $form_state) {
-  apachesolr_set_facetapi_breadcrumb($form['#facetapi']['adapter'], $form['#facetapi']['realm']);
-}
-
-/**
- * Implements hook_form_[form_id]_alter(). (D7)
- */
-function apachesolr_form_facetapi_facet_dependencies_form_alter(&$form, $form_state) {
-  apachesolr_set_facetapi_breadcrumb($form['#facetapi']['adapter'], $form['#facetapi']['realm']);
-}
-
-/**
- * Semaphore that indicates whether a search has been done. Blocks use this
- * later to decide whether they should load or not.
- *
- * @param $searched
- *   A boolean indicating whether a search has been executed.
- *
- * @return
- *   TRUE if a search has been executed.
- *   FALSE otherwise.
- */
-function apachesolr_has_searched($env_id, $searched = NULL) {
-  $_searched  = &drupal_static(__FUNCTION__, FALSE);
-  if (is_bool($searched)) {
-    $_searched[$env_id] = $searched;
-  }
-  // Return false if the search environment is not available in our array
-  if (!isset($_searched[$env_id])) {
-    return FALSE;
-  }
-  return $_searched[$env_id];
-}
-
-/**
- * Semaphore that indicates whether Blocks should be suppressed regardless
- * of whether a search has run.
- *
- * @param $suppress
- *   A boolean indicating whether to suppress.
- *
- * @return
- *   TRUE if a search has been executed.
- *   FALSE otherwise.
- */
-function apachesolr_suppress_blocks($env_id, $suppress = NULL) {
-  $_suppress = &drupal_static(__FUNCTION__, FALSE);
-  if (is_bool($suppress)) {
-    $_suppress[$env_id] = $suppress;
-  }
-  // Return false if the search environment is not available in our array
-  if (!isset($_suppress[$env_id])) {
-    return FALSE;
-  }
-  return $_suppress[$env_id];
-}
-
-/**
- * Get or set the default environment ID for the current page.
- */
-function apachesolr_default_environment($env_id = NULL) {
-  $default_env_id = &drupal_static(__FUNCTION__, NULL);
-
-  if (isset($env_id)) {
-    $default_env_id = $env_id;
-  }
-  if (empty($default_env_id)) {
-    $default_env_id = variable_get('apachesolr_default_environment', 'solr');
-  }
-  return $default_env_id;
-}
-
-/**
- * Set the default environment and let other modules know about the change.
- */
-function apachesolr_set_default_environment($env_id) {
-  $old_env_id = variable_get('apachesolr_default_environment', 'solr');
-  variable_set('apachesolr_default_environment', $env_id);
-  module_invoke_all('apachesolr_default_environment', $env_id, $old_env_id);
-}
-
-/**
- * Factory method for solr singleton objects. Structure allows for an arbitrary
- * number of solr objects to be used based on a name whie maps to
- * the host, port, path combination.
- * Get an instance like this:
- *   try {
- *     $solr = apachesolr_get_solr();
- *   }
- *   catch (Exception $e) {
- *     watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
- *   }
- *
- *
- * @param string $env_id
- *
- * @return DrupalApacheSolrServiceInterface $solr
- *
- * @throws Exception
- */
-function apachesolr_get_solr($env_id = NULL) {
-  $solr_cache = &drupal_static(__FUNCTION__);
-  $environments = apachesolr_load_all_environments();
-
-  if (!interface_exists('DrupalApacheSolrServiceInterface')) {
-    require_once(dirname(__FILE__) . '/apachesolr.interface.inc');
-  }
-
-  if (empty($env_id)) {
-    $env_id = apachesolr_default_environment();
-  }
-  elseif (empty($environments[$env_id])) {
-    throw new Exception(t('Invalid Apache Solr environment: @env_id.', array('@env_id' => $env_id)));
-  }
-
-  if (isset($environments[$env_id])) {
-    $class = $environments[$env_id]['service_class'];
-
-    if (empty($solr_cache[$env_id])) {
-      // Use the default class if none is specified.
-      if (empty($class)) {
-        $class = variable_get('apachesolr_service_class', 'DrupalApacheSolrService');
-      }
-      // Takes advantage of auto-loading.
-      $solr = new $class($environments[$env_id]['url'], $env_id);
-      $soft_commit = apachesolr_environment_variable_get($env_id, 'apachesolr_soft_commit', FALSE);
-      if ($soft_commit) {
-        $solr->setSoftCommit($soft_commit);
-      }
-      $solr_cache[$env_id] = $solr;
-    }
-    return $solr_cache[$env_id];
-  }
-  else {
-    throw new Exception('No default Apache Solr environment.');
-  }
-}
-
-/**
- * Function that loads all the environments
- *
- * @return $environments
- *   The environments in the database
- */
-function apachesolr_load_all_environments() {
-  $environments = &drupal_static(__FUNCTION__);
-
-  if (isset($environments)) {
-    return $environments;
-  }
-  // Use cache_get to avoid DB when using memcache, etc.
-  $cache = cache_get('apachesolr:environments', 'cache_apachesolr');
-  if (isset($cache->data)) {
-    $environments = $cache->data;
-  }
-  elseif (!db_table_exists('apachesolr_index_bundles') || !db_table_exists('apachesolr_environment')) {
-    // Sometimes this function is called when the 'apachesolr_index_bundles' is
-    // not created yet.
-    $environments = array();
-  }
-  else {
-    // If ctools is available use its crud functions to load the environments.
-    if (module_exists('ctools')) {
-      ctools_include('export');
-      $environments = ctools_export_load_object('apachesolr_environment', 'all');
-      // Convert environments to array.
-      foreach ($environments as &$environment) {
-        $environment = (array) $environment;
-      }
-    }
-    else {
-      $environments = db_query('SELECT * FROM {apachesolr_environment}')->fetchAllAssoc('env_id', PDO::FETCH_ASSOC);
-    }
-
-    // Load conf and index bundles. We don't use 'subrecords callback' property
-    // of ctools export API.
-    apachesolr_environment_load_subrecords($environments);
-
-    cache_set('apachesolr:environments', $environments, 'cache_apachesolr');
-  }
-
-  // Allow overrides of environments from settings.php
-  $conf_environments = variable_get('apachesolr_environments', array());
-  if (!empty($conf_environments)) {
-    $environments = drupal_array_merge_deep($environments, $conf_environments);
-  }
-
-  return $environments;
-}
-
-/**
- * Function that loads an environment
- *
- * @param $env_id
- *   The environment ID it needs to load.
- *
- * @return $environment
- *   The environment that was requested or FALSE if non-existent
- */
-function apachesolr_environment_load($env_id) {
-  $environments = apachesolr_load_all_environments();
-  return isset($environments[$env_id]) ? $environments[$env_id] : FALSE;
-}
-
-/**
- * Access callback for the delete page of an environment.
- *
- * @param $permission
- *   The permission that you allow access to
- * @param $environment
- *   The environment you want to delete. Core environment cannot be deleted
- */
-function apachesolr_environment_delete_page_access($permission, $environment) {
-  $is_default = $environment['env_id'] == apachesolr_default_environment();
-  return !$is_default && user_access($permission);
-}
-
-/**
- * Function that deletes an environment
- *
- * @param $env_id
- *   The environment ID it needs to delete.
- *
- */
-function apachesolr_environment_delete($env_id) {
-  $environment = apachesolr_environment_load($env_id);
-  if ($environment) {
-    db_delete('apachesolr_environment')
-      ->condition('env_id', $env_id)
-      ->execute();
-    db_delete('apachesolr_environment_variable')
-      ->condition('env_id', $env_id)
-      ->execute();
-    db_delete('apachesolr_index_bundles')
-      ->condition('env_id', $env_id)
-      ->execute();
-
-    module_invoke_all('apachesolr_environment_delete', $environment);
-    apachesolr_environments_clear_cache();
-  }
-}
-
-/**
- * Function that clones an environment
- *
- * @param $env_id
- *   The environment ID it needs to clone.
- *
- */
-function apachesolr_environment_clone($env_id) {
-  $environment = apachesolr_environment_load($env_id);
-  $environments = apachesolr_load_all_environments();
-  $environment['env_id'] = apachesolr_create_unique_id($environments, $env_id);
-  $environment['name'] = $environment['name'] . ' [cloned]';
-  apachesolr_environment_save($environment);
-}
-
-/**
- * Generator for an unique ID of an environment
- *
- * @param $environments
- *   The environments that are available
- * @param $original_environment
- *   The environment it needs to replicate an ID for.
- *
- * @return
- *   The new environment ID
- */
-function apachesolr_create_unique_id($existing, $id) {
-  $count = 0;
-  $cloned_env_int = 0;
-  do {
-    $new_id = $id . '_' . $count;
-    $count++;
-  } while (isset($existing[$new_id]));
-  return $new_id;
-}
-
-/**
- * Function that saves an environment
- *
- * @param $environment
- *   The environment it needs to save.
- *
- */
-function apachesolr_environment_save($environment) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $default = array('env_id' => '', 'name' => '', 'url' => '', 'service_class' => '');
-
-  // If the environment has been saved to the database before, we need to make
-  // sure we don't loose anything when saving it; therefore, load the existing
-  // environment and merge its' data with the new one.
-  $old_environment = apachesolr_environment_load($environment['env_id']);
-  if (!empty($old_environment['in_code_only']) && $environment != $old_environment) {
-    $environment = drupal_array_merge_deep($old_environment, $environment);
-  }
-
-  $conf = isset($environment['conf']) ? $environment['conf'] : array();
-  $index_bundles = isset($environment['index_bundles']) ? $environment['index_bundles'] : array();
-  // Remove any unexpected fields.
-  // @todo - get this from the schema?.
-  $environment = array_intersect_key($environment, $default);
-  db_merge('apachesolr_environment')
-    ->key(array('env_id' => $environment['env_id']))
-    ->fields($environment)
-    ->execute();
-  // Update the environment variables (if any).
-  foreach ($conf as $name => $value) {
-    db_merge('apachesolr_environment_variable')
-      ->key(array('env_id' => $environment['env_id'], 'name' => $name))
-      ->fields(array('value' => serialize($value)))
-      ->execute();
-  }
-  // Update the index bundles (if any).
-  foreach ($index_bundles as $entity_type => $bundles) {
-    apachesolr_index_set_bundles($environment['env_id'], $entity_type, $bundles);
-  }
-  apachesolr_environments_clear_cache();
-}
-
-/**
- * Clear all caches for environments.
- */
-function apachesolr_environments_clear_cache() {
-  cache_clear_all('apachesolr:environments', 'cache_apachesolr');
-  drupal_static_reset('apachesolr_load_all_environments');
-  drupal_static_reset('apachesolr_get_solr');
-  if (module_exists('ctools')) {
-    ctools_include('export');
-    ctools_export_load_object_reset('apachesolr_environment');
-  }
-}
-
-/**
- * Get a named variable, or return the default.
- *
- * @see variable_get()
- */
-function apachesolr_environment_variable_get($env_id, $name, $default = NULL) {
-  $environment = apachesolr_environment_load($env_id);
-  if (isset($environment['conf'][$name])) {
-    return $environment['conf'][$name];
-  }
-  return $default;
-}
-
-/**
- * Set a named variable, or return the default.
- *
- * @see variable_set()
- */
-function apachesolr_environment_variable_set($env_id, $name, $value) {
-  apachesolr_environment_save_to_database($env_id);
-  db_merge('apachesolr_environment_variable')
-    ->key(array('env_id' => $env_id, 'name' => $name))
-    ->fields(array('value' => serialize($value)))
-    ->execute();
-  apachesolr_environments_clear_cache();
-}
-
-/**
- * Get a named variable, or return the default.
- *
- * @see variable_del()
- */
-function apachesolr_environment_variable_del($env_id, $name) {
-  apachesolr_environment_save_to_database($env_id);
-  db_delete('apachesolr_environment_variable')
-    ->condition('env_id', $env_id)
-    ->condition('name', $name)
-    ->execute();
-  apachesolr_environments_clear_cache();
-}
-
-/**
- * Makes sure that the given environment has been saved to the database.
- *
- * This is a required step before any environment-related data is modified or
- * deleted. It ensures that ctools exportables can properly determine whether
- * something has been overridden.
- *
- * @param string $env_id
- *   The environment ID.
- *
- * @see https://www.drupal.org/node/1439564#comment-8727467
- */
-function apachesolr_environment_save_to_database($env_id) {
-  $environment = apachesolr_environment_load($env_id);
-  if (!empty($environment['in_code_only'])) {
-    apachesolr_environment_save($environment);
-  }
-}
-
-/**
- * Checks if a specific Apache Solr server is available.
- *
- * @return boolean TRUE if the server can be pinged, FALSE otherwise.
- */
-function apachesolr_server_status($url, $class = NULL) {
-  $status = &drupal_static(__FUNCTION__, array());
-
-  if (!interface_exists('DrupalApacheSolrServiceInterface')) {
-    require_once(dirname(__FILE__) . '/apachesolr.interface.inc');
-  }
-
-  if (empty($class)) {
-    $class = variable_get('apachesolr_service_class', 'DrupalApacheSolrService');
-  }
-
-  $key = $url . '|' . $class;
-  // Static store insures we don't ping the server more than once per page load.
-  if (!isset($status[$key])) {
-    $ping = FALSE;
-    try {
-      // Takes advantage of auto-loading.
-      // @Todo : Do we have to specify the env_id?
-      $solr = new $class($url);
-      $ping = @$solr->ping(variable_get('apachesolr_ping_timeout', 4));
-    }
-    catch (Exception $e) {
-      watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    }
-    $status[$key] = $ping;
-  }
-  return $status[$key];
-}
-
-/**
- * Execute a keyword search based on a query object.
- *
- * Normally this function is used with the default (dismax) handler for keyword
- * searches. The $final_query that's returned will have been modified by
- * both hook_apachesolr_query_prepare() and hook_apachesolr_query_alter().
- *
- * @param $current_query
- *   A query object from apachesolr_drupal_query().  It will be modified by
- *   hook_apachesolr_query_prepare() and then cached in apachesolr_current_query().
- * @param $page
- *   For paging into results, using $current_query->params['rows'] results per page.
- *
- * @return array($final_query, $response)
- *
- * @throws Exception
- */
-function apachesolr_do_query(DrupalSolrQueryInterface $current_query) {
-  if (!is_object($current_query)) {
-    throw new Exception(t('NULL query object in function apachesolr_do_query()'));
-  }
-  // Allow modules to alter the query prior to statically caching it.
-  // This can e.g. be used to add available sorts.
-  $searcher = $current_query->getSearcher();
-
-  if (module_exists('facetapi')) {
-    // Gets enabled facets, adds filter queries to $params.
-    $adapter = facetapi_adapter_load($searcher);
-    if ($adapter) {
-      // Realm could be added but we want all the facets
-      $adapter->addActiveFilters($current_query);
-    }
-  }
-
-  foreach (module_implements('apachesolr_query_prepare') as $module) {
-    $function_name = $module . '_apachesolr_query_prepare';
-    $function_name($current_query);
-  }
-
-  // Cache the original query. Since all the built queries go through
-  // this process, all the hook_invocations will happen later
-  $env_id = $current_query->solr('getId');
-
-  // Add our defType setting here. Normally this would be dismax or the setting
-  // from the solrconfig.xml. This allows the setting to be overridden.
-  $defType = apachesolr_environment_variable_get($env_id, 'apachesolr_query_type');
-  if (!empty($defType)) {
-    $current_query->addParam('defType', $defType);
-  }
-
-  $query = apachesolr_current_query($env_id, $current_query);
-
-  // Verify if this query was already executed in the same page load
-  if ($response = apachesolr_static_response_cache($searcher)) {
-    // Return cached query object
-    return array($query, $response);
-  }
-  $query->addParam('start', $query->page * $query->getParam('rows'));
-
-  // This hook allows modules to modify the query and params objects.
-  drupal_alter('apachesolr_query', $query);
-
-  if ($query->abort_search) {
-    // A module implementing HOOK_apachesolr_query_alter() aborted the search.
-    return array(NULL, array());
-  }
-
-  $keys = $query->getParam('q');
-  if (strlen($keys) == 0 && ($filters = $query->getFilters())) {
-    // Move the fq params to q.alt for better performance. Only suitable
-    // when using dismax or edismax, so we keep this out of the query class itself
-    // for now.
-    $qalt = array();
-    foreach ($filters as $delta => $filter) {
-      // Move the fq param if it has no local params and is not negative.
-      if (!$filter['#exclude'] && !$filter['#local']) {
-        $qalt[] = '(' . $query->makeFilterQuery($filter) . ')';
-        $query->removeFilter($filter['#name'], $filter['#value'], $filter['#exclude']);
-      }
-    }
-    if ($qalt) {
-      $query->addParam('q.alt', implode(' ', $qalt));
-    }
-  }
-  // We must run htmlspecialchars() here since converted entities are in the index.
-  // and thus bare entities &, > or < won't match. Single quotes are converted
-  // too, but not double quotes since the dismax parser looks at them for
-  // phrase queries.
-  $keys = htmlspecialchars($keys, ENT_NOQUOTES, 'UTF-8');
-  $keys = str_replace("'", '&#039;', $keys);
-  $response = $query->search($keys);
-  // The response is cached so that it is accessible to the blocks and anything
-  // else that needs it beyond the initial search.
-  apachesolr_static_response_cache($searcher, $response);
-  return array($query, $response);
-}
-
-/**
- * It is important to hold on to the Solr response object for the duration of the
- * page request so that we can use it for things like building facet blocks.
- *
- * @param $searcher
- *   Name of the searcher - e.g. from $query->getSearcher().
- */
-function apachesolr_static_response_cache($searcher, $response = NULL) {
-  $_response = &drupal_static(__FUNCTION__, array());
-
-  if (is_object($response)) {
-    $_response[$searcher] = clone $response;
-  }
-  if (!isset($_response[$searcher])) {
-    $_response[$searcher] = NULL;
-  }
-  return $_response[$searcher];
-}
-
-/**
- * Factory function for query objects.
- *
- * @param string $name
- *   The search name, used for finding the correct blocks and other config.
- *   Typically "apachesolr".
- * @param array $params
- *   Array of params , such as 'q', 'fq' to be applied.
- * @param string $solrsort
- *   Visible string telling solr how to sort.
- * @param string $base_path
- *   The search base path (without the keywords) for this query.
- * @param DrupalApacheSolrServiceInterface $solr
- *   An instance of DrupalApacheSolrServiceInterface.
- *
- * @return DrupalSolrQueryInterface
- *   DrupalSolrQueryInterface object.
- *
- * @throws Exception
- */
-function apachesolr_drupal_query($name, array $params = array(), $solrsort = '', $base_path = '', DrupalApacheSolrServiceInterface $solr = NULL, $context = array()) {
-  if (!interface_exists('DrupalSolrQueryInterface')) {
-    require_once(dirname(__FILE__) . '/apachesolr.interface.inc');
-  }
-  $class_info = variable_get('apachesolr_query_class', array(
-    'file' => 'Solr_Base_Query',
-    'module' => 'apachesolr',
-    'class' => 'SolrBaseQuery'));
-  $class = $class_info['class'];
-  if (!class_exists($class_info['class']) && isset($class_info['file']) && isset($class_info['module'])) {
-    module_load_include('php', $class_info['module'], $class_info['file']);
-  }
-  if (empty($solr)) {
-    $solr = apachesolr_get_solr();
-  }
-  return new $class($name, $solr, $params, $solrsort, $base_path, $context);
-}
-
-/**
- * Factory function for query objects.
- *
- * @param $operator
- *   Whether the subquery should be added to another query as OR or AND
- *
- * @return DrupalSolrQueryInterface|false
- *   Subquery or error.
- *
- * @throws Exception
- */
-function apachesolr_drupal_subquery($operator = 'OR') {
-  if (!interface_exists('DrupalSolrQueryInterface')) {
-    require_once(dirname(__FILE__) . '/apachesolr.interface.inc');
-  }
-
-  $class_info = variable_get('apachesolr_subquery_class', array(
-    'file' => 'Solr_Base_Query',
-    'module' => 'apachesolr',
-    'class' => 'SolrFilterSubQuery'));
-  $class = $class_info['class'];
-  if (!class_exists($class_info['class']) && isset($class_info['file']) && isset($class_info['module'])) {
-    module_load_include('php', $class_info['module'], $class_info['file']);
-  }
-  $query = new $class($operator);
-  return $query;
-}
-
-/**
- * Static getter/setter for the current query. Only set once per page.
- *
- * @param $env_id
- *   Environment from which to save or get the current query
- * @param DrupalSolrQueryInterface $query
- *   $query object to save in the static
- *
- * @return DrupalSolrQueryInterface|null
- *   return the $query object if it is available in the drupal_static or null otherwise
- */
-function apachesolr_current_query($env_id, DrupalSolrQueryInterface $query = NULL) {
-  $saved_query = &drupal_static(__FUNCTION__, NULL);
-  if (is_object($query)) {
-    $saved_query[$env_id] = clone $query;
-  }
-  if (empty($saved_query[$env_id])) {
-    return NULL;
-  }
-  return is_object($saved_query[$env_id]) ? clone $saved_query[$env_id] : NULL;
-}
-
-/**
- *
- */
-
-/**
- * Construct a dynamic index name based on information about a field.
- *
- * @param array $field
- *   array(
- *     'index_type' => 'integer',
- *     'multiple' => TRUE,
- *     'name' => 'fieldname',
- *   ),
- * @return string
- *   Fieldname as it appears in the solr index
- */
-function apachesolr_index_key($field) {
-  $index_type = !empty($field['index_type']) ? $field['index_type'] : NULL;
-  switch ($index_type) {
-    case 'text':
-      $type_prefix = 't';
-      break;
-    case 'text-omitNorms':
-      $type_prefix = 'to';
-      break;
-    case 'text-unstemmed':
-      $type_prefix = 'tu';
-      break;
-    case 'text-edgeNgram':
-      $type_prefix = 'te';
-      break;
-    case 'text-whiteSpace':
-      $type_prefix = 'tw';
-      break;
-    case 'integer':
-      $type_prefix = 'i'; // long integer
-      break;
-    case 'half-int':
-      $type_prefix = 'h'; // 32 bit integer
-      break;
-    case 'float':
-      $type_prefix = 'f'; // float; sortable.
-      break;
-    case 'double':
-      $type_prefix = 'p'; // double; sortable d was used for date.
-      break;
-    case 'boolean':
-      $type_prefix = 'b';
-      break;
-    case 'tint':
-      $type_prefix = 'it'; // long integer trie; sortable, best for range queries
-      break;
-    case 'thalf-int':
-      $type_prefix = 'ht'; // 32 bit integer trie (sortable)
-      break;
-    case 'tfloat':
-      $type_prefix = 'ft'; // float trie; sortable, best for range queries.
-      break;
-    case 'tdouble':
-      $type_prefix = 'pt'; // double trie;
-      break;
-    case 'sint':
-      $type_prefix = 'is'; // long integer sortable (deprecated)
-      break;
-    case 'half-sint':
-      $type_prefix = 'hs'; // 32 bit integer long sortable (deprecated)
-      break;
-    case 'sfloat':
-      $type_prefix = 'fs'; // float, sortable (use for sorting missing last) (deprecated).
-      break;
-    case 'sdouble':
-      $type_prefix = 'ps'; // double sortable; (use for sorting missing last) (deprecated).
-      break;
-    case 'date':
-      $type_prefix = 'd'; // date trie (sortable)
-      break;
-    case 'date-deprecated':
-      $type_prefix = 'dd'; // date (regular)
-      break;
-    case 'binary':
-      $type_prefix = 'x'; // Anything that is base64 encoded
-      break;
-    case 'storage':
-      $type_prefix = 'z'; // Anything that just need to be stored, not indexed
-      break;
-    case 'point':
-      $type_prefix = 'point'; // PointType. "52.3672174,4.9126891"
-      break;
-    case 'location':
-      $type_prefix = 'loc'; // LatLonType. "52.3672174,4.9126891"
-      break;
-    case 'geohash':
-      $type_prefix = 'geo'; // GeohashField. "42.6" http://en.wikipedia.org/wiki/Geohash
-      break;
-    case 'string':
-    default:
-      $type_prefix = 's'; // String
-  }
-  $sm = !empty($field['multiple']) ? 'm_' : 's_';
-
-  // Legacy: Block deltas are limited to 32 chars. Keep it like this for backwards compatibility
-  $apachesolr_field_length_limit = variable_get('apachesolr_field_length_limit', '32');
-  if ($apachesolr_field_length_limit <= 0) {
-    return $type_prefix . $sm . $field['name'];
-  }
-  else {
-    return substr($type_prefix . $sm . $field['name'], 0, $apachesolr_field_length_limit);
-  }
-}
-
-/**
- * Try to map a schema field name to a human-readable description.
- */
-function apachesolr_field_name_map($field_name) {
-  $map = &drupal_static(__FUNCTION__);
-
-  if (!isset($map)) {
-    $map = array(
-      'content' => t('The full, rendered content (e.g. the rendered node body)'),
-      'ts_comments' => t('The rendered comments associated with a node'),
-      'tos_content_extra' => t('Extra rendered content or keywords'),
-      'tos_name_formatted' => t('Author name (Formatted)'),
-      'label' => t('Title or label'),
-      'teaser' => t('Teaser or preview'),
-      'tos_name' => t('Author name'),
-      'path_alias' => t('Path alias'),
-      'taxonomy_names' => t('All taxonomy term names'),
-      'tags_h1' => t('Body text inside H1 tags'),
-      'tags_h2_h3' => t('Body text inside H2 or H3 tags'),
-      'tags_h4_h5_h6' => t('Body text inside H4, H5, or H6 tags'),
-      'tags_inline' => t('Body text in inline tags like EM or STRONG'),
-      'tags_a' => t('Body text inside links (A tags)'),
-      'tid' => t('Taxonomy term IDs'),
-      'is_uid' => t('User IDs'),
-      'bundle' => t('Content type names eg. article'),
-      'entity_type' => t('Entity type names eg. node'),
-      'ss_language' => t('Language type eg. en or und (undefinded)'),
-    );
-    if (module_exists('taxonomy')) {
-      foreach (taxonomy_get_vocabularies() as $vocab) {
-        $map['tm_vid_' . $vocab->vid . '_names'] = t('Taxonomy term names only from the %name vocabulary', array('%name' => $vocab->name));
-        $map['im_vid_' . $vocab->vid] = t('Taxonomy term IDs from the %name vocabulary', array('%name' => $vocab->name));
-      }
-    }
-    foreach (apachesolr_entity_fields('node') as $field_nm => $nodefields) {
-      foreach ($nodefields as $field_info) {
-        $map[apachesolr_index_key($field_info)] = t('Field of type @type: %label', array('@type' => $field_info['field']['type'], '%label' => $field_info['display_name']));
-      }
-    }
-    drupal_alter('apachesolr_field_name_map', $map);
-  }
-  return isset($map[$field_name]) ? $map[$field_name] : $field_name;
-}
-
-/**
- * Validation function for the Facet API facet settings form.
- *
- * Apache Solr does not support the combination of OR facets
- * and facet missing, so catch that at validation.
- */
-function apachesolr_facet_form_validate($form, &$form_state) {
-  if (($form_state['values']['global']['operator'] == FACETAPI_OPERATOR_OR) && $form_state['values']['global']['facet_missing']) {
-    form_set_error('operator', t('Apache Solr does not support <em>facet missing</em> in combination with the OR operator.'));
-  }
-}
-
-/**
- * Implements hook_module_implements_alter().
- */
-function apachesolr_module_implements_alter(&$implementations, $hook) {
-  // This module's hook_entity_info_alter() implementation should run last
-  // since it needs to examine the list of bundles for each entity type, which
-  // may have been changed in earlier hook_entity_info_alter() implementations
-  // (for example, the File Entity module does this for file entities).
-  if ($hook == 'entity_info_alter') {
-    $group = $implementations['apachesolr'];
-    unset($implementations['apachesolr']);
-    $implementations['apachesolr'] = $group;
-  }
-}
-
-/**
- * Implements hook_entity_info_alter().
- */
-function apachesolr_entity_info_alter(&$entity_info) {
-  // Load all environments
-  $environments = apachesolr_load_all_environments();
-
-  // Set those values that we know.  Other modules can do so
-  // for their own entities if they want.
-  $default_entity_info = array();
-  $default_entity_info['node']['indexable'] = TRUE;
-  $default_entity_info['node']['status callback'][] = 'apachesolr_index_node_status_callback';
-  $default_entity_info['node']['document callback'][] = 'apachesolr_index_node_solr_document';
-  $default_entity_info['node']['reindex callback'] = 'apachesolr_index_node_solr_reindex';
-  $default_entity_info['node']['bundles changed callback'] = 'apachesolr_index_node_bundles_changed';
-  $default_entity_info['node']['index_table'] = 'apachesolr_index_entities_node';
-  $default_entity_info['node']['cron_check'] = 'apachesolr_index_node_check_table';
-  // apachesolr_search implements a new callback for every entity type
-  // $default_entity_info['node']['result callback'] = 'apachesolr_search_node_result';
-  //Allow implementations of HOOK_apachesolr_entity_info to modify these default indexers
-  drupal_alter('apachesolr_entity_info', $default_entity_info);
-
-  // First set defaults so that we don't need to worry about NULL keys.
-  foreach (array_keys($entity_info) as $type) {
-    if (!isset($entity_info[$type]['apachesolr'])) {
-      $entity_info[$type]['apachesolr'] = array();
-    }
-    if (isset($default_entity_info[$type])) {
-      $entity_info[$type]['apachesolr'] += $default_entity_info[$type];
-    }
-    $default = array(
-      'indexable' => FALSE,
-      'status callback' => '',
-      'document callback' => '',
-      'reindex callback' => '',
-      'bundles changed callback' => '',
-    );
-    $entity_info[$type]['apachesolr'] += $default;
-  }
-
-  // For any supported entity type and bundle, flag it for indexing.
-  foreach ($entity_info as $entity_type => $info) {
-    if ($info['apachesolr']['indexable']) {
-      // Loop over each environment and check if any of them have other entity
-      // bundles of any entity type enabled and set the index value to TRUE
-      foreach ($environments as $env) {
-        // Skip if the environment is set to read only
-        if (empty($env['env_id']['conf']['apachesolr_read_only'])) {
-          // Get the supported bundles
-          $supported = apachesolr_get_index_bundles($env['env_id'], $entity_type);
-          // For each bundle in drupal, compare to the supported apachesolr
-          // bundles and enable where possible
-          foreach (array_keys($info['bundles']) as $bundle) {
-            if (in_array($bundle, $supported)) {
-              $entity_info[$entity_type]['bundles'][$bundle]['apachesolr']['index'] = TRUE;
-            }
-          }
-        }
-      }
-    }
-  }
-}
-
-/**
- * Gets a list of the bundles on the specified entity type that should be indexed.
- *
- * @param string $core
- *   The Solr environment for which to index entities.
- * @param string $entity_type
- *   The entity type to index.
- * @return array
- *   The bundles that should be indexed.
- */
-function apachesolr_get_index_bundles($env_id, $entity_type) {
-  $environment = apachesolr_environment_load($env_id);
-  return !empty($environment['index_bundles'][$entity_type]) ? $environment['index_bundles'][$entity_type] : array();
-}
-
-/**
- * Implements hook_entity_insert().
- */
-function apachesolr_entity_insert($entity, $type) {
-  // For our purposes there's really no difference between insert and update.
-  return apachesolr_entity_update($entity, $type);
-}
-
-/**
- * Determines if we should index the provided entity.
- *
- * Whether or not a given entity is indexed is determined on a per-bundle basis.
- * Entities/Bundles that have no index flag are presumed to not get indexed.
- *
- * @param stdClass $entity
- *   The entity we may or may not want to index.
- * @param string $type
- *   The type of entity.
- * @return boolean
- *   TRUE if this entity should be indexed, FALSE otherwise.
- */
-function apachesolr_entity_should_index($entity, $type) {
-  $info = entity_get_info($type);
-  list($id, $vid, $bundle) = entity_extract_ids($type, $entity);
-
-  if ($bundle && isset($info['bundles'][$bundle]['apachesolr']['index']) && $info['bundles'][$bundle]['apachesolr']['index']) {
-    return TRUE;
-  }
-  return FALSE;
-}
-
-/**
- * Implements hook_entity_update().
- */
-function apachesolr_entity_update($entity, $type) {
-  // Include the index file for the status callback
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  if (apachesolr_entity_should_index($entity, $type)) {
-    $info = entity_get_info($type);
-    list($id, $vid, $bundle) = entity_extract_ids($type, $entity);
-
-    // Check status callback before sending to the index
-    $status_callbacks = apachesolr_entity_get_callback($type, 'status callback', $bundle);
-
-    $status = TRUE;
-    if (is_array($status_callbacks)) {
-      foreach($status_callbacks as $status_callback) {
-        if (is_callable($status_callback)) {
-          // By placing $status in front we prevent calling any other callback
-          // after one status callback returned false.
-          // The entity being saved is passed to the status callback in
-          // addition to $id in case the callback needs to examine properties
-          // such as the current node revision which cannot be determined by
-          // loading a fresh copy of the entity.
-          $status = $status && $status_callback($id, $type, $entity);
-        }
-      }
-    }
-
-    // Delete the entity from our index if the status callback returns FALSE
-    if (!$status) {
-      apachesolr_entity_delete($entity, $type);
-      return NULL;
-    }
-
-    $indexer_table = apachesolr_get_indexer_table($type);
-
-    // If we haven't seen this entity before it may not be there, so merge
-    // instead of update.
-    db_merge($indexer_table)
-      ->key(array(
-      'entity_type' => $type,
-      'entity_id' => $id,
-      ))
-      ->fields(array(
-        'bundle' => $bundle,
-        'status' => 1,
-        'changed' => REQUEST_TIME,
-      ))
-      ->execute();
-  }
-}
-
-/**
- * Retrieve the indexer table for an entity type.
- */
-function apachesolr_get_indexer_table($type) {
-  $entity_info = entity_get_info();
-  if (isset($entity_info[$type]['apachesolr']['index_table'])) {
-    $indexer_table = $entity_info[$type]['apachesolr']['index_table'];
-  }
-  else {
-    $indexer_table = 'apachesolr_index_entities';
-  }
-  return $indexer_table;
-}
-
-/**
- * Implements hook_entity_delete().
- * 
- * Delete the entity's entry from a fictional table of all entities.
- */
-function apachesolr_entity_delete($entity, $entity_type) {
-  list($entity_id) = entity_extract_ids($entity_type, $entity);
-  // Get all environments and delete it from their table and index
-  $environments = apachesolr_load_all_environments();
-  foreach ($environments as $environment) {
-    apachesolr_remove_entity($environment['env_id'], $entity_type, $entity_id);
-  }
-}
-
-/**
- * Remove a specific entity from a given Solr environment.
- * 
- * @param string $env_id
- * @param string $entity_type
- * @param string $entity_id
- */
-function apachesolr_remove_entity($env_id, $entity_type, $entity_id) {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-
-  $indexer_table = apachesolr_get_indexer_table($entity_type);
-  if (apachesolr_index_delete_entity_from_index($env_id, $entity_type, $entity_id)) {
-    // There was no exception, so delete from the table.
-    db_delete($indexer_table)
-      ->condition('entity_type', $entity_type)
-      ->condition('entity_id', $entity_id)
-      ->execute();
-  }
-  else {
-    // Set status 0 so we try to delete from the index again in the future.
-    db_update($indexer_table)
-      ->condition('entity_id', $entity_id)
-      ->fields(array('changed' => REQUEST_TIME, 'status' => 0))
-      ->execute();
-  }
-}
-
-/**
- * Returns array containing information about node fields that should be indexed
- */
-function apachesolr_entity_fields($entity_type = 'node') {
-  $fields = &drupal_static(__FUNCTION__, array());
-
-  if (!isset($fields[$entity_type])) {
-    $fields[$entity_type] = array();
-
-    // Get the field mappings from apachesolr_field_mappings() implementations.
-    $mappings = apachesolr_get_field_mappings($entity_type);
-
-    $modules = system_get_info('module');
-    $instances = field_info_instances($entity_type);
-    foreach (field_info_fields() as $field_name => $field) {
-      $row = array();
-      if (isset($field['bundles'][$entity_type]) && (isset($mappings['per-field'][$field_name]) || isset($mappings[$field['type']]))) {
-        // Find the mapping.
-        if (isset($mappings['per-field'][$field_name])) {
-          $row = $mappings['per-field'][$field_name];
-        }
-        else {
-          $row = $mappings[$field['type']];
-        }
-        // The field info array.
-        $row['field'] = $field;
-
-        // Cardinality: The number of values the field can hold. Legal values
-        // are any positive integer or FIELD_CARDINALITY_UNLIMITED.
-        if ($row['field']['cardinality'] != 1) {
-          $row['multiple'] = TRUE;
-        }
-
-        // @todo: for fields like taxonomy we are indexing multiple Solr fields
-        // per entity field, but are keying on a single Solr field name here.
-        $function = !empty($row['name callback']) ? $row['name callback'] : NULL;
-        if ($function && is_callable($function)) {
-          $row['name'] = $function($field);
-        }
-        else {
-          $row['name'] = $field['field_name'];
-        }
-        $row['module_name'] = $modules[$field['module']]['name'];
-        // Set display name
-        $display_name = array();
-        foreach ($field['bundles'][$entity_type] as $bundle) {
-          $field_display = isset($instances[$bundle][$field_name]['display']) ? $instances[$bundle][$field_name]['display'] : array();
-          if (empty($field_display['search_index']) || (isset($field_display['search_index']['type']) && $field_display['search_index']['type'] != 'hidden')) {
-            $row['display_name'] = $instances[$bundle][$field_name]['label'];
-            $row['bundles'][] = $bundle;
-          }
-        }
-        // Only add to the $fields array if some instances are displayed for the search index.
-        if (!empty($row['bundles'])) {
-          // Use the Solr index key as the array key.
-          $fields[$entity_type][apachesolr_index_key($row)][] = $row;
-        }
-      }
-    }
-  }
-  return $fields[$entity_type];
-}
-
-/**
- * Gets the Apache Solr field mappings.
- *
- * Field mappings define the various callbacks and Facet API keys associated
- * with field types, i.e. "integer", "date", etc. Mappings are gathered by
- * invoking hook_apachesolr_field_mappings().
- *
- * @param string $entity_type
- *   The machine name of the entity mappings are being collected for.
- *
- * @return array
- *   An associative array keyed by field type to an array of mappings
- *   containing:
- *   - dependency plugins: The Facet API dependency plugins associated with
- *     fields of this type.
- *   - map callback: The Facet API map callback that converts the raw values
- *     stored in the index to something human readable.
- *   - name callback: Callback used to modify the base name of the field as it
- *     is stored in Solr. For example, the name callback cound change an integer
- *     field from "field_foo" to "field_bar" so that it is stored in Solr as
- *     "i_field_bar".
- *   - hierarchy callback: The Facet API hierarchy processing callback for
- *     hierarchical facets.
- *   - indexing_callback: Callback used to retrieve values for indexing.
- *   - index_type: The Solr datatype associated with this field type.
- *   - facets: A boolean flagging whether facets are allowed for this field.
- *   - facet missing allowed: A boolean flagging whether the Facet API "missing
- *     facets" setting is supported by fields of this type.
- *   - facet mincount allowed: A boolean flagging whether the Facet API "minimum
- *     facet count" setting is supported by fields of this type.
- *   - multiple: A boolean flagging whether the field contains multiple values.
- *
- * @see http://drupal.org/node/1825426
- */
-function apachesolr_get_field_mappings($entity_type) {
-  $field_mappings = &drupal_static(__FUNCTION__, array());
-  if (!isset($field_mappings[$entity_type])) {
-
-    $field_mappings[$entity_type] = module_invoke_all('apachesolr_field_mappings');
-    $mappings = &$field_mappings[$entity_type];
-
-    foreach (array_keys($mappings) as $key) {
-      // Set all values with defaults.
-      $defaults = array(
-        'dependency plugins' => array('bundle', 'role'),
-        'map callback' => FALSE,
-        'name callback' => '',
-        'hierarchy callback' => FALSE,
-        'indexing_callback' => '',
-        'index_type' => 'string',
-        'facets' => FALSE,
-        'facet missing allowed' => FALSE,
-        'facet mincount allowed' => FALSE,
-        // Field API allows any field to be multi-valued.
-        'multiple' => TRUE,
-      );
-      if ($key !== 'per-field') {
-        $mappings[$key] += $defaults;
-      }
-      else {
-        foreach (array_keys($field_mappings[$entity_type][$key]) as $field_key) {
-          $mappings[$key][$field_key] += $defaults;
-        }
-      }
-    }
-
-    // Allow other modules to add or alter the field mappings.
-    drupal_alter('apachesolr_field_mappings', $mappings, $entity_type);
-  }
-
-  return $field_mappings[$entity_type];
-}
-
-/**
- * Implements hook_apachesolr_index_document_build().
- */
-function field_apachesolr_index_document_build(ApacheSolrDocument $document, $entity, $entity_type) {
-  $info = entity_get_info($entity_type);
-  if ($info['fieldable']) {
-    // Handle fields including taxonomy.
-    $indexed_fields = apachesolr_entity_fields($entity_type);
-    foreach ($indexed_fields as $index_key => $nodefields) {
-      foreach ($nodefields as $field_info) {
-        $field_name = $field_info['field']['field_name'];
-        // See if the node has fields that can be indexed
-        if (isset($entity->{$field_name})) {
-          // Got a field.
-          $functions = $field_info['indexing_callback'];
-
-          if (!is_array($functions)) {
-            $functions = array($functions);
-          }
-          foreach ($functions as $function) {
-            if ($function && function_exists($function)) {
-              // NOTE: This function should always return an array.  One
-              // entity field may be indexed to multiple Solr fields.
-              $fields = $function($entity, $field_name, $index_key, $field_info);
-              foreach ($fields as $field) {
-                // It's fine to use this method also for single value fields.
-                $document->setMultiValue($field['key'], $field['value']);
-              }
-            }
-          }
-        }
-      }
-    }
-  }
-}
-
-/**
- * Implements hook_apachesolr_index_document_build_node().
- *
- * Adds book module support
- */
-function apachesolr_apachesolr_index_document_build_node(ApacheSolrDocument $document, $entity, $env_id) {
-  // Index book module data.
-  if (!empty($entity->book['bid'])) {
-    // Hard-coded - must change if apachesolr_index_key() changes.
-    $document->is_book_bid = (int) $entity->book['bid'];
-  }
-}
-
-/**
- * Strip html tags and also control characters that cause Jetty/Solr to fail.
- */
-function apachesolr_clean_text($text) {
-  // Remove invisible content.
-  $text = preg_replace('@<(applet|audio|canvas|command|embed|iframe|map|menu|noembed|noframes|noscript|script|style|svg|video)[^>]*>.*</\1>@siU', ' ', $text);
-  // Add spaces before stripping tags to avoid running words together.
-  $text = filter_xss(str_replace(array('<', '>'), array(' <', '> '), $text), array());
-  // Decode entities and then make safe any < or > characters.
-  $text = htmlspecialchars(html_entity_decode($text, ENT_QUOTES, 'UTF-8'), ENT_QUOTES, 'UTF-8');
-  // Remove extra spaces.
-  $text = preg_replace('/\s+/s', ' ', $text);
-  // Remove white spaces around punctuation marks probably added
-  // by the safety operations above. This is not a world wide perfect solution,
-  // but a rough attempt for at least US and Western Europe.
-  // Pc: Connector punctuation
-  // Pd: Dash punctuation
-  // Pe: Close punctuation
-  // Pf: Final punctuation
-  // Pi: Initial punctuation
-  // Po: Other punctuation, including ¿?¡!,.:;
-  // Ps: Open punctuation
-  $text = preg_replace('/\s(\p{Pc}|\p{Pd}|\p{Pe}|\p{Pf}|!|\?|,|\.|:|;)/s', '$1', $text);
-  $text = preg_replace('/(\p{Ps}|¿|¡)\s/s', '$1', $text);
-  return $text;
-}
-
-/**
- * Use the list.module's list_allowed_values() to format the
- * field based on its value ($facet).
- *
- *  @param $facet string
- *    The indexed value
- *  @param $options
- *    An array of options including the hook_block $delta.
- */
-function apachesolr_fields_list_facet_map_callback($facets, $options) {
-  $map = array();
-  $allowed_values = array();
-  // @see list_field_formatter_view()
-  $fields = field_info_fields();
-  $field_name = $options['field']['field_name'];
-  if (isset($fields[$field_name])) {
-    $allowed_values = list_allowed_values($fields[$field_name]);
-  }
-  if ($fields[$field_name]['type'] == 'list_boolean') {
-    // Convert boolean allowed value keys (0, 1, TRUE, FALSE) to
-    // Apache Solr representations (string).
-    foreach($allowed_values as $key => $value) {
-      $strkey = $key ? 'true' : 'false';
-      $allowed_values[$strkey] = $value;
-      unset($allowed_values[$key]);
-    }
-  }
-  foreach ($facets as $key) {
-    if (isset($allowed_values[$key])) {
-      $map[$key]['#markup'] = field_filter_xss($allowed_values[$key]);
-    }
-    elseif ($key === '_empty_' && !empty($options['facet missing allowed'])) {
-      // Facet missing.
-      $map[$key]['#markup'] = theme('facetapi_facet_missing', array('field_name' => $options['display_name']));
-    }
-    else {
-      $map[$key]['#markup'] = field_filter_xss($key);
-    }
-    // The value has already been filtered.
-    $map[$key]['#html'] = TRUE;
-  }
-  return $map;
-}
-
-/**
- *  @param $facet string
- *    The indexed value
- *  @param $options
- *    An array of options including the hook_block $delta.
- *  @see http://drupal.org/node/1059372
- */
-function apachesolr_nodereference_map_callback($facets, $options) {
-  $map = array();
-  $allowed_values = array();
-  // @see list_field_formatter_view()
-  $fields = field_info_fields();
-  $field_name = $options['field']['field_name'];
-  if (isset($fields[$field_name])) {
-    $allowed_values = node_reference_potential_references($fields[$field_name]);
-  }
-  foreach ($facets as $key) {
-    if (isset($allowed_values[$key])) {
-      $map[$key]['#markup'] = field_filter_xss($allowed_values[$key]['title']);
-    }
-    elseif ($key === '_empty_' && !empty($options['facet missing allowed'])) {
-      // Facet missing.
-      $map[$key]['#markup'] = theme('facetapi_facet_missing', array('field_name' => $options['display_name']));
-    }
-    else {
-      $map[$key]['#markup'] = field_filter_xss($key);
-    }
-    // The value has already been filtered.
-    $map[$key]['#html'] = TRUE;
-  }
-  return $map;
-}
-
-/**
- *  @param $facet string
- *    The indexed value
- *  @param $options
- *    An array of options including the hook_block $delta.
- *  @see http://drupal.org/node/1059372
- */
-function apachesolr_userreference_map_callback($facets, $options) {
-  $map = array();
-  $allowed_values = array();
-  // @see list_field_formatter_view()
-  $fields = field_info_fields();
-  $field_name = $options['field']['field_name'];
-  if (isset($fields[$field_name])) {
-    $allowed_values = user_reference_potential_references($fields[$field_name]);
-  }
-  foreach ($facets as $key) {
-    if (isset($allowed_values[$key])) {
-      $map[$key]['#markup'] = field_filter_xss($allowed_values[$key]['title']);
-    }
-    elseif ($key === '_empty_' && !empty($options['facet missing allowed'])) {
-      // Facet missing.
-      $map[$key]['#markup'] = theme('facetapi_facet_missing', array('field_name' => $options['display_name']));
-    }
-    else {
-      $map[$key]['#markup'] = field_filter_xss($key);
-    }
-    // The value has already been filtered.
-    $map[$key]['#html'] = TRUE;
-  }
-  return $map;
-}
-
-/**
- * Mapping callback for entity references.
- */
-function apachesolr_entityreference_facet_map_callback(array $values, array $options) {
-  $map = array();
-  // Gathers entity ids so we can load multiple entities at a time.
-  $entity_ids = array();
-  foreach ($values as $value) {
-    list($entity_type, $id) = explode(':', $value);
-    $entity_ids[$entity_type][] = $id;
-  }
-  // Loads and maps entities.
-  foreach ($entity_ids as $entity_type => $ids) {
-    $entities = entity_load($entity_type, $ids);
-    foreach ($entities as $id => $entity) {
-      $key = $entity_type . ':' . $id;
-      $map[$key] = entity_label($entity_type, $entity);
-    }
-  }
-  return $map;
-}
-
-/**
- * Returns the callback function appropriate for a given entity type/bundle.
- *
- * @param string $entity_type
- *   The entity type for which we want to know the approprite callback.
- * @param string $callback
- *   The callback for which we want the appropriate function.
- * @param string $bundle
- *   If specified, the bundle of the entity in question.  Some callbacks may
- *   be overridden on a bundle-level.  Not specified only the entity-level
- *   callback will be checked.
- * @return string
- *   The function name for this callback, or NULL if not specified.
- */
-function apachesolr_entity_get_callback($entity_type, $callback, $bundle = NULL) {
-  $info = entity_get_info($entity_type);
-
-  // A bundle-specific callback takes precedence over the generic one for the
-  // entity type.
-  if ($bundle && isset($info['bundles'][$bundle]['apachesolr'][$callback])) {
-    $callback_function = $info['bundles'][$bundle]['apachesolr'][$callback];
-  }
-  elseif (isset($info['apachesolr'][$callback])) {
-    $callback_function = $info['apachesolr'][$callback];
-  }
-  else {
-    $callback_function = NULL;
-  }
-  return $callback_function;
-}
-
-
-/**
- * Function to retrieve all the nodes to index.
- * Deprecated but kept for backwards compatibility
- * @param String $namespace
- * @param type $limit
- */
-function apachesolr_get_nodes_to_index($namespace, $limit) {
-  $env_id = apachesolr_default_environment();
-  // Hardcode node as an entity type
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  apachesolr_index_get_entities_to_index($env_id, 'node', $limit);
-}
-
-
-/**
- * Implements hook_theme().
- */
-function apachesolr_theme() {
-  return array(
-    /**
-     * Returns a list of links generated by apachesolr_sort_link
-     */
-    'apachesolr_sort_list' => array(
-      'variables' => array('items' => NULL),
-    ),
-    /**
-     * Returns a link which can be used to search the results.
-     */
-    'apachesolr_sort_link' => array(
-      'variables' => array('text' => NULL, 'path' => NULL, 'options' => NULL, 'active' => FALSE, 'direction' => ''),
-    ),
-    /**
-     * Themes the title links in admin settings pages.
-     */
-    'apachesolr_settings_title' => array(
-      'variables' => array('env_id' => NULL),
-    ),
-  );
-}
-
-/**
- * Implements hook_hook_info().
- */
-function apachesolr_hook_info() {
-  $hooks = array(
-    'apachesolr_field_mappings' => array(
-      'group' => 'apachesolr',
-    ),
-    'apachesolr_field_mappings_alter' => array(
-      'group' => 'apachesolr',
-    ),
-    'apachesolr_query_prepare' => array(
-      'group' => 'apachesolr',
-    ),
-    'apachesolr_query_alter' => array(
-      'group' => 'apachesolr',
-    ),
-    'apachesolr_search_result_alter' => array(
-      'group' => 'apachesolr',
-    ),
-    'apachesolr_environment_delete' => array(
-      'group' => 'apachesolr',
-    )
-  );
-  $hooks['apachesolr_index_document_build'] = array(
-    'group' => 'apachesolr',
-  );
-  return $hooks;
-}
-
-/**
- * Implements hook_apachesolr_field_mappings().
- */
-function field_apachesolr_field_mappings() {
-  $mappings = array(
-    'list_integer' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'map callback' => 'apachesolr_fields_list_facet_map_callback',
-      'index_type' => 'integer',
-      'facets' => TRUE,
-      'query types' => array('term', 'numeric_range'),
-      'query type' => 'term',
-      'facet missing allowed' => TRUE,
-    ),
-    'list_float' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'map callback' => 'apachesolr_fields_list_facet_map_callback',
-      'index_type' => 'float',
-      'facets' => TRUE,
-      'query types' => array('term', 'numeric_range'),
-      'query type' => 'term',
-      'facet missing allowed' => TRUE,
-    ),
-    'list_text' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'map callback' => 'apachesolr_fields_list_facet_map_callback',
-      'index_type' => 'string',
-      'facets' => TRUE,
-      'facet missing allowed' => TRUE,
-    ),
-    'list_boolean' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'map callback' => 'apachesolr_fields_list_facet_map_callback',
-      'index_type' => 'boolean',
-      'facets' => TRUE,
-      'facet missing allowed' => TRUE,
-    ),
-    'number_integer' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'index_type' => 'tint',
-      'facets' => TRUE,
-      'query types' => array('term', 'numeric_range'),
-      'query type' => 'term',
-      'facet mincount allowed' => TRUE,
-    ),
-    'number_decimal' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'index_type' => 'tfloat',
-      'facets' => TRUE,
-      'query types' => array('term', 'numeric_range'),
-      'query type' => 'term',
-      'facet mincount allowed' => TRUE,
-    ),
-    'number_float' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'index_type' => 'tfloat',
-      'facets' => TRUE,
-      'query types' => array('term', 'numeric_range'),
-      'query type' => 'term',
-      'facet mincount allowed' => TRUE,
-    ),
-    'taxonomy_term_reference' => array(
-      'map callback' => 'facetapi_map_taxonomy_terms',
-      'hierarchy callback' => 'facetapi_get_taxonomy_hierarchy',
-      'indexing_callback' => array('apachesolr_term_reference_indexing_callback'),
-      'index_type' => 'integer',
-      'facet_block_callback' => 'apachesolr_search_taxonomy_facet_block',
-      'facets' => TRUE,
-      'query types' => array('term'),
-      'query type' => 'term',
-      'facet mincount allowed' => TRUE,
-    ),
-    'text' => array(
-      'indexing_callback' => array('apachesolr_fields_default_indexing_callback'),
-      'index_type' => 'string',
-      'facets' => TRUE,
-      'facet missing allowed' => TRUE,
-    ),
-  );
-
-  return $mappings;
-}
-
-/**
- * Implements hook_apachesolr_field_mappings() on behalf of date module.
- */
-function date_apachesolr_field_mappings() {
-  $mappings = array();
-  $default = array(
-    'indexing_callback' => array('apachesolr_date_default_indexing_callback'),
-    'index_type' => 'date',
-    'facets' => TRUE,
-    'query types' => array('date'),
-    'query type' => 'date',
-    'min callback' => 'apachesolr_get_min_date',
-    'max callback' => 'apachesolr_get_max_date',
-    'map callback' => 'facetapi_map_date',
-  );
-
-  // DATE and DATETIME fields can use the same indexing callback.
-  $mappings['date'] = $default;
-  $mappings['datetime'] = $default;
-
-  // DATESTAMP fields need a different callback.
-  $mappings['datestamp'] = $default;
-  $mappings['datestamp']['indexing_callback'] = array('apachesolr_datestamp_default_indexing_callback');
-
-  return $mappings;
-}
-
-
-/**
- * Callback that returns the minimum date of the facet's datefield.
- *
- * @param $facet
- *   An array containing the facet definition.
- *
- * @return
- *   The minimum time in the node table.
- *
- * @todo Cache this value.
- */
-function apachesolr_get_min_date(array $facet) {
-  // FieldAPI date fields.
-  $table = 'field_data_' . $facet['field api name'];
-  $column = $facet['field api name'] . '_value';
-  $query = db_select($table, 't');
-  $query->addExpression('MIN(' . $column . ')', 'min');
-  $query_min = $query->execute()->fetch()->min;
-  // Update to unix timestamp if this is an ISO or other format.
-  if (is_numeric($query_min)) {
-    $return = (int)$query_min;
-  }
-  else {
-    $return = strtotime($query_min);
-    if ($return === FALSE) {
-      // Not a string that strtotime accepts (ex. '0000-00-00T00:00:00').
-      // Return default start date of 1 as the date query type getDateRange()
-      // function expects a non-0 integer.
-      $return = 1;
-    }
-  }
-  return $return;
-}
-
-/**
- * Callback that returns the maximum value of the facet's date field.
- *
- * @param $facet
- *   An array containing the facet definition.
- *
- * @return
- *   The maximum time of the field.
- *
- * @todo Cache this value.
- */
-function apachesolr_get_max_date(array $facet) {
-
-  // FieldAPI date fields.
-  $table = 'field_data_' . $facet['field api name'];
-  $column = $facet['field api name'] . '_value';
-  $query = db_select($table, 't');
-  $query->addExpression('MAX(' . $column . ')', 'max');
-  $query_max = $query->execute()->fetch()->max;
-  // Update to unix timestamp if this is an ISO or other format.
-  if (is_numeric($query_max)) {
-    $return = (int)$query_max;
-  }
-  else {
-    $return = strtotime($query_max);
-    if ($return === FALSE) {
-      // Not a string that strtotime accepts (ex. '0000-00-00T00:00:00').
-      // Return default end date of 1 year from now.
-      $return = time() + (52 * 7 * 24 * 60 * 60);
-    }
-  }
-  return $return;
-}
-
-/**
- * Implements hook_apachesolr_field_mappings() on behalf of References (node_reference).
- * @see http://drupal.org/node/1059372
- */
-function node_reference_apachesolr_field_mappings() {
-  $mappings = array(
-    'node_reference' => array(
-      'indexing_callback' => array('apachesolr_nodereference_indexing_callback'),
-      'index_type' => 'integer',
-      'map callback' => 'apachesolr_nodereference_map_callback',
-      'facets' => TRUE,
-    )
-  );
-
-  return $mappings;
-}
-
-/**
- * Implements hook_apachesolr_field_mappings() on behalf of References (user_reference).
- * @see http://drupal.org/node/1059372
- */
-function user_reference_apachesolr_field_mappings() {
-  $mappings = array(
-    'user_reference' => array(
-      'indexing_callback' => array('apachesolr_userreference_indexing_callback'),
-      'index_type' => 'integer',
-      'map callback' => 'apachesolr_userreference_map_callback',
-      'facets' => TRUE,
-    ),
-  );
-
-  return $mappings;
-}
-/**
- * Implements hook_apachesolr_field_mappings() on behalf of EntityReferences (entityreference)
- * @see http://drupal.org/node/1572722
- */
-function entityreference_apachesolr_field_mappings() {
-  $mappings = array(
-    'entityreference' => array(
-      'indexing_callback' => array('apachesolr_entityreference_indexing_callback'),
-      'map callback' => 'apachesolr_entityreference_facet_map_callback',
-      'index_type' => 'string',
-      'facets' => TRUE,
-      'query types' => array('term'),
-      'facet missing allowed' => TRUE,
-    ),
-  );
-
-  return $mappings;
-}
-
-/**
- * A replacement for l()
- *  - doesn't add the 'active' class
- *  - retains all $_GET parameters that ApacheSolr may not be aware of
- *  - if set, $options['query'] MUST be an array
- *
- * @see http://api.drupal.org/api/function/l/6
- *   for parameters and options.
- *
- * @return
- *   an HTML string containing a link to the given path.
- */
-function apachesolr_l($text, $path, $options = array()) {
-  // Merge in defaults.
-  $options += array(
-    'attributes' => array(),
-    'html' => FALSE,
-    'query' => array(),
-  );
-
-  // Don't need this, and just to be safe.
-  unset($options['attributes']['title']);
-
-  // Retain GET parameters that Apache Solr knows nothing about.
-  $get = array_diff_key($_GET, array('q' => 1, 'page' => 1, 'solrsort' => 1), $options['query']);
-  $options['query'] += $get;
-
-  return '<a href="' . check_url(url($path, $options)) . '"' . drupal_attributes($options['attributes']) . '>' . ($options['html'] ? $text : check_plain(html_entity_decode($text))) . '</a>';
-}
-
-function theme_apachesolr_sort_link($vars) {
-  $icon = '';
-  if ($vars['direction']) {
-    $icon = ' ' . theme('tablesort_indicator', array('style' => $vars['direction']));
-  }
-  if ($vars['active']) {
-    if (isset($vars['options']['attributes']['class'])) {
-      $vars['options']['attributes']['class'] .= ' active';
-    }
-    else {
-      $vars['options']['attributes']['class'] = 'active';
-    }
-  }
-  return $icon . apachesolr_l($vars['text'], $vars['path'], $vars['options']);
-}
-
-function theme_apachesolr_sort_list($vars) {
-  // theme('item_list') expects a numerically indexed array.
-  $vars['items'] = array_values($vars['items']);
-  return theme('item_list', array('items' => $vars['items']));
-}
-
-/**
- * Themes the title for settings pages.
- */
-function theme_apachesolr_settings_title($vars) {
-  $output = '';
-
-  // Gets environment information, builds header with nested link to the environment's
-  // edit page. Skips building title if environment info could not be retrieved.
-  if ($environment = apachesolr_environment_load($vars['env_id'])) {
-    $url = url(
-      'admin/config/search/apachesolr/settings/',
-      array('query' => array('destination' => current_path()))
-    );
-    $output .= '<h3>';
-    $output .= t(
-      'Settings for: @environment (<a href="@url">Overview</a>)',
-      array('@url' => $url, '@environment' => $environment['name'])
-    );
-    $output .= "</h3>\n";
-  }
-
-  return $output;
-}
-
-/**
- * Export callback to load the view subrecords, which are the index bundles.
- */
-function apachesolr_environment_load_subrecords(&$environments) {
-  if (empty($environments)) {
-    // Nothing to do.
-    return NULL;
-  }
-
-  $all_index_bundles = db_select('apachesolr_index_bundles', 'ib')
-    ->fields('ib', array('env_id', 'entity_type', 'bundle'))
-    ->condition('env_id', array_keys($environments), 'IN')
-    ->orderBy('env_id')
-    ->orderBy('entity_type')
-    ->orderBy('bundle')
-    ->execute()
-    ->fetchAll(PDO::FETCH_ASSOC);
-
-  $all_index_bundles_keyed = array();
-  foreach ($all_index_bundles as $env_info) {
-    extract($env_info);
-    $all_index_bundles_keyed[$env_id][$entity_type][] = $bundle;
-  }
-
-  $all_variables = db_select('apachesolr_environment_variable', 'v')
-    ->fields('v', array('env_id', 'name', 'value'))
-    ->condition('env_id', array_keys($environments), 'IN')
-    ->orderBy('env_id')
-    ->orderBy('name')
-    ->orderBy('value')
-    ->execute()
-    ->fetchAll(PDO::FETCH_ASSOC);
-
-  $variables = array();
-  foreach ($all_variables as $variable) {
-    extract($variable);
-    $variables[$env_id][$name] = unserialize($value);
-  }
-
-  foreach ($environments as $env_id => &$environment) {
-    $index_bundles = !empty($all_index_bundles_keyed[$env_id]) ? $all_index_bundles_keyed[$env_id] : array();
-    $conf = !empty($variables[$env_id]) ? $variables[$env_id] : array();
-    if (is_array($environment)) {
-      // Environment is an array.
-      // If we have different values in the database compared with what we
-      // have in the given environment argument we allow the admin to revert
-      // the db values so we can stick with a consistent system
-      if (!empty($environment['index_bundles']) && !empty($index_bundles) && $environment['index_bundles'] !== $index_bundles) {
-        unset($environment['in_code_only']);
-        $environment['type'] = 'Overridden';
-      }
-      if (!empty($environment['conf']) && !empty($conf) && !apachesolr_environment_conf_equals($environment['conf'], $conf)) {
-        unset($environment['in_code_only']);
-        $environment['type'] = 'Overridden';
-      }
-      $environment['index_bundles'] = (empty($environment['index_bundles']) || !empty($index_bundles)) ? $index_bundles : $environment['index_bundles'];
-      $environment['conf'] = (empty($environment['conf']) || !empty($conf)) ? $conf : $environment['conf'];
-    }
-    elseif (is_object($environment)) {
-      // Environment is an object.
-      if ($environment->index_bundles !== $index_bundles && !empty($index_bundles)) {
-        unset($environment->in_code_only);
-        $environment->type = 'Overridden';
-      }
-      if (!apachesolr_environment_conf_equals($environment->conf, $conf) && !empty($conf)) {
-        unset($environment->in_code_only);
-        $environment->type = 'Overridden';
-      }
-      $environment->index_bundles = (empty($environment->index_bundles) || !empty($index_bundles)) ? $index_bundles : $environment->index_bundles;
-      $environment->conf = (empty($environment->conf) || !empty($conf)) ? $conf : $environment->conf;
-    }
-  }
-}
-
-/**
- * Determines whether two configuration arrays contain the same keys and
- * values.
- *
- * This is used to compare in-code and in-database configuration of ctools
- * exportables.
- *
- * @see apachesolr_environment_load_subrecords()
- *
- * @param array $conf1
- *   First configuration array.
- * @param array $conf2
- *   Second configuration array.
- * @param bool  $ignore_state
- *   Whether to ignore state variables, such as `apachesolr_index_last`,
- *   `apachesolr_index_updated`, and `apachesolr_last_optimize`.
- *
- * @return TRUE if both arrays are considered equal, FALSE otherwise.
- */
-function apachesolr_environment_conf_equals(array $conf1, array $conf2, $ignore_state = TRUE) {
-  if ($ignore_state === TRUE) {
-    // Strip out state variables before comparing both arrays.
-    $state_variables = apachesolr_environment_conf_state_variables();
-    $conf1 = array_diff_key($conf1, $state_variables);
-    $conf2 = array_diff_key($conf2, $state_variables);
-  }
-  return $conf1 === $conf2;
-}
-
-/**
- * Returns a list of key names for environment variables indicating state
- * instead of configuration, e.g. `apachesolr_index_last`,
- * `apachesolr_index_updated`, and `apachesolr_last_optimize`.
- */
-function apachesolr_environment_conf_state_variables() {
-  $keys = &drupal_static(__FUNCTION__);
-  if (!isset($keys)) {
-    $_keys = array(
-      'apachesolr_index_last',
-      'apachesolr_index_updated',
-      'apachesolr_last_optimize',
-    );
-    // Use array_combine() to make it easier to use in array_diff_key().
-    // @see apachesolr_environment_conf_equals()
-    $keys = array_combine($_keys, $_keys);
-  }
-  return $keys;
-}
-
-/**
- * Callback for saving Apache Solr environment CTools exportables.
- *
- * CTools uses objects, while Apache Solr uses arrays; turn CTools value into an
- * array, then call the normal save function.
- *
- * @param stdclass $environment
- *   An environment object.
- */
-function apachesolr_ctools_environment_save($environment) {
-  apachesolr_environment_save((array) $environment);
-}
-
-/**
- * Callback for reverting Apache Solr environment CTools exportables.
- *
- * @param mixed $env_id
- *   An environment machine name. CTools may provide an id OR a complete
- *   environment object; Since Apache Solr loads environments as arrays, this
- *   may also be an environment array.
- */
-function apachesolr_ctools_environment_delete($env_id) {
-  if (is_object($env_id) || is_array($env_id)) {
-    $env_id = (object) $env_id;
-    $env_id = $env_id->env_id;
-  }
-  apachesolr_environment_delete($env_id);
-}
-
-/**
- * Callback for exporting Apache Solr environments as CTools exportables.
- *
- * @param array $environment
- *   An environment array from Apache Solr.
- * @param string $indent
- *   White space for indentation from CTools.
- */
-function apachesolr_ctools_environment_export($environment, $indent) {
-  ctools_include('export');
-  $environment = (object) $environment;
-  // Re-load the enviroment, since in some cases the conf
-  // is stripped since it's not in the actual schema.
-  $environment = (object) apachesolr_environment_load($environment->env_id);
-
-  $index_bundles = array();
-  foreach (entity_get_info() as $type => $info) {
-    if ($bundles = apachesolr_get_index_bundles($environment->env_id, $type)) {
-      $index_bundles[$type] = $bundles;
-    }
-  }
-
-  // Remove variable values related to state from code.
-  $state_variables = apachesolr_environment_conf_state_variables();
-  foreach ($state_variables as $key) {
-    unset($environment->conf[$key]);
-  }
-
-  $additions_top = array();
-  $additions_bottom = array('conf' => $environment->conf, 'index_bundles' => $index_bundles);
-  return ctools_export_object('apachesolr_environment', $environment, $indent, NULL, $additions_top, $additions_bottom);
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/apachesolr_access.info b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/apachesolr_access.info
deleted file mode 100644
index bb86b4b6dbf33ba4516b64080bb9e7d423abb7e1..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/apachesolr_access.info
+++ /dev/null
@@ -1,14 +0,0 @@
-name = Apache Solr Access
-description = Integrates node access and other permissions with Apache Solr search
-dependencies[] = apachesolr
-package = Search Toolkit
-core = 7.x
-
-files[] = tests/apachesolr_access.test
-
-; Information added by Drupal.org packaging script on 2015-12-02
-version = "7.x-1.8"
-core = "7.x"
-project = "apachesolr"
-datestamp = "1449085462"
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/apachesolr_access.module b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/apachesolr_access.module
deleted file mode 100644
index bcb355783f048c9cc13bf256cf942b244dce7b1d..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/apachesolr_access.module
+++ /dev/null
@@ -1,218 +0,0 @@
-<?php
-
-/**
- * Implements hook_apachesolr_index_document_build_node()
- *
- * Add node access grants of generic view grants if node access is not used.
- *
- * @param $document
- *   The document to add our node access information to
- * @param $node
- *   The node which is used to built the document from
- * @param $env_id
- *   The environment for which we are building the document. This parameter does not have any effect in
- *   this code so it can be ignored
- */
-function apachesolr_access_apachesolr_index_document_build_node(ApacheSolrDocument $document, $node, $env_id) {
-  $account = &drupal_static(__FUNCTION__);
-
-  if (!isset($account)) {
-    // Load the anonymous user.
-    $account = drupal_anonymous_user();
-  }
-
-  // When using a node access module like Domain Access which has
-  // access grants that vary for anonymous users for the same content,
-  // this variable should be set to 1.  Note that doing so will prevent
-  // any results from being returned if using apachesolr_multisitesearch
-  // from a different site.
-  $always_add = apachesolr_environment_variable_get($env_id, 'apachesolr_access_always_add_grants', 0);
-  if ($always_add || !node_access('view', $node, $account)) {
-    // Get node access grants.
-    $result = db_query('SELECT * FROM {node_access} WHERE (nid = 0 OR nid = :nid) AND grant_view = 1', array(':nid' => $node->nid));
-    foreach ($result as $grant) {
-      $grant_realm = apachesolr_access_clean_realm_name($grant->realm);
-      $key = 'access_node_' . apachesolr_site_hash() . '_' . $grant_realm;
-      $document->addField($key, $grant->gid);
-    }
-  }
-  else {
-    // Add the generic view grant if we are not using
-    // node access or the node is viewable by anonymous users.
-    // We assume we'll never have an entity with the name '__all'.
-    $document->addField('access__all', 0);
-  }
-}
-
-/**
- * Creates a Solr query for a given user
- *
- * @param $account
- *   an account to get grants for and build a solr query
- *
- * @throws Exception
- *
- * @return SolrFilterSubQuery
- *   Instance of SolrFilterSubQuery
- */
-function apachesolr_access_build_subquery($account) {
-  if (!user_access('access content', $account)) {
-    throw new Exception('No access');
-  }
-  $node_access_query = apachesolr_drupal_subquery();
-  if (user_access('bypass node access', $account)) {
-    // Access all content from the current site.
-    $node_access_query->addFilter('hash', apachesolr_site_hash());
-  }
-  else {
-    // Get node access grants.
-    $grants = node_access_grants('view', $account);
-    foreach ($grants as $realm => $gids) {
-      $realm = apachesolr_access_clean_realm_name($realm);
-      foreach ($gids as $gid) {
-        $node_access_query->addFilter('access_node_' . apachesolr_site_hash() . '_' . $realm, $gid);
-      }
-    }
-  }
-  // Everyone can access public content. Note that if the variable
-  // 'apachesolr_access_always_add_grants' is TRUE, no content from this site
-  // is considered "public". However, this condition may match documents in
-  // the Solr index supplied by other sites when multiple sites are indexing
-  // into the same index , i.e. multisite search.
-  $node_access_query->addFilter('access__all', 0);
-  return $node_access_query;
-}
-
-/**
- * Implements hook_apachesolr_query_alter().
- *
- * Alter the query to include the access subquery
- *
- * @param DrupalSolrQueryInterface $query
- *
- */
-function apachesolr_access_apachesolr_query_alter(DrupalSolrQueryInterface $query) {
-  global $user;
-  try {
-    $subquery = apachesolr_access_build_subquery($user);
-    $query->addFilterSubQuery($subquery);
-  }
-  catch (Exception $e) {
-    watchdog("apachesolr_access", 'User %name (UID:!uid) cannot search: @message', array('%name' => $user->name, '!uid' => $user->uid, '@message' => $e->getMessage()));
-    $query->abort_search = TRUE;
-  }
-}
-
-/**
- * Implements hook_node_insert().
- *
- * hook_node_ACTION() is called before hook_node_access_records() in node_save().
- *
- * @param object $node
- */
-function apachesolr_access_node_insert($node) {
-  $node->apachesolr_access_node_ignore = 1;
-}
-
-/**
- * Implements hook_node_update().
- *
- * hook_node_ACTION() is called before hook_node_access_records() in node_save().
- *
- * @param object $node
- */
-function apachesolr_access_node_update($node) {
-  $node->apachesolr_access_node_ignore = 1;
-}
-
-/**
- * Implements hook_node_access_records().
- *
- * Listen to this hook to find out when a node needs to be re-indexed
- * for its node access grants.
- *
- * @param object $node
- */
-function apachesolr_access_node_access_records($node) {
-  // node_access_needs_rebuild() will usually be TRUE during a
-  // full rebuild.
-  if (empty($node->apachesolr_access_node_ignore) && !node_access_needs_rebuild()) {
-    // Only one node is being changed - mark for re-indexing.
-    apachesolr_mark_entity('node', $node->nid);
-  }
-}
-
-/**
- * Implements hook_form_alter().
- *
- * @param array $form
- * @param array $form_state
- * @param string $form_id
- *
- */
-function apachesolr_access_form_node_configure_rebuild_confirm_alter(&$form, $form_state, $form_id) {
-  $form['#submit'][] = 'apachesolr_access_rebuild_nodeaccess';
-}
-
-/**
- * Implements hook_form_FORM_ID_alter().
- */
-function apachesolr_access_form_apachesolr_environment_edit_form_alter(&$form, $form_state) {
-  $form['conf']['apachesolr_access_always_add_grants'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Add access grants even for public content'),
-    '#default_value' => empty($form['#environment']['conf']['apachesolr_access_always_add_grants']) ? 0 : 1,
-    '#description' => t('Normally should be disabled. Changing this value requires all content to be re-indexed. Useful for sites using Domamin Access or simliar node acess modules with grants that vary for anonymous users.'),
-  );
-  $form['actions']['save']['#submit'][] = 'apachesolr_access_environment_edit_form_submit';
-  $form['actions']['save_edit']['#submit'][] = 'apachesolr_access_environment_edit_form_submit';
-}
-
-/**
- * Added button-level form submit function for apachesolr_environment_edit_form.
- */
-function apachesolr_access_environment_edit_form_submit($form, &$form_state) {
-  $prior = empty($form['#environment']['conf']['apachesolr_access_always_add_grants']) ? 0 : 1;
-  if ($form_state['values']['conf']['apachesolr_access_always_add_grants'] != $prior) {
-    apachesolr_access_enable();
-  }
-}
-
-/**
- * Force Solr to do a total re-index when node access rules change.
- *
- * This is unfortunate because not every node is going to be affected, but
- * there is little we can do.
- *
- * @param $form
- * @param $form_state
- *
- */
-function apachesolr_access_rebuild_nodeaccess($form, $form_state) {
-  drupal_set_message(t('Solr search index will be rebuilt.'));
-  // Clear last updated
-  apachesolr_clear_last_index_position();
-}
-
-/**
- * Implements hook_enable().
- *
- * On enabling the module, tell the user to reindex
- */
-function apachesolr_access_enable() {
-  drupal_set_message(t('Your content <a href="@url">must be re-indexed</a> before Apache Solr Access will be functional on searches.', array('@url' => url('admin/config/search/apachesolr/index'))), 'warning');
-}
-
-/**
- * Helper function - return a safe (PHP identifier) realm name.
- *
- * @todo See if we can replace this with a native php function
- *
- * @param string $realm
- *
- * @return string
- *   Clean string without bad characters
- */
-function apachesolr_access_clean_realm_name($realm) {
-  return preg_replace('/[^a-zA-Z0-9_\x7f-\xff]/', '_', $realm);
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/tests/apachesolr_access.test b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/tests/apachesolr_access.test
deleted file mode 100644
index 069ceab29d761ff3f2f859c87241ec755ade7b44..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_access/tests/apachesolr_access.test
+++ /dev/null
@@ -1,159 +0,0 @@
-<?php
-/**
- * @file
- *   Unit tests for the access control functionalities that are added by
- *   apachesolr_access.
- */
-class DrupalApacheSolrNodeAccess extends DrupalWebTestCase {
-
-  /**
-   * Gets Information about the DrupalApacheSolrNodeAccess test
-   *
-   * @return array
-   *   Information such as name, description and group it belongs to
-   */
-  public static function getInfo() {
-    return array(
-      'name' => 'Node Access',
-      'description' => 'Test Access Control',
-      'group' => 'ApacheSolr'
-    );
-  }
-
-  /**
-   * Defines what is required to start the DrupalApacheSolrNodeAccess test.
-   */
-  function setUp() {
-    parent::setUp('node_access_test', 'apachesolr', 'apachesolr_search', 'apachesolr_access');
-
-    // Create a basic user, which is subject to moderation.
-    $permissions = array(
-      'access content',
-      'create page content',
-      'edit own page content',
-      'create article content',
-      'edit own article content',
-    );
-    $this->basic_user = $this->drupalCreateUser($permissions);
-    // Create an admin user.
-    $permissions = array(
-      'access content',
-      'search content',
-      'administer nodes',
-      'administer search',
-      'access administration pages',
-    );
-    $this->admin_user = $this->drupalCreateUser($permissions);
-  }
-
-  /**
-   * Tests indexing and check if it adds the correct grants for those specific users
-   */
-  function testIndexing() {
-    $basic_user = $this->basic_user;
-    // Login as basic user to perform initial content creation.
-
-    //Create 2 nodes
-    $edit = array();
-    $edit['uid'] = $basic_user->uid;
-    $role_restricted_node = $this->drupalCreateNode($edit);
-
-    $edit = array();
-    $edit['uid'] = $basic_user->uid;
-    $author_restricted_node = $this->drupalCreateNode($edit);
-    // Delete the generic node access grant for all nodes.
-    db_delete('node_access')->condition('nid', '0')->execute();
-
-    $roles = array_keys($basic_user->roles);
-    // The assigned role will be the last in the array.
-    $assigned_role = end($roles);
-    $role_grant = array(
-        'gid' => $assigned_role,
-        'realm' => 'nodeaccess_rid',
-        'grant_view' => '1',
-        'grant_update' => '0',
-        'grant_delete' => '0',
-    );
-    node_access_write_grants($role_restricted_node, array($role_grant));
-
-    $author_grant = array(
-        'gid' => $basic_user->uid,
-        'realm' => 'nodeaccess_author',
-        'grant_view' => '1',
-        'grant_update' => '0',
-        'grant_delete' => '0',
-    );
-
-    node_access_write_grants($author_restricted_node, array($author_grant));
-
-    // This loads the document class too.
-    $env_id = apachesolr_default_environment();
-    $solr = apachesolr_get_solr($env_id);
-
-    $document = new ApacheSolrDocument();
-    apachesolr_access_apachesolr_index_document_build_node($document, $role_restricted_node, $env_id);
-    $field = 'access_node_' . apachesolr_site_hash() . '_nodeaccess_rid';
-    $this->assertEqual($document->{$field}[0], $assigned_role, 'Solr Document being indexed is restricted by the proper role' . print_r(db_query('SELECT * FROM {node_access}')->fetchAllAssoc('nid'), 1));
-    $this->drupalGet('node');
-
-    $document = new ApacheSolrDocument();
-    apachesolr_access_apachesolr_index_document_build_node($document, $author_restricted_node, $env_id);
-    $field = 'access_node_' . apachesolr_site_hash() . '_nodeaccess_author';
-    $this->assertEqual($document->{$field}[0], $basic_user->uid, 'Solr Document being indexed is restricted by the proper author');
-
-    $expected_criterion = array(
-      'access__all' => 0,
-      'access_node_' . apachesolr_site_hash() . '_all' => 0,
-      // The node_access_test module writes this as of core 7.3.
-      'access_node_' . apachesolr_site_hash() . '_node_access_test_author' => $basic_user->uid,
-    );
-
-    // Test addition of filters to query.
-    $subquery = apachesolr_access_build_subquery($basic_user);
-    $fields = $subquery->getFilters();
-
-    foreach ($fields as $field) {
-      if (is_array($expected_criterion[$field['#name']])) {
-        $this->assertTrue(in_array($field['#value'], $expected_criterion[$field['#name']]), t('Expected node access grant @name == @value found', array('@name' => $field['#name'], '@value' => $field['#value'])));
-        //This is sorta a bug
-        $found_criterion[$field['#name']] = $expected_criterion[$field['#name']];
-      }
-      else {
-        $this->assertEqual($field['#value'], $expected_criterion[$field['#name']], t('Expected node access grant @name == @value found', array('@name' => $field['#name'], '@value' => $field['#value'])));
-        $found_criterion[$field['#name']] = $expected_criterion[$field['#name']];
-      }
-    }
-
-    $this->assertEqual($expected_criterion, $found_criterion, 'All Criteria was accounted for in fields. If not accounted for, Unaccounted Criteria [' . var_export(array_diff($expected_criterion, $found_criterion), 1) . ']');
-    // Run a query through the MLT code to be sure access filters are added.
-    $solr = new DummySolr($url = NULL, $env_id);
-    $settings = apachesolr_search_mlt_block_defaults();
-    // Dummy value
-    $id = apachesolr_document_id($author_restricted_node->nid);
-    drupal_save_session(false);
-    $GLOBALS['user'] = $basic_user;
-    $response = apachesolr_search_mlt_suggestions($settings, $id, $solr);
-    $search = $solr->getLastSearch();
-    // Should only be one fq
-    $this->assertEqual(count($search['params']['fq']), 1, 'One fq param found');
-    // Do some manipulation to avoid having to guess the order.
-    $filter = trim(end($search['params']['fq']), ')(');
-    $parts = explode(' OR ', $filter);
-    $this->assertEqual(count($expected_criterion), count($parts), 'Number of parts is the same as the number of critera');
-    foreach ($expected_criterion as $k => $v) {
-      $this->assertTrue(in_array("$k:$v", $parts), "Filter $k:$v found in the parts");
-    }
-    // Test reset of index position.
-    $this->drupalLogin($this->admin_user);
-    $env_id = apachesolr_default_environment();
-    apachesolr_set_last_index_position($env_id, 'node', 1, 1);
-    $empty = serialize(array());
-    $value = db_query('SELECT value FROM {apachesolr_environment_variable} WHERE env_id = :env_id AND name = :name',
-      array(':env_id' => $env_id, ':name' => 'apachesolr_index_last'))->fetchField();
-    $this->assertNotEqual($value, $empty, 'value is not empty array');
-    $this->drupalPost('admin/reports/status/rebuild', array(), t('Rebuild permissions'));
-    $value = db_query('SELECT value FROM {apachesolr_environment_variable} WHERE env_id = :env_id AND name = :name',
-      array(':env_id' => $env_id, ':name' => 'apachesolr_index_last'))->fetchField();
-    $this->assertEqual($value, $empty, 'value is empty array');
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.admin.inc b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.admin.inc
deleted file mode 100644
index 138620149520781527a427091b80572ee8e98ac9..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.admin.inc
+++ /dev/null
@@ -1,1207 +0,0 @@
-<?php
-
-/**
- * @file
- *   Administrative settings for searching.
- */
-
-/**
- * Helper function for empty search configuration.
- */
-function _apachesolr_search_browse_form($default_value) {
-  $description = t('This is what is shown when the user enters an empty search, or removes all filters from an active search.') . ' ';
-  if (!module_exists('facetapi')) {
-    $description .= t('<strong>Facets will not be shown until you enable Facet API module.</strong>');
-  }
-  else {
-    $description .= t('Remember to configure the facets on the <a href="!facetslink">search environment page</a> and assign blocks to regions on the <a href="!blocklink">block settings page</a>', array(
-      '!facetslink' => url('admin/config/search/apachesolr/settings/'),
-      '!blocklink' => url('admin/structure/block'),
-    ));
-  }
-  return array(
-    '#type' => 'radios',
-    '#title' => t('Behavior on empty search'),
-    '#options' => array(
-      'none' => t("Show search box"),
-      'browse'  => t("Show enabled facets' blocks under the search box"),
-      'blocks'  => t("Show enabled facets' blocks in their configured regions"),
-      'results' => t("Show enabled facets' blocks in their configured regions and first page of all available results"),
-    ),
-    '#default_value' => $default_value,
-    '#description' => $description,
-  );
-}
-
-/**
- * Menu callback for the overview page showing custom search pages and blocks.
- * @return array $build
- */
-function apachesolr_search_page_list_all() {
-  $build['pages'] = apachesolr_search_page_list_pages();
-  $build['blocks'] = apachesolr_search_page_list_blocks();
-  return $build;
-
-}
-
-/**
- * Listing of all the search pages
- * @return array $build
- */
-function apachesolr_search_page_list_pages() {
-  $build = array();
-  $rows = array();
-  $rows['core_search'] = array();
-
-  // Build the sortable table header.
-  $header = array(
-    'label' => array('data' => t('Name'), 'field' => 's.label'),
-    'path' => array('data' => t('Path'), 'field' => 's.search_path'),
-    'environment' => array('data' => t('Search environment')),
-    'operations' => array('data' => t('Operations')),
-  );
-
-  $search_pages = apachesolr_search_load_all_search_pages();
-  $default_search_page = apachesolr_search_default_search_page();
-  foreach ($search_pages as $search_page) {
-    $row = array();
-
-    // Add the label
-    $label = check_plain($search_page['label']);
-    // Is this row our default environment?
-    if ($search_page['page_id'] == $default_search_page) {
-      $label = t('!search_page <em>(Default)</em>', array('!search_page' => $label));
-    }
-
-    $row[] = $label;
-    // Add the link
-    $row[] = array(
-      'data' => array(
-        '#type' => 'link',
-        '#title' => $search_page['search_path'],
-        '#href' => $search_page['search_path'],
-      ),
-    );
-
-    // Add the search environment
-    $environment = apachesolr_environment_load($search_page['env_id']);
-    $row[] = $environment ? check_plain($environment['name']) : check_plain(t('<Disabled>'));
-    // Operations
-    $row[] = array('data' => l(t('Edit'), 'admin/config/search/apachesolr/search-pages/' . $search_page['page_id'] . '/edit'));
-    $row[] = array('data' => l(t('Clone'), 'admin/config/search/apachesolr/search-pages/' . $search_page['page_id'] . '/clone'));
-
-    // Allow to revert a search page or to delete it
-    if (!isset($search_page['settings']['apachesolr_search_not_removable']) && !isset($search_page['in_code_only'])) {
-      if ((isset($search_page['type']) && $search_page['type'] == 'Overridden')) {
-        $row[] = array('data' => l(t('Revert'), 'admin/config/search/apachesolr/search-pages/' . $search_page['page_id'] . '/delete'));
-      } else {
-        $row[] = array('data' => l(t('Delete'), 'admin/config/search/apachesolr/search-pages/' . $search_page['page_id'] . '/delete'));
-      }
-    }
-    else {
-      $row[] = '';
-    }
-    $rows[$search_page['page_id']] = $row;
-  }
-
-  // Automatically enlarge our header with the operations size
-  $header['operations']['colspan'] = count(reset($rows)) - 3;
-
-  $build['list'] = array(
-    '#prefix' => '<h3>Pages</h3>',
-    '#theme' => 'table',
-    '#header' => $header,
-    '#rows' => array_values($rows),
-    '#empty' => t('No available search pages.'),
-  );
-  $build['pager'] = array(
-    '#theme' => 'pager',
-    '#quantity' => 20,
-    '#weight' => 10,
-  );
-
-  return $build;
-}
-
-/**
- * Listing of all the search blocks
- * @return array $build
- */
-function apachesolr_search_page_list_blocks() {
-  $build = array();
-  $rows = array();
-
-  // Build the sortable table header.
-  $header = array(
-    'label' => array('data' => t('Name'), 'field' => 's.label'),
-    'environment' => array('data' => t('Search environment')),
-    'operations' => array('data' => t('Operations')),
-  );
-
-  $search_blocks = variable_get('apachesolr_search_mlt_blocks', array());
-  foreach ($search_blocks as $search_block_id => $search_block) {
-    $row = array();
-
-    // Add the label
-    $label = check_plain($search_block['name']);
-    $row[] = $label;
-
-    // Add the search environment
-    $environment = apachesolr_environment_load($search_block['mlt_env_id']);
-    $row[] = $environment ? check_plain($environment['name']) : check_plain(t('<Disabled>'));
-    // Operations
-    if (module_exists('block')) {
-      $row[] = array('data' => l(t('Configure'), 'admin/structure/block/manage/apachesolr_search/' . $search_block_id . '/configure', array('query' => array('destination' => current_path()))));
-    }
-    $row[] = array('data' => l(t('Delete'), 'admin/config/search/apachesolr/search-pages/block/' . $search_block_id . '/delete'));
-    $rows[$search_block_id] = $row;
-  }
-
-  // Automatically enlarge our header with the operations size
-  $header['operations']['colspan'] = count(reset($rows)) - 2;
-
-  $build['list'] = array(
-    '#prefix' => '<h3>Blocks "More Like This"</h3>',
-    '#theme' => 'table',
-    '#header' => $header,
-    '#rows' => array_values($rows),
-    '#empty' => t('No available search blocks.'),
-  );
-  $build['pager'] = array(
-    '#theme' => 'pager',
-    '#quantity' => 20,
-    '#weight' => 10,
-  );
-
-  return $build;
-}
-
-/**
- * Menu callback/form-builder for the form to create or edit a search page.
- */
-function apachesolr_search_page_settings_form($form, &$form_state, $search_page = NULL) {
-  $environments = apachesolr_load_all_environments();
-  $options = array('' => t('<Disabled>'));
-  foreach ($environments as $id => $environment) {
-    $options[$id] = $environment['name'];
-  }
-  // Validate the env_id.
-  if (!empty($search_page['env_id']) && !apachesolr_environment_load($search_page['env_id'])) {
-    $search_page['env_id'] = '';
-  }
-
-  // Initializes form with common settings.
-  $form['search_page'] = array(
-      '#type' => 'value',
-      '#value' => $search_page,
-  );
-
-  $form['label'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Label'),
-    '#description' => '',
-    '#required' => TRUE,
-    '#size' => 30,
-    '#maxlength' => 32,
-    '#default_value' => !empty($search_page['label']) ? $search_page['label'] : '',
-    '#description' => t('The human-readable name of the search page configuration.'),
-  );
-
-  $form['page_id'] = array(
-    '#type' => 'machine_name',
-    '#maxlength' => 32,
-    '#required' => TRUE,
-    '#machine_name' => array(
-      'exists' => 'apachesolr_search_page_exists',
-      'source' => array('label'),
-    ),
-    '#description' => '',
-    '#default_value' => !empty($search_page['page_id']) ? $search_page['page_id'] : '',
-    '#disabled' => !empty($search_page),
-    '#description' => t('A unique machine-readable identifier for the search page configuration. It must only contain lowercase letters, numbers, and underscores.'),
-  );
-
-  $form['description_enable'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Description'),
-    '#default_value' => !empty($search_page['description'])  ? TRUE : FALSE
-  );
-
-  $form['description'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Provide description'),
-    '#title_display' => 'invisible',
-    '#size' => 64,
-    '#default_value' => !empty($search_page['description']) ? $search_page['description'] : '',
-    '#dependency' => array(
-      'edit-description-enable' => array(1),
-    ),
-  );
-
-  $is_default = FALSE;
-  if (!empty($search_page)) {
-    $is_default = $search_page['page_id'] == apachesolr_search_default_search_page();
-  }
-  $form['make_default'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Make this Solr Search Page the default'),
-    '#description' => t('Useful for eg. making facets to link to this page when they are shown on non-search pages'),
-    '#default_value' => $is_default,
-    '#disabled' => $is_default,
-  );
-
-  $form['info'] = array(
-    '#title' => t('Search Page Information'),
-    '#type' => 'fieldset',
-    '#collapsible' => FALSE,
-    '#prefix' => '<div id="dynamic-search-page">',
-    '#suffix' => '</div>',
-  );
-
-  $core_search = FALSE;
-  if (!empty($search_page['page_id']) && ($search_page['page_id'] == 'core_search')) {
-    $core_search = TRUE;
-  }
-  if ($core_search) {
-    $description = t('This page always uses the current default search environment');
-  }
-  else {
-    $description = t('The environment that is used by this search page. If no environment is selected, this page will be disabled.');
-  }
-
-  $form['info']['env_id'] = array(
-    '#title' => t('Search environment'),
-    '#type' => 'select',
-    '#options' => $options,
-    '#default_value' => !empty($search_page['env_id']) ? $search_page['env_id'] : '',
-    '#disabled' => $core_search,
-    '#description' => $description,
-  );
-
-  $form['info']['page_title'] = array(
-    '#title' => t('Title'),
-    '#type' => 'textfield',
-    '#required' => TRUE,
-    '#maxlength' => 255,
-    '#description' => t('You can use %value to put the value of % in the path into the title and %terms to put the search terms into the title. Please note if you have several active search modules, this refers to the title of the tab instead of that of the page.'),
-    '#default_value' => !empty($search_page['page_title']) ? $search_page['page_title'] : '',
-  );
-
-  $search_types = apachesolr_search_load_all_search_types();
-  $options = array();
-  foreach ($search_types as $id => $search_type) {
-    $options[$id] = $search_type['name'];
-  }
-
-  $form['info']['search_type'] = array(
-    '#title' => t('Search Type'),
-    '#type' => 'select',
-    '#options' => $options,
-    '#default_value' => !empty($search_page['settings']['apachesolr_search_search_type']) ? $search_page['settings']['apachesolr_search_search_type'] : '',
-    '#access' => !$core_search,
-    '#description' => t('Use this only when filtering on a value from the search path.
-      For example, select Taxonomy Term to filter on a term ID (search/taxonomy/%).'),
-    '#ajax' => array(
-      'callback' => 'apachesolr_search_ajax_search_page_default',
-      'wrapper' => 'dynamic-search-page',
-      'method' => 'replace',
-    ),
-  );
-
-  // Token element validate is added to validate the specific
-  // tokens that are allowed
-  $form['info']['search_path'] = array(
-    '#title' => t('Path'),
-    '#type' => 'textfield',
-    '#required' => TRUE,
-    '#maxlength' => 255,
-    '#description' => t('For example: search/my-search-page. Search keywords will appear at the end of the path.'),
-    '#default_value' => !empty($search_page['search_path']) ? $search_page['search_path'] : '',
-  );
-  if (!$core_search) {
-    $form['info']['search_path']['#description'] .= ' ' . t('You can use one % to make the search page dynamic.');
-  }
-
-  $form['info']['custom_filter_enable'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Custom Filter'),
-    '#default_value' => !empty($search_page['settings']['apachesolr_search_custom_enable'])  ? TRUE : FALSE
-  );
-
-  if (!$core_search) {
-    $additional_help_text = t('E.g. "bundle:blog, is_uid:(1 OR 2 OR %). % will be replaced by the value of % in the path"');
-  }
-  else {
-    $additional_help_text = t('E.g. "bundle:blog, is_uid:(1 OR 2)"');
-  }
-  $t_args = array('!additional_help_text' => $additional_help_text);
-  $form['info']['filters'] = array(
-    '#title' => t('Custom filters'),
-    '#type' => 'textfield',
-    '#required' => FALSE,
-    '#maxlength' => 255,
-    '#description' => t('A comma-separated list of lucene filter queries to apply by default.') . ' ' . $additional_help_text,
-    '#default_value' => !empty($search_page['settings']['fq'])  ? implode(', ', $search_page['settings']['fq']) : '',
-    '#dependency' => array(
-      'edit-custom-filter-enable' => array(1),
-      'edit-search-type' => array('custom'),
-    ),
-  );
-
-  $form['advanced'] = array(
-    '#title' => t('Advanced Search Page Options'),
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => TRUE,
-    '#tree' => TRUE,
-  );
-
-  // Results per page per search page
-  $default_value = isset($search_page['settings']['apachesolr_search_per_page']) ? $search_page['settings']['apachesolr_search_per_page'] : '10';
-  $form['advanced']['apachesolr_search_per_page'] = array(
-    '#type' => 'textfield',
-    '#size' => 3,
-    '#title' => t('Results per page'),
-    '#description' => t('How many items will be displayed on one page of the search result.'),
-    '#default_value' => $default_value,
-  );
-
-  // Enable/disable spellcheck on pages
-  $default_value = isset($search_page['settings']['apachesolr_search_spellcheck']) ? $search_page['settings']['apachesolr_search_spellcheck'] : TRUE;
-  $form['advanced']['apachesolr_search_spellcheck'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Enable spell check'),
-    '#description' => t('Display "Did you mean … ?" above search results.'),
-    '#default_value' => $default_value,
-  );
-
-  // Enable/disable search form on search page (replaced by a block perhaps)
-  $default_value = isset($search_page['settings']['apachesolr_search_search_box']) ? $search_page['settings']['apachesolr_search_search_box'] : TRUE;
-  $form['advanced']['apachesolr_search_search_box'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Enable the search box on the page'),
-    '#description' => t('Display a search box on the page.'),
-    '#default_value' => $default_value,
-  );
-
-  // Enable/disable search form on search page (replaced by a block perhaps)
-  $default_value = isset($search_page['settings']['apachesolr_search_allow_user_input']) ? $search_page['settings']['apachesolr_search_allow_user_input'] : FALSE;
-  $form['advanced']['apachesolr_search_allow_user_input'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Allow user input using the URL'),
-    '#description' => t('Allow users to use the URL for manual facetting via fq[] params (e.g. http://example.com/search/site/test?fq[]=uid:1&fq[]=tid:99). This will only work in combination with a keyword search. The recommended value is unchecked'),
-    '#default_value' => $default_value,
-  );
-
-  // Use the main search page setting as the default for new pages.
-  $default_value = isset($search_page['settings']['apachesolr_search_browse']) ? $search_page['settings']['apachesolr_search_browse'] : 'browse';
-  $form['advanced']['apachesolr_search_browse'] = _apachesolr_search_browse_form($default_value);
-
-  // Button for the corresponding actions
-  $form['actions'] = array(
-    '#type' => 'actions',
-  );
-
-  $form['actions']['submit'] = array(
-    '#type' => 'submit',
-    '#redirect' => 'admin/config/search/apachesolr/search-pages',
-    '#value' => t('Save'),
-  );
-  $form['actions']['submit_edit'] = array(
-    '#type' => 'submit',
-    '#value' => t('Save and edit'),
-  );
-
-  $form['actions']['cancel'] = array(
-    '#type' => 'link',
-    '#title' => t('Cancel'),
-    '#href' => 'admin/config/search/apachesolr/search-pages',
-  );
-
-  $form['#submit'][] = 'apachesolr_search_page_settings_form_submit';
-
-  return $form;
-}
-
-/**
- * Callback element needs only select the portion of the form to be updated.
- * Since #ajax['callback'] return can be HTML or a renderable array (or an
- * array of commands), we can just return a piece of the form.
- */
-function apachesolr_search_ajax_search_page_default($form, $form_state, $search_page = NULL) {
-
-  $search_page = $form_state['values']['search_page'];
-  $search_types = apachesolr_search_load_all_search_types();
-
-  // Helping with sensible defaults for the search path
-  $default_search_path = '';
-  if (!empty($form_state['values']['search_type']) && $form_state['values']['search_type'] != 'custom') {
-    $default_search_path = $search_types[$form_state['values']['search_type']]['default menu'];
-    $form['info']['search_path']['#value'] = $default_search_path;
-  }
-
-  // Helping with sensible defaults for the search title
-  $default_search_title = '';
-
-  if (empty($form_state['values']['page_title']) && $form_state['values']['search_type'] != 'custom') {
-    $default_search_title_callback = $search_types[$form_state['values']['search_type']]['title callback'];
-    $default_search_title = $default_search_title_callback();
-    $form['info']['page_title']['#value'] = $default_search_title;
-  }
-  return $form['info'];
-}
-
-function apachesolr_search_page_settings_form_validate($form, &$form_state) {
-  // Performs basic validation of the menu path.
-  if (url_is_external($form_state['values']['search_path'])) {
-    form_set_error('search_path', t('Path must be local.'));
-  }
-  $form_state['values']['search_path'] = trim($form_state['values']['search_path'], '/');
-  if (empty($form_state['values']['search_path'])) {
-    form_set_error('search_path', t('Path required.'));
-  }
-  if (!is_numeric($form_state['values']['advanced']['apachesolr_search_per_page'])) {
-    form_set_error('advanced][apachesolr_search_per_page', t('The amount of search results must be an integer.'));
-  }
-  $form_state['values']['advanced']['apachesolr_search_per_page'] = (int) $form_state['values']['advanced']['apachesolr_search_per_page'];
-  if (empty($form_state['values']['advanced']['apachesolr_search_per_page'])) {
-    form_set_error('advanced][apachesolr_search_per_page', t('The amount of search results cannot be empty.'));
-  }
-  if ($form_state['values']['page_id'] == 'core_search') {
-    if (!preg_match('@^search/[^/%]+$@', $form_state['values']['search_path'])) {
-      form_set_error('search_path', t('The core Search page path must start with search/ and only have one /'));
-    }
-  }
-  elseif (count(explode('%', $form_state['values']['search_path'])) > 2) {
-    form_set_error('search_path', t('Only one % placeholder is allowed.'));
-  }
-  // Make sure we cannot get duplicate search page paths
-  foreach (apachesolr_search_load_all_search_pages() as $search_page) {
-    if ($form_state['values']['search_path'] == $search_page['search_path'] && $form_state['values']['page_id'] != $search_page['page_id']) {
-      form_set_error('search_path', t('The search path must be unique. This path is already in use by another search page.'));
-    }
-  }
-}
-
-/**
- * Processes apachesolr_search_page_settings_form form submissions.
- */
-function apachesolr_search_page_settings_form_submit($form, &$form_state) {
-  $settings = array();
-  $settings['fq'] = array();
-  if ($form_state['values']['filters']) {
-    foreach (explode(',', $form_state['values']['filters']) as $string) {
-      $string = trim($string);
-      // Minimal validation.  ':' must exist and can't be the 1st char..
-      if (strpos($string, ':')) {
-        $settings['fq'][] = $string;
-      }
-    }
-  }
-  $settings['apachesolr_search_custom_enable'] = $form_state['values']['custom_filter_enable'];
-  $settings['apachesolr_search_search_type'] = $form_state['values']['search_type'];
-  // Add all advanced settings.
-  $settings += $form_state['values']['advanced'];
-
-  // Set the default search page settings
-  if (!empty($form_state['values']['make_default']) && isset($form_state['values']['page_id'])) {
-    variable_set('apachesolr_search_default_search_page', $form_state['values']['page_id']);
-  }
-
-  $search_page = array();
-  $search_page['page_id'] = $form_state['values']['page_id'];
-  $search_page['label'] = $form_state['values']['label'];
-  $search_page['description'] = $form_state['values']['description'];
-  $search_page['env_id'] = $form_state['values']['env_id'];
-  $search_page['search_path'] = $form_state['values']['search_path'];
-  $search_page['page_title'] = $form_state['values']['page_title'];
-  $search_page['settings'] = $settings;
-  apachesolr_search_page_save($search_page);
-
-  // Menu rebuild needed to pick up search path.
-  variable_set('menu_rebuild_needed', TRUE);
-
-  // Saves our values in the database, sets redirect path on success.
-  drupal_set_message(t('The configuration options have been saved for %page.', array('%page' => $form_state['values']['label'])));
-  if (isset($form_state['clicked_button']['#redirect'])) {
-    $form_state['redirect'] = $form_state['clicked_button']['#redirect'];
-  }
-  else {
-    $form_state['redirect'] = current_path();
-  }
-  // Regardlessly of the destination parameter we want to go to another page
-  unset($_GET['destination']);
-  drupal_static_reset('drupal_get_destination');
-  drupal_get_destination();
-}
-
-/**
- * Deletes a single search page configuration.
- */
-function apachesolr_search_delete_search_page_confirm($form, &$form_state, $search_page) {
-
-  // Sets values required for deletion.
-  $form['page_id'] = array('#type' => 'value', '#value' => $search_page['page_id']);
-  $form['label'] = array('#type' => 'value', '#value' => $search_page['label']);
-
-  if (isset($search_page['export_type']) && $search_page['export_type'] == '3') {
-    $verb = t('Revert');
-  }
-  else {
-    $verb = t('Delete');
-  }
-
-  // Sets the message, or the title of the page.
-  $message = t(
-    'Are you sure you want to !verb the %label search page configuration?',
-    array('%label' => $form['label']['#value'], '!verb' => strtolower($verb))
-  );
-
-
-  // Builds caption.
-  $caption = '<p>';
-  $caption .= t(
-    'The %label search page configuration will be deleted.',
-    array('%label' => $form['label']['#value'])
-  );
-  $caption .= '</p>';
-  $caption .= '<p><strong>' . t('This action cannot be undone.') . '</strong></p>';
-
-  // Finalizes and returns the confirmation form.
-  $return_path = 'admin/config/search/apachesolr/search-pages';
-  $button_text = $verb;
-  if (!isset($search_page['settings']['apachesolr_search_not_removable'])) {
-    return confirm_form($form, filter_xss($message), $return_path, filter_xss($caption), check_plain($button_text));
-  }
-  else {
-    // Maybe this should be solved somehow else
-    drupal_access_denied();
-  }
-}
-
-/**
- * Process content type delete confirm submissions.
- */
-function apachesolr_search_delete_search_page_confirm_submit($form, &$form_state) {
-  // Deletes the index configuration settings.
-  // @todo Invoke a hook that allows backends and indexers to delete their stuff.
-  db_delete('apachesolr_search_page')
-    ->condition('page_id', $form_state['values']['page_id'])
-    ->execute();
-
-  // Sets message, logs action.
-  drupal_set_message(t(
-    'The %label search page configuration has been deleted.',
-    array('%label' => $form_state['values']['label'])
-  ));
-  watchdog('apachesolr_search', 'Deleted search page configuration "@page_id".', array('@page_id' => $form_state['values']['page_id']), WATCHDOG_NOTICE);
-
-  // Rebuilds the menu cache.
-  menu_rebuild();
-
-  // Returns back to search page list page.
-  $form_state['redirect'] = 'admin/config/search/apachesolr/search-pages';
-}
-
-/**
- * Clones a single search page configuration
- * @param $search_page
- *   The search page that needs to be cloned
- */
-function apachesolr_search_clone_search_page_confirm($form, &$form_state, $search_page) {
-  $form['page_id'] = array(
-    '#type' => 'value',
-    '#value' => $search_page['page_id'],
-  );
-  return confirm_form(
-    $form,
-    t('Are you sure you want to clone search page %name?', array('%name' => $search_page['label'])),
-    'admin/config/search/apachesolr',
-    '',
-    t('Clone'),
-    t('Cancel')
-  );
-}
-
-/**
- * Submits the confirmations of the cloning of a search page
- */
-function apachesolr_search_clone_search_page_confirm_submit($form, &$form_state) {
-  if (apachesolr_search_page_clone($form_state['values']['page_id'])) {
-    drupal_set_message(t('The search page was cloned'));
-  }
-  $form_state['redirect'] = 'admin/config/search/apachesolr/search-pages';
-}
-
-/**
- * Menu callback - the settings form.
- */
-function apachesolr_search_get_fields($environment = NULL) {
-  if (empty($environment)) {
-    $env_id = apachesolr_default_environment();
-    $environment = apachesolr_environment_load($env_id);
-  }
-  $env_id = $environment['env_id'];
-
-  // Try to fetch the schema fields.
-  try {
-    $solr = apachesolr_get_solr($env_id);
-    $fields = $solr->getFields();
-    return $fields;
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-    drupal_set_message(nl2br(check_plain($e->getMessage())), 'warning');
-    drupal_set_message(t('Cannot get information about the fields in the index.'), 'warning');
-  }
-}
-
-/**
- * Menu callback - Bias settings form.
- */
-function apachesolr_bias_settings_page($environment = NULL) {
-  if (empty($environment)) {
-    $env_id = apachesolr_default_environment();
-    $environment = apachesolr_environment_load($env_id);
-  }
-  $env_id = $environment['env_id'];
-
-  // Initializes output with information about which environment's setting we are
-  // editing, as it is otherwise not transparent to the end user.
-  $output = array(
-    'apachesolr_environment' => array(
-      '#theme' => 'apachesolr_settings_title',
-      '#env_id' => $env_id,
-    ),
-  );
-
-  // Adds content bias and type boost forms.
-  $fields = apachesolr_search_get_fields($environment);
-  $form = array();
-  $form = drupal_get_form('apachesolr_search_bias_form', $env_id, $fields);
-  $output['bias_forms'] = $form;
-  return $output;
-}
-
-function apachesolr_search_bias_form($form, &$form_state, $env_id, $fields) {
-  $form['#env_id'] = $env_id;
-  $form['bias_tabs'] = array(
-    '#type' => 'vertical_tabs',
-  );
-  $form['actions']['#type'] = 'actions';
-  $form['actions']['submit'] = array(
-    '#type' => 'submit',
-    '#value' => t('Save configuration'),
-    '#submit' => array('apachesolr_search_bias_form_submit'),
-  );
-  $form['actions']['reset'] = array(
-    '#type' => 'submit',
-    '#value' => t('Reset to defaults'),
-    '#submit' => array('apachesolr_search_bias_form_reset'),
-  );
-  $form += apachesolr_search_result_bias_form($env_id);
-  $form += apachesolr_search_type_boost_form($env_id);
-  $form += apachesolr_search_field_bias_form($fields, $env_id);
-  return $form;
-}
-
-function apachesolr_search_bias_form_submit(&$form, &$form_state) {
-  // Exclude unnecessary elements.
-  form_state_values_clean($form_state);
-  foreach ($form_state['values'] as $key => $value) {
-    if (is_array($value) && isset($form_state['values']['array_filter'])) {
-      $value = array_keys(array_filter($value));
-    }
-    // There is no need to set default variable values.
-    if (!isset($form[$key]['#default_value']) || $form[$key]['#default_value'] != $value) {
-      switch ($key) {
-        case 'apachesolr_search_sticky_boost' :
-        case 'apachesolr_search_promote_boost' :
-        case 'apachesolr_search_date_boost' :
-        case 'apachesolr_search_comment_boost' :
-        case 'apachesolr_search_changed_boost' :
-        case 'apachesolr_search_type_boosts' :
-        case 'field_bias' :
-          apachesolr_environment_variable_set($form['#env_id'], $key, $value);
-      }
-    }
-  }
-  drupal_set_message(t('The configuration options have been saved.'));
-}
-
-function apachesolr_search_bias_form_reset($form, &$form_state) {
-  // Exclude unnecessary elements.
-  form_state_values_clean($form_state);
-
-  foreach ($form_state['values'] as $key => $value) {
-    apachesolr_environment_variable_del($form['#env_id'], $key);
-  }
-  drupal_set_message(t('The configuration options have been reset to their default values.'));
-}
-
-/**
- * Form builder function to set date, comment, etc biases.
- */
-function apachesolr_search_result_bias_form($env_id) {
-
-  $date_settings = apachesolr_environment_variable_get($env_id, 'apachesolr_search_date_boost', '0:0');
-  $comment_settings = apachesolr_environment_variable_get($env_id, 'apachesolr_search_comment_boost', '0:0');
-  $changed_settings = apachesolr_environment_variable_get($env_id, 'apachesolr_search_changed_boost', '0:0');
-  $sticky_boost = apachesolr_environment_variable_get($env_id, 'apachesolr_search_sticky_boost', '0');
-  $promote_boost = apachesolr_environment_variable_get($env_id, 'apachesolr_search_promote_boost', '0');
-
-  $options = array(
-    '10:2000.0' => '10',
-    '8:1000.0' => '9',
-    '8:700.0' => '8',
-    '8:500.0' => '7',
-    '4:300.0' => '6',
-    '4:200.0' => '5',
-    '4:150.0' => '4',
-    '2:150.0' => '3',
-    '2:100.0' => '2',
-    '1:100.0' => '1',
-    '0:0' => t('Ignore'),
-  );
-
-  $weights = drupal_map_assoc(array('21.0', '13.0', '8.0', '5.0', '3.0', '2.0', '1.0', '0.8', '0.5', '0.3', '0.2', '0.1'));
-  $weights['0'] = t('Ignore');
-
-  $form = array();
-  $form['result_bias'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Result biasing'),
-    '#collapsible' => TRUE,
-    '#collapsed' => FALSE,
-    '#description' => t('Give bias to certain properties when ordering the search results. Any value except <em>Ignore</em> will increase the score of the given type in search results. Choose <em>Ignore</em> to ignore any given property.'),
-    '#group' => 'bias_tabs',
-  );
-  $form['result_bias']['apachesolr_search_sticky_boost'] = array(
-    '#type' => 'select',
-    '#options' => $weights,
-    '#title' => t("Sticky at top of lists"),
-    '#default_value' => $sticky_boost,
-    '#description' => t("Select additional bias to give to nodes that are set to be 'Sticky at top of lists'."),
-  );
-  $form['result_bias']['apachesolr_search_promote_boost'] = array(
-    '#type' => 'select',
-    '#options' => $weights,
-    '#title' => t("Promoted to home page"),
-    '#default_value' => $promote_boost,
-    '#description' => t("Select additional bias to give to nodes that are set to be 'Promoted to home page'."),
-  );
-  $form['result_bias']['apachesolr_search_date_boost'] = array(
-    '#type' => 'select',
-    '#options' => $options,
-    '#title' => t("More recently created"),
-    '#default_value' => $date_settings,
-    '#description' => t('This setting will change the result scoring so that nodes created more recently may appear before those with higher keyword matching.'),
-  );
-  $form['result_bias']['apachesolr_search_comment_boost'] = array(
-    '#type' => 'select',
-    '#options' => $options,
-    '#title' => t("More comments"),
-    '#default_value' => $comment_settings,
-    '#description' => t('This setting will change the result scoring so that nodes with more comments may appear before those with higher keyword matching.'),
-  );
-  $form['result_bias']['apachesolr_search_changed_boost'] = array(
-    '#type' => 'select',
-    '#options' => $options,
-    '#title' => t("More recent comments"),
-    '#default_value' => $changed_settings,
-    '#description' => t('This setting will change the result scoring so that nodes with the most recent comments (or most recent updates to the node itself) may appear before those with higher keyword matching.'),
-  );
-  return $form;
-}
-
-/**
- * Form builder function to set query field weights.
- */
-function apachesolr_search_field_bias_form($fields, $env_id) {
-  $form = array();
-  // get the current weights
-  $defaults = array(
-    'content' => '1.0',
-    'ts_comments' => '0.5',
-    'tos_content_extra' => '0.1',
-    'label' => '5.0',
-    'tos_name' => '3.0',
-    'taxonomy_names' => '2.0',
-    'tags_h1' => '5.0',
-    'tags_h2_h3' => '3.0',
-    'tags_h4_h5_h6' => '2.0',
-    'tags_inline' => '1.0',
-    'tags_a' => '0',
-  );
-  $qf = apachesolr_environment_variable_get($env_id, 'field_bias', $defaults);
-  $weights = drupal_map_assoc(array('21.0', '13.0', '8.0', '5.0', '3.0', '2.0', '1.0', '0.8', '0.5', '0.3', '0.2', '0.1'));
-  $weights['0'] = t('Omit');
-  if (!$qf) {
-    $qf = $defaults;
-  }
-  if ($fields) {
-    $form['field_bias'] = array(
-      '#type' => 'fieldset',
-      '#title' => t('Field biases'),
-      '#collapsible' => TRUE,
-      '#collapsed' => FALSE,
-      '#tree' => TRUE,
-      '#description' => t('Specify here which fields are more important when searching. Give a field a greater numeric value to make it more important. If you omit a field, it will not be searched.'),
-      '#group' => 'bias_tabs',
-    );
-    foreach ($fields as $field_name => $field) {
-      // Only indexed feids are searchable.
-      if (strpos($field->schema, 'I') !== FALSE) {
-        // By default we only show text fields.  Use hook_form_alter to change.
-        // We use filter_xss to make sure links are allowed
-        $form['field_bias'][$field_name] = array(
-          '#access' => ($field->type == 'text' || $field->type == 'text_und'),
-          '#type' => 'select',
-          '#options' => $weights,
-          '#title' => filter_xss(apachesolr_field_name_map($field_name)),
-          '#default_value' => isset($qf[$field_name]) ? $qf[$field_name] : '0',
-        );
-      }
-    }
-
-    // Make sure all the default fields are included, even if they have
-    // no indexed content.
-    foreach ($defaults as $field_name => $weight) {
-      $form['field_bias'][$field_name] = array(
-        '#type' => 'select',
-        '#options' => $weights,
-        '#title' => check_plain(apachesolr_field_name_map($field_name)),
-        '#default_value' => isset($qf[$field_name]) ? $qf[$field_name] : $defaults[$field_name],
-      );
-    }
-
-    ksort($form['field_bias']);
-  }
-  return $form;
-}
-
-/**
- * Form builder function to set query type weights.
- */
-function apachesolr_search_type_boost_form($env_id) {
-
-  $form['type_boost'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Type biasing'),
-    '#collapsible' => TRUE,
-    '#collapsed' => FALSE,
-    '#group' => 'bias_tabs',
-  );
-  $form['type_boost']['apachesolr_search_type_boosts'] = array(
-    '#type' => 'item',
-    '#description' => t("Specify here which node types should get a higher relevancy score in searches. Any value except <em>Ignore</em> will increase the score of the given type in search results."),
-    '#tree' => TRUE,
-  );
-
-  $weights = drupal_map_assoc(array('21.0', '13.0', '8.0', '5.0', '3.0', '2.0', '1.0', '0.8', '0.5', '0.3', '0.2', '0.1'));
-  $weights['0'] = t('Ignore');
-
-  // Get the current boost values.
-  $type_boosts = apachesolr_environment_variable_get($env_id, 'apachesolr_search_type_boosts', array());
-  $names = array();
-  foreach (entity_get_info() as $entity_type => $entity_info) {
-    if (!empty($entity_info['apachesolr']['indexable'])) {
-      foreach ($entity_info['bundles'] as $key => $info) {
-        $names[$key] = $info['label'];
-      }
-    }
-  }
-  asort($names);
-
-  foreach ($names as $type => $name) {
-    $form['type_boost']['apachesolr_search_type_boosts'][$type] = array(
-      '#type' => 'select',
-      '#title' => t('%type type content bias', array('%type' => $name)),
-      '#options' => $weights,
-      '#default_value' => isset($type_boosts[$type]) ? $type_boosts[$type] : 0,
-    );
-  }
-
-  return $form;
-}
-
-/**
- * MoreLikeThis administration and utility functions.
- */
-function apachesolr_search_mlt_add_block_form() {
-  $form = apachesolr_search_mlt_block_form();
-  $form['submit'] = array(
-    '#type' => 'submit',
-    '#value' => t('Save'),
-    '#weight' => '5',
-  );
-  return $form;
-}
-
-function apachesolr_search_mlt_add_block_form_submit($form, &$form_state) {
-  apachesolr_search_mlt_save_block($form_state['values']);
-  $block_message = t('New More like this block created. <a href="!configure">Configure</a> this block in the Block administration', array('!configure' => url('admin/structure/block')));
-  drupal_set_message($block_message);
-  $form_state['redirect'] = 'admin/config/search/apachesolr/search-pages';
-}
-
-/**
- * Merge supplied settings with the standard defaults..
- */
-function apachesolr_search_mlt_block_defaults($block = array()) {
-  return $block + array(
-    'name' => '',
-    'num_results' => '5',
-    'mlt_fl' => array(
-      'label' => 'label',
-      'taxonomy_names' => 'taxonomy_names',
-    ),
-    'mlt_env_id' => 'solr',
-    'mlt_mintf' => '1',
-    'mlt_mindf' => '1',
-    'mlt_minwl' => '3',
-    'mlt_maxwl' => '15',
-    'mlt_maxqt' => '20',
-    'mlt_type_filters' => array(),
-    'mlt_custom_filters' => '',
-  );
-}
-
-/**
- * Constructs a list of field names used on the settings form.
- *
- * @return array An array containing a the fields in the solr instance.
- */
-function apachesolr_search_mlt_get_fields() {
-  $rows = array();
-
-  try {
-    $solr = apachesolr_get_solr();
-    $fields = $solr->getFields();
-    foreach ($fields as $field_name => $field) {
-      // 'V' appears in different positions in different Solr versions.
-      if (strpos($field->schema, 'V') !== FALSE) {
-        $rows[$field_name] = apachesolr_field_name_map($field_name);
-      }
-    }
-    ksort($rows);
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-  }
-
-  return $rows;
-}
-
-/**
- * A helper function to save MLT block data.
- *
- * If passed a block delta, the function will update block settings. If it is
- * not passed a block delta, the function will create a new block.
- *
- * @param array $block_settings An array containing the settings required to form
- * a moreLikeThis request.
- *
- * @param int $delta The id of the block you wish to update.
- */
-function apachesolr_search_mlt_save_block($block_settings = array(), $delta = NULL) {
-  $blocks = variable_get('apachesolr_search_mlt_blocks', array());
-  if (is_null($delta)) {
-    $count = 0;
-    ksort($blocks);
-    // Construct a new array key.
-    if (end($blocks)) {
-      list(, $count) = explode('-', key($blocks));
-    }
-    $delta = sprintf('mlt-%03d', 1 + $count);
-  }
-  $defaults = apachesolr_search_mlt_block_defaults();
-  // Remove stray form values.
-  $blocks[$delta] = array_intersect_key($block_settings, $defaults) + $defaults;
-  // Eliminate non-selected fields.
-  $blocks[$delta]['mlt_fl'] = array_filter($blocks[$delta]['mlt_fl']);
-  $blocks[$delta]['delta'] = $delta;
-  $blocks[$delta]['mlt_type_filters'] = array_filter($blocks[$delta]['mlt_type_filters']);
-  $blocks[$delta]['mlt_custom_filters'] = trim($blocks[$delta]['mlt_custom_filters']);
-  variable_set('apachesolr_search_mlt_blocks', $blocks);
-}
-
-function apachesolr_search_mlt_delete_block_form($form, &$form_state, $block) {
-  if ($block) {
-    // Backwards compatibility for the block deltas
-    if (isset($block['delta'])) {
-      $delta = $block['delta'];
-    }
-    else {
-      $delta = arg(6);
-    }
-    // Add our delta to the delete form
-    $form['delta'] = array(
-      '#type' => 'value',
-      '#value' => $delta,
-    );
-    $question = t('Are you sure you want to delete the "More Like this" block %name?', array('%name' => $block['name']));
-    $path = 'admin/structure/block';
-    $description = t('The block will be deleted. This action cannot be undone.');
-    $yes = t('Delete');
-    $no = t('Cancel');
-    return confirm_form($form, filter_xss($question), $path, $description, $yes, $no);
-  }
-}
-
-function apachesolr_search_mlt_delete_block_form_submit($form, &$form_state) {
-  $blocks = apachesolr_search_load_all_mlt_blocks();
-
-  unset($blocks[$form_state['values']['delta']]);
-  variable_set('apachesolr_search_mlt_blocks', $blocks);
-  drupal_set_message(t('The block has been deleted.'));
-  $form_state['redirect'] = 'admin/config/search/apachesolr/search-pages';
-}
-
-/**
- * Form to edit moreLikeThis block settings.
- *
- * @param int $delta If editing, the id of the block to edit.
- *
- * @return array The form used for editing.
- * @todo Add term boost settings.
- * @todo Enable the user to specify a query, rather then forcing suggestions
- *  based on the node id.
- */
-function apachesolr_search_mlt_block_form($block_id = NULL) {
-  if (!empty($block_id)) {
-    $block = apachesolr_search_mlt_block_load($block_id);
-    if (!$block) {
-      return array();
-    }
-  }
-  else {
-    $block = apachesolr_search_mlt_block_defaults();
-  }
-
-  $form['delta'] = array(
-    '#type' => 'value',
-    '#default_value' => isset($block['delta']) ? $block['delta'] : '',
-    '#weight' => '-2',
-  );
-
-  $form['name'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Block name'),
-    '#description' => t('The block name displayed to site users.'),
-    '#required' => TRUE,
-    '#default_value' => isset($block['name']) ? $block['name'] : '',
-    '#weight' => '-2',
-  );
-
-  $environments = apachesolr_load_all_environments();
-  $options = array('' => t('<Disabled>'));
-  foreach ($environments as $id => $environment) {
-    $options[$id] = $environment['name'];
-  }
-  $form['mlt_env_id'] = array(
-    '#title' => t('Search environment'),
-    '#type' => 'select',
-    '#options' => $options,
-    '#default_value' => isset($block['mlt_env_id']) ? $block['mlt_env_id'] : apachesolr_default_environment(),
-  );
-
-  $form['num_results'] = array(
-    '#type' => 'select',
-    '#title' => t('Maximum number of related items to display'),
-    '#default_value' => isset($block['num_results']) ? $block['num_results'] : '',
-    '#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15)),
-    '#weight' => -1,
-
-    );
-  $form['mlt_fl'] = array(
-    '#type' => 'checkboxes',
-    '#title' => t('Fields for finding related content'),
-    '#description' => t('Choose the fields to be used in calculating similarity. The default combination of %taxonomy_names and %title will provide relevant results for typical sites.', array("%taxonomy_names" => apachesolr_field_name_map("taxonomy_names"), "%title" => apachesolr_field_name_map("label"))),
-    '#options' => apachesolr_search_mlt_get_fields(),
-    '#required' => TRUE,
-    '#default_value' => isset($block['mlt_fl']) ? $block['mlt_fl'] : '',
-  );
-  $form['advanced'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Advanced configuration'),
-    '#weight' => '1',
-    '#collapsible' => TRUE,
-    '#collapsed' => TRUE,
-  );
-  $options = drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7));
-  $form['advanced']['mlt_mintf'] = array(
-    '#type' => 'select',
-    '#title' => t('Minimum term frequency'),
-    '#description' => t('A word must appear this many times in any given document before the document is considered relevant for comparison.'),
-    '#default_value' => isset($block['mlt_mintf']) ? $block['mlt_mintf'] : '',
-    '#options' => $options,
-  );
-  $form['advanced']['mlt_mindf'] = array(
-    '#type' => 'select',
-    '#title' => t('Minimum document frequency'),
-    '#description' => t('A word must occur in at least this many documents before it will be used for similarity comparison.'),
-    '#default_value' => isset($block['mlt_mindf']) ? $block['mlt_mindf'] : '',
-    '#options' => $options,
-  );
-  $form['advanced']['mlt_minwl'] = array(
-    '#type' => 'select',
-    '#title' => t('Minimum word length'),
-    '#description' => 'You can use this to eliminate short words such as "the" and "it" from similarity comparisons. Words must be at least this number of characters or they will be ignored.',
-    '#default_value' => isset($block['mlt_minwl']) ? $block['mlt_minwl'] : '',
-    '#options' => $options,
-  );
-  $form['advanced']['mlt_maxwl'] = array(
-    '#type' => 'select',
-    '#title' => t('Maximum word length'),
-    '#description' => t('You can use this to eliminate very long words from similarity comparisons. Words of more than this number of characters will be ignored.'),
-    '#default_value' => isset($block['mlt_maxwl']) ? $block['mlt_maxwl'] : '',
-    '#options' => drupal_map_assoc(array(8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)),
-  );
-  $form['advanced']['mlt_maxqt'] = array(
-    '#type' => 'select',
-    '#title' => t('Maximum number of query terms'),
-    '#description' => t('The maximum number of query terms that will be included in any query. Lower numbers will result in fewer recommendations but will get results faster. If a content recommendation is not returning any recommendations, you can either check more "Comparison fields" checkboxes or increase the maximum number of query terms here.'),
-    '#options' => drupal_map_assoc(array(3, 5, 7, 10, 12, 15, 20, 25, 30, 35, 40)),
-    '#default_value' => isset($block['mlt_maxqt']) ? $block['mlt_maxqt'] : '',
-  );
-
-  $form['restrictions'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Filters'),
-    '#weight' => '1',
-    '#collapsible' => TRUE,
-    '#collapsed' => TRUE,
-  );
-
-  $type_options = array();
-  foreach (node_type_get_types() as $key => $type) {
-    $type_options[$key] = $type->name;
-  }
-
-  $form['restrictions']['mlt_type_filters'] = array(
-    '#type' => 'checkboxes',
-    '#title' => t('Content Types'),
-    '#default_value' => is_array($block['mlt_type_filters']) ? $block['mlt_type_filters'] : array(),
-    '#options' => $type_options,
-    '#description' => t('Select the content types that similarity suggestions should be restricted to. Multiple types are joined with an OR query, so selecting more types results in more recommendations. If none are selected, no filter will be applied.'),
-    '#weight' => '-2',
-  );
-
-  $form['restrictions']['mlt_custom_filters'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Additional Query'),
-    '#description' => t("A query, in Lucene syntax, which will further filter the similarity suggestions. For example, 'label:strategy' will filter related content further to only those with strategy in the title. Here are some more examples:") .
-                        '<ul>
-                            <li>ss_language:fr</li>
-                            <li>tid:(5 OR 7)</li>
-                            <li>ds_created:[2009-05-01T23:59:59Z TO 2009-07-28T12:30:00Z]</li>
-                            <li>-is_uid:0, -is_uid:1</li>
-                        </ul>',
-    '#required' => FALSE,
-    '#default_value' => isset($block['mlt_custom_filters']) ? $block['mlt_custom_filters'] : '',
-    '#weight' => '-1',
-  );
-
-  return $form;
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.info b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.info
deleted file mode 100644
index 74d714bb8aad70b46628d2f4f8ca50e3f82b5be3..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.info
+++ /dev/null
@@ -1,15 +0,0 @@
-name = Apache Solr search
-description = Search with Solr
-dependencies[] = search
-dependencies[] = apachesolr
-package = Search Toolkit
-core = 7.x
-configure = admin/config/search/apachesolr/search-pages
-
-
-; Information added by Drupal.org packaging script on 2015-12-02
-version = "7.x-1.8"
-core = "7.x"
-project = "apachesolr"
-datestamp = "1449085462"
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.install b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.install
deleted file mode 100644
index 4ded760378331948b7141289febf886c738250e1..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.install
+++ /dev/null
@@ -1,384 +0,0 @@
-<?php
-
-/**
- * @file
- *   Install and related hooks for apachesolr_search.
- */
-
-/**
- * Implements hook_install().
- */
-function apachesolr_search_install() {
-  // Add a taxonomy search page to the database
-  $settings = array(
-    'apachesolr_search_search_type' => 'tid',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_browse' => 'results',
-    'apachesolr_search_spellcheck' => FALSE,
-    'apachesolr_search_search_box' => FALSE,
-  );
-  $settings = serialize($settings);
-
-  $fields = array(
-    'page_id' => 'taxonomy_search',
-    'label' => 'Taxonomy Search',
-    'description' => 'Search all items with given term',
-    'search_path' => 'taxonomy/term/%',
-    'env_id' => '',
-    'page_title' => '%value',
-    'settings' => $settings,
-  );
-  db_insert('apachesolr_search_page')->fields($fields)->execute();
-}
-
-/**
- * Implements hook_enable().
- */
-function apachesolr_search_enable() {
-  // Make sure the default core search page is installed.
-  $search_page = apachesolr_search_page_load('core_search');
-  if (empty($search_page)) {
-    // Add Default search page (core search)
-    // This is a duplication from update_7004 but it is intended
-    // so future changes are possible without breaking the update
-    $settings = array(
-      'apachesolr_search_search_type' => 'custom',
-      'apachesolr_search_per_page' => 10,
-      'apachesolr_search_browse' => 'browse',
-      'apachesolr_search_spellcheck' => TRUE,
-      'apachesolr_search_not_removable' => TRUE,
-      'apachesolr_search_search_box' => TRUE,
-    );
-    $settings = serialize($settings);
-
-    $fields = array(
-      'page_id' => 'core_search',
-      'label' => 'Core Search',
-      'description' => 'Core Search',
-      'search_path' => 'search/site',
-      'env_id' => 'solr',
-      'page_title' => 'Site',
-      'settings' => $settings,
-    );
-    db_insert('apachesolr_search_page')->fields($fields)->execute();
-  }
-
-
-  $active = variable_get('search_active_modules', array('node', 'user'));
-  $active[] = 'apachesolr_search';
-  variable_set('search_active_modules', array_unique($active));
-}
-
-/**
- * Implements hook_schema().
- */
-function apachesolr_search_schema() {
-  $schema = array();
-
-  $schema['apachesolr_search_page'] = array(
-    'description' => 'Apache Solr Search search page settings.',
-    'export' => array(
-      // Environment machine name.
-      'key' => 'page_id',
-      // Description of key.
-      'key name' => 'search page machine name',
-      // Variable name to use in exported code.
-      'identifier' => 'searcher',
-      // Use the same hook as the API name below.
-      'default hook' => 'apachesolr_search_default_searchers',
-      'status' => 'apachesolr_search_page_status',
-      // CTools API implementation.
-      'api' => array(
-        'owner' => 'apachesolr_search',
-        'api' => 'apachesolr_search_defaults',
-        'minimum_version' => 3,
-        'current_version' => 3,
-      ),
-    ),
-    'fields' => array(
-      'page_id' => array(
-        'description' => 'The machine readable name of the search page.',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'label' => array(
-        'description' => 'The human readable name of the search page.',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'description' => array(
-        'description' => 'The description of the search page.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'search_path' => array(
-        'description' => 'The path to the search page.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'page_title' => array(
-        'description' => 'The title of the search page.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'env_id' => array(
-        'description' => 'The machine name of the search environment.',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'settings' => array(
-        'description' => 'Serialized storage of general settings.',
-        'type' => 'text',
-        'serialize' => TRUE,
-      ),
-    ),
-    'primary key' => array('page_id'),
-    'indexes' => array(
-      'env_id' => array('env_id'),
-    ),
-  );
-
-  return $schema;
-}
-
-/**
- * Implements hook_uninstall().
- */
-function apachesolr_search_uninstall() {
-  $stored = variable_get('apachesolr_index_last', array());
-  unset($stored['apachesolr_search']);
-  variable_set('apachesolr_index_last', $stored);
-
-  $active = variable_get('search_active_modules', array('node', 'user'));
-  $idx = array_search('apachesolr_search', $active);
-  if ($idx !== FALSE) {
-    unset($active[$idx]);
-    variable_set('search_active_modules', $active);
-  }
-  // Remove variables.
-  variable_del('apachesolr_search_spellcheck');
-  variable_del('apachesolr_search_mlt_blocks');
-  variable_del('apachesolr_search_default_search_page');
-  // Remove blocks.
-  db_delete('block')->condition('module', 'apachesolr_search')->execute();
-}
-
-/**
- * Various updates for Drupal 7.
- */
-function apachesolr_search_update_7000() {
-  $taxo_links = variable_get('apachesolr_search_taxonomy_links', 0);
-  // TODO - enable the new contrib module?
-  variable_del('apachesolr_search_taxonomy_links');
-  // TODO - possibly rename block deltas, etc.
-  $active = variable_get('search_active_modules', array('node', 'user'));
-  $active[] = 'apachesolr_search';
-  variable_set('search_active_modules', array_unique($active));
-  if (variable_get('apachesolr_search_make_default', 0)) {
-    variable_set('search_default_module', 'apachesolr_search');
-  }
-  variable_del('apachesolr_search_make_default');
-}
-
-/**
- * Add apachesolr_search_page table.
- */
-function apachesolr_search_update_7001() {
-  // Moved to 7002
-}
-
-/**
- * Add apachesolr_search_page table for real.
- */
-function apachesolr_search_update_7002() {
-
-  $schema['apachesolr_search_page'] = array(
-    'description' => 'Apache Solr Search search page settings.',
-    'export' => array(
-      'key' => 'page_id',
-      'identifier' => 'searcher',
-      'default hook' => 'apachesolr_search_default_searchers',
-      'status' => 'apachesolr_search_page_status',
-      'api' => array(
-        'owner' => 'apachesolr_search',
-        'api' => 'apachesolr_search_defaults',
-        'minimum_version' => 3,
-        'current_version' => 3,
-      ),
-    ),
-    'fields' => array(
-      'page_id' => array(
-        'description' => 'The machine readable name of the search page.',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'label' => array(
-        'description' => 'The human readable name of the search page.',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'description' => array(
-        'description' => 'The description of the search page.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'search_path' => array(
-        'description' => 'The path to the search page.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'page_title' => array(
-        'description' => 'The title of the search page.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'env_id' => array(
-        'description' => 'The machine name of the search environment.',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'settings' => array(
-        'description' => 'Serialized storage of general settings.',
-        'type' => 'text',
-        'serialize' => TRUE,
-      ),
-    ),
-    'primary key' => array('page_id'),
-    'indexes' => array(
-      'env_id' => array('env_id'),
-    ),
-  );
-  if (db_table_exists('apachesolr_search_page')) {
-    // Just in case you are chasing HEAD.
-    db_drop_table('apachesolr_search_page');
-  }
-  db_create_table('apachesolr_search_page', $schema['apachesolr_search_page']);
-}
-
-
-/**
- * Delete all Apache Solr Search blocks - they moved to Facet API.
- */
-function apachesolr_search_update_7003() {
-  // Remove blocks.
-  db_delete('block')->condition('module', 'apachesolr_search')->execute();
-}
-
-/**
- * Add a default search page for core
- * Add a taxonomy page if the taxonomy module was ever active
- */
-function apachesolr_search_update_7004() {
-  // Add Default search page (core search)
-  $settings = array(
-    'apachesolr_search_search_type' => 'custom',
-    'apachesolr_search_per_page' => variable_get('apachesolr_rows', 10),
-    'apachesolr_search_browse' => variable_get('apachesolr_search_browse', 'browse'),
-    'apachesolr_search_spellcheck' => variable_get('apachesolr_search_spellcheck', TRUE),
-    'apachesolr_search_not_removable' => TRUE,
-    'apachesolr_search_search_box' => TRUE,
-  );
-  $settings = serialize($settings);
-
-  $fields = array(
-    'page_id' => 'core_search',
-    'label' => 'Core Search',
-    'description' => 'Site search',
-    'search_path' => 'search/site',
-    'env_id' => 'solr',
-    'page_title' => 'Site',
-    'settings' => $settings,
-  );
-  db_insert('apachesolr_search_page')->fields($fields)->execute();
-  // Remove variables.
-  variable_del('apachesolr_search_spellcheck');
-  variable_del('apachesolr_search_browse');
-
-  // Add this taxonomy search page to the database
-  $settings = array(
-    'apachesolr_search_search_type' => 'tid',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_browse' => 'results',
-    'apachesolr_search_spellcheck' => FALSE,
-    'apachesolr_search_search_box' => FALSE,
-  );
-  $settings = serialize($settings);
-
-  $fields = array(
-    'page_id' => 'taxonomy_search',
-    'label' => 'Taxonomy Search',
-    'description' => 'Search all items with given term',
-    'search_path' => 'taxonomy/term/%',
-    'env_id' => '',
-    'page_title' => '%value',
-    'settings' => $settings,
-  );
-  db_insert('apachesolr_search_page')->fields($fields)->execute();
-
-  // Check if the taxonomy module was ever present
-  $status = db_query("SELECT 1 FROM {system} WHERE name = 'apachesolr_taxonomy'")->fetchField();
-  if ($status) {
-    $message  = t('If you had the apachesolr_taxonomy module enabled please go to the !link and enable the Taxonomy Term page', array('!link' => l('Apache Solr custom pages', 'admin/config/search/apachesolr/search-pages')));
-    drupal_set_message($message, 'warning');
-  }
-}
-
-/**
- * Make the env_id length on the apachesolr_search_page table 64 characters
- * to match the length of the env_id on all other tables
- */
-function apachesolr_search_update_7005(&$sandbox) {
-  db_drop_index('apachesolr_search_page', 'env_id');
-  db_change_field('apachesolr_search_page', 'env_id', 'env_id',
-    array(
-        'description' => 'The machine name of the search environment.',
-        'type' => 'varchar',
-        'length' => 64,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      array(
-        'indexes' => array(
-          'env_id' => array('env_id'),
-        )
-      )
-    );
-}
-
-/**
- * Remove all apachesolr_search env variables for show_facets if it is zero
- */
-function apachesolr_search_update_7006() {
-  module_load_include('module', 'apachesolr');
-  $environments = apachesolr_load_all_environments();
-  foreach ($environments as $environment) {
-    $show_facets = apachesolr_environment_variable_get($environment['env_id'], 'apachesolr_search_show_facets', 0);
-    if ($show_facets === 0) {
-      apachesolr_environment_variable_del($environment['env_id'], 'apachesolr_search_show_facets');
-    }
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.module b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.module
deleted file mode 100644
index a94c0a98d8bc994d28ec4af2b4b8846ebe24e59d..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.module
+++ /dev/null
@@ -1,1801 +0,0 @@
-<?php
-
-/**
- * @file
- *   Provides a content search implementation for node content for use with the
- *   Apache Solr search application.
- */
-
-/**
- * Implements hook_init().
- *
- * Checks if we should run an empty facet query so the facet blocks can be
- * displayed.
- */
-function apachesolr_search_init() {
-  // Useless without facetapi
-  if (!module_exists('facetapi')) {
-    return NULL;
-  }
-
-  // Using a simple query we will figure out if we have to execute this snippet
-  // on every page or exit as fast as possible.
-  $query = "SELECT count(env_id)
-    FROM {apachesolr_environment_variable}
-    WHERE name = 'apachesolr_search_show_facets'";
-  $count = db_query($query)->fetchField();
-  if ($count == 0) {
-    return NULL;
-  }
-
-  // Load the default search page, we only support facets to link to this
-  // search page due to complexity and slow downs
-  $search_page_id = apachesolr_search_default_search_page();
-  $search_page = apachesolr_search_page_load($search_page_id);
-  // Do not continue if our search page is not valid
-  if (empty($search_page)) {
-    return NULL;
-  }
-
-  $show_facets = apachesolr_environment_variable_get($search_page['env_id'], 'apachesolr_search_show_facets', 0);
-  if ($show_facets) {
-
-    // Converts current path to lowercase for case insensitive matching.
-    $paths = array();
-    $path = drupal_strtolower(drupal_get_path_alias(current_path()));
-    // Use the path as the key to keep entries unique.
-    $paths[$path] = $path;
-    $path = drupal_strtolower(current_path());
-    $paths[$path] = $path;
-
-    // Do not continue if the current path is the default search path.
-    foreach ($paths as $path) {
-      if (drupal_match_path($path, $search_page['search_path'] . '*')) {
-        return;
-      }
-    }
-
-    $facet_pages = apachesolr_environment_variable_get($search_page['env_id'], 'apachesolr_search_facet_pages', '');
-
-    // Iterates over each environment to check if an empty query should be run.
-    if (!empty($facet_pages)) {
-      // Compares path with settings, runs query if there is a match.
-      $patterns = drupal_strtolower($facet_pages);
-      foreach ($paths as $path) {
-        if (drupal_match_path($path, $patterns)) {
-          try {
-            if (!empty($search_page['search_path'])) {
-              $solr = apachesolr_get_solr($search_page['env_id']);
-              $conditions = apachesolr_search_conditions_default($search_page);
-
-              // Initializes params for empty query.
-              $params = array(
-                'spellcheck' => 'false',
-                'fq' => isset($conditions['fq']) ? $conditions['fq'] : array(),
-                'rows' => 1,
-              );
-              $context['page_id'] = $search_page_id;
-              $context['search_type'] = 'apachesolr_search_show_facets';
-              apachesolr_search_run_empty('apachesolr', $params, $search_page['search_path'], $solr, $context);
-              // Exit the foreach loop if this has run.
-              break;
-            }
-          }
-          catch (Exception $e) {
-            watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-          }
-        }
-      }
-    }
-  }
-}
-
-/**
- * Implements hook_menu().
- */
-function apachesolr_search_menu() {
-  $items['admin/config/search/apachesolr/search-pages'] = array(
-    'title'            => 'Pages/Blocks',
-    'description'      => 'Configure search pages',
-    'page callback'    => 'apachesolr_search_page_list_all',
-    'access arguments' => array('administer search'),
-    'type'             => MENU_LOCAL_TASK,
-    'file'             => 'apachesolr_search.admin.inc',
-  );
-  $items['admin/config/search/apachesolr/search-pages/add'] = array(
-    'title'            => 'Add search page',
-    'page callback'    => 'drupal_get_form',
-    'page arguments'   => array('apachesolr_search_page_settings_form'),
-    'access arguments' => array('administer search'),
-    'type'             => MENU_LOCAL_ACTION,
-    'weight'           => 1,
-    'file'             => 'apachesolr_search.admin.inc',
-  );
-  $items['admin/config/search/apachesolr/search-pages/%apachesolr_search_page/edit'] = array(
-    'title' => 'Edit search page',
-    'page callback'    => 'drupal_get_form',
-    'page arguments'   => array('apachesolr_search_page_settings_form', 5),
-    'access arguments' => array('administer search'),
-    'file'             => 'apachesolr_search.admin.inc',
-  );
-  $items['admin/config/search/apachesolr/search-pages/%apachesolr_search_page/delete'] = array(
-    'title'            => 'Delete search page',
-    'page callback'    => 'drupal_get_form',
-    'page arguments'   => array('apachesolr_search_delete_search_page_confirm', 5),
-    'access arguments' => array('administer search'),
-    'file'             => 'apachesolr_search.admin.inc',
-  );
-  $items['admin/config/search/apachesolr/search-pages/%apachesolr_search_page/clone'] = array(
-    'title' => 'Clone search page',
-    'page callback'    => 'drupal_get_form',
-    'page arguments'   => array('apachesolr_search_clone_search_page_confirm', 5),
-    'access arguments' => array('administer search'),
-    'file'             => 'apachesolr_search.admin.inc',
-  );
-  $items['admin/config/search/apachesolr/search-pages/addblock'] = array(
-    'title'            => 'Add search block "More Like This"',
-    'page callback'    => 'drupal_get_form',
-    'page arguments'   => array('apachesolr_search_mlt_add_block_form'),
-    'access arguments' => array('administer search'),
-    'type'             => MENU_LOCAL_ACTION,
-    'weight'           => 2,
-    'file'             => 'apachesolr_search.admin.inc',
-  );
-  $items['admin/config/search/apachesolr/search-pages/block/%apachesolr_search_mlt_block/delete'] = array(
-    'page callback'      => 'drupal_get_form',
-    'page arguments'     => array('apachesolr_search_mlt_delete_block_form', 6),
-    'access arguments'   => array('administer search'),
-    'file'               => 'apachesolr_search.admin.inc',
-    'type'               => MENU_CALLBACK,
-  );
-
-  // Environment specific settings
-  $settings_path = 'admin/config/search/apachesolr/settings/';
-  $items[$settings_path . '%apachesolr_environment/bias'] = array(
-    'title'            => 'Bias',
-    'page callback'    => 'apachesolr_bias_settings_page',
-    'page arguments'   => array(5),
-    'access arguments' => array('administer search'),
-    'weight'           => 4,
-    'type'             => MENU_LOCAL_TASK,
-    'file'             => 'apachesolr_search.admin.inc',
-  );
-  return $items;
-}
-
-function apachesolr_search_menu_alter(&$items) {
-  // Gets default search information.
-  $default_info = search_get_default_module_info();
-  $search_types = apachesolr_search_load_all_search_types();
-  $search_pages = apachesolr_search_load_all_search_pages();
-  $default_search_page = apachesolr_search_default_search_page();
-
-  // Iterates over search pages, builds menu items.
-  foreach ($search_pages as $search_page) {
-    // Validate the environment ID in case of import or missed deletion.
-    $environment = apachesolr_environment_load($search_page['env_id']);
-    if (!$environment) {
-      continue;
-    }
-
-    // Parses search path into it's various parts, builds menu items dependent
-    // on whether %keys is in the path.
-    $parts = explode('/', $search_page['search_path']);
-    $keys_pos = count($parts);
-    // Tests whether apachesolr_search is the only enabled search module (in
-    // which case there are no tabs).
-    $active_module_info = search_get_info();
-    $no_tabs = (sizeof($active_module_info) == 1 && isset($active_module_info['apachesolr_search']));
-    // Tests whether we are simulating a core search tab.
-    $core_search = ($parts[0] == 'search' && !$no_tabs);
-    $position = array_search('%', $parts);
-    $page_title = isset($search_page['page_title']) ? $search_page['page_title'] : 'Search Results';
-
-    // If we have a taxonomy search, remove existing menu paths
-    if ($search_page['search_path'] == 'taxonomy/term/%') {
-      unset($items['taxonomy/term/%taxonomy_term']);
-      unset($items['taxonomy/term/%taxonomy_term/view']);
-    }
-
-    // Replace possible tokens [term:tid], [node:nid], [user:uid] with their
-    // menu-specific variant
-    $items[$search_page['search_path']] = array(
-      'title' => $page_title,
-      'page callback' => 'apachesolr_search_custom_page',
-      'page arguments' => array($search_page['page_id'], '', $position),
-      'access arguments' => array('search content'),
-      'type' => ($core_search) ? MENU_LOCAL_TASK : MENU_SUGGESTED_ITEM,
-      'file' => 'apachesolr_search.pages.inc',
-      'file path' => drupal_get_path('module', 'apachesolr_search'),
-    );
-    if ($search_page['page_id'] == $default_search_page) {
-      $items[$search_page['search_path']]['weight'] = -5;
-    }
-
-    // Not using menu tail because of inflexibility with clean urls
-    $items[$search_page['search_path'] . '/%'] = array(
-      'title' => $page_title,
-      'page callback' => 'apachesolr_search_custom_page',
-      'page arguments' => array($search_page['page_id'], $keys_pos, $position),
-      'access arguments' => array('search content'),
-      'type' => !($core_search) ? MENU_CALLBACK : MENU_LOCAL_TASK,
-      'file' => 'apachesolr_search.pages.inc',
-      'file path' => drupal_get_path('module', 'apachesolr_search'),
-    );
-    if ($search_page['page_id'] == $default_search_page) {
-      $items[$search_page['search_path'] . '/%']['weight'] = -5;
-    }
-
-    // If title has a certain callback for the selected type we use it
-    $search_type_id = !empty($search_page['settings']['apachesolr_search_search_type']) ? $search_page['settings']['apachesolr_search_search_type'] : FALSE;
-    $search_type = !empty($search_types[$search_type_id]) ? $search_types[$search_type_id] : FALSE;
-
-    if ($search_type) {
-      $title_callback = $search_type['title callback'];
-      $items[$search_page['search_path']]['title callback'] = $title_callback;
-      $items[$search_page['search_path']]['title arguments'] = array($search_page['page_id'], $position, $keys_pos);
-      $items[$search_page['search_path'] . '/%']['title callback'] = $title_callback;
-      $items[$search_page['search_path'] . '/%']['title arguments'] = array($search_page['page_id'], $position, $keys_pos);
-    }
-    // If we have additional searches in the search/* path
-    if ($core_search) {
-      $items[$search_page['search_path'] . '/%']['tab_root'] = 'search/' . $default_info['path'] . '/%';
-      $items[$search_page['search_path'] . '/%']['tab_parent'] = 'search/' . $default_info['path'];
-    }
-  }
-}
-
-/**
- * Function that loads all the search types
- *
- * @return array $search_types
- */
-function apachesolr_search_load_all_search_types() {
-  $search_types = &drupal_static(__FUNCTION__);
-
-  if (isset($search_types)) {
-    return $search_types;
-  }
-  // Use cache_get to avoid DB when using memcache, etc.
-  $cache = cache_get('apachesolr_search:search_types', 'cache_apachesolr');
-  if (isset($cache->data)) {
-    $search_types = $cache->data;
-  }
-  else {
-    $search_types = array(
-      'custom' => array (
-        'name' => t('Custom Field'),
-        'default menu' => '',
-        'title callback' => 'apachesolr_search_get_value_title',
-       ),
-      'tid' => array(
-        'name' => apachesolr_field_name_map('tid'),
-        'default menu' => 'taxonomy/term/%',
-        'title callback' => 'apachesolr_search_get_taxonomy_term_title',
-      ),
-      'is_uid' => array(
-        'name' => apachesolr_field_name_map('is_uid'),
-        'default menu' => 'user/%/search',
-        'title callback' => 'apachesolr_search_get_user_title',
-      ),
-      'bundle' => array(
-        'name' => apachesolr_field_name_map('bundle'),
-        'default menu' => 'search/type/%',
-        'title callback' => 'apachesolr_search_get_value_title',
-      ),
-      'ss_language' => array(
-        'name' => apachesolr_field_name_map('ss_language'),
-        'default menu' => 'search/language/%',
-        'title callback' => 'apachesolr_search_get_value_title',
-      ),
-    );
-    drupal_alter('apachesolr_search_types', $search_types);
-    cache_set('apachesolr_search:search_types', $search_types, 'cache_apachesolr');
-  }
-  return $search_types;
-}
-
-/**
- * Title callback function to generate a title for the taxonomy term.
- *
- * @param integer $search_page_id
- * @param integer $value Term ID from path.
- * @param string $terms Keys searched for.
- *
- * @return String
- */
-function apachesolr_search_get_taxonomy_term_title($search_page_id = NULL, $value = NULL, $terms = NULL) {
-  $page_title = 'Search results for term';
-  if ((!empty($value) || !empty($terms)) && isset($search_page_id)) {
-    $search_page = apachesolr_search_page_load($search_page_id);
-    $page_title = str_replace('%value', '@value', $search_page['page_title']);
-    $page_title = str_replace('%terms', '@terms', $page_title);
-    $term = taxonomy_term_load($value);
-    if (!$term) {
-      return NULL;
-    }
-    $value = $term->name;
-  }
-  return t($page_title, array(
-    '@value' => $value,
-    '@terms' => $terms,
-  ));
-}
-
-/**
- * Title callback function to generate a title for a user name.
- *
- * @param integer $search_page_id
- * @param integer $value User ID from path.
- * @param string $terms Terms searched for.
- *
- * @return String
- */
-function apachesolr_search_get_user_title($search_page_id = NULL, $value = NULL, $terms = NULL) {
-  $page_title = 'Search results for user';
-  if ((!empty($value) || !empty($terms)) && isset($search_page_id)) {
-    $search_page = apachesolr_search_page_load($search_page_id);
-    $page_title = str_replace('%value', '@value', $search_page['page_title']);
-    $page_title = str_replace('%terms', '@terms', $page_title);
-    $user = user_load($value);
-    if (!$user) {
-       return NULL;
-     }
-    $value = $user->name;
-  }
-  return t($page_title, array(
-    '@value' => $value,
-    '@terms' => $terms,
-  ));
-}
-
-/**
- * Title callback function to generate a title for a search page.
- *
- * @param integer $search_page_id
- * @param integer $value
- * @param string $keys Terms searched for.
- *
- * @return String
- */
-function apachesolr_search_get_value_title($search_page_id = NULL, $value = NULL, $terms = NULL) {
-  $page_title = 'Search results';
-  if ((!empty($value) || !empty($terms)) && isset($search_page_id)) {
-    $search_page = apachesolr_search_page_load($search_page_id);
-    $page_title = str_replace('%value', '@value', $search_page['page_title']);
-    $page_title = str_replace('%terms', '@terms', $page_title);
-  }
-  return t($page_title, array(
-    '@value' => $value,
-    '@terms' => $terms,
-  ));
-}
-
-/**
- * Get or set the default search page id for the current page.
- */
-function apachesolr_search_default_search_page($page_id = NULL) {
-  $default_page_id = &drupal_static(__FUNCTION__, NULL);
-
-  if (isset($page_id)) {
-    $default_page_id = $page_id;
-  }
-  if (empty($default_page_id)) {
-    $default_page_id = variable_get('apachesolr_search_default_search_page', 'core_search');
-  }
-  return $default_page_id;
-}
-
-/**
- * Implements hook_apachesolr_default_environment()
- *
- * Make sure the core search page is using the default environment.
- */
-function apachesolr_search_apachesolr_default_environment($env_id, $old_env_id) {
-  $page = apachesolr_search_page_load('core_search');
-  if ($page && $page['env_id'] != $env_id) {
-    $page['env_id'] = $env_id;
-    apachesolr_search_page_save($page);
-  }
-}
-
-/**
- * Load a search page
- * @param string $page_id
- * @return array
- */
-function apachesolr_search_page_load($page_id) {
-  $search_pages = apachesolr_search_load_all_search_pages();
-  if (!empty($search_pages[$page_id])) {
-    return $search_pages[$page_id];
-  }
-  return FALSE;
-}
-
-function apachesolr_search_page_save($search_page) {
-  if (!empty($search_page)) {
-    db_merge('apachesolr_search_page')
-      ->key(array('page_id' => $search_page['page_id']))
-      ->fields(array(
-        'label' => $search_page['label'],
-        'page_id' => $search_page['page_id'],
-        'description' => $search_page['description'],
-        'env_id' => $search_page['env_id'],
-        'search_path' => $search_page['search_path'],
-        'page_title' => $search_page['page_title'],
-        'settings' => serialize($search_page['settings']),
-      ))
-      ->execute();
-  }
-}
-
- /**
- * Function that clones a search page
- *
- * @param $page_id
- *   The page identifier it needs to clone.
- *
- */
-function apachesolr_search_page_clone($page_id) {
-  $search_page = apachesolr_search_page_load($page_id);
-  // Get all search_pages
-  $search_pages = apachesolr_search_load_all_search_pages();
-  // Create an unique ID
-  $new_search_page_id = apachesolr_create_unique_id($search_pages, $search_page['page_id']);
-  // Set this id to the new search page
-  $search_page['page_id'] = $new_search_page_id;
-  $search_page['label'] = $search_page['label'] . ' [cloned]';
-  // All cloned search pages should be removable
-  if (isset($search_page['settings']['apachesolr_search_not_removable'])) {
-    unset($search_page['settings']['apachesolr_search_not_removable']);
-  }
-  // Save our new search page in the database
-  apachesolr_search_page_save($search_page);
-}
-
-/**
- * Implements hook_block_info().
- */
-function apachesolr_search_block_info() {
-  // Get all of the moreLikeThis blocks that the user has created
-  $blocks = apachesolr_search_load_all_mlt_blocks();
-  foreach ($blocks as $delta => $settings) {
-    $blocks[$delta] += array('info' => t('Apache Solr recommendations: !name', array('!name' => $settings['name'])) , 'cache' => DRUPAL_CACHE_PER_PAGE);
-  }
-  // Add the sort block.
-  $blocks['sort'] = array(
-    'info' => t('Apache Solr Core: Sorting'),
-    'cache' => DRUPAL_NO_CACHE,
-  );
-  return $blocks;
-}
-
-/**
- * Implements hook_block_view().
- */
-function apachesolr_search_block_view($delta = '') {
-  if ($delta == 'sort') {
-    $environments = apachesolr_load_all_environments();
-    foreach ($environments as $env_id => $environment) {
-      if (apachesolr_has_searched($env_id) && !apachesolr_suppress_blocks($env_id) && $delta == 'sort') {
-        $response = NULL;
-        $query = apachesolr_current_query($env_id);
-        if ($query) {
-          // Get the query and response. Without these no blocks make sense.
-          $response = apachesolr_static_response_cache($query->getSearcher());
-        }
-        if (empty($response) || ($response->response->numFound < 2)) {
-          return NULL;
-        }
-
-        $sorts = $query->getAvailableSorts();
-
-        // Get the current sort as an array.
-        $solrsort = $query->getSolrsort();
-
-        $sort_links = array();
-        $path = $query->getPath();
-        $new_query = clone $query;
-        $toggle = array('asc' => 'desc', 'desc' => 'asc');
-        foreach ($sorts as $name => $sort) {
-          $active = $solrsort['#name'] == $name;
-          if ($name == 'score') {
-            $direction = '';
-            $new_direction = 'desc'; // We only sort by descending score.
-          }
-          elseif ($active) {
-            $direction = $toggle[$solrsort['#direction']];
-            $new_direction = $toggle[$solrsort['#direction']];
-          }
-          else {
-            $direction = '';
-            $new_direction = $sort['default'];
-          }
-          $new_query->setSolrsort($name, $new_direction);
-          $sort_links[$name] = array(
-            'text' => $sort['title'],
-            'path' => $path,
-            'options' => array('query' => $new_query->getSolrsortUrlQuery()),
-            'active' => $active,
-            'direction' => $direction,
-          );
-        }
-        foreach ($sort_links as $name => $link) {
-          $themed_links[$name] = theme('apachesolr_sort_link', $link);
-        }
-        return array(
-        'subject' => t('Sort by'),
-          'content' => theme('apachesolr_sort_list', array('items' => $themed_links))
-        );
-      }
-    }
-  }
-  elseif (($node = menu_get_object()) && (!arg(2) || arg(2) == 'view')) {
-    $suggestions = array();
-    // Determine whether the user can view the current node. Probably not necessary.
-    $block = apachesolr_search_mlt_block_load($delta);
-    if ($block && node_access('view', $node)) {
-      // Get our specific environment for the MLT block
-      $env_id = (!empty($block['mlt_env_id'])) ? $block['mlt_env_id'] : '';
-      try {
-        $solr = apachesolr_get_solr($env_id);
-        $context['search_type'] = 'apachesolr_search_mlt';
-        $context['block_id'] = $delta;
-        $docs = apachesolr_search_mlt_suggestions($block, apachesolr_document_id($node->nid), $solr, $context);
-        if (!empty($docs)) {
-          $suggestions['subject'] = check_plain($block['name']);
-          $suggestions['content'] = array(
-            '#theme' => 'apachesolr_search_mlt_recommendation_block',
-            '#docs' => $docs,
-            '#delta' => $delta
-          );
-        }
-      }
-      catch (Exception $e) {
-        watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-      }
-    }
-    return $suggestions;
-  }
-}
-
-/**
- * Implements hook_form_[form_id]_alter().
- */
-function apachesolr_search_form_block_admin_display_form_alter(&$form) {
-  foreach ($form['blocks'] as $key => $block) {
-    if ((strpos($key, "apachesolr_search_mlt-") === 0) && $block['module']['#value'] == 'apachesolr_search') {
-      $form['blocks'][$key]['delete'] = array(
-        '#type' => 'link',
-        '#title' => 'delete',
-        '#href' => 'admin/config/search/apachesolr/search-pages/block/' . $block['delta']['#value'] . '/delete',
-      );
-    }
-  }
-}
-
-/**
- * Implements hook_block_configure().
- */
-function apachesolr_search_block_configure($delta = '') {
-  if ($delta != 'sort') {
-    require_once(drupal_get_path('module', 'apachesolr') . '/apachesolr_search.admin.inc');
-    return apachesolr_search_mlt_block_form($delta);
-  }
-}
-
-/**
- * Implements hook_block_save().
- */
-function apachesolr_search_block_save($delta = '', $edit = array()) {
-  if ($delta != 'sort') {
-    require_once(drupal_get_path('module', 'apachesolr') . '/apachesolr_search.admin.inc');
-    apachesolr_search_mlt_save_block($edit, $delta);
-  }
-}
-
-
-/**
- * Return all the saved search pages
- * @return array $search_pages
- *   Array of all search pages
- */
-function apachesolr_search_load_all_search_pages() {
-  $search_pages = &drupal_static(__FUNCTION__, array());
-
-  if (!empty($search_pages)) {
-    return $search_pages;
-  }
-
-  // If ctools module is enabled, add search pages from code, e.g. from a
-  // feature module.
-  if (module_exists('ctools')) {
-    ctools_include('export');
-    $defaults = ctools_export_load_object('apachesolr_search_page', 'all');
-    foreach ($defaults as $page_id => $default) {
-      $search_pages[$page_id] = (array) $default;
-    }
-  }
-
-  // Get all search_pages and their id
-  $search_pages_db = db_query('SELECT * FROM {apachesolr_search_page}')->fetchAllAssoc('page_id', PDO::FETCH_ASSOC);
-
-  $search_pages = $search_pages + $search_pages_db;
-
-  // Ensure that the core search page uses the default environment. In some
-  // instances, for example when unit testing, this search page isn't defined.
-  if (isset($search_pages['core_search'])) {
-    $search_pages['core_search']['env_id'] = apachesolr_default_environment();
-  }
-
-  // convert settings to an array
-  foreach ($search_pages as $id => $search_page) {
-    if (is_string($search_pages[$id]['settings'])) {
-      $search_pages[$id]['settings'] = unserialize($search_pages[$id]['settings']);
-      // Prevent false outcomes for the following search page
-      $settings = 0;
-    }
-  }
-  return $search_pages;
-}
-
-function apachesolr_search_load_all_mlt_blocks() {
-  $search_blocks = variable_get('apachesolr_search_mlt_blocks', array());
-  return $search_blocks;
-}
-
-function apachesolr_search_mlt_block_load($block_id) {
-  $search_blocks = variable_get('apachesolr_search_mlt_blocks', array());
-  return isset($search_blocks[$block_id]) ? $search_blocks[$block_id] : FALSE;
-}
-
-/**
- * Performs a moreLikeThis query using the settings and retrieves documents.
- *
- * @param $settings
- *   An array of settings.
- * @param $id
- *   The Solr ID of the document for which you want related content.
- *   For a node that is apachesolr_document_id($node->nid)
- * @param $solr
- *   The solr environment you want to query against
- *
- * @return An array of response documents, or NULL
- */
-function apachesolr_search_mlt_suggestions($settings, $id, $solr = NULL, $context = array()) {
-
-  try {
-    $fields = array(
-      'mlt_mintf' => 'mlt.mintf',
-      'mlt_mindf' => 'mlt.mindf',
-      'mlt_minwl' => 'mlt.minwl',
-      'mlt_maxwl' => 'mlt.maxwl',
-      'mlt_maxqt' => 'mlt.maxqt',
-      'mlt_boost' => 'mlt.boost',
-      'mlt_qf' => 'mlt.qf',
-    );
-    $params = array(
-      'q' => 'id:' . $id,
-      'qt' => 'mlt',
-      'fl' => array('entity_id', 'entity_type', 'label', 'path', 'url'),
-      'mlt.fl' => $settings['mlt_fl'],
-      'start' => 0,
-      'rows' => $settings['num_results'],
-    );
-    // We can optionally specify a Solr object.
-    $query = apachesolr_drupal_query('apachesolr_mlt', $params, '', '', $solr, $context);
-
-    foreach ($fields as $form_key => $name) {
-      if (!empty($settings[$form_key])) {
-        $query->addParam($name, $settings[$form_key]);
-      }
-    }
-
-    $type_filters = array();
-    if (is_array($settings['mlt_type_filters']) && !empty($settings['mlt_type_filters'])) {
-      $query->addFilter('bundle', '(' . implode(' OR ', $settings['mlt_type_filters']) . ') ');
-    }
-
-    if ($custom_filters = $settings['mlt_custom_filters']) {
-      // @todo - fix the settings form to take a comma-delimited set of filters.
-      $query->addFilter('', $custom_filters);
-    }
-
-    // This hook allows modules to modify the query object.
-    drupal_alter('apachesolr_query', $query);
-    if ($query->abort_search) {
-      return NULL;
-    }
-
-    $response = $query->search();
-
-    if (isset($response->response->docs)) {
-      return (array) $response->response->docs;
-    }
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-  }
-}
-
-function theme_apachesolr_search_mlt_recommendation_block($vars) {
-  $docs = $vars['docs'];
-  $links = array();
-  foreach ($docs as $result) {
-    // Suitable for single-site mode. Label is already safe.
-    $links[] = l($result->label, $result->path, array('html' => TRUE));
-  }
-  $links = array(
-    '#theme' => 'item_list',
-    '#items' => $links,
-  );
-  return render($links);
-}
-
-/**
- * Implements hook_search_info().
- */
-function apachesolr_search_search_info() {
-  // Load our core search page
-  // This core search page is assumed to always be there. It cannot be deleted.
-  $search_page = apachesolr_search_page_load('core_search');
-
-  // This can happen during install, or if the DB was manually changed.
-  if (empty($search_page)) {
-    $search_page = array();
-    $search_page['page_title'] = 'Site';
-    $search_page['search_path'] = 'search/site';
-  }
-
-  return array(
-    'title' => $search_page['page_title'],
-    'path' => str_replace('search/', '', $search_page['search_path']),
-    'conditions_callback' => variable_get('apachesolr_search_conditions_callback', 'apachesolr_search_conditions'),
-  );
-}
-
-/**
- * Implements hook_search_reset().
- */
-function apachesolr_search_search_reset() {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $env_id = apachesolr_default_environment();
-  apachesolr_index_mark_for_reindex($env_id);
-}
-
-/**
- * Implements hook_search_status().
- */
-function apachesolr_search_search_status() {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $env_id = apachesolr_default_environment();
-  return apachesolr_index_status($env_id);
-}
-
-/**
- * Implements hook_search_execute().
- * @param $keys
- *   The keys that are available after the path that is defined in
- *   hook_search_info
- * @param $conditions
- *   Conditions that are coming from apachesolr_search_conditions
- */
-function apachesolr_search_search_execute($keys = NULL, $conditions = NULL) {
-  $search_page = apachesolr_search_page_load('core_search');
-  $results = apachesolr_search_search_results($keys, $conditions, $search_page);
-  return $results;
-}
-
-/**
- * Implementation of a search_view() conditions callback.
- */
-function apachesolr_search_conditions() {
-  //get default conditions from the core_search
-  $search_page = apachesolr_search_page_load('core_search');
-  $conditions = apachesolr_search_conditions_default($search_page);
-  return $conditions;
-}
-
-/**
- * Implements hook_search_page().
- * @param $results
- *   The results that came from apache solr
- */
-function apachesolr_search_search_page($results) {
-  $search_page = apachesolr_search_page_load('core_search');
-  $build = apachesolr_search_search_page_custom($results, $search_page);
-  return $build;
-}
-
-/**
- * Mimics apachesolr_search_search_page() but is used for custom search pages
- * We prefer to keep them seperate so we are not dependent from core search
- * when someone tries to disable the core search
- * @param $results
- *   The results that came from apache solr
- * @param $build
- *   the build array from where this function was called. Good to append output
- *   to the build array
- * @param $search_page
- *   the search page that is requesting an output
- */
-function apachesolr_search_search_page_custom($results, $search_page, $build = array()) {
-  if (!empty($search_page['settings']['apachesolr_search_spellcheck'])) {
-    // Retrieve suggestion
-    $suggestions = apachesolr_search_get_search_suggestions($search_page['env_id']);
-    if ($search_page && !empty($suggestions)) {
-      $build['suggestions'] = array(
-        '#theme' => 'apachesolr_search_suggestions',
-        '#links' => array(l($suggestions[0], $search_page['search_path'] . '/' . $suggestions[0])),
-      );
-    }
-  }
-  // Retrieve expected results from searching
-  if (!empty($results['apachesolr_search_browse'])) {
-    // Show facet browsing blocks.
-    $build['search_results'] = apachesolr_search_page_browse($results['apachesolr_search_browse'], $search_page['env_id']);
-  }
-  elseif ($results) {
-    $build['search_results'] = array(
-      '#theme' => 'search_results',
-      '#results' => $results,
-      '#module' => 'apachesolr_search',
-      '#search_page' => $search_page,
-    );
-  }
-  else {
-    // Give the user some custom help text.
-    $build['search_results'] = array('#markup' => theme('apachesolr_search_noresults'));
-  }
-
-  // Allows modules to alter the render array before returning.
-  drupal_alter('apachesolr_search_page', $build, $search_page);
-
-  return $build;
-}
-
-/**
- * Executes search depending on the conditions given.
- * See apachesolr_search.pages.inc for another use of this function
- */
-function apachesolr_search_search_results($keys = NULL, $conditions = NULL, $search_page = NULL) {
-  $params = array();
-  $results = array();
-  // Process the search form. Note that if there is $_POST data,
-  // search_form_submit() will cause a redirect to search/[module path]/[keys],
-  // which will get us back to this page callback. In other words, the search
-  // form submits with POST but redirects to GET. This way we can keep
-  // the search query URL clean as a whistle.
-  if (empty($_POST['form_id'])
-      || ($_POST['form_id'] != 'apachesolr_search_custom_page_search_form')
-      && ($_POST['form_id'] != 'search_form')
-      && ($_POST['form_id'] != 'search_block_form') ) {
-    // Check input variables
-    if (empty($search_page)) {
-      $search_page = apachesolr_search_page_load('core_search');
-      // Verify if it actually loaded
-      if (empty($search_page)) {
-        // Something must have been really messed up.
-        apachesolr_failure(t('Solr search'), $keys);
-        return array();
-      }
-    }
-    if (empty($conditions)) {
-      $conditions = apachesolr_search_conditions_default($search_page);
-    }
-
-    // Sort options from the conditions array.
-    // @see apachesolr_search_conditions_default()
-    //   See This condition callback to find out how.
-    $solrsort = isset($conditions['apachesolr_search_sort']) ? $conditions['apachesolr_search_sort'] : '';
-    // What to do when we have an initial empty search
-    $empty_search_behavior = isset($search_page['settings']['apachesolr_search_browse']) ? $search_page['settings']['apachesolr_search_browse'] : '';
-
-    try {
-
-      $solr = apachesolr_get_solr($search_page['env_id']);
-      // Default parameters
-      $params['fq'] = isset($conditions['fq']) ? $conditions['fq'] : array();
-      $params['rows'] = $search_page['settings']['apachesolr_search_per_page'];
-
-      if (empty($search_page['settings']['apachesolr_search_spellcheck'])) {
-        // Spellcheck needs to have a string as false/true
-        $params['spellcheck'] = 'false';
-      }
-      else {
-        $params['spellcheck'] = 'true';
-      }
-
-      // Empty text Behavior
-      if (!$keys && !isset($conditions['f']) && ($empty_search_behavior == 'browse' || $empty_search_behavior == 'blocks')) {
-        // Pass empty search behavior as string on to apachesolr_search_search_page()
-        // Hardcoded apachesolr name since we rely on this for the facets
-        $context['page_id'] = $search_page['page_id'];
-        $context['search_type'] = 'apachesolr_search_browse';
-        apachesolr_search_run_empty('apachesolr', $params, $search_page['search_path'], $solr, $context);
-        $results['apachesolr_search_browse'] = $empty_search_behavior;
-
-        if ($empty_search_behavior == 'browse') {
-          // Hide sidebar blocks for content-area browsing instead.
-          apachesolr_suppress_blocks($search_page['env_id'], TRUE);
-        }
-      }
-      // Full text behavior. Triggers with a text search or a facet
-      elseif (($keys || isset($conditions['f'])) || ($empty_search_behavior == 'results')) {
-        // Don't allow local params to pass through to EDismax from the url.
-        // We also remove any remaining leading {! since that causes a parse
-        // error in Solr.
-        $keys = preg_replace('/^(?:{![^}]*}\s*)*(?:{!\s*)*/',' ', $keys);
-        $params['q'] = $keys;
-        // Hardcoded apachesolr name since we rely on this for the facets
-        $context['page_id'] = $search_page['page_id'];
-        $context['search_type'] = 'apachesolr_search_results';
-        $results = apachesolr_search_run('apachesolr', $params, $solrsort, $search_page['search_path'], pager_find_page(), $solr, $context);
-      }
-    }
-    catch (Exception $e) {
-      watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-      apachesolr_failure(t('Solr search'), $keys);
-    }
-  }
-  return $results;
-}
-
-function apachesolr_search_conditions_default($search_page) {
-  $conditions = array();
-  $search_type = isset($search_page['settings']['apachesolr_search_search_type']) ? $search_page['settings']['apachesolr_search_search_type'] : '';
-  $allow_user_input = isset($search_page['settings']['apachesolr_search_allow_user_input']) ? $search_page['settings']['apachesolr_search_allow_user_input'] : FALSE;
-  $path_replacer = isset($search_page['settings']['apachesolr_search_path_replacer']) ? $search_page['settings']['apachesolr_search_path_replacer'] : '';
-  $set_custom_filter = isset($search_page['settings']['apachesolr_search_custom_enable']) ? $search_page['settings']['apachesolr_search_custom_enable'] : '';
-  $search_page_fq = !empty($search_page['settings']['fq']) ? $search_page['settings']['fq'] : '';
-
-  $conditions['fq'] = array();
-  // We only allow this to happen if the search page explicitely allows it
-  if ($allow_user_input) {
-    // Get the filterQueries from the url
-    if (!empty($_GET['fq']) && is_array($_GET['fq'])) {
-      // Reset the array so that we have one level lower to go through
-      $conditions['fq'] = $_GET['fq'];
-    }
-    foreach($conditions['fq'] as $condition_id => $condition) {
-      // If the user input does not pass our validation we do not allow
-      // it to query solr
-      $test_query = apachesolr_drupal_subquery('Test');
-      if (!$test_query->validFilterValue($condition)) {
-        unset($conditions['fq'][$condition_id]);
-      }
-    }
-  }
-
-  // Custom filters added in search pages
-  if (!empty($search_page_fq) && !empty($set_custom_filter)) {
-    if (!empty($path_replacer)) {
-      // If the manual filter has a % in it, replace it with $value
-      $conditions['fq'][] = str_replace('%', $path_replacer, $search_page_fq);
-    }
-    else {
-      // Put the complete filter in the filter query
-      $conditions['fq'][] = $search_page_fq;
-    }
-  }
-
-  // Search type filters (such as taxonomy)
-  if (!empty($path_replacer) && !empty($search_type) && $search_type != 'custom') {
-    $conditions['fq'][] = $search_type . ':' . $path_replacer;
-  }
-
-  // We may also have filters added by facet API module. The 'f'
-  // is determined by variable FacetapiUrlProcessor::$filterKey. Hard
-  // coded here to avoid extra class loading.
-  if (!empty($_GET['f']) && is_array($_GET['f'])) {
-    if (module_exists('facetapi')) {
-      $conditions['f'] = $_GET['f'];
-    }
-  }
-  // Add the sort from the page to our conditions
-  $sort = isset($_GET['solrsort']) ? $_GET['solrsort'] : '';
-  $conditions['apachesolr_search_sort'] = $sort;
-  return $conditions;
-}
-
-/**
- * Handle browse results for empty searches.
- */
-function apachesolr_search_page_browse($empty_search_behavior, $env_id) {
-  $build = array();
-  // Switch in case we come up with new flags.
-  switch ($empty_search_behavior) {
-    case 'browse':
-      if (module_exists('facetapi') && $query = apachesolr_current_query($env_id)) {
-        module_load_include('inc', 'facetapi', 'facetapi.block');
-        // Get facet render elements.
-        $searcher = $query->getSearcher();
-        $elements = facetapi_build_realm($searcher, 'block');
-        $build = array();
-
-        foreach (element_children($elements) as $key) {
-          $delta = "facetapi_{$key}";
-          // @todo: order/filter these pseudo-blocks according to block.module weight, visibility (see 7.x-1beta4)
-          $block = new stdClass();
-          $block->visibility = TRUE;
-          $block->enabled = TRUE;
-          $block->module = 'facetapi';
-          $block->subject = theme('facetapi_title', array('title' => $elements[$key]['#title']));
-          $build[$delta] = $elements[$key];
-          $block->region = NULL;
-          $block->delta = 'apachesolr-' . $key;
-          // @todo: the final themed block's div id attribute does not coincide with "real" block's id (see facetapi_get_delta_map())
-          $build[$delta]['#block'] = $block;
-          $build[$delta]['#theme_wrappers'][] = 'block';
-          $build['#sorted'] = TRUE;
-        }
-        $build['#theme_wrappers'][] = 'apachesolr_search_browse_blocks';
-      }
-      break;
-  }
-  return $build;
-}
-
-/**
- * Shows a groups of blocks for starting a search from a filter.
- */
-function theme_apachesolr_search_browse_blocks($vars) {
-  $result = '';
-  if ($vars['content']['#children']) {
-    $result .= "<div class='apachesolr-browse-blocks'>\n<h2>" . t('Browse available categories') . "</h2>\n";
-    $result .= '<p>' . t('Pick a category to launch a search.') . "</p>\n";
-    $result .= $vars['content']['#children'] . "\n</div>\n";
-  }
-
-  return $result;
-}
-
-/**
- * Execute a search with zero results rows so as to populate facets.
- */
-function apachesolr_search_run_empty($name, array $params = array(), $base_path = '', $solr = NULL, $context = array()) {
-  $query = apachesolr_drupal_query($name, $params, '', $base_path, $solr, $context);
-  $query->addParam('rows', '0');
-  $solr_id = $query->solr('getId');
-  list($final_query, $response) = apachesolr_do_query($query);
-  apachesolr_has_searched($solr_id, TRUE);
-}
-
-/**
- * Execute a search results based on keyword, filter, and sort strings.
- *
- * @param $name
- * @param $params
- *   Array - 'q' is the keywords to search.
- * @param $solrsort
- * @param $base_path
- *   For constructing filter and sort links. Leave empty unless the links need to point somewhere
- *   other than the base path of the current request.
- * @param integer $page
- *   For pagination.
- * @param DrupalApacheSolrServiceInterface $solr
- *   The solr server resource to execute the search on.
- *
- * @return stdClass $response
- *
- * @throws Exception
- */
-function apachesolr_search_run($name, array $params = array(), $solrsort = '', $base_path = '', $page = 0, DrupalApacheSolrServiceInterface $solr = NULL, $context = array()) {
-  // Merge the default params into the params sent in.
-  $params += apachesolr_search_basic_params();
-  // This is the object that knows about the query coming from the user.
-  $query = apachesolr_drupal_query($name, $params, $solrsort, $base_path, $solr, $context);
-
-  if ($query->getParam('q')) {
-    apachesolr_search_add_spellcheck_params($query);
-  }
-
-  // Add the paging parameters
-  $query->page = $page;
-
-  apachesolr_search_add_boost_params($query);
-  if ($query->getParam('q')) {
-    apachesolr_search_highlighting_params($query);
-    if (!$query->getParam('hl.fl')) {
-      $qf = array();
-      foreach ($query->getParam('qf') as $field) {
-        // Truncate off any boost so we get the simple field name.
-        $parts = explode('^', $field, 2);
-        $qf[$parts[0]] = TRUE;
-      }
-      foreach (array('content', 'ts_comments') as $field) {
-        if (isset($qf[$field])) {
-          $query->addParam('hl.fl', $field);
-        }
-      }
-    }
-  }
-  else {
-    // No highlighting, use the teaser as a snippet.
-    $query->addParam('fl', 'teaser');
-  }
-
-  list($final_query, $response) = apachesolr_do_query($query);
-  $env_id = $query->solr('getId');
-  apachesolr_has_searched($env_id, TRUE);
-  $process_response_callback = apachesolr_environment_variable_get($env_id, 'process_response_callback', 'apachesolr_search_process_response');
-  if (function_exists($process_response_callback)) {
-    return call_user_func($process_response_callback, $response, $final_query);
-  }
-  else {
-    return apachesolr_search_process_response($response, $final_query);
-  }
-}
-
-function apachesolr_search_basic_params(DrupalSolrQueryInterface $query = NULL) {
-  $params = array(
-    'fl' => array(
-        'id',
-        'entity_id',
-        'entity_type',
-        'bundle',
-        'bundle_name',
-        'label',
-        'ss_language',
-        'is_comment_count',
-        'ds_created',
-        'ds_changed',
-        'score',
-        'path',
-        'url',
-        'is_uid',
-        'tos_name',
-      ),
-    'mm' => 1,
-    'rows' => 10,
-    'pf' => 'content^2.0',
-    'ps' => 15,
-    'hl' => 'true',
-    'hl.fl' => 'content',
-    'hl.snippets' => 3,
-    'hl.mergeContigious' => 'true',
-    'f.content.hl.alternateField' => 'teaser',
-    'f.content.hl.maxAlternateFieldLength' => 256,
-  );
-  if ($query) {
-    $query->addParams($params);
-  }
-  return $params;
-}
-
-/**
- * Add highlighting settings to the search params.
- *
- * These settings are set in solrconfig.xml.
- * See the defaults there.
- * If you wish to override them, you can via settings.php or drush
- */
-function apachesolr_search_highlighting_params(DrupalSolrQueryInterface $query = NULL) {
-  $params['hl'] = variable_get('apachesolr_hl_active', NULL);
-  $params['hl.fragsize']= variable_get('apachesolr_hl_textsnippetlength', NULL);
-  $params['hl.simple.pre'] = variable_get('apachesolr_hl_pretag', NULL);
-  $params['hl.simple.post'] = variable_get('apachesolr_hl_posttag', NULL);
-  $params['hl.snippets'] = variable_get('apachesolr_hl_numsnippets', NULL);
-  // This should be an array of possible field names.
-  $params['hl.fl'] = variable_get('apachesolr_hl_fieldtohighlight', NULL);
-  $params = array_filter($params);
-  if ($query) {
-    $query->addParams($params);
-  }
-  return $params;
-}
-
-function apachesolr_search_add_spellcheck_params(DrupalSolrQueryInterface $query) {
-  $params = array();
-
-  // Add new parameter to the search request
-  $params['spellcheck.q'] = $query->getParam('q');
-  $params['spellcheck'] = 'true';
-  $query->addParams($params);
-}
-
-function apachesolr_search_add_boost_params(DrupalSolrQueryInterface $query) {
-  $env_id = $query->solr('getId');
-  $params = array();
-
-  $defaults = array(
-    'content' => '1.0',
-    'ts_comments' => '0.5',
-    'tos_content_extra' => '0.1',
-    'label' => '5.0',
-    'tos_name' => '3.0',
-    'taxonomy_names' => '2.0',
-    'tags_h1' => '5.0',
-    'tags_h2_h3' => '3.0',
-    'tags_h4_h5_h6' => '2.0',
-    'tags_inline' => '1.0',
-    'tags_a' => '0',
-  );
-  $qf = apachesolr_environment_variable_get($env_id, 'field_bias', $defaults);
-  $fields = $query->solr('getFields');
-  if ($qf && $fields) {
-    foreach ($fields as $field_name => $field) {
-      if (!empty($qf[$field_name])) {
-        $prefix = substr($field_name, 0, 3);
-        if ($field_name == 'content' || $prefix == 'ts_' || $prefix == 'tm_') {
-          // Normed fields tend to have a lower score. Multiplying by 40 is
-          // a rough attempt to bring the score in line with fields that are
-          // not normed.
-          $qf[$field_name] *= 40.0;
-        }
-        $params['qf'][$field_name] = $field_name . '^' . $qf[$field_name];
-      }
-    }
-  }
-
-  $date_settings = apachesolr_environment_variable_get($env_id, 'apachesolr_search_date_boost', '0:0');
-  $comment_settings = apachesolr_environment_variable_get($env_id, 'apachesolr_search_comment_boost', '0:0');
-  $changed_settings = apachesolr_environment_variable_get($env_id, 'apachesolr_search_changed_boost', '0:0');
-  $sticky_boost = apachesolr_environment_variable_get($env_id, 'apachesolr_search_sticky_boost', '0');
-  $promote_boost = apachesolr_environment_variable_get($env_id, 'apachesolr_search_promote_boost', '0');
-  // For the boost functions for the created timestamp, etc we use the
-  // standard date-biasing function, as suggested (but steeper) at
-  // http://wiki.apache.org/solr/SolrRelevancyFAQ#How_can_I_boost_the_score_of_newer_documents
-  // ms() returns the time difference in ms between now and the date
-  // The function is thus: $ab/(ms(NOW,date)*$steepness + $ab).
-  list($date_steepness, $date_boost) = explode(':', $date_settings);
-  if ($date_boost) {
-    $ab = 4 / $date_steepness;
-    $params['bf'][] = "recip(ms(NOW,ds_created),3.16e-11,$ab,$ab)^$date_boost";
-  }
-  // Boost on comment count.
-  list($comment_steepness, $comment_boost) = explode(':', $comment_settings);
-  if ($comment_boost) {
-    $params['bf'][] = "recip(div(1,max(is_comment_count,1)),$comment_steepness,10,10)^$comment_boost";
-  }
-  // Boost for a more recent comment or node edit.
-  list($changed_steepness, $changed_boost) = explode(':', $changed_settings);
-  if ($changed_boost) {
-    $ab = 4 / $changed_steepness;
-    $params['bf'][] = "recip(ms(NOW,ds_changed),3.16e-11,$ab,$ab)^$changed_boost";
-  }
-  // Boost for nodes with sticky bit set.
-  if ($sticky_boost) {
-    $params['bq'][] = "bs_sticky:true^$sticky_boost";
-  }
-  // Boost for nodes with promoted bit set.
-  if ($promote_boost) {
-    $params['bq'][] = "bs_promote:true^$promote_boost";
-  }
-  // Modify the weight of results according to the node types.
-  $type_boosts = apachesolr_environment_variable_get($env_id, 'apachesolr_search_type_boosts', array());
-  if (!empty($type_boosts)) {
-    foreach ($type_boosts as $type => $boost) {
-      // Only add a param if the boost is != 0 (i.e. > "Normal").
-      if ($boost) {
-        $params['bq'][] = "bundle:$type^$boost";
-      }
-    }
-  }
-  $query->addParams($params);
-}
-
-function apachesolr_search_process_response($response, DrupalSolrQueryInterface $query) {
-  $results = array();
-  // We default to getting snippets from the body content and comments.
-  $hl_fl = $query->getParam('hl.fl');
-  if (!$hl_fl) {
-    $hl_fl = array('content', 'ts_comments');
-  }
-  $total = $response->response->numFound;
-  pager_default_initialize($total, $query->getParam('rows'));
-  if ($total > 0) {
-    $fl = $query->getParam('fl');
-    $languages = language_list();
-    // 'id' and 'entity_type' are the only required fields in the schema, and
-    // 'score' is generated by solr.
-    foreach ($response->response->docs as $doc) {
-      $extra = array();
-      // Allow modules to alter each document and its extra information.
-      drupal_alter('apachesolr_search_result', $doc, $extra, $query);
-
-      // Start with an empty snippets array.
-      $snippets = array();
-
-      // Find the nicest available snippet.
-      foreach ($hl_fl as $hl_param) {
-        if (isset($response->highlighting->{$doc->id}->$hl_param)) {
-          // Merge arrays preserving keys.
-          foreach ($response->highlighting->{$doc->id}->$hl_param as $value) {
-            $snippets[$hl_param][] = $value;
-          }
-        }
-      }
-      // If there's no snippet at this point, add the teaser.
-      if (!$snippets) {
-        if (isset($doc->teaser)) {
-          $snippets[] = truncate_utf8($doc->teaser, 256, TRUE);
-        }
-      }
-
-      $hook = 'apachesolr_search_snippets__' . $doc->entity_type;
-      $bundle = !empty($doc->bundle) ? $doc->bundle : NULL;
-      if ($bundle) {
-        $hook .= '__' . $bundle;
-      }
-      $snippet = theme($hook, array('doc' => $doc, 'snippets' => $snippets));
-
-      if (!isset($doc->content)) {
-        $doc->content = $snippet;
-      }
-
-      // Normalize common dates so that we can use Drupal's normal date and
-      // time handling.
-      if (isset($doc->ds_created)) {
-        $doc->created = strtotime($doc->ds_created);
-      }
-      else {
-        $doc->created = NULL;
-      }
-
-      if (isset($doc->ds_changed)) {
-        $doc->changed = strtotime($doc->ds_changed);
-      }
-      else {
-        $doc->changed = NULL;
-      }
-
-      if (isset($doc->tos_name)) {
-        $doc->name = $doc->tos_name;
-      }
-      else {
-        $doc->name = NULL;
-      }
-
-      // Set all expected fields from fl to NULL if they are missing so
-      // as to prevent Notice: Undefined property.
-      $fl = array_merge($fl, array('path', 'label', 'score'));
-      foreach ($fl as $field) {
-        if (!isset($doc->{$field})) {
-          $doc->{$field} = NULL;
-        }
-      }
-
-      $fields = (array) $doc;
-      // Define our url options. They depend on the document language.
-      $url_options = array('absolute' => TRUE);
-      if (isset($doc->ss_language) && isset($languages[$doc->ss_language])) {
-        $url_options['language'] = $languages[$doc->ss_language];
-      }
-      $result = array(
-        // link is a required field, so handle it centrally.
-        'link' => url($doc->path, $url_options),
-        // template_preprocess_search_result() runs check_plain() on the title
-        // again.  Decode to correct the display.
-        'title' => htmlspecialchars_decode($doc->label, ENT_QUOTES),
-        // These values are not required by the search module but are provided
-        // to give entity callbacks and themers more flexibility.
-        'score' => $doc->score,
-        'snippets' => $snippets,
-        'snippet' => $snippet,
-        'fields' => $fields,
-        'entity_type' => $doc->entity_type,
-        'bundle' => $bundle,
-      );
-
-      // Call entity-type-specific callbacks for extra handling.
-      $result_callback = apachesolr_entity_get_callback($doc->entity_type, 'result callback', $bundle);
-      if (is_callable($result_callback)) {
-        $result_callback($doc, $result, $extra);
-      }
-
-      $result['extra'] = $extra;
-
-      $results[] = $result;
-    }
-  }
-  // Hook to allow modifications of the retrieved results
-  foreach (module_implements('apachesolr_process_results') as $module) {
-    $process_results_callback = $module . '_apachesolr_process_results';
-    $process_results_callback($results, $query);
-  }
-  return $results;
-}
-
-/**
- * Retrieve all of the suggestions that were given after a certain search
- * @return array()
- */
-function apachesolr_search_get_search_suggestions($env_id) {
-  $suggestions_output = array();
-  if (apachesolr_has_searched($env_id)) {
-    $query = apachesolr_current_query($env_id);
-    $keyword = $query->getParam('q');
-    $searcher = $query->getSearcher();
-    $response = apachesolr_static_response_cache($searcher);
-    // Get spellchecker suggestions into an array.
-    if (!empty($response->spellcheck->suggestions)) {
-      $suggestions = get_object_vars($response->spellcheck->suggestions);
-      // allow the suggestions to be altered before processing
-      drupal_alter('apachesolr_suggestions', $suggestions, $env_id);
-
-      if ($suggestions) {
-        $replacements = array();
-        // Get the original query and retrieve all words with suggestions.
-        foreach ($suggestions as $word => $value) {
-          $suggestion = $value->suggestion;
-          // We need to check if it's an object as setting the spellcheck.extendedResults query parameter to true makes words
-          // objects instead of strings.
-          $replacements[$word] = is_object($suggestion[0]) ? $suggestion[0]->word : $suggestion[0];
-        }
-        // Replace the keyword with the suggested keyword.
-        $suggested_keyword = strtr($keyword, $replacements);
-
-        // Show only if suggestion is different than current query.
-        if ($keyword != $suggested_keyword) {
-          $suggestions_output[] = $suggested_keyword;
-        }
-      }
-    }
-  }
-  return $suggestions_output;
-}
-
-/**
- * Implements hook_apachesolr_entity_info_alter().
- */
-function apachesolr_search_apachesolr_entity_info_alter(&$entity_info) {
-  // First set defaults so that we don't need to worry about NULL keys.
-  foreach (array_keys($entity_info) as $type) {
-    $entity_info[$type] += array('result callback' => '');
-  }
-  // Now set those values that we know.  Other modules can do so
-  // for their own entities if they want.
-  $entity_info['node']['result callback'] = 'apachesolr_search_node_result';
-}
-
-/**
- * Callback function for node search results.
- *
- * @param stdClass $doc
- *   The result document from Apache Solr.
- * @param array $result
- *   The result array for this record to which to add.
- */
-function apachesolr_search_node_result($doc, &$result, &$extra) {
-  $doc->uid = $doc->is_uid;
-  $result += array(
-    'type' => node_type_get_name($doc->bundle),
-    'user' => theme('username', array('account' => $doc)),
-    'date' => isset($doc->changed) ? $doc->changed : 0,
-    'node' => $doc,
-    'uid' => $doc->is_uid,
-  );
-
-  if (isset($doc->is_comment_count)) {
-    $extra['comments'] = format_plural($doc->is_comment_count, '1 comment', '@count comments');
-  }
-}
-
-/**
- * Returns whether a search page exists.
- */
-function apachesolr_search_page_exists($search_page_id) {
-  return db_query('SELECT 1 FROM {apachesolr_search_page} WHERE page_id = :page_id', array(':page_id' => $search_page_id))->fetchField();
-}
-
-/**
- * Template preprocess for apachesolr search results.
- *
- * We need to add additional entity/bundle-based templates
- */
-function apachesolr_search_preprocess_search_result(&$variables) {
-  // If this search result is coming from our module, we want to improve the
-  // template potential to make life easier for themers.
-  if ($variables['module'] == 'apachesolr_search') {
-    $result = $variables['result'];
-    if (!empty($result['entity_type'])) {
-      $variables['theme_hook_suggestions'][] = 'search_result__' . $variables['module'] . '__' . $result['entity_type'];
-      if (!empty($result['bundle'])) {
-        $variables['theme_hook_suggestions'][] = 'search_result__' . $variables['module'] . '__' . $result['entity_type'] . '__' . $result['bundle'];
-      }
-    }
-  }
-}
-
-function apachesolr_search_preprocess_search_results(&$variables) {
-  // Initialize variables
-  $env_id = NULL;
-
-  // If this is a solr search, expose more data to themes to play with.
-  if ($variables['module'] == 'apachesolr_search') {
-    // Fetch our current query
-    if (!empty($variables['search_page']['env_id'])) {
-      $env_id = $variables['search_page']['env_id'];
-    }
-    $query = apachesolr_current_query($env_id);
-
-    if ($query) {
-      $variables['query'] = $query;
-      $variables['response'] = apachesolr_static_response_cache($query->getSearcher());
-    }
-    if (empty($variables['response'])) {
-      $variables['description'] = '';
-      return NULL;
-    }
-    $total = $variables['response']->response->numFound;
-    $params = $variables['query']->getParams();
-
-    $variables['description'] = t('Showing items @start through @end of @total.', array(
-      '@start' => $params['start'] + 1,
-      '@end' => $params['start'] + $params['rows'] - 1,
-      '@total' => $total,
-    ));
-    // Redefine the pager if it was missing
-    pager_default_initialize($total, $params['rows']);
-    $variables['pager'] = theme('pager', array('tags' => NULL));
-
-    // Add template hints for environments
-    if (!empty($env_id)) {
-      $variables['theme_hook_suggestions'][] = 'search_results__' . $variables['module'] . '__' . $env_id;
-      // Add template hints for search pages
-      if (!empty($variables['search_page']['page_id'])) {
-        $variables['theme_hook_suggestions'][] = 'search_results__' . $variables['module'] . '__' . $variables['search_page']['page_id'];
-        // Add template hints for both
-        $variables['theme_hook_suggestions'][] = 'search_results__' . $variables['module'] . '__' . $env_id . '__' . $variables['search_page']['page_id'];
-      }
-    }
-  }
-}
-
-/**
- * Implements hook_apachesolr_environment_delete().
- */
-function apachesolr_search_apachesolr_environment_delete($server) {
-  db_update('apachesolr_search_page')
-    ->fields(array(
-      'env_id' => '',
-    ))
-    ->condition('env_id', $server['env_id'])
-    ->execute();
-  apachesolr_environment_variable_del($server['env_id'], 'apachesolr_search_show_facets');
-  apachesolr_environment_variable_del($server['env_id'], 'apachesolr_search_facet_pages');
-  menu_rebuild();
-}
-
-function apachesolr_search_form_search_block_form_alter(&$form, $form_state) {
-  if (variable_get('search_default_module') == 'apachesolr_search') {
-    $form['#submit'][] = 'apachesolr_search_form_search_submit';
-  }
-}
-
-/**
- * Default theme function for spelling suggestions.
- */
-function theme_apachesolr_search_suggestions($variables) {
-  $output = '<div class="spelling-suggestions">';
-  $output .= '<dl class="form-item"><dt><strong>' . t('Did you mean') . '</strong></dt>';
-  foreach ((array) $variables['links'] as $link) {
-    $output .= '<dd>' . $link . '</dd>';
-  }
-  $output .= '</dl></div>';
-  return $output;
-}
-
-/**
- * Added form submit function to retain filters.
- *
- * @see apachesolr_search_form_search_form_alter()
- */
-function apachesolr_search_form_search_submit($form, &$form_state) {
-  $fv = $form_state['values'];
-  // Replace keys with their rawurlencoded value
-  if (isset($fv['search_block_form'])) {
-    $raw_keys = str_replace("/","%2f",$fv['search_block_form']);
-    $form_state['redirect'] = str_replace($fv['search_block_form'], $raw_keys, $form_state['redirect']);
-  }
-}
-
-/**
- * Implements hook_form_[form_id]_alter().
- *
- * Rebuild (empty) the spellcheck dictionary when the index is deleted..
- */
-function apachesolr_search_form_apachesolr_delete_index_confirm_alter(&$form, $form_state) {
-  $form['submit']['#submit'][] = 'apachesolr_search_build_spellcheck';
-}
-
-/**
- * submit function for the delete_index form.
- *
- */
-function apachesolr_search_build_spellcheck($form, &$form_state) {
-  try {
-    $solr = apachesolr_get_solr();
-    $params['spellcheck'] = 'true';
-    $params['spellcheck.build'] = 'true';
-    $response = $solr->search('solr', 0, 0, $params);
-  }
-  catch (Exception $e) {
-    watchdog('Apache Solr', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_ERROR);
-  }
-}
-
-/**
- * Implements hook_form_[form_id]_alter().
- *
- * Adds settings to show facet blocks on non-search pages.
- */
-function apachesolr_search_form_facetapi_realm_settings_form_alter(&$form, &$form_state) {
-  if ('apachesolr' == $form['#facetapi']['adapter']->getId() && 'block' == $form['#facetapi']['realm']['name']) {
-    // Gets the environment ID from the searcher, stores in #facetapi property.
-    $env_id = ltrim(strstr($form['#facetapi']['adapter']->getSearcher(), '@'), '@');
-
-    $show_facets = apachesolr_environment_variable_get($env_id, 'apachesolr_search_show_facets', 0);
-    $facet_pages = apachesolr_environment_variable_get($env_id, 'apachesolr_search_facet_pages', '');
-
-    $form['#facetapi']['env_id'] = $env_id;
-
-    $form['apachesolr_search_show_facets'] = array(
-      '#type' => 'checkbox',
-      '#title' => t('Show facets on non-search pages.'),
-      '#default_value' => $show_facets,
-      '#weight' => '-10',
-    );
-
-    $form['apachesolr_search_facet_pages'] = array(
-      '#title' => t('Non-search paths'),
-      '#type' => 'textarea',
-      '#default_value' => $facet_pages,
-      '#weight' => '-10',
-      '#dependency' => array(
-        'edit-apachesolr-search-show-facets' => array(1),
-      ),
-    );
-
-    $form['#submit'][] = 'apachesolr_search_facetapi_realm_settings_form_submit';
-  }
-}
-
-/**
- * Form submission handler for facetapi_realm_settings_form().
- */
-function apachesolr_search_facetapi_realm_settings_form_submit(&$form, &$form_state) {
-  $env_id = $form['#facetapi']['env_id'];
-
-  // Adds the settings to the array keyed by environment ID, saves variables.
-  $show_facets = $form_state['values']['apachesolr_search_show_facets'];
-  $facet_pages = $form_state['values']['apachesolr_search_facet_pages'];
-  if ($show_facets) {
-    apachesolr_environment_variable_set($env_id, 'apachesolr_search_show_facets', $show_facets);
-  }
-  else {
-    // Due to performance reasons, we delete it from the vars so that our init
-    // process can react on environments that hae it set and not unset.
-    // See apachesolr_search_init().
-    apachesolr_environment_variable_del($env_id, 'apachesolr_search_show_facets');
-  }
-  apachesolr_environment_variable_set($env_id, 'apachesolr_search_facet_pages', $facet_pages);
-}
-
-/**
- * Implements hook_context_plugins()
- */
-function apachesolr_search_context_plugins() {
-  $plugins = array();
-  $plugins['apachesolr_context_page_condition'] = array(
-    'handler' => array(
-      'path' => drupal_get_path('module', 'apachesolr') .'/plugins/context',
-      'file' => 'apachesolr_context_page_condition.inc',
-      'class' => 'apachesolr_context_page_condition',
-      'parent' => 'context_condition',
-    ),
-  );
-  return $plugins;
-}
-
-/**
- * Implements hook_context_registry().
- */
-function apachesolr_search_context_registry() {
-  return array(
-    'conditions' => array(
-      'apachesolr_page' => array(
-        'title' => t('Apachesolr search page'),
-        'plugin' => 'apachesolr_context_page_condition',
-      ),
-    ),
-  );
-}
-
-/**
- * Implements hook_theme().
- */
-function apachesolr_search_theme() {
-  return array(
-    /**
-     * Shows the facets in blocks in the search result area
-     */
-    'apachesolr_search_browse_blocks' => array(
-      'render element' => 'content',
-    ),
-    /**
-     * Shows the search snippet
-     */
-    'apachesolr_search_snippets' => array(
-      'variables' => array('doc' => NULL, 'snippets' => array()),
-    ),
-    /**
-     * Shows a message when the search does not return any result
-     */
-    'apachesolr_search_noresults' => array(
-      'variables' => array(),
-    ),
-    /**
-     * Shows a list of suggestions
-     */
-    'apachesolr_search_suggestions' => array(
-      'variables' => array('links' => NULL),
-    ),
-    /**
-     * Shows a list of results (docs) in content recommendation block
-     */
-    'apachesolr_search_mlt_recommendation_block' => array(
-      'variables' => array('docs' => NULL, 'delta' => NULL),
-    ),
-  );
-}
-
-/**
- * Implements hook_theme_registry_alter().
- */
-function apachesolr_search_theme_registry_alter(&$theme_registry) {
-  if (isset($theme_registry['search_results'])) {
-    $theme_registry['search_results']['variables']['search_page'] = NULL;
-  }
-}
-
-/**
- * Preprocess function for theme_apachesolr_search_snippets().
- */
-function apachesolr_search_preprocess_apachesolr_search_snippets(&$vars) {
-  // Flatten the multidimensional array of snippets into a one-dimensional,
-  // ordered array.
-  $vars['flattened_snippets'] = array();
-  $snippets = $vars['snippets'];
-  if (is_array($snippets)) {
-    // Prioritize the 'content' and 'teaser' keys if they are present.
-    foreach (array('content', 'teaser') as $key) {
-      if (isset($snippets[$key])) {
-        $vars['flattened_snippets'] = array_merge($vars['flattened_snippets'], $snippets[$key]);
-        unset($snippets[$key]);
-      }
-    }
-    // Add any remaining snippets from the array. Each snippet can either be a
-    // string or an array itself; see apachesolr_search_process_response().
-    foreach ($snippets as $snippet) {
-      $vars['flattened_snippets'] = array_merge($vars['flattened_snippets'], is_array($snippet) ? $snippet : array($snippet));
-    }
-  }
-
-  // Ensure unique search snippets.
-  $vars['flattened_snippets'] = array_unique($vars['flattened_snippets']);
-}
-
-/**
- * Theme the highlighted snippet text for a search entry.
- *
- * @param array $vars
- *
- */
-function theme_apachesolr_search_snippets($vars) {
-  return implode(' ... ', $vars['flattened_snippets']) . ' ...';
-}
-
-/**
- * Brief message to display when no results match the query.
- *
- * @see search_help()
- */
-function theme_apachesolr_search_noresults() {
-  return t('<ul>
-<li>Check if your spelling is correct, or try removing filters.</li>
-<li>Remove quotes around phrases to match each word individually: <em>"blue drop"</em> will match less than <em>blue drop</em>.</li>
-<li>You can require or exclude terms using + and -: <em>big +blue drop</em> will require a match on <em>blue</em> while <em>big blue -drop</em> will exclude results that contain <em>drop</em>.</li>
-</ul>');
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.pages.inc b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.pages.inc
deleted file mode 100644
index 85b3e318bc3c8f5e22a8f77e86a903c9f6c0f9a4..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.pages.inc
+++ /dev/null
@@ -1,132 +0,0 @@
-<?php
-
-/**
- * @file
- *   Provides the page callback for user defined search pages.
- */
-
-/**
- * Returns search results on user defined search pages.
- */
-function apachesolr_search_custom_page($page_id, $keys = '', $path_replacer = NULL) {
-  $search_page = apachesolr_search_page_load($page_id);
-  if (empty($search_page)) {
-    drupal_set_message(t('This search page cannot be found'), 'error');
-    return drupal_not_found();
-  }
-  // Activate the page context, if the module is enabled.
-  if ((module_exists('context')) && ($plugin = context_get_plugin('condition', 'apachesolr_page'))) {
-    $plugin->execute($search_page);
-  }
-  // Add our replacement value in the conditions array
-  if (!empty($path_replacer)) {
-    $search_page['settings']['apachesolr_search_path_replacer'] = $path_replacer;
-  }
-  // Replace dynamic path with current path
-  $search_page['search_path'] = str_replace('%', $path_replacer, $search_page['search_path']);
-  // Retrieve the conditions that apply to this page
-  $conditions = apachesolr_search_conditions_default($search_page);
-  // Process our keys so they are clean
-  $keys = rawurldecode($keys);
-  // Initiate our build array
-  $build = array();
-  // Add a custom search form if required
-  if (!empty($search_page['settings']['apachesolr_search_search_box'])) {
-    // Adds the search form to the page.
-    $build['search_form'] = drupal_get_form('apachesolr_search_custom_page_search_form', $search_page, $keys);
-  }
-  // Retrieve the results of the search
-  $results = apachesolr_search_search_results($keys, $conditions, $search_page);
-  // Build our page and allow modification.
-  $build_results = apachesolr_search_search_page_custom($results, $search_page, $build);
-  return $build_results;
-}
-
-/**
- * Search for placed on user defined search pages.
- */
-function apachesolr_search_custom_page_search_form($form, &$form_state, $search_page, $keys = '') {
-  // Loads the core Search CSS file, use the core search module's classes.
-  drupal_add_css(drupal_get_path('module', 'search') . '/search.css');
-
-  $form = array();
-  $form['#id'] = 'search-form';
-  $form['#attributes']['class'][] = 'search-form';
-  $form['#search_page'] = $search_page;
-  $form['basic'] = array(
-    '#type' => 'container',
-    '#attributes' => array('class' => array('container-inline')),
-  );
-  $form['basic']['keys'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Enter terms'),
-    '#default_value' => $keys,
-    '#size' => 20,
-    '#maxlength' => 255,
-  );
-  $form['basic']['submit'] = array(
-    '#type' => 'submit',
-    '#value' => t('Search'),
-  );
-
-  $form['basic']['get'] = array(
-    '#type' => 'hidden',
-    '#default_value' => json_encode(array_diff_key($_GET, array('q' => 1, 'page' => 1, 'solrsort' => 1, 'retain-filters' => 1))),
-  );
-
-  $fq = NULL;
-
-  if (apachesolr_has_searched($search_page['env_id'])) {
-    $query = apachesolr_current_query($search_page['env_id']);
-    // We use the presence of filter query params as a flag for the retain filters checkbox.
-    $fq = $query->getParam('fq');
-  }
-
-  if ($fq || isset($form_state['input']['retain-filters'])) {
-    $form['basic']['retain-filters'] = array(
-      '#type' => 'checkbox',
-      '#title' => t('Retain current filters'),
-      '#default_value' => (int) !empty($_GET['retain-filters']),
-    );
-  }
-
-  return $form;
-}
-
-/**
- * Processes apachesolr_search_custom_page_search_form submissions.
- */
-function apachesolr_search_custom_page_search_form_submit(&$form, &$form_state) {
-  $search_page = $form['#search_page'];
-  $redirect = $search_page['search_path'];
-
-  // Also encode slashes so we don't get akward situations when obtaining the
-  // search key. We can't use drupal_encode_path because for "aestetic" reasons
-  // they don't encode slashes...
-  $redirect_value = rawurlencode($form_state['values']['keys']);
-
-  if (strlen($form_state['values']['keys'])) {
-    $redirect .= '/' . $redirect_value;
-  }
-
-  $get = array();
-  if (isset($form_state['values']['get'])) {
-    $get = json_decode($form_state['values']['get'], TRUE);
-  }
-  if (!empty($form_state['values']['retain-filters'])) {
-    // Add our saved values
-    $get['retain-filters'] = '1';
-  }
-  else {
-    // Remove all filters
-    if (!empty($search_page['settings']['apachesolr_search_allow_user_input'])) {
-      unset($get['fq']);
-    }
-    if (module_exists('facetapi')) {
-      unset($get['f']);
-    }
-  }
-
-  // Add the query values into the redirect.
-  $form_state['redirect'] = array($redirect, array('query' => $get));
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.pages.inc.orig b/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.pages.inc.orig
deleted file mode 100644
index ae8ce137a8d6848bd5284efcda3fedff9a2509ea..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/apachesolr_search.pages.inc.orig
+++ /dev/null
@@ -1,132 +0,0 @@
-<?php
-
-/**
- * @file
- *   Provides the page callback for user defined search pages.
- */
-
-/**
- * Returns search results on user defined search pages.
- */
-function apachesolr_search_custom_page($page_id, $keys = '', $path_replacer = NULL) {
-  $search_page = apachesolr_search_page_load($page_id);
-  if (empty($search_page)) {
-    drupal_set_message(t('This search page cannot be found'), 'error');
-    return drupal_not_found();
-  }
-  // Activate the page context, if the module is enabled.
-  if ((module_exists('context')) && ($plugin = context_get_plugin('condition', 'apachesolr_page'))) {
-    $plugin->execute($search_page);
-  }
-  // Add our replacement value in the conditions array
-  if (!empty($path_replacer)) {
-    $search_page['settings']['apachesolr_search_path_replacer'] = $path_replacer;
-  }
-  // Replace dynamic path with current path
-  $search_page['search_path'] = str_replace('%', $path_replacer, $search_page['search_path']);
-  // Retrieve the conditions that apply to this page
-  $conditions = apachesolr_search_conditions_default($search_page);
-  // Process our keys so they are clean
-  $keys = rawurldecode($keys);
-  // Retrieve the results of the search
-  $results = apachesolr_search_search_results($keys, $conditions, $search_page);
-  // Initiate our build array
-  $build = array();
-  // Add a custom search form if required
-  if (!empty($search_page['settings']['apachesolr_search_search_box'])) {
-    // Adds the search form to the page.
-    $build['search_form'] = drupal_get_form('apachesolr_search_custom_page_search_form', $search_page, $keys);
-  }
-  // Build our page and allow modification.
-  $build_results = apachesolr_search_search_page_custom($results, $search_page, $build);
-  return $build_results;
-}
-
-/**
- * Search for placed on user defined search pages.
- */
-function apachesolr_search_custom_page_search_form($form, &$form_state, $search_page, $keys = '') {
-  // Loads the core Search CSS file, use the core search module's classes.
-  drupal_add_css(drupal_get_path('module', 'search') . '/search.css');
-
-  $form = array();
-  $form['#id'] = 'search-form';
-  $form['#attributes']['class'][] = 'search-form';
-  $form['#search_page'] = $search_page;
-  $form['basic'] = array(
-    '#type' => 'container',
-    '#attributes' => array('class' => array('container-inline')),
-  );
-  $form['basic']['keys'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Enter terms'),
-    '#default_value' => $keys,
-    '#size' => 20,
-    '#maxlength' => 255,
-  );
-  $form['basic']['submit'] = array(
-    '#type' => 'submit',
-    '#value' => t('Search'),
-  );
-
-  $form['basic']['get'] = array(
-    '#type' => 'hidden',
-    '#default_value' => json_encode(array_diff_key($_GET, array('q' => 1, 'page' => 1, 'solrsort' => 1, 'retain-filters' => 1))),
-  );
-
-  $fq = NULL;
-
-  if (apachesolr_has_searched($search_page['env_id'])) {
-    $query = apachesolr_current_query($search_page['env_id']);
-    // We use the presence of filter query params as a flag for the retain filters checkbox.
-    $fq = $query->getParam('fq');
-  }
-
-  if ($fq || isset($form_state['input']['retain-filters'])) {
-    $form['basic']['retain-filters'] = array(
-      '#type' => 'checkbox',
-      '#title' => t('Retain current filters'),
-      '#default_value' => (int) !empty($_GET['retain-filters']),
-    );
-  }
-
-  return $form;
-}
-
-/**
- * Processes apachesolr_search_custom_page_search_form submissions.
- */
-function apachesolr_search_custom_page_search_form_submit(&$form, &$form_state) {
-  $search_page = $form['#search_page'];
-  $redirect = $search_page['search_path'];
-
-  // Also encode slashes so we don't get akward situations when obtaining the
-  // search key. We can't use drupal_encode_path because for "aestetic" reasons
-  // they don't encode slashes...
-  $redirect_value = rawurlencode($form_state['values']['keys']);
-
-  if (strlen($form_state['values']['keys'])) {
-    $redirect .= '/' . $redirect_value;
-  }
-
-  $get = array();
-  if (isset($form_state['values']['get'])) {
-    $get = json_decode($form_state['values']['get'], TRUE);
-  }
-  if (!empty($form_state['values']['retain-filters'])) {
-    // Add our saved values
-    $get['retain-filters'] = '1';
-  }
-  else {
-    // Remove all filters
-    if (!empty($search_page['settings']['apachesolr_search_allow_user_input'])) {
-      unset($get['fq']);
-    }
-    if (module_exists('facetapi')) {
-      unset($get['f']);
-    }
-  }
-
-  // Add the query values into the redirect.
-  $form_state['redirect'] = array($redirect, array('query' => $get));
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/drush/apachesolr.drush.inc b/profiles/wcm_base/modules/contrib/apachesolr/drush/apachesolr.drush.inc
deleted file mode 100644
index 66ec66c2a1e7f49b1888c653cabd555155b6722c..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/drush/apachesolr.drush.inc
+++ /dev/null
@@ -1,653 +0,0 @@
-<?php
-
-/**
- * @file
- *   drush integration for apachesolr.
- */
-
-/**
- * Implements hook_drush_command().
- *
- * @return array
- *   An associative array describing your command(s).
- */
-function apachesolr_drush_command() {
-  $items = array();
-
-  $items['solr-delete-index'] = array(
-    'callback' => 'apachesolr_drush_solr_delete_index',
-    'description' => dt('Deletes the content from the index. Can take content types as parameters.'),
-    'arguments' => array(
-      'types' => dt('Optional. A space delimited list of content types to be deleted from the index.'),
-    ),
-    'options' => array(
-      'environment-id' => 'The environment ID',
-    ),
-    'examples' => array(
-      'drush solr-delete-index node' => 'Delete all node content from the index.',
-      'drush solr-delete-index node:article' => 'Delete all content of the article content type from the index.',
-      'drush solr-delete-index node:article node:blog' => 'Delete all content of the article and blog content types from the index.',
-    ),
-  );
-  $items['solr-mark-all'] = array(
-    'callback' => 'apachesolr_drush_solr_mark_for_reindex',
-    'description' => dt('Marks content for reindexing. Can take content types as parameters.'),
-    'arguments' => array(
-      'types' => dt('Optional. A space delimited list of content types to be marked for reindexing.'),
-    ),
-    'options' => array(
-      'environment-id' => 'The environment ID',
-    ),
-  );
-  $items['solr-index'] = array(
-    'callback' => 'apachesolr_drush_solr_index',
-    'description' => dt('Reindexes content marked for (re)indexing. You must supply the -l (--uri) parameter if $base_url is not set in settings.php.'),
-    'options' => array(
-      'environment-id' => 'The environment ID',
-      'limit' => 'The total number of documents to index',
-    ),
-  );
-  $items['solr-get-last-indexed'] = array(
-    'callback' => 'apachesolr_drush_solr_get_last_indexed',
-    'description' => dt('Get the ID of the last document indexed.'),
-    'arguments' => array(
-      'environment-id' => dt('Optional. The environment ID, uses the default if not passed.'),
-      'entity-type' => dt('Optional. The machine name of the entity, defaults to "node".'),
-    ),
-  );
-  $items['solr-get-next-indexed'] = array(
-    'callback' => 'apachesolr_drush_solr_get_next_indexed',
-    'description' => dt('Get the ID of the next document to be indexed.'),
-    'arguments' => array(
-      'environment-id' => dt('Optional. The environment ID, uses the default if not passed.'),
-      'entity-type' => dt('Optional. The machine name of the entity, defaults to "node".'),
-    ),
-  );
-  $items['solr-search'] = array(
-    'callback' => 'apachesolr_drush_solr_search',
-    'description' => dt('Search the site for keywords using Apache Solr'),
-    'arguments' => array(
-      'keywords' => dt('One or more keywords, separated by spaces.'),
-    ),
-  );
-  $items['solr-get-env-id'] = array(
-    'callback' => 'apachesolr_drush_solr_get_env_id',
-    'description' => dt('Get the default Apache Solr environment ID, or all IDs and names'),
-    'arguments' => array(),
-    'options' => array(
-      'all' => array(
-         'description' => 'List all environment IDs',
-      ),
-    ),
-  );
-  $items['solr-get-env-name'] = array(
-    'callback' => 'apachesolr_drush_solr_get_env_name',
-    'description' => dt('Get the Apache Solr environment name.'),
-    'options' => array(
-      'id' => array(
-         'description' => 'Apache Solr environment ID to use (uses the default environment if not specified)',
-      ),
-    ),
-  );
-  $items['solr-get-env-url'] = array(
-    'callback' => 'apachesolr_drush_solr_get_env_url',
-    'description' => dt('Get the Apache Solr environment url.'),
-    'options' => array(
-      'id' => array(
-         'description' => 'Apache Solr environment ID to use (uses the default environment if not specified)',
-      ),
-    ),
-  );
-  $items['solr-set-env-url'] = array(
-    'callback' => 'apachesolr_drush_solr_set_env_url',
-    'description' => dt('Set the url for an Apache Solr environment.'),
-    'arguments' => array(
-      'url' => dt('Apache Solr server url string.'),
-    ),
-    'required-arguments' => TRUE,
-    'options' => array(
-      'id' => array(
-         'description' => 'Apache Solr environment ID to use (uses the default environment if not specified)',
-      ),
-    ),
-  );
-  $items['solr-variable-get'] = array(
-    'description' => 'Get a list of Apache Solr environment variable names and values.',
-    'arguments' => array(
-      'name' => 'A string to filter the variables by. Variables that have any part of their name matching the string will be listed.',
-    ),
-    'examples' => array(
-      'drush solr-vget' => 'List all variables and values.',
-      'drush solr-vget user' => 'List all variables containing the string "user".',
-    ),
-    'options' => array(
-      'id' => 'Apache Solr environment ID to use (uses the default environment if not specified)',
-      'format' => 'Format to output the object. Use "print_r" for print_r (default), "export" for var_export, and "json" for JSON.',
-      'pipe' => 'A synonym for --format=export. Useful for pasting into code.',
-    ),
-    'aliases' => array('solr-vget'),
-  );
-  $items['solr-variable-set'] = array(
-    'description' => 'Set an Apache Solr environment variable.',
-    'arguments' => array(
-      'name' => 'The name of a variable or the first few letters of its name.',
-      'value' => 'The value to assign to the variable. Use \'-\' to read the object from STDIN.',
-    ),
-    'required-arguments' => TRUE,
-    'options' => array(
-      'id' => 'Apache Solr environment ID to use (uses the default environment if not specified)',
-      'yes' => 'Skip confirmation if only one variable name matches.',
-      'always-set' => 'Always skip confirmation.',
-      'format' => 'Format to parse the object. Use "auto" to detect format from value (default), "string", "integer" or "boolean" for corresponding primitive type, and "json" for JSON.',
-    ),
-    'examples' => array(
-      'drush solr-vset --yes apachesolr_read_only 1' => 'Set the apachesolr_read_only variable to 1. Skip confirmation if variable already exists.',
-      'drush solr-vset pr TRUE' => 'Choose from a list of variables beginning with "pr" to set to (bool)true.',
-      'php -r "print json_encode(array(\'drupal\', \'simpletest\'));"  | drush solr-vset --format=json project_dependency_excluded_dependencies -'=> 'Set a variable to a complex value (e.g. array)',
-    ),
-    'aliases' => array('solr-vset'),
-  );
-  $items['solr-variable-delete'] = array(
-    'description' => 'Delete an Apache Solr environment variable.',
-    'arguments' => array(
-      'name' => 'The name of a variable or the first few letters of its name.',
-    ),
-    'required-arguments' => TRUE,
-    'options' => array(
-      'id' => array(
-         'description' => 'Apaches Solr environment ID to use (uses the default environment if not specified)',
-      ),
-      'yes' => 'Skip confirmation if only one variable name matches.',
-      'exact' => 'Only delete the one variable that exactly matches the specified name.',
-    ),
-    'examples' => array(
-      'drush solr-vdel apachesolr_read_only --id=solr2' => 'Delete the apachesolr_read_only variable for the solr2 environment.',
-      'drush solr-vdel apa' => 'Choose from a list of variables beginning with "apa" to delete.',
-      'drush solr-vdel -y --exact apachesolr_read_only' => 'Delete variable, skipping confirmation.',
-    ),
-    'aliases' => array('solr-vdel'),
-  );
-  return $items;
-}
-
-/**
- * Implements hook_drush_help().
- *
- * This function is called whenever a drush user calls
- * 'drush help <name-of-your-command>'
- *
- * @param string $section
- *   A string with the help section (prepend with 'drush:')
- *
- * @return string
- *   A string with the help text for your command.
- */
-function apachesolr_drush_help($section) {
-  switch ($section) {
-    case 'drush:solr-delete-index':
-      return dt("Used without parameters, this command deletes the entire Solr index.
-        Used with parameters for content type, it deletes just the content types that are specified.
-        After the index has been deleted, all content will be indexed again on future cron runs.");
-    case 'drush:solr-mark-all':
-      return dt("Used without parameters, this command marks all of the content in the Solr index for
-        reindexing. Used with parameters for content type, it marks just the content types that are specified.
-        Reindexing is different than deleting as the content is still searchable while it is in queue to be reindexed.
-        Reindexing is done on future cron runs.");
-    case 'drush:solr-index':
-      return dt("Reindexes content marked for (re)indexing. If you want to reindex all content or content
-         of a specific type, use solr-mark-all first to mark that content.");
-    case 'drush:solr-search':
-      return dt('Executes a search against the site\'s Apache Solr search index and returns the results.');
-    case 'error:APACHESOLR_ENV_ID_ERROR':
-      return dt('Not a valid environment ID.');
-  }
-  return '';
-}
-
-/**
- * Selectively delete content from the apachesolr index.
- *
- * Each argument is a filter on what to delete from the index.
- * They are of the form entity (to delete all content of that
- * entity) or entity:bundle (to delete all content of that
- * bundle).
- */
-function apachesolr_drush_solr_delete_index() {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $args = func_get_args();
-  $env_id =  drush_get_option('environment-id');
-  if (empty($env_id)) {
-    $env_id = apachesolr_default_environment();
-  }
-
-  if (count($args) > 0) {
-    foreach ($args as $type) {
-      $parts = explode(':', $type);
-      if (count($parts) === 1) {
-        $success = apachesolr_index_delete_index($env_id, $type);
-      }
-      elseif (count($parts) == 2) {
-        $success = apachesolr_index_delete_index($env_id, $parts[0], $parts[1]);
-      }
-      else {
-        drush_set_error(dt('The syntax for each type is either entity or entity:bundle'));
-      }
-    }
-  }
-  else {
-    $success = apachesolr_index_delete_index($env_id);
-  }
-  if ($success) {
-    drush_print(dt('Deleted the Solr index'));
-  }
-  else {
-    drush_set_error(dt('An error occured while trying to delete the index.'));
-  }
-}
-
-/**
- * Mark all of a specific environment id for reindexing
- */
-function apachesolr_drush_solr_mark_for_reindex() {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  $args = func_get_args();
-  $env_id =  drush_get_option('environment-id');
-  if (empty($env_id)) {
-    $env_id = apachesolr_default_environment();
-  }
-  if (count($args) > 0) {
-    foreach ($args as $type) {
-      apachesolr_index_mark_for_reindex($env_id, $type);
-    }
-  }
-  else {
-    apachesolr_index_mark_for_reindex($env_id);
-  }
-  drush_print(t('Marked content for reindexing'));
-}
-
-/**
- * Index all the items in the queue using a batch command
- */
-function apachesolr_drush_solr_index() {
-  module_load_include('inc', 'apachesolr', 'apachesolr.admin');
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-
-  $front = url(NULL, array('absolute' => TRUE));
-  if ($front == 'http://default') {
-    drush_set_error('APACHESOLR_ERROR', 'You must set the site uri via the -l (or --uri) option so that links are correctly indexed');
-    return;
-  }
-
-  $env_id =  drush_get_option('environment-id');
-  if (empty($env_id)) {
-    $env_id = apachesolr_default_environment();
-  }
-  $total_limit = intval(drush_get_option('limit'));
-  apachesolr_index_batch_index_remaining($env_id, $total_limit);
-  drush_backend_batch_process();
-}
-
-/**
- * Get the last indexed document
- *
- * @param string $env_id
- * @param string $entity_type
- */
-function apachesolr_drush_solr_get_last_indexed($env_id = NULL, $entity_type = 'node') {
-  if (NULL === $env_id) {
-    $env_id = apachesolr_default_environment();
-  }
-  $return = apachesolr_get_last_index_position($env_id, $entity_type);
-  drush_print($return['last_entity_id']);
-}
-
-function apachesolr_drush_solr_get_next_indexed($env_id = NULL, $entity_type = 'node') {
-  module_load_include('inc', 'apachesolr', 'apachesolr.index');
-  if (NULL === $env_id) {
-    $env_id = apachesolr_default_environment();
-  }
-  $return = apachesolr_index_get_entities_to_index($env_id, $entity_type, 1);
-  $output = (isset($return[0]->entity_id)) ? $return[0]->entity_id : '0';
-  drush_print($output);
-}
-
-/**
- * Search the solr index using Drush
- */
-function apachesolr_drush_solr_search() {
-  $args = func_get_args();
-  $keys = implode(' ', $args);
-  foreach (apachesolr_search_search_execute($keys) as $result) {
-    $output = $result['fields']['path'];
-    if(isset($result['user']) && isset($result['node']->is_uid)) {
-      $output .= ' ' . dt('by @name (user/@uid)', array('@name' => strip_tags($result['user']), '@uid' => $result['node']->is_uid));
-    }
-    $output .= "\n";
-    $output .= dt('title: ') . $result['title'] . "\n";
-    $output .= trim(preg_replace('/\s+/', ' ', strip_tags($result['snippet']))) . "\n\n";
-    drush_print($output);
-  }
-}
-
-/**
- * Get all the environments (using option all) or get the default environment id
- */
-function apachesolr_drush_solr_get_env_id() {
-  $all = drush_get_option('all');
-
-  if ($all) {
-    foreach (apachesolr_load_all_environments() as $id => $env) {
-      drush_print(drush_format($env['name'], $id));
-    }
-  }
-  else {
-    $solr_env_id = apachesolr_default_environment();
-    drush_print($solr_env_id);
-  }
-}
-
-/**
- * Get the environment name based on the environment ID
- *
- * @print The environment name
- *
- * @return mixed APACHESOLR_ENV_ID_ERROR
- *   Only return error if the environment can't be found
- */
-function apachesolr_drush_solr_get_env_name() {
-  $env_id = drush_get_option('id', apachesolr_default_environment());
-  try {
-    $environment = _apachesolr_drush_environment_load_and_validate($env_id);
-  }
-  catch (Exception $e) {
-    return drush_set_error('APACHESOLR_ENV_ID_ERROR', $e->getMessage());
-  }
-  drush_print($environment['name']);
-}
-
-/**
- * Get the environment url based on the environment ID
- *
- * @print The environment url
- *
- * @return mixed APACHESOLR_ENV_ID_ERROR
- *   Only return error if the environment can't be found
- */
-function apachesolr_drush_solr_get_env_url() {
-  $env_id = drush_get_option('id', apachesolr_default_environment());
-  try {
-    $environment = _apachesolr_drush_environment_load_and_validate($env_id);
-  }
-  catch (Exception $e) {
-    return drush_set_error('APACHESOLR_ENV_ID_ERROR', $e->getMessage());
-  }
-  drush_print($environment['url']);
-}
-
-/**
- * Set the environment url based on the environment ID
- *
- * @param $url
- *
- * @return mixed APACHESOLR_ENV_ID_ERROR
- *   Only return error if the environment can't be found
- */
-function apachesolr_drush_solr_set_env_url($url) {
-  $env_id = drush_get_option('id', apachesolr_default_environment());
-  try {
-    $environment = _apachesolr_drush_environment_load_and_validate($env_id);
-  }
-  catch (Exception $e) {
-    return drush_set_error('APACHESOLR_ENV_ID_ERROR', $e->getMessage());
-  }
-  $environment['url'] = $url;
-  apachesolr_environment_save($environment);
-}
-
-/**
- * Command callback.
- *
- * List your site's variables.
- * much of it copied from drush core
- *
- * @param string $arg_name
- *
- * @return array|mixed Could be the variable or a drush error
- */
-function drush_apachesolr_solr_variable_get($arg_name = NULL) {
-  $output = NULL;
-
-  $found = array();
-
-  $env_id = drush_get_option('id', apachesolr_default_environment());
-  try {
-    $found = _apachesolr_drush_variable_like($env_id, $arg_name);
-  }
-  catch (Exception $e) {
-    return drush_set_error('APACHESOLR_ENV_ID_ERROR', $e->getMessage());
-  }
-
-  foreach ($found as $name => $value) {
-    drush_print_pipe(drush_format($value, $name, 'export'));
-    drush_print(drush_format($value, $name));
-  }
-
-  if (empty($found)) {
-    return drush_set_error('DRUSH_VARIABLE_ERROR', 'No matching variable found.');
-  }
-  else {
-    return $found;
-  }
-}
-
-/**
- * Command callback.
- * Set a variable.
- *
- * @param string $arg_name
- * @param mixed $value
- *
- * @return mixed
- */
-function drush_apachesolr_solr_variable_set($arg_name, $value) {
-  $args = func_get_args();
-
-  if (!isset($value)) {
-    return drush_set_error('DRUSH_VARIABLE_ERROR', dt('No value specified.'));
-  }
-
-  $env_id = drush_get_option('id', apachesolr_default_environment());
-  try {
-    $found = _apachesolr_drush_variable_like($env_id, $arg_name, TRUE);
-  }
-  catch (Exception $e) {
-    return drush_set_error('APACHESOLR_ENV_ID_ERROR', $e->getMessage());
-  }
-
-  $options[] = "$arg_name ". dt('(new variable)');
-  $match = isset($found[$arg_name]);
-  if (!$match && $found) {
-    $options = array_merge($options, array_keys($found));
-  }
-
-  if ($value == '-') {
-    $value = stream_get_contents(STDIN);
-  }
-
-  // If the value is a string (usual case, unless we are called from code),
-  // then format the input
-  if (is_string($value)) {
-    $value = _apachesolr_drush_variable_format($value, drush_get_option('format', 'auto'));
-  }
-
-  // Format the output for display
-  if (is_array($value)) {
-    $display = "\n" . var_export($value, TRUE);
-  }
-  elseif (is_integer($value)) {
-    $display = $value;
-  }
-  elseif (is_bool($value)) {
-    $display = $value ? "TRUE" : "FALSE";
-  }
-  else {
-    $display = '"' . $value . '"';
-  }
-
-  $name = NULL;
-  if (drush_get_option('always-set', FALSE) || $match) {
-    $name = $arg_name;
-  }
-  else {
-    $choice = drush_choice($options, 'Enter a number to choose which variable to set.');
-    if ($choice !== FALSE) {
-      $name = ($choice == 0) ? $arg_name : $options[$choice];
-    }
-  }
-  if ($name) {
-    drush_op('apachesolr_environment_variable_set', $env_id, $name, $value);
-    drush_log(dt('!name was set to !value', array('!name' => $name, '!value' => $display)), 'success');
-  }
-}
-
-/**
- *
- * Format a specific variable
- *
- * @param $value
- * @param $format
- *
- * @return bool|int|string
- */
-function _apachesolr_drush_variable_format($value, $format) {
-  if ($format == 'auto') {
-    if (is_numeric($value)) {
-      $format = 'integer';
-    }
-    elseif (($value == 'TRUE') || ($value == 'FALSE')) {
-      $format = 'bool';
-    }
-  }
-
-  // Now, we parse the object.
-  switch ($format) {
-    case 'integer':
-      $value = (integer)$value;
-      break;
-
-    case 'bool':
-    case 'boolean':
-      if ($value == 'TRUE') {
-        $value = TRUE;
-      }
-      elseif ($value == 'FALSE') {
-        $value = FALSE;
-      }
-      else {
-        $value = (bool)$value;
-      }
-      break;
-
-    case 'json':
-      $value = drush_json_decode($value);
-      break;
-  }
-  return $value;
-}
-
-/**
- * Command callback.
- * Delete a variable.
- * @param $arg_name
- *
- * @return string
- */
-function drush_apachesolr_solr_variable_delete($arg_name) {
-
-  $env_id = drush_get_option('id', apachesolr_default_environment());
-  // Look for similar variable names.
-  try {
-    $found = _apachesolr_drush_variable_like($env_id, $arg_name, TRUE);
-  }
-  catch (Exception $e) {
-    return drush_set_error('APACHESOLR_ENV_ID_ERROR', $e->getMessage());
-  }
-  drush_log(dt('Using environment ID "!env_id"', array('!env_id' => $env_id)), 'success');
-  $options = array_keys($found);
-
-  if (drush_get_option('exact', FALSE)) {
-    $options = isset($found[$arg_name]) ? array($arg_name) : array();
-  }
-
-  if (empty($options)) {
-    drush_print(dt('!name not found.', array('!name' => $arg_name)));
-    return '';
-  }
-
-  $name = NULL;
-  if ((count($options) == 1) && drush_get_context('DRUSH_AFFIRMATIVE')) {
-    $name = $arg_name;
-  }
-  else {
-    $choice = drush_choice($options, 'Enter a number to choose which variable to delete.');
-    if ($choice !== FALSE) {
-      $name = $options[$choice];
-    }
-  }
-  if ($name) {
-    drush_op('apachesolr_environment_variable_del', $env_id, $name);
-    drush_log(dt('!choice was deleted.', array('!choice' => $name)), 'success');
-  }
-}
-
-/**
- * Load an environment from an id and validate the result.
- *
- * @param string $env_id
- *
- * @return array $environment
- * @throws Exception
- */
-function _apachesolr_drush_environment_load_and_validate($env_id) {
-  $environment = apachesolr_environment_load($env_id);
-  if (!$environment) {
-    throw new Exception(dt('!env_id is not a valid environment ID.', array('!env_id' => $env_id)));
-  }
-  drush_log(dt('Using environment ID: "!env_id"', array('!env_id' => $env_id)), 'success');
-  return $environment;
-}
-
-/**
- * Search for similar variable names.
- *
- * @param string $env_id
- * @param string $arg
- * @param bool|string $starts_with
- *
- * @throws Exception
- *
- * @return array $variable
- *   Only return it if found
- */
-function _apachesolr_drush_variable_like($env_id, $arg = NULL, $starts_with = FALSE) {
-  $found = array();
-  $environment = _apachesolr_drush_environment_load_and_validate($env_id);
-  if (!isset($arg)) {
-    return $environment['conf'];
-  }
-  if ($starts_with) {
-    $pattern = "/^{$arg}/i";
-  }
-  else {
-    $pattern = "/{$arg}/i";
-  }
-  foreach ($environment['conf'] as $name => $value) {
-    // Find all variable that start with $arg.
-    if (preg_match($pattern, $name)) {
-      $found[$name] = $value;
-    }
-  }
-  return $found;
-}
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/plugins/context/apachesolr_context_page_condition.inc b/profiles/wcm_base/modules/contrib/apachesolr/plugins/context/apachesolr_context_page_condition.inc
deleted file mode 100644
index b41b02170923846940d37af7d8b37369dd233219..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/plugins/context/apachesolr_context_page_condition.inc
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/**
- * @file
- * Context integration for Apachesolr.
- */
-
-/**
- * Expose Apachesolr pages as a context condition.
- */
-class apachesolr_context_page_condition extends context_condition {
-  /**
-   * Override of condition_values().
-   */
-  function condition_values() {
-    // Retrieve all Apachesolr pages to return a list of conditions.
-    $values = array();
-    foreach (apachesolr_search_load_all_search_pages() as $page) {
-      $values[$page['page_id']] = check_plain($page['label']);
-    }
-    return $values;
-  }
-
-  /**
-   * Override of execute().
-   *
-   * @param Array $search_page The loaded search page.
-   *   Loaded in apachesolr_search_custom_page().
-   */
-  function execute($search_page) {
-    foreach ($this->get_contexts($search_page['page_id']) as $context) {
-      // Set contexts for this Apachesolr page.
-      $this->condition_met($context, $search_page['page_id']);
-    }
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/adapter.inc b/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/adapter.inc
deleted file mode 100644
index b554b36025e62d84586361d5bc8abfd3ae34b258..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/adapter.inc
+++ /dev/null
@@ -1,172 +0,0 @@
-<?php
-
-/**
- * @file
- * Classes used by the Facet API module.
- */
-
-/**
- * Facet API adapter for the Apache Solr Search Integration module.
- */
-class ApacheSolrFacetapiAdapter extends FacetapiAdapter {
-
-  /**
-   * Returns the path to the admin settings for a given realm.
-   *
-   * @param string $realm_name
-   *   The name of the realm.
-   *
-   * @return string
-   *   The path to the admin settings.
-   */
-  public function getPath($realm_name) {
-    $path = 'admin/config/search/apachesolr/settings';
-    // $adapter will be an instance of class FacetapiAdapter
-    if ($adapter = menu_get_object('facetapi_adapter', 4)) {
-      // Get the environment ID from the machine name of the searcher.
-      $env_id = ltrim(strstr($adapter->getSearcher(), '@'), '@');
-      $path .= '/' . $env_id . '/facets';
-      // Add the realm name to the path if it is not the first one in the list.
-      if (key(facetapi_get_realm_info()) != $realm_name) {
-        $path .= '/' . $realm_name;
-      }
-    }
-    return $path;
-  }
-
-  /**
-   * Allows the backend to initialize its query object before adding the facet
-   * filters.
-   *
-   * @param mixed $query
-   *   The backend's native object.
-   */
-  function initActiveFilters($query) {
-    $enabled_facets = facetapi_get_enabled_facets($this->info['name']);
-    if ($enabled_facets) {
-      $query->addParam('facet', 'true');
-      $query->addParam('facet.sort', 'count');
-      $query->addParam('facet.mincount', '1');
-    }
-  }
-
-  /**
-   * Returns a boolean flagging whether $this->_searcher executed a search.
-   */
-  public function searchExecuted() {
-    // Initial check - has ANY solr query run in our environment.
-    $env_id = $this->info['instance'];
-    $this_has_searched = apachesolr_has_searched($env_id);
-    // Secondary check - do we have results for this searcher?
-    $this_has_searched = $this_has_searched && apachesolr_static_response_cache($this->getSearcher());
-    return $this_has_searched;
-  }
-
-  /**
-   * Suppress output of the realm
-   *
-   * @param string $realm_name
-   *
-   * @return bool $flag
-   *   Returns if it was suppressed or not
-   */
-  public function suppressOutput($realm_name) {
-    $flag = FALSE;
-    if ($realm_name == 'block') {
-      $env_id = $this->info['instance'];
-      $flag = apachesolr_suppress_blocks($env_id);
-    }
-    return $flag || !$this->searchExecuted();
-  }
-
-  /**
-   * Returns the search keys.
-   *
-   * @return string
-   */
-  public function getSearchKeys() {
-    if (NULL === $this->keys) {
-      $env_id = $this->info['instance'];
-      if ($query = apachesolr_current_query($env_id)) {
-        return $query->getParam('q');
-      }
-    }
-    else {
-      return $this->keys;
-    }
-    return FALSE;
-  }
-
-  /**
-   * Returns the search path.
-   *
-   * @return string
-   *   A string containing the search path.
-   *
-   * @todo D8 should provide an API function for this.
-   */
-  public function getSearchPath() {
-    $env_id = $this->info['instance'];
-    $query = apachesolr_current_query($env_id);
-    if (!$query || (NULL === $this->searchPath && NULL === $query->getPath())) {
-      if ($path = module_invoke($this->info['module'] . '_search', 'search_info')) {
-        $this->searchPath = 'search/' . $path['path'];
-        if (!isset($_GET['keys']) && ($keys = $this->getSearchKeys())) {
-          $this->searchPath .= '/' . $keys;
-        }
-      }
-    }
-    if (!$query || NULL === $query->getPath()) {
-      return $this->searchPath;
-    }
-    else {
-      return $query->getPath();
-    }
-
-  }
-
-  /**
-   * Returns the number of total results found for the current search.
-   *
-   * @return bool|int
-   *   Number of results or false if no search response was found
-   */
-  public function getResultCount() {
-    $response = apachesolr_static_response_cache($this->getSearcher());
-    if ($response) {
-      return $response->response->numFound;
-    }
-    return FALSE;
-  }
-
-  /**
-   * Allows for backend specific overrides to the settings form.
-   *
-   * @param array $form
-   * @param array $form_state
-   */
-  public function settingsForm(&$form, &$form_state) {
-    if (in_array('date', $form['#facetapi']['facet']['query types']) ) {
-      $granularity = array(
-        FACETAPI_DATE_YEAR => t('Year'),
-        FACETAPI_DATE_MONTH => t('Month'),
-        FACETAPI_DATE_DAY => t('Day'),
-        FACETAPI_DATE_HOUR => t('Hour'),
-        FACETAPI_DATE_MINUTE => t('Minute'),
-      );
-
-      $facet = $form['#facetapi']['facet'];
-      $settings = $this->getFacet($facet)->getSettings()->settings;
-
-      $form['global']['date_granularity'] = array(
-        '#type' => 'select',
-        '#title' => t('Granularity'),
-        '#description' => t('Time intervals smaller than this will not be displayed in the facet.'),
-        '#options' => $granularity,
-        '#default_value' => isset($settings['date_granularity']) ? $settings['date_granularity'] : FACETAPI_DATE_MINUTE,
-      );
-    }
-
-    $form['#validate'][] = 'apachesolr_facet_form_validate';
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_date.inc b/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_date.inc
deleted file mode 100644
index ebb26bfc1ceb655adfbe8107703f939e94e6ede2..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_date.inc
+++ /dev/null
@@ -1,189 +0,0 @@
-<?php
-
-/**
- * @file
- * Date query type plugin for the Apache Solr adapter.
- */
-
-/**
- * Plugin for "date" query types.
- */
-class ApacheSolrFacetapiDate extends FacetapiQueryTypeDate implements FacetapiQueryTypeInterface {
-
-  /**
-   * Returns the query type associated with the plugin.
-   *
-   * @return string
-   *   The query type.
-   */
-  static public function getType() {
-    return 'date';
-  }
-
-  /**
-   * Adds the filter to the query object.
-   *
-   * @param DrupalSolrQueryInterface $query
-   *   An object containing the query in the backend's native API.
-   */
-  public function execute($query) {
-    // Gets the data range in formats that Solr understands.
-    $date_range = $this->getDateRange($query);
-    if (empty($date_range)) {
-      return NULL;
-    }
-    list($start, $end, $gap) = $date_range;
-    $query->addParam('facet.date', $this->facet['field']);
-    $query->addParam('f.' . $this->facet['field'] . '.facet.date.start', $start);
-    $query->addParam('f.' . $this->facet['field'] . '.facet.date.end', $end);
-    $query->addParam('f.' . $this->facet['field'] . '.facet.date.gap', $gap);
-
-    // Adds "hard limit" parameter to prevent too many return values.
-    $settings = $this->adapter->getFacet($this->facet)->getSettings();
-    $limit = empty($settings->settings['hard_limit']) ? 20 : (int) $settings->settings['hard_limit'];
-    $query->addParam('f.' . $this->facet['field'] . '.facet.limit', $limit);
-
-    $active = $this->adapter->getActiveItems($this->facet);
-    // Date filters don't support OR operator.
-    foreach ($active as $value => $item) {
-      $query->addFilter($this->facet['field'], $value);
-    }
-  }
-
-  /**
-   * Gets the range of dates we are using.
-   *
-   * @param DrupalSolrQueryInterface $query
-   *   A SolrBaseQuery object.
-   *
-   * @return bool|array
-   *   An array containing the gap and range information or false if not present
-   */
-  function getDateRange(DrupalSolrQueryInterface $query) {
-    $return = NULL;
-    $gap = NULL;
-
-    // Attempts to get next gap from passed date filters.
-    foreach ($this->adapter->getActiveItems($this->facet) as $item) {
-      if ($gap = facetapi_get_date_gap($item['start'], $item['end'])) {
-        $next_gap = facetapi_get_next_date_gap($gap, FACETAPI_DATE_SECOND);
-        if ($next_gap == $gap) {
-          $next_gap = NULL;
-          return NULL;
-        }
-        $return = array(
-          "{$item['start']}/$next_gap",
-          "{$item['end']}+1$next_gap/$next_gap",
-          "+1$next_gap",
-        );
-      }
-    }
-
-    // If no filters were passed, get default range.
-    if (NULL === $return) {
-
-      // Builds SQL that gets minimum and maximum values from node table.
-      $minimum = $maximum = FALSE;
-      if ($this->facet['min callback'] && is_callable($this->facet['min callback'])) {
-        $minimum = $this->facet['min callback']($this->facet);
-      }
-      if ($this->facet['max callback'] && is_callable($this->facet['max callback'])) {
-        $maximum = $this->facet['max callback']($this->facet);
-      }
-
-      // Gets the default gap.
-      //$gap = FACETAPI_DATE_YEAR;
-      if ($minimum && $maximum) {
-        $gap = facetapi_get_timestamp_gap($minimum, $maximum);
-        $minimum = facetapi_isodate($minimum, $gap);
-        $maximum = facetapi_isodate($maximum, $gap);
-        $return = array(
-          "$minimum/$gap",
-          "$maximum+1$gap/$gap",
-          "+1$gap",
-        );
-      }
-    }
-    // Returns the range information.
-    return $return;
-  }
-
-  /**
-   * Initializes the facet's build array.
-   *
-   * @return array
-   *   The initialized render array.
-   */
-  public function build() {
-
-    // Initializes build and gets static response.
-    if (!$response = apachesolr_static_response_cache($this->adapter->getSearcher())) {
-      return array();
-    }
-    $build = array();
-
-    // Gets total number of documents matched in search.
-    $total = $response->response->numFound;
-
-    // Gets the active date facets, starts to builds the "parent - child"
-    // relationships.
-    $parent = NULL;
-    foreach ($this->adapter->getActiveItems($this->facet) as $value => $item) {
-      // Builds the raw facet "value", the count for selected items will be the
-      // total number of rows returned in the query.
-      $build[$value] = array('#count' => $total);
-
-      // If there is a previous item, there is a parent, uses a reference so the
-      // arrays are populated when they are updated.
-      if (NULL !== $parent) {
-        $build[$parent]['#item_children'][$value] = &$build[$value];
-        $build[$value]['#item_parents'][$parent] = $parent;
-      }
-
-      // Stores the last value iterated over.
-      $parent = $value;
-    }
-
-    // Gets raw facet data from the Solr server.
-    if (isset($response->facet_counts->facet_dates) && isset($response->facet_counts->facet_dates->{$this->facet['field']})) {
-      $raw_data = (array) $response->facet_counts->facet_dates->{$this->facet['field']};
-    }
-    else {
-      $raw_data = array();
-    }
-    //$end = (!empty($raw_data['end'])) ? $raw_data['end'] : '';
-    //$start = (!empty($raw_data['start'])) ? $raw_data['start'] : '';
-    $gap = (!empty($raw_data['gap'])) ? $raw_data['gap'] : '';
-
-    $settings = $this->getSettings()->settings;
-    $granularity = isset($settings['date_granularity']) ? $settings['date_granularity'] : FACETAPI_DATE_MINUTE;
-
-    // We cannot list anything below a minute (range of 00 seconds till 59
-    // seconds). Milliseconds are not possible. Also, anything below the set
-    // granularity should not be shown either.
-    if ($gap != "+1" . FACETAPI_DATE_SECOND && (!$gap || strtotime($gap, 0) >= strtotime("+1" . $granularity, 0))) {
-      unset($raw_data['start']);
-      unset($raw_data['end']);
-      unset($raw_data['gap']);
-
-      // Treat each date facet as a range start, and use the next date facet
-      // as range end.  Use 'end' for the final end.
-      $previous = NULL;
-
-      // Builds facet counts object used by the server.
-      foreach ($raw_data as $value => $count) {
-        if ($count) {
-          $from = $value;
-          $to = facetapi_isodate(strtotime($value . $gap));
-          $new_value = '[' . $from . ' TO ' . $to . ']';
-          $build[$new_value] = array('#count' => $count, '#active' => 0);
-          if (NULL !== $parent) {
-            $build[$parent]['#item_children'][$new_value] = &$build[$new_value];
-            $build[$new_value]['#item_parents'][$parent] = $parent;
-          }
-        }
-      }
-    }
-    return $build;
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_geo.inc b/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_geo.inc
deleted file mode 100644
index 3220d863aa60f9424f66a6ddfe144f0622d2cac1..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_geo.inc
+++ /dev/null
@@ -1,84 +0,0 @@
-<?php
-
-/**
- * Plugin for "apachesolr_geo" query types.
- */
-class ApacheSolrFacetapiGeo extends FacetapiQueryType implements FacetapiQueryTypeInterface {
-  // Center point is Denver.
-  public $center_point = '39.7391667,-104.9841667';
-  public $facet_options = '0.5,0.1,0.01';
-  public $default_radius = 100;
-
-  /**
-   * Returns the query type associated with the plugin.
-   *
-   * @return string
-   *   The query type.
-   */
-  static public function getType() {
-    return 'geo';
-  }
-
-  /**
-   * Adds the filter to the query object.
-   *
-   * @param DrupalSolrQueryInterface $query
-   *   An object containing the query in the backend's native API.
-   */
-  public function execute($query) {
-    // Retrieve settings of the facet.
-    // We should be able to get all constants as facet options.
-    $settings = $this->adapter->getFacet($this->facet)->getSettings();
-
-    $facet_distances = explode(',', $this->facet_options);
-
-    $active_items = $this->adapter->getActiveItems($this->facet);
-
-    if (empty($active_items)) {
-      $distance = $this->default_radius;
-    }
-    else {
-      $active_item = array_pop($active_items);
-      $distance = substr($active_item['value'], 1);
-      // Add current selected distance to have possibility to unselect it.
-      $facet_distances[] = 1;
-    }
-
-    // Search center point.
-    $query->addParam('pt', $this->center_point);
-
-    // Set location field name.
-    $query->addParam('sfield', $this->facet['field']);
-    $query->addParam('fq', '{!geofilt sfield=' . $this->facet['field'] . '}');
-
-    // Set search radius.
-    $query->addParam('d', $distance);
-
-    // Set facets.
-    foreach ($facet_distances as $facet_option) {
-      $facet_distance = $distance * $facet_option;
-      $query->addParam('facet.query', '{!geofilt d=' . $facet_distance . ' key=d' . $facet_distance . '}');
-    }
-  }
-
-  /**
-   * Initializes the facet's build array.
-   *
-   * @return array
-   *   The initialized render array.
-   */
-  public function build() {
-    $build = array();
-    if ($response = apachesolr_static_response_cache($this->adapter->getSearcher())) {
-      if (isset($response->facet_counts->facet_queries)) {
-        foreach ($response->facet_counts->facet_queries as $value => $count) {
-          // Skip zero results values.
-          if ($count > 0) {
-            $build[$value] = array('#count' => $count);
-          }
-        }
-      }
-    }
-    return $build;
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_numeric_range.inc b/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_numeric_range.inc
deleted file mode 100644
index 2a763ee788ff9bf81d847ffa375aef61d074ac3a..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_numeric_range.inc
+++ /dev/null
@@ -1,101 +0,0 @@
-<?php
-
-/**
- * @file
- * Numeric range query type plugin for the Apache Solr adapter.
- */
-
-/**
- * Plugin for "numeric_range" query types.
- */
-class ApacheSolrFacetapiNumericRange extends FacetapiQueryType implements FacetapiQueryTypeInterface {
-
-  private $single_key;
-  /**
-   * Returns the query type associated with the plugin.
-   *
-   * @return string
-   *   The query type.
-   */
-  static public function getType() {
-    return 'numeric_range';
-  }
-
-  /**
-   * Adds the filter to the query object.
-   *
-   * @param DrupalSolrQueryInterface $query
-   *   An object containing the query in the backend's native API.
-   * @todo Cache the values based on the filter query or any other way?
-   */
-  public function execute($query) {
-    // Check if we have a cache of this field
-    //
-    $settings = $this->adapter->getFacet($this->facet)->getSettings();
-    $active = $this->adapter->getActiveItems($this->facet);
-
-    $singular_field_info = $this->facet['map options'];
-    $singular_field_info['multiple'] = FALSE;
-    $this->single_key = apachesolr_index_key($singular_field_info);
-    // See:  http://wiki.apache.org/solr/StatsComponent
-    $query->addParam('stats', 'true');
-    $query->addParam('stats.field', $this->single_key);
-    $query->addParam('stats.facet', $this->single_key);
-    // Range filters don't support OR operator.
-    foreach ($active as $value => $item) {
-      $query->addFilter($this->single_key, $value);
-    }
-  }
-
-  /**
-   * Initializes the facet's build array.
-   *
-   * Any calls to this method need to be wrapped in a try-catch block.
-   *
-   * @return array
-   *   The initialized render array.
-   */
-  public function build() {
-    $build = array();
-    if (!isset($this->single_key)) {
-      return $build;
-    }
-
-    // Per key we save our statistics result
-    $cache = cache_get('stats_' . $this->single_key, 'cache_apachesolr');
-    $stats_minmax = array();
-
-    if (!isset($cache->data)) {
-      // we need an additional query for the statistics of the field
-      // We can optionally specify a Solr object.
-      $solr = apachesolr_get_solr();
-
-      // We possibly need some caching for this query
-      $query_stats = apachesolr_drupal_query('apachesolr_stats', array(), '', '', $solr);
-      $query_stats->addParam('stats', 'true');
-      $query_stats->addParam('stats.field', $this->single_key);
-      $query_stats->addParam('stats.facet', $this->single_key);
-      $response_stats = $query_stats->search();
-
-      if ($response_stats->response) {
-        $stats_minmax = $response_stats->stats->stats_fields->{$this->single_key};
-        cache_set('stats_' . $this->single_key, $stats_minmax, 'cache_apachesolr');
-      }
-    }
-    else {
-      // Set our statistics from the cache
-      $stats_minmax = $cache->data;
-    }
-
-    if ($response = apachesolr_static_response_cache($this->adapter->getSearcher())) {
-      if (isset($response->stats->stats_fields->{$this->single_key})) {
-        $stats = (array) $response->stats->stats_fields->{$this->single_key};
-        foreach ($stats as $key => $val) {
-          $build[$this->facet['field']]['#range_' . $key] = $val;
-          $build[$this->facet['field']]['#global_range_' . $key] = $stats_minmax->$key;
-        }
-      }
-    }
-    return $build;
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_term.inc b/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_term.inc
deleted file mode 100644
index 03f7aa339897135dbe4013086ee49d75573d0c47..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/plugins/facetapi/query_type_term.inc
+++ /dev/null
@@ -1,101 +0,0 @@
-<?php
-
-/**
- * @file
- * Term query type plugin for the Apache Solr adapter.
- */
-
-/**
- * Plugin for "term" query types.
- */
-class ApacheSolrFacetapiTerm extends FacetapiQueryType implements FacetapiQueryTypeInterface {
-
-  /**
-   * Returns the query type associated with the plugin.
-   *
-   * @return string
-   *   The query type.
-   */
-  static public function getType() {
-    return 'term';
-  }
-
-  /**
-   * Adds the filter to the query object.
-   *
-   * @param DrupalSolrQueryInterface $query
-   *   An object containing the query in the backend's native API.
-   */
-  public function execute($query) {
-    $settings = $this->adapter->getFacet($this->facet)->getSettings();
-    // Adds the operator parameter.
-    $operator = $settings->settings['operator'];
-    $ex = (FACETAPI_OPERATOR_OR != $operator) ? '' : "{!ex={$this->facet['field']}}";
-    $query->addParam('facet.field', $ex . $this->facet['field']);
-
-    if (!empty($settings->settings['facet_missing'])) {
-      $query->addParam('f.' . $this->facet['field'] . '.facet.missing', 'true');
-    }
-    // Adds "hard limit" parameter to prevent too many return values.
-    $limit = empty($settings->settings['hard_limit']) ? 20 : (int) $settings->settings['hard_limit'];
-    $query->addParam('f.' . $this->facet['field'] . '.facet.limit', $limit);
-
-    // Adds "facet mincount" parameter to limit the number of facets.
-    if (isset($settings->settings['facet_mincount'])) {
-      $count = $settings->settings['facet_mincount'];
-      $query->addParam('f.' . $this->facet['field'] . '.facet.mincount', $count);
-    }
-
-    $active = $this->adapter->getActiveItems($this->facet);
-
-    // Adds filter based on the operator.
-    if (FACETAPI_OPERATOR_OR != $operator) {
-      foreach ($active as $value => $item) {
-        // Handle facet missing:
-        if ($value === '_empty_' && !empty($settings->settings['facet_missing'])) {
-          $query->addFilter($this->facet['field'], '[* TO *]', TRUE);
-        }
-        elseif (strlen($value)) {
-          $query->addFilter($this->facet['field'], $value);
-        }
-      }
-    }
-    else {
-      // OR facet.
-      $local = "tag={$this->facet['field']}";
-      $values = array_keys($active);
-      if ($values) {
-        // Quote any values that have white space or colons.
-        foreach ($values as &$v) {
-          if (preg_match('/[:\s]/', $v) || strlen($v) == 0) {
-            $v = '"' . $v . '"';
-          }
-        }
-        $query->addFilter($this->facet['field'], '(' . implode(' OR ', $values) . ')', FALSE, $local);
-      }
-    }
-  }
-
-  /**
-   * Initializes the facet's build array.
-   *
-   * @return array
-   *   The initialized render array.
-   */
-  public function build() {
-    $build = array();
-    if ($response = apachesolr_static_response_cache($this->adapter->getSearcher())) {
-      $settings = $this->adapter->getFacet($this->facet)->getSettings();
-      if (isset($response->facet_counts->facet_fields->{$this->facet['field']})) {
-        $values = (array) $response->facet_counts->facet_fields->{$this->facet['field']};
-        foreach ($values as $value => $count) {
-          // Facet missing may return 0 even if mincount is 1.
-          if (empty($settings->settings['facet_mincount']) || $count) {
-            $build[$value] = array('#count' => $count);
-          }
-        }
-      }
-    }
-    return $build;
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/protwords.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/protwords.txt
deleted file mode 100644
index f0fd0840a2423ca16ab9b9cbf4280cd9c691e6f9..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/protwords.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-#-----------------------------------------------------------------------
-# This file blocks words from being operated on by the stemmer and word delimiter.
-&amp;
-&lt;
-&gt;
-&#039;
-&quot;
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/schema.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/schema.xml
deleted file mode 100644
index 133b118ae1516f04f14d877a72f350cc3634f3c2..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/schema.xml
+++ /dev/null
@@ -1,497 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-
-<!--
- This is the Solr schema file. This file should be named "schema.xml" and
- should be in the conf directory under the solr home
- (i.e. ./solr/conf/schema.xml by default)
- or located where the classloader for the Solr webapp can find it.
-
- For more information, on how to customize this file, please see
- http://wiki.apache.org/solr/SchemaXml
--->
-
-<schema name="drupal-3.0-0-solr1.4" version="1.2">
-    <!-- attribute "name" is the name of this schema and is only used for display purposes.
-         Applications should change this to reflect the nature of the search collection.
-         version="1.2" is Solr's version number for the schema syntax and semantics.  It should
-         not normally be changed by applications.
-         1.0: multiValued attribute did not exist, all fields are multiValued by nature
-         1.1: multiValued attribute introduced, false by default
-         1.2: omitTermFreqAndPositions attribute introduced, true by default except for text fields.
-       -->
-  <types>
-    <!-- field type definitions. The "name" attribute is
-       just a label to be used by field definitions.  The "class"
-       attribute and any other attributes determine the real
-       behavior of the fieldType.
-         Class names starting with "solr" refer to java classes in the
-       org.apache.solr.analysis package.
-    -->
-
-    <!-- The StrField type is not analyzed, but indexed/stored verbatim.
-       - StrField and TextField support an optional compressThreshold which
-       limits compression (if enabled in the derived fields) to values which
-       exceed a certain size (in characters).
-    -->
-    <fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
-
-    <!-- boolean type: "true" or "false" -->
-    <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" omitNorms="true"/>
-    <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->
-    <fieldtype name="binary" class="solr.BinaryField"/>
-
-    <!-- The optional sortMissingLast and sortMissingFirst attributes are
-         currently supported on types that are sorted internally as strings.
-       - If sortMissingLast="true", then a sort on this field will cause documents
-         without the field to come after documents with the field,
-         regardless of the requested sort order (asc or desc).
-       - If sortMissingFirst="true", then a sort on this field will cause documents
-         without the field to come before documents with the field,
-         regardless of the requested sort order.
-       - If sortMissingLast="false" and sortMissingFirst="false" (the default),
-         then default lucene sorting will be used which places docs without the
-         field first in an ascending sort and last in a descending sort.
-    -->
-
-    <!-- numeric field types that can be sorted, but are not optimized for range queries -->
-    <fieldType name="integer" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="float" class="solr.TrieFloatField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="double" class="solr.TrieDoubleField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-
-    <!--
-      Note:
-      These should only be used for compatibility with existing indexes (created with older Solr versions)
-      or if "sortMissingFirst" or "sortMissingLast" functionality is needed. Use Trie based fields instead.
-
-      Numeric field types that manipulate the value into
-      a string value that isn't human-readable in its internal form,
-      but with a lexicographic ordering the same as the numeric ordering,
-      so that range queries work correctly.
-    -->
-    <fieldType name="sint" class="solr.SortableIntField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="slong" class="solr.SortableLongField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="sfloat" class="solr.SortableFloatField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="sdouble" class="solr.SortableDoubleField" sortMissingLast="true" omitNorms="true"/>
-
-    <!--
-     Numeric field types that index each value at various levels of precision
-     to accelerate range queries when the number of values between the range
-     endpoints is large. See the javadoc for NumericRangeQuery for internal
-     implementation details.
-
-     Smaller precisionStep values (specified in bits) will lead to more tokens
-     indexed per value, slightly larger index size, and faster range queries.
-     A precisionStep of 0 disables indexing at different precision levels.
-    -->
-    <fieldType name="tint" class="solr.TrieIntField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tfloat" class="solr.TrieFloatField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tlong" class="solr.TrieLongField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tdouble" class="solr.TrieDoubleField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-
-
-    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and
-         is a more restricted form of the canonical representation of dateTime
-         http://www.w3.org/TR/xmlschema-2/#dateTime
-         The trailing "Z" designates UTC time and is mandatory.
-         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z
-         All other components are mandatory.
-
-         Expressions can also be used to denote calculations that should be
-         performed relative to "NOW" to determine the value, ie...
-
-               NOW/HOUR
-                  ... Round to the start of the current hour
-               NOW-1DAY
-                  ... Exactly 1 day prior to now
-               NOW/DAY+6MONTHS+3DAYS
-                  ... 6 months and 3 days in the future from the start of
-                      the current day
-
-         Consult the DateField javadocs for more information.
-      -->
-    <fieldType name="date" class="solr.DateField" sortMissingLast="true" omitNorms="true"/>
-
-    <!-- A Trie based date field for faster date range queries and date faceting. -->
-    <fieldType name="tdate" class="solr.TrieDateField" omitNorms="true" precisionStep="6" positionIncrementGap="0"/>
-
-    <!-- solr.TextField allows the specification of custom text analyzers
-         specified as a tokenizer and a list of token filters. Different
-         analyzers may be specified for indexing and querying.
-
-         The optional positionIncrementGap puts space between multiple fields of
-         this type on the same document, with the purpose of preventing false phrase
-         matching across fields.
-
-         For more info on customizing your analyzer chain, please see
-         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters
-     -->
-
-    <!-- One can also specify an existing Analyzer class that has a
-         default constructor via the class attribute on the analyzer element
-    <fieldType name="text_greek" class="solr.TextField">
-      <analyzer class="org.apache.lucene.analysis.el.GreekAnalyzer"/>
-    </fieldType>
-    -->
-
-    <!-- A text field that only splits on whitespace for exact matching of words -->
-    <fieldType name="text_ws" class="solr.TextField" omitNorms="true" positionIncrementGap="100">
-      <analyzer>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of
-        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,
-        so that a query of "wifi" or "wi fi" could match a document containing "Wi-Fi".
-        Synonyms and stopwords are customized by external files, and stemming is enabled.
-        Duplicate tokens at the same position (which may result from Stemmed Synonyms or
-        WordDelim parts) are removed.
-        -->
-    <fieldType name="text" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <!-- in this example, we will only use synonyms at query time
-        <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
-        -->
-        <!-- Case insensitive stop word removal.
-          add enablePositionIncrements=true in both the index and query
-          analyzers to leave a 'gap' for more accurate phrase queries.
-        -->
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="1"
-                catenateNumbers="1"
-                catenateAll="0"
-                splitOnCaseChange="1"
-                preserveOriginal="1"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="0"
-                catenateNumbers="0"
-                catenateAll="0"
-                splitOnCaseChange="1"
-                preserveOriginal="1"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- An unstemmed text field - good if one does not know the language of the field -->
-    <fieldType name="text_und" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="1"
-                catenateNumbers="1"
-                catenateAll="0"
-                splitOnCaseChange="0"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="0"
-                catenateNumbers="0"
-                catenateAll="0"
-                splitOnCaseChange="0"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- Edge N gram type - for example for matching against queries with results
-        KeywordTokenizer leaves input string intact as a single term.
-        see: http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/
-   -->
-    <fieldType name="edge_n2_kw_text" class="solr.TextField" omitNorms="true" positionIncrementGap="100">
-     <analyzer type="index">
-       <tokenizer class="solr.KeywordTokenizerFactory"/>
-       <filter class="solr.LowerCaseFilterFactory"/>
-       <filter class="solr.EdgeNGramFilterFactory" minGramSize="2" maxGramSize="25" />
-     </analyzer>
-     <analyzer type="query">
-       <tokenizer class="solr.KeywordTokenizerFactory"/>
-       <filter class="solr.LowerCaseFilterFactory"/>
-     </analyzer>
-    </fieldType>
-   <!--  Setup simple analysis for spell checking -->
-
-   <fieldType name="textSpell" class="solr.TextField" positionIncrementGap="100">
-     <analyzer>
-       <tokenizer class="solr.StandardTokenizerFactory" />
-       <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/>
-       <filter class="solr.LengthFilterFactory" min="4" max="20" />
-       <filter class="solr.LowerCaseFilterFactory" />
-       <filter class="solr.RemoveDuplicatesTokenFilterFactory" />
-     </analyzer>
-   </fieldType>
-
-    <!-- This is an example of using the KeywordTokenizer along
-         With various TokenFilterFactories to produce a sortable field
-         that does not include some properties of the source text
-      -->
-    <fieldType name="sortString" class="solr.TextField" sortMissingLast="true" omitNorms="true">
-      <analyzer>
-        <!-- KeywordTokenizer does no actual tokenizing, so the entire
-             input string is preserved as a single token
-          -->
-        <tokenizer class="solr.KeywordTokenizerFactory"/>
-        <!-- The LowerCase TokenFilter does what you expect, which can be
-             when you want your sorting to be case insensitive
-          -->
-        <filter class="solr.LowerCaseFilterFactory" />
-        <!-- The TrimFilter removes any leading or trailing whitespace -->
-        <filter class="solr.TrimFilterFactory" />
-        <!-- The PatternReplaceFilter gives you the flexibility to use
-             Java Regular expression to replace any sequence of characters
-             matching a pattern with an arbitrary replacement string,
-             which may include back refrences to portions of the orriginal
-             string matched by the pattern.
-
-             See the Java Regular Expression documentation for more
-             infomation on pattern and replacement string syntax.
-
-             http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/package-summary.html
-
-        <filter class="solr.PatternReplaceFilterFactory"
-                pattern="(^\p{Punct}+)" replacement="" replace="all"
-        />
-        -->
-      </analyzer>
-    </fieldType>
-
-    <!-- A random sort type -->
-    <fieldType name="rand" class="solr.RandomSortField" indexed="true" />
-
-    <!-- since fields of this type are by default not stored or indexed, any data added to
-         them will be ignored outright
-     -->
-    <fieldtype name="ignored" stored="false" indexed="false" class="solr.StrField" />
-
- </types>
-
-
- <fields>
-   <!-- Valid attributes for fields:
-     name: mandatory - the name for the field
-     type: mandatory - the name of a previously defined type from the <types> section
-     indexed: true if this field should be indexed (searchable or sortable)
-     stored: true if this field should be retrievable
-     compressed: [false] if this field should be stored using gzip compression
-       (this will only apply if the field type is compressable; among
-       the standard field types, only TextField and StrField are)
-     multiValued: true if this field may contain multiple values per document
-     omitNorms: (expert) set to true to omit the norms associated with
-       this field (this disables length normalization and index-time
-       boosting for the field, and saves some memory).  Only full-text
-       fields or fields that need an index-time boost need norms.
-   -->
-
-<!-- The document id is usually derived from a site-spcific key (hash) and the entity type and ID like:
-     $document->id = $hash . '/node/' . $node->nid; -->
-
-   <field name="id" type="string" indexed="true" stored="true" required="true" />
-   <!-- entity_id is the numeric object ID, e.g. Node ID, File ID -->
-   <field name="entity_id"  type="long" indexed="true" stored="true" />
-   <!-- entity_type is 'node', 'file', 'user', or some other Drupal object type -->
-   <field name="entity_type" type="string" indexed="true" stored="true" required="true" />
-   <!-- bundle is a node type, or as appropriate for other entity types -->
-   <field name="bundle" type="string" indexed="true" stored="true"/>
-   <field name="bundle_name" type="string" indexed="true" stored="true"/>
-
-   <field name="site" type="string" indexed="true" stored="true"/>
-   <field name="hash" type="string" indexed="true" stored="true"/>
-   <field name="url" type="string" indexed="true" stored="true"/>
-   <!-- label is the default field for a human-readable string for this entity (e.g. the title of a node) -->
-   <field name="label" type="text" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-   <!-- The string version of the title is used for sorting -->
-   <copyField source="label" dest="sort_label"/>
-   <!-- content is the default field for full text search - dump crap here -->
-   <field name="content" type="text" indexed="true" stored="true" termVectors="true"/>
-   <field name="teaser" type="text" indexed="false" stored="true"/>
-
-   <field name="path" type="string" indexed="true" stored="true"/>
-   <field name="path_alias" type="text" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-
- <!-- These are the fields that correspond to a Drupal node. The beauty of having
-     Lucene store title, body, type, etc., is that we retrieve them with the search
-     result set and don't need to go to the database with a node_load. -->
-
-   <field name="tid"  type="long" indexed="true" stored="true" multiValued="true"/>
-
-   <field name="taxonomy_names" type="text" indexed="true" stored="false" termVectors="true" multiValued="true" omitNorms="true"/>
-   <!-- Copy terms to a single field that contains all taxonomy term names -->
-   <copyField source="tm_vid_*" dest="taxonomy_names"/>
-
-   <!-- Here, default is used to create a "timestamp" field indicating
-        when each document was indexed.-->
-   <field name="timestamp" type="tdate" indexed="true" stored="true" default="NOW" multiValued="false"/>
-
-	<!-- This field is used to build the spellchecker index -->
-   <field name="spell" type="textSpell" indexed="true" stored="true" multiValued="true"/>
-
-  <!-- copyField commands copy one field to another at the time a document
-        is added to the index.  It's used either to index the same field differently,
-        or to add multiple fields to the same field for easier/faster searching.  -->
-   <copyField source="label" dest="spell"/>
-   <copyField source="content" dest="spell"/>
-
-   <!-- Dynamic field definitions.  If a field name is not found, dynamicFields
-        will be used if the name matches any of the patterns.
-        RESTRICTION: the glob-like pattern in the name attribute must have
-        a "*" only at the start or the end.
-        EXAMPLE:  name="*_i" will match any field ending in _i (like myid_i, z_i)
-        Longer patterns will be matched first.  if equal size patterns
-        both match, the first appearing in the schema will be used.  -->
-
-   <!-- A set of fields to contain text extracted from HTML tag contents which we
-        can boost at query time. -->
-   <dynamicField name="tags_*" type="text"   indexed="true" stored="false" omitNorms="true"/>
-
-   <!-- For 2 and 3 letter prefix dynamic fields, the 1st letter indicates the data type and
-        the last letter is 's' for single valued, 'm' for multi-valued -->
-
-   <!-- We use long for integer since 64 bit ints are now common in PHP. -->
-   <dynamicField name="is_*"  type="long"    indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="im_*"  type="long"    indexed="true"  stored="true" multiValued="true"/>
-   <!-- List of floats can be saved in a regular float field -->
-   <dynamicField name="fs_*"  type="float"   indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="fm_*"  type="float"   indexed="true"  stored="true" multiValued="true"/>
-   <!-- List of booleans can be saved in a regular boolean field -->
-   <dynamicField name="bm_*"  type="boolean" indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="bs_*"  type="boolean" indexed="true"  stored="true" multiValued="false"/>
-   <!-- Regular text (without processing) can be stored in a string field-->
-   <dynamicField name="ss_*"  type="string"  indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="sm_*"  type="string"  indexed="true"  stored="true" multiValued="true"/>
-   <!-- Normal text fields are for full text - the relevance of a match depends on the length of the text -->
-   <dynamicField name="ts_*"  type="text"    indexed="true"  stored="true" multiValued="false" termVectors="true"/>
-   <dynamicField name="tm_*"  type="text"    indexed="true"  stored="true" multiValued="true" termVectors="true"/>
-   <!-- Unstemmed text fields for full text - the relevance of a match depends on the length of the text -->
-   <dynamicField name="tus_*" type="text_und" indexed="true"  stored="true" multiValued="false" termVectors="true"/>
-   <dynamicField name="tum_*" type="text_und" indexed="true"  stored="true" multiValued="true" termVectors="true"/>
-   <!-- These text fields omit norms - useful for extracted text like taxonomy_names -->
-   <dynamicField name="tos_*" type="text"    indexed="true"  stored="true" multiValued="false" termVectors="true" omitNorms="true"/>
-   <dynamicField name="tom_*" type="text"    indexed="true"  stored="true" multiValued="true" termVectors="true" omitNorms="true"/>
-   <!-- Special-purpose text fields -->
-   <dynamicField name="tes_*" type="edge_n2_kw_text" indexed="true" stored="true" multiValued="false" omitTermFreqAndPositions="true" />
-   <dynamicField name="tem_*" type="edge_n2_kw_text" indexed="true" stored="true" multiValued="true" omitTermFreqAndPositions="true" />
-   <dynamicField name="tws_*" type="text_ws" indexed="true" stored="true" multiValued="false"/>
-   <dynamicField name="twm_*" type="text_ws" indexed="true" stored="true" multiValued="true"/>
-
-   <!-- trie dates are preferred, so give them the 2 letter prefix -->
-   <dynamicField name="ds_*"  type="tdate"   indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="dm_*"  type="tdate"   indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="its_*" type="tlong"   indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="itm_*" type="tlong"   indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="fts_*" type="tfloat"  indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="ftm_*" type="tfloat"  indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="pts_*" type="tdouble" indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="ptm_*" type="tdouble" indexed="true"  stored="true" multiValued="true"/>
-   <!-- Binary fields can be populated using base64 encoded data. Useful e.g. for embedding
-        a small image in a search result using the data URI scheme -->
-   <dynamicField name="xs_*"  type="binary"  indexed="false" stored="true" multiValued="false"/>
-   <dynamicField name="xm_*"  type="binary"  indexed="false" stored="true" multiValued="true"/>
-   <!-- In rare cases a date rather than tdate is needed for sortMissingLast -->
-   <dynamicField name="dds_*" type="date"    indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="ddm_*" type="date"    indexed="true"  stored="true" multiValued="true"/>
-   <!-- Sortable fields, good for sortMissingLast support &
-        We use long for integer since 64 bit ints are now common in PHP. -->
-   <dynamicField name="iss_*" type="slong"   indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="ism_*" type="slong"   indexed="true"  stored="true" multiValued="true"/>
-   <!-- In rare cases a sfloat rather than tfloat is needed for sortMissingLast -->
-   <dynamicField name="fss_*" type="sfloat"  indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="fsm_*" type="sfloat"  indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="pss_*" type="sdouble" indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="psm_*" type="sdouble" indexed="true"  stored="true" multiValued="true"/>
-   <!-- In case a 32 bit int is really needed, we provide these fields. 'h' is mnemonic for 'half word', i.e. 32 bit on 64 arch -->
-   <dynamicField name="hs_*" type="integer" indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="hm_*" type="integer" indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="hss_*" type="sint"   indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="hsm_*" type="sint"   indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="hts_*" type="tint"   indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="htm_*" type="tint"   indexed="true"  stored="true" multiValued="true"/>
-
-   <!-- Unindexed string fields that can be used to store values that won't be searchable -->
-   <dynamicField name="zs_*" type="string"   indexed="false"  stored="true" multiValued="false"/>
-   <dynamicField name="zm_*" type="string"   indexed="false"  stored="true" multiValued="true"/>
-
-   <!-- Begin added fields to support modules that use features in Solr 3.4
-   but are actually using solr 1.4 -->
-   <dynamicField name="points_*" type="string" indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="pointm_*" type="string" indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="locs_*" type="string" indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="locm_*" type="string" indexed="true"  stored="true" multiValued="true"/>
-   <dynamicField name="geos_*" type="string" indexed="true"  stored="true" multiValued="false"/>
-   <dynamicField name="geom_*" type="string" indexed="true"  stored="true" multiValued="true"/>
-   <!-- End added fields for the support of modules that should use solr 3.4 -->
-
-   <!-- Sortable version of the dynamic string field -->
-   <dynamicField name="sort_*" type="sortString" indexed="true" stored="false"/>
-   <copyField source="ss_*" dest="sort_*"/>
-  <!-- A random sort field -->
-   <dynamicField name="random_*" type="rand" indexed="true" stored="true"/>
-   <!-- This field is used to store access information (e.g. node access grants), as opposed to field data -->
-   <dynamicField name="access_*" type="integer" indexed="true" stored="false" multiValued="true"/>
-
-   <!-- The following causes solr to ignore any fields that don't already match an existing
-        field name or dynamic field, rather than reporting them as an error.
-        Alternately, change the type="ignored" to some other type e.g. "text" if you want
-        unknown fields indexed and/or stored by default -->
-   <dynamicField name="*" type="ignored" multiValued="true" />
-
- </fields>
-
- <!-- Field to use to determine and enforce document uniqueness.
-      Unless this field is marked with required="false", it will be a required field
-   -->
- <uniqueKey>id</uniqueKey>
-
- <!-- field for the QueryParser to use when an explicit fieldname is absent -->
- <defaultSearchField>content</defaultSearchField>
-
- <!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
- <solrQueryParser defaultOperator="AND"/>
-
-</schema>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/solrconfig.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/solrconfig.xml
deleted file mode 100644
index a0818cdb7b07c2738e6a1848fbfda0b671f8f40b..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-1.4/solrconfig.xml
+++ /dev/null
@@ -1,736 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<config name="drupal-3.0-0-solr1.4">
-  <!-- Set this to 'false' if you want solr to continue working after it has
-       encountered an severe configuration error.  In a production environment,
-       you may want solr to keep working even if one handler is mis-configured.
-
-       You may also set this to false using by setting the system property:
-         -Dsolr.abortOnConfigurationError=false
-     -->
-  <abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
-
-  <!-- Used to specify an alternate directory to hold all index data
-       other than the default ./data under the Solr home.
-       If replication is in use, this should match the replication configuration. -->
-<!--
-  <dataDir>${solr.data.dir:./solr/data}</dataDir>
--->
-
-  <indexDefaults>
-   <!-- Values here affect all index writers and act as a default unless overridden. -->
-    <useCompoundFile>false</useCompoundFile>
-
-    <mergeFactor>10</mergeFactor>
-    <!--
-     If both ramBufferSizeMB and maxBufferedDocs is set, then Lucene will flush based on whichever limit is hit first.
-
-     -->
-    <!--<maxBufferedDocs>1000</maxBufferedDocs>-->
-    <!-- Tell Lucene when to flush documents to disk.
-    Giving Lucene more memory for indexing means faster indexing at the cost of more RAM
-
-    If both ramBufferSizeMB and maxBufferedDocs is set, then Lucene will flush based on whichever limit is hit first.
-
-    -->
-    <ramBufferSizeMB>32</ramBufferSizeMB>
-    <maxMergeDocs>2147483647</maxMergeDocs>
-    <maxFieldLength>20000</maxFieldLength>
-    <writeLockTimeout>1000</writeLockTimeout>
-    <commitLockTimeout>10000</commitLockTimeout>
-
-    <!--
-     Expert: Turn on Lucene's auto commit capability.
-     This causes intermediate segment flushes to write a new lucene
-     index descriptor, enabling it to be opened by an external
-     IndexReader.
-     NOTE: Despite the name, this value does not have any relation to Solr's autoCommit functionality
-     -->
-    <!--<luceneAutoCommit>false</luceneAutoCommit>-->
-    <!--
-     Expert:
-     The Merge Policy in Lucene controls how merging is handled by Lucene.  The default in 2.3 is the LogByteSizeMergePolicy, previous
-     versions used LogDocMergePolicy.
-
-     LogByteSizeMergePolicy chooses segments to merge based on their size.  The Lucene 2.2 default, LogDocMergePolicy chose when
-     to merge based on number of documents
-
-     Other implementations of MergePolicy must have a no-argument constructor
-     -->
-    <mergePolicy class="org.apache.lucene.index.LogByteSizeMergePolicy" />
-
-    <!--
-     Expert:
-     The Merge Scheduler in Lucene controls how merges are performed.  The ConcurrentMergeScheduler (Lucene 2.3 default)
-      can perform merges in the background using separate threads.  The SerialMergeScheduler (Lucene 2.2 default) does not.
-     -->
-    <!--<mergeScheduler>org.apache.lucene.index.ConcurrentMergeScheduler</mergeScheduler>-->
-
-    <!--
-      This option specifies which Lucene LockFactory implementation to use.
-
-      single = SingleInstanceLockFactory - suggested for a read-only index
-               or when there is no possibility of another process trying
-               to modify the index.
-      native = NativeFSLockFactory
-      simple = SimpleFSLockFactory
-
-      (For backwards compatibility with Solr 1.2, 'simple' is the default
-       if not specified.)
-    -->
-    <lockType>single</lockType>
-  </indexDefaults>
-
-  <mainIndex>
-    <!-- options specific to the main on-disk lucene index -->
-    <useCompoundFile>false</useCompoundFile>
-    <ramBufferSizeMB>32</ramBufferSizeMB>
-    <mergeFactor>4</mergeFactor>
-    <maxMergeDocs>2147483647</maxMergeDocs>
-    <maxFieldLength>20000</maxFieldLength>
-
-    <!-- If true, unlock any held write or commit locks on startup.
-         This defeats the locking mechanism that allows multiple
-         processes to safely access a lucene index, and should be
-         used with care.
-         This is not needed if lock type is 'none' or 'single'
-     -->
-    <unlockOnStartup>false</unlockOnStartup>
-
-    <!--
-        Custom deletion policies can specified here. The class must
-        implement org.apache.lucene.index.IndexDeletionPolicy.
-
-        http://lucene.apache.org/java/2_3_2/api/org/apache/lucene/index/IndexDeletionPolicy.html
-
-        The standard Solr IndexDeletionPolicy implementation supports deleting
-        index commit points on number of commits, age of commit point and
-        optimized status.
-
-        The latest commit point should always be preserved regardless
-        of the criteria.
-    -->
-    <deletionPolicy class="solr.SolrDeletionPolicy">
-      <!-- Keep only optimized commit points -->
-      <str name="keepOptimizedOnly">false</str>
-      <!-- The maximum number of commit points to be kept -->
-      <str name="maxCommitsToKeep">1</str>
-      <!--
-          Delete all commit points once they have reached the given age.
-          Supports DateMathParser syntax e.g.
-
-          <str name="maxCommitAge">30MINUTES</str>
-          <str name="maxCommitAge">1DAY</str>
-      -->
-    </deletionPolicy>
-
-  </mainIndex>
-
-  <!--	Enables JMX if and only if an existing MBeanServer is found, use
-  		this if you want to configure JMX through JVM parameters. Remove
-  		this to disable exposing Solr configuration and statistics to JMX.
-
-		If you want to connect to a particular server, specify the agentId
-		e.g. <jmx agentId="myAgent" />
-
-		If you want to start a new MBeanServer, specify the serviceUrl
-		e.g <jmx serviceUrl="service:jmx:rmi:///jndi/rmi://localhost:9999/solr" />
-
-		For more details see http://wiki.apache.org/solr/SolrJmx
-  -->
-  <jmx />
-
-  <!-- the default high-performance update handler -->
-  <updateHandler class="solr.DirectUpdateHandler2">
-
-    <!-- A prefix of "solr." for class names is an alias that
-         causes solr to search appropriate packages, including
-         org.apache.solr.(search|update|request|core|analysis)
-     -->
-
-    <!-- Perform a <commit/> automatically under certain conditions:
-         maxDocs - number of updates since last commit is greater than this
-         maxTime - oldest uncommited update (in ms) is this long ago
-    -->
-    <autoCommit>
-      <maxDocs>2000</maxDocs>
-      <maxTime>120000</maxTime>
-    </autoCommit>
-
-
-    <!-- The RunExecutableListener executes an external command.
-         exe - the name of the executable to run
-         dir - dir to use as the current working directory. default="."
-         wait - the calling thread waits until the executable returns. default="true"
-         args - the arguments to pass to the program.  default=nothing
-         env - environment variables to set.  default=nothing
-      -->
-    <!-- A postCommit event is fired after every commit or optimize command
-    <listener event="postCommit" class="solr.RunExecutableListener">
-      <str name="exe">solr/bin/snapshooter</str>
-      <str name="dir">.</str>
-      <bool name="wait">true</bool>
-      <arr name="args"> <str>arg1</str> <str>arg2</str> </arr>
-      <arr name="env"> <str>MYVAR=val1</str> </arr>
-    </listener>
-    -->
-    <!-- A postOptimize event is fired only after every optimize command, useful
-         in conjunction with index distribution to only distribute optimized indicies
-    <listener event="postOptimize" class="solr.RunExecutableListener">
-      <str name="exe">snapshooter</str>
-      <str name="dir">solr/bin</str>
-      <bool name="wait">true</bool>
-    </listener>
-    -->
-
-  </updateHandler>
-
-
-  <query>
-    <!-- Maximum number of clauses in a boolean query... can affect
-        range or prefix queries that expand to big boolean
-        queries.  An exception is thrown if exceeded.  -->
-    <maxBooleanClauses>1024</maxBooleanClauses>
-
-
-    <!-- There are two implementations of cache available for Solr,
-         LRUCache, based on a synchronized LinkedHashMap, and
-         FastLRUCache, based on a ConcurrentHashMap.  FastLRUCache has faster gets
-         and slower puts in single threaded operation and thus is generally faster
-         than LRUCache when the hit ratio of the cache is high (> 75%), and may be
-         faster under other scenarios on multi-cpu systems. -->
-    <!-- Cache used by SolrIndexSearcher for filters (DocSets),
-         unordered sets of *all* documents that match a query.
-         When a new searcher is opened, its caches may be prepopulated
-         or "autowarmed" using data from caches in the old searcher.
-         autowarmCount is the number of items to prepopulate.  For LRUCache,
-         the autowarmed items will be the most recently accessed items.
-       Parameters:
-         class - the SolrCache implementation LRUCache or FastLRUCache
-         size - the maximum number of entries in the cache
-         initialSize - the initial capacity (number of entries) of
-           the cache.  (seel java.util.HashMap)
-         autowarmCount - the number of entries to prepopulate from
-           and old cache.
-         -->
-    <filterCache
-      class="solr.FastLRUCache"
-      size="512"
-      initialSize="512"
-      autowarmCount="128"/>
-
-    <!-- Cache used to hold field values that are quickly accessible
-         by document id.  The fieldValueCache is created by default
-         even if not configured here.
-      <fieldValueCache
-        class="solr.FastLRUCache"
-        size="512"
-        autowarmCount="128"
-        showItems="32"
-      />
-    -->
-
-   <!-- queryResultCache caches results of searches - ordered lists of
-         document ids (DocList) based on a query, a sort, and the range
-         of documents requested.  -->
-    <queryResultCache
-      class="solr.LRUCache"
-      size="512"
-      initialSize="512"
-      autowarmCount="32"/>
-
-  <!-- documentCache caches Lucene Document objects (the stored fields for each document).
-       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->
-    <documentCache
-      class="solr.LRUCache"
-      size="512"
-      initialSize="512"
-      autowarmCount="0"/>
-
-    <!-- If true, stored fields that are not requested will be loaded lazily.
-
-    This can result in a significant speed improvement if the usual case is to
-    not load all stored fields, especially if the skipped fields are large compressed
-    text fields.
-    -->
-    <enableLazyFieldLoading>true</enableLazyFieldLoading>
-
-    <!-- Example of a generic cache.  These caches may be accessed by name
-         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().
-         The purpose is to enable easy caching of user/application level data.
-         The regenerator argument should be specified as an implementation
-         of solr.search.CacheRegenerator if autowarming is desired.  -->
-    <!--
-    <cache name="myUserCache"
-      class="solr.LRUCache"
-      size="4096"
-      initialSize="1024"
-      autowarmCount="1024"
-      regenerator="org.mycompany.mypackage.MyRegenerator"
-      />
-    -->
-
-   <!-- An optimization that attempts to use a filter to satisfy a search.
-         If the requested sort does not include score, then the filterCache
-         will be checked for a filter matching the query. If found, the filter
-         will be used as the source of document ids, and then the sort will be
-         applied to that.
-    <useFilterForSortedQuery>true</useFilterForSortedQuery>
-   -->
-
-   <!-- An optimization for use with the queryResultCache.  When a search
-         is requested, a superset of the requested number of document ids
-         are collected.  For example, if a search for a particular query
-         requests matching documents 10 through 19, and queryWindowSize is 50,
-         then documents 0 through 49 will be collected and cached.  Any further
-         requests in that range can be satisfied via the cache.  -->
-    <queryResultWindowSize>50</queryResultWindowSize>
-
-    <!-- Maximum number of documents to cache for any entry in the
-         queryResultCache. -->
-    <queryResultMaxDocsCached>200</queryResultMaxDocsCached>
-
-    <!-- This entry enables an int hash representation for filters (DocSets)
-         when the number of items in the set is less than maxSize.  For smaller
-         sets, this representation is more memory efficient, more efficient to
-         iterate over, and faster to take intersections.  -->
-    <HashDocSet maxSize="3000" loadFactor="0.75"/>
-
-    <!-- a newSearcher event is fired whenever a new searcher is being prepared
-         and there is a current searcher handling requests (aka registered). -->
-    <!-- QuerySenderListener takes an array of NamedList and executes a
-         local query request for each NamedList in sequence. -->
-    <listener event="newSearcher" class="solr.QuerySenderListener">
-      <arr name="queries">
-        <lst> <str name="q">solr</str> <str name="start">0</str> <str name="rows">10</str> </lst>
-        <lst> <str name="q">rocks</str> <str name="start">0</str> <str name="rows">10</str> </lst>
-        <lst><str name="q">static newSearcher warming query from solrconfig.xml</str></lst>
-      </arr>
-    </listener>
-
-    <!-- a firstSearcher event is fired whenever a new searcher is being
-         prepared but there is no current registered searcher to handle
-         requests or to gain autowarming data from. -->
-    <listener event="firstSearcher" class="solr.QuerySenderListener">
-      <arr name="queries">
-        <lst> <str name="q">fast_warm</str> <str name="start">0</str> <str name="rows">10</str> </lst>
-        <lst><str name="q">static firstSearcher warming query from solrconfig.xml</str></lst>
-      </arr>
-    </listener>
-
-    <!-- If a search request comes in and there is no current registered searcher,
-         then immediately register the still warming searcher and use it.  If
-         "false" then all requests will block until the first searcher is done
-         warming. -->
-    <useColdSearcher>false</useColdSearcher>
-
-    <!-- Maximum number of searchers that may be warming in the background
-      concurrently.  An error is returned if this limit is exceeded. Recommend
-      1-2 for read-only slaves, higher for masters w/o cache warming. -->
-    <maxWarmingSearchers>2</maxWarmingSearchers>
-
-  </query>
-
-  <!--
-    Let the dispatch filter handler /select?qt=XXX
-    handleSelect=true will use consistent error handling for /select and /update
-    handleSelect=false will use solr1.1 style error formatting
-    -->
-  <requestDispatcher handleSelect="true" >
-    <!--Make sure your system has some authentication before enabling remote streaming!  -->
-    <requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048" />
-
-    <!-- Set HTTP caching related parameters (for proxy caches and clients).
-
-         To get the behaviour of Solr 1.2 (ie: no caching related headers)
-         use the never304="true" option and do not specify a value for
-         <cacheControl>
-    -->
-    <!-- <httpCaching never304="true"> -->
-    <httpCaching lastModifiedFrom="openTime"
-                 etagSeed="Solr">
-       <!-- lastModFrom="openTime" is the default, the Last-Modified value
-            (and validation against If-Modified-Since requests) will all be
-            relative to when the current Searcher was opened.
-            You can change it to lastModFrom="dirLastMod" if you want the
-            value to exactly corrispond to when the physical index was last
-            modified.
-
-            etagSeed="..." is an option you can change to force the ETag
-            header (and validation against If-None-Match requests) to be
-            differnet even if the index has not changed (ie: when making
-            significant changes to your config file)
-
-            lastModifiedFrom and etagSeed are both ignored if you use the
-            never304="true" option.
-       -->
-       <!-- If you include a <cacheControl> directive, it will be used to
-            generate a Cache-Control header, as well as an Expires header
-            if the value contains "max-age="
-
-            By default, no Cache-Control header is generated.
-
-            You can use the <cacheControl> option even if you have set
-            never304="true"
-       -->
-       <!-- <cacheControl>max-age=30, public</cacheControl> -->
-    </httpCaching>
-  </requestDispatcher>
-
-
-  <!-- requestHandler plugins... incoming queries will be dispatched to the
-     correct handler based on the path or the qt (query type) param.
-     Names starting with a '/' are accessed with the a path equal to the
-     registered name.  Names without a leading '/' are accessed with:
-      http://host/app/select?qt=name
-     If no qt is defined, the requestHandler that declares default="true"
-     will be used.
-  -->
-  <requestHandler name="standard" class="solr.SearchHandler">
-    <!-- default values for query parameters -->
-     <lst name="defaults">
-       <str name="echoParams">explicit</str>
-       <bool name="omitHeader">true</bool>
-       <!--
-       <int name="rows">10</int>
-       <str name="fl">*</str>
-       <str name="version">2.1</str>
-        -->
-     </lst>
-  </requestHandler>
-
-<!-- Please refer to http://wiki.apache.org/solr/SolrReplication for details on configuring replication -->
-<!-- MASTER_REPLICATION_START
-<requestHandler name="/replication" class="solr.ReplicationHandler" >
-    <lst name="master">
-        <str name="replicateAfter">commit</str>
-        <str name="replicateAfter">startup</str>
-        <str name="confFiles">schema.xml,mapping-ISOLatin1Accent.txt,protwords.txt,stopwords.txt,synonyms.txt,elevate.xml</str>
-    </lst>
-</requestHandler>
- MASTER_REPLICATION_END -->
-
-<!-- SLAVE_REPLICATION_START
-<requestHandler name="/replication" class="solr.ReplicationHandler" >
-    <lst name="slave">
-        <str name="masterUrl">$MASTER_CORE_URL/replication</str>
-        <str name="pollInterval">$POLL_TIME</str>
-     </lst>
-</requestHandler>
- SLAVE_REPLICATION_END -->
-
-  <!-- DisMaxRequestHandler allows easy searching across multiple fields
-       for simple user-entered phrases.  It's implementation is now
-       just the standard SearchHandler with a default query type
-       of "dismax".
-       see http://wiki.apache.org/solr/DisMaxRequestHandler
-   -->
-  <requestHandler name="dismax" class="solr.SearchHandler">
-    <lst name="defaults">
-     <str name="defType">dismax</str>
-     <str name="echoParams">explicit</str>
-     <bool name="omitHeader">true</bool>
-    </lst>
-  </requestHandler>
-
-  <!-- Note how you can register the same handler multiple times with
-       different names (and different init parameters)
-    -->
-  <requestHandler name="drupal" class="solr.SearchHandler" default="true">
-    <lst name="defaults">
-     <str name="defType">dismax</str>
-     <str name="echoParams">explicit</str>
-     <bool name="omitHeader">true</bool>
-     <float name="tie">0.01</float>
-     <str name="pf">
-        content^2.0
-     </str>
-     <int name="ps">15</int>
-     <!-- Abort any searches longer than 4 seconds -->
-     <!-- <int name="timeAllowed">4000</int>  -->
-     <str name="mm">1</str>
-     <str name="q.alt">*:*</str>
-
-   <!-- example highlighter config, enable per-query with hl=true -->
-     <str name="hl">true</str>
-     <str name="hl.fl">content</str>
-     <int name="hl.snippets">3</int>
-     <str name="hl.mergeContiguous">true</str>
-   <!-- instructs Solr to return the field itself if no query terms are
-        found -->
-     <str name="f.content.hl.alternateField">teaser</str>
-     <str name="f.content.hl.maxAlternateFieldLength">256</str>
-     <!-- JS: I wasn't getting good results here... I'm turning off for now
-     because I was getting periods (.) by themselves at the beginning of
-     snippets and don't feel like debugging anymore.  Without the regex is
-     faster too -->
-     <!--<str name="f.content.hl.fragmenter">regex</str>--> <!-- defined below -->
-
-    <!-- By default, don't spell check -->
-      <str name="spellcheck">false</str>
-    <!-- Defaults for the spell checker when used -->
-      <str name="spellcheck.onlyMorePopular">true</str>
-      <str name="spellcheck.extendedResults">false</str>
-      <!--  The number of suggestions to return -->
-      <str name="spellcheck.count">1</str>
-    </lst>
-    <arr name="last-components">
-      <str>spellcheck</str>
-    </arr>
-  </requestHandler>
-
-  <!-- The more like this handler offers many advantages over the standard handler,
-    when performing moreLikeThis requests.-->
-  <requestHandler name="mlt" class="solr.MoreLikeThisHandler">
-    <lst name="defaults">
-      <str name="mlt.mintf">1</str>
-      <str name="mlt.mindf">1</str>
-      <str name="mlt.minwl">3</str>
-      <str name="mlt.maxwl">15</str>
-      <str name="mlt.maxqt">20</str>
-      <str name="mlt.match.include">false</str>
-      <!-- Abort any searches longer than 1.5 seconds -->
-      <!-- <int name="timeAllowed">1500</int> -->
-    </lst>
-  </requestHandler>
-
-
-  <!--
-   Search components are registered to SolrCore and used by Search Handlers
-
-   By default, the following components are avaliable:
-
-   <searchComponent name="query"     class="org.apache.solr.handler.component.QueryComponent" />
-   <searchComponent name="facet"     class="org.apache.solr.handler.component.FacetComponent" />
-   <searchComponent name="mlt"       class="org.apache.solr.handler.component.MoreLikeThisComponent" />
-   <searchComponent name="highlight" class="org.apache.solr.handler.component.HighlightComponent" />
-   <searchComponent name="stats"     class="org.apache.solr.handler.component.StatsComponent" />
-   <searchComponent name="debug"     class="org.apache.solr.handler.component.DebugComponent" />
-
-   Default configuration in a requestHandler would look like:
-    <arr name="components">
-      <str>query</str>
-      <str>facet</str>
-      <str>mlt</str>
-      <str>highlight</str>
-      <str>stats</str>
-      <str>debug</str>
-    </arr>
-
-    If you register a searchComponent to one of the standard names, that will be used instead.
-    To insert components before or after the 'standard' components, use:
-
-    <arr name="first-components">
-      <str>myFirstComponentName</str>
-    </arr>
-
-    <arr name="last-components">
-      <str>myLastComponentName</str>
-    </arr>
-  -->
-
-   <!-- The spell check component can return a list of alternative spelling
-  suggestions.  -->
-  <searchComponent name="spellcheck" class="solr.SpellCheckComponent">
-
-    <str name="queryAnalyzerFieldType">textSpell</str>
-
-    <lst name="spellchecker">
-      <str name="name">default</str>
-      <str name="field">spell</str>
-      <str name="spellcheckIndexDir">./spellchecker1</str>
-      <str name="buildOnOptimize">true</str>
-    </lst>
-    <lst name="spellchecker">
-      <str name="name">jarowinkler</str>
-      <str name="field">spell</str>
-      <!-- Use a different Distance Measure -->
-      <str name="distanceMeasure">org.apache.lucene.search.spell.JaroWinklerDistance</str>
-      <str name="spellcheckIndexDir">./spellchecker2</str>
-      <str name="buildOnOptimize">true</str>
-    </lst>
-
-  </searchComponent>
-
-  <queryConverter name="queryConverter" class="solr.SpellingQueryConverter"/>
-
-  <!-- a search component that enables you to configure the top results for
-       a given query regardless of the normal lucene scoring.-->
-  <searchComponent name="elevator" class="solr.QueryElevationComponent" >
-    <!-- pick a fieldType to analyze queries -->
-    <str name="queryFieldType">string</str>
-    <str name="config-file">elevate.xml</str>
-  </searchComponent>
-
-  <!-- a request handler utilizing the elevator component -->
-  <requestHandler name="/elevate" class="solr.SearchHandler" startup="lazy">
-    <lst name="defaults">
-      <str name="echoParams">explicit</str>
-    </lst>
-    <arr name="last-components">
-      <str>elevator</str>
-    </arr>
-  </requestHandler>
-
-
-  <!-- Update request handler.
-
-       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in
-       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'
-       The response format differs from solr1.1 formatting and returns a standard error code.
-
-       To enable solr1.1 behavior, remove the /update handler or change its path
-    -->
-  <requestHandler name="/update" class="solr.XmlUpdateRequestHandler" />
-
-  <!--
-   Analysis request handler.  Since Solr 1.3.  Use to returnhow a document is analyzed.  Useful
-   for debugging and as a token server for other types of applications
-   -->
-  <requestHandler name="/analysis" class="solr.AnalysisRequestHandler" />
-
-
-  <!-- CSV update handler, loaded on demand -->
-  <requestHandler name="/update/csv" class="solr.CSVRequestHandler" startup="lazy" />
-
-
-  <!--
-   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding
-   this single handler is equivalent to registering:
-
-  <requestHandler name="/admin/luke"       class="org.apache.solr.handler.admin.LukeRequestHandler" />
-  <requestHandler name="/admin/system"     class="org.apache.solr.handler.admin.SystemInfoHandler" />
-  <requestHandler name="/admin/plugins"    class="org.apache.solr.handler.admin.PluginInfoHandler" />
-  <requestHandler name="/admin/threads"    class="org.apache.solr.handler.admin.ThreadDumpHandler" />
-  <requestHandler name="/admin/properties" class="org.apache.solr.handler.admin.PropertiesRequestHandler" />
-  <requestHandler name="/admin/file"       class="org.apache.solr.handler.admin.ShowFileRequestHandler" >
-
-  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:
-  <requestHandler name="/admin/file" class="org.apache.solr.handler.admin.ShowFileRequestHandler" >
-    <lst name="invariants">
-     <str name="hidden">synonyms.txt</str>
-     <str name="hidden">anotherfile.txt</str>
-    </lst>
-  </requestHandler>
-  -->
-  <requestHandler name="/admin/" class="org.apache.solr.handler.admin.AdminHandlers" />
-
-  <!-- ping/healthcheck -->
-  <requestHandler name="/admin/ping" class="PingRequestHandler">
-    <lst name="defaults">
-      <str name="qt">standard</str>
-      <str name="q">solrpingquery</str>
-      <str name="echoParams">all</str>
-    </lst>
-  </requestHandler>
-
-  <!-- Files that are needed to start the service -->
-  <requestHandler name="/admin/file" class="org.apache.solr.handler.admin.ShowFileRequestHandler" >
-    <lst name="invariants">
-     <str name="hidden">admin-extra.html</str>
-     <str name="hidden">scripts.conf</str>
-     <str name="hidden">xslt/example.xsl</str>
-     <str name="hidden">xslt/example_atom.xsl</str>
-     <str name="hidden">xslt/example_rss.xsl</str>
-     <str name="hidden">xslt/luke.xsl</str>
-    </lst>
-  </requestHandler>
-
-  <!-- Echo the request contents back to the client -->
-  <requestHandler name="/debug/dump" class="solr.DumpRequestHandler" >
-    <lst name="defaults">
-     <str name="echoParams">explicit</str> <!-- for all params (including the default etc) use: 'all' -->
-     <str name="echoHandler">true</str>
-    </lst>
-  </requestHandler>
-
-  <highlighting>
-   <!-- Configure the standard fragmenter -->
-   <!-- This could most likely be commented out in the "default" case -->
-   <fragmenter name="gap" class="org.apache.solr.highlight.GapFragmenter" default="true">
-    <lst name="defaults">
-     <int name="hl.fragsize">100</int>
-    </lst>
-   </fragmenter>
-
-   <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->
-   <fragmenter name="regex" class="org.apache.solr.highlight.RegexFragmenter">
-    <lst name="defaults">
-      <!-- slightly smaller fragsizes work better because of slop -->
-      <int name="hl.fragsize">70</int>
-      <!-- allow 50% slop on fragment sizes -->
-      <float name="hl.regex.slop">0.5</float>
-      <!-- a basic sentence pattern -->
-      <str name="hl.regex.pattern">[-\w ,/\n\"']{20,200}</str>
-    </lst>
-   </fragmenter>
-
-   <!-- Configure the standard formatter -->
-   <formatter name="html" class="org.apache.solr.highlight.HtmlFormatter" default="true">
-    <lst name="defaults">
-     <str name="hl.simple.pre"><![CDATA[<strong>]]></str>
-     <str name="hl.simple.post"><![CDATA[</strong>]]></str>
-    </lst>
-   </formatter>
-  </highlighting>
-
-
-  <!-- queryResponseWriter plugins... query responses will be written using the
-    writer specified by the 'wt' request parameter matching the name of a registered
-    writer.
-    The "default" writer is the default and will be used if 'wt' is not specified
-    in the request. XMLResponseWriter will be used if nothing is specified here.
-    The json, python, and ruby writers are also available by default.
-
-    <queryResponseWriter name="xml" class="org.apache.solr.request.XMLResponseWriter" default="true"/>
-    <queryResponseWriter name="json" class="org.apache.solr.request.JSONResponseWriter"/>
-    <queryResponseWriter name="python" class="org.apache.solr.request.PythonResponseWriter"/>
-    <queryResponseWriter name="ruby" class="org.apache.solr.request.RubyResponseWriter"/>
-    <queryResponseWriter name="php" class="org.apache.solr.request.PHPResponseWriter"/>
-    <queryResponseWriter name="phps" class="org.apache.solr.request.PHPSerializedResponseWriter"/>
-
-    <queryResponseWriter name="custom" class="com.example.MyResponseWriter"/>
-  -->
-
-  <!-- XSLT response writer transforms the XML output by any xslt file found
-       in Solr's conf/xslt directory.  Changes to xslt files are checked for
-       every xsltCacheLifetimeSeconds.
-   -->
-  <queryResponseWriter name="xslt" class="org.apache.solr.request.XSLTResponseWriter">
-    <int name="xsltCacheLifetimeSeconds">5</int>
-  </queryResponseWriter>
-
-
-  <!-- example of registering a query parser
-  <queryParser name="lucene" class="org.apache.solr.search.LuceneQParserPlugin"/>
-  -->
-
-  <!-- example of registering a custom function parser
-  <valueSourceParser name="myfunc" class="com.mycompany.MyValueSourceParser" />
-  -->
-
-  <!-- config for the admin interface -->
-  <admin>
-    <defaultQuery>solr</defaultQuery>
-    <!-- configure a healthcheck file for servers behind a loadbalancer
-    <healthcheck type="file">server-enabled</healthcheck>
-    -->
-  </admin>
-
-</config>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/elevate.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/elevate.xml
deleted file mode 100644
index 71ea0006cf12153977aa618d36761e7141071d31..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/elevate.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-
-<!--
- This file allows you to boost certain search items to the top of search
- results. You can find out an item's ID by searching directly on the Solr
- server. The item IDs are in general constructed as follows:
-   Search API:
-     $document->id = $index_id . '-' . $item_id;
-   Apache Solr Search Integration:
-     $document->id = $site_hash . '/' . $entity_type . '/' . $entity->id;
-
- If you want this file to be automatically re-loaded when a Solr commit takes
- place (e.g., if you have an automatic script active which updates elevate.xml
- according to newly-indexed data), place it into Solr's data/ directory.
- Otherwise, place it with the other configuration files into the conf/
- directory.
-
- See http://wiki.apache.org/solr/QueryElevationComponent for more information.
--->
-
-<elevate>
-<!-- Example for ranking the node #1 first in searches for "example query": -->
-<!--
- <query text="example query">
-  <doc id="default_node_index-1" />
-  <doc id="7v3jsc/node/1" />
- </query>
--->
-<!-- Multiple <query> elements can be specified, contained in one <elevate>. -->
-<!-- <query text="...">...</query> -->
-</elevate>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/mapping-ISOLatin1Accent.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/mapping-ISOLatin1Accent.txt
deleted file mode 100644
index b92d03c55005ef6107723cd3575be7f77a7f4346..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/mapping-ISOLatin1Accent.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-# This file contains character mappings for the default fulltext field type.
-# The source characters (on the left) will be replaced by the respective target
-# characters before any other processing takes place.
-# Lines starting with a pound character # are ignored.
-#
-# For sensible defaults, use the mapping-ISOLatin1Accent.txt file distributed
-# with the example application of your Solr version.
-#
-# Examples:
-#   "À" => "A"
-#   "\u00c4" => "A"
-#   "\u00c4" => "\u0041"
-#   "æ" => "ae"
-#   "\n" => " "
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/protwords.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/protwords.txt
deleted file mode 100644
index cda858149750acd3e5f7cf00c8deecb167fa6193..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/protwords.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-#-----------------------------------------------------------------------
-# This file blocks words from being operated on by the stemmer and word delimiter.
-&amp;
-&lt;
-&gt;
-&#039;
-&quot;
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema.xml
deleted file mode 100644
index 97077af4997e0d735726d910c83db28660593cb2..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema.xml
+++ /dev/null
@@ -1,546 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-
-<!--
- This is the Solr schema file. This file should be named "schema.xml" and
- should be in the conf directory under the solr home
- (i.e. ./solr/conf/schema.xml by default)
- or located where the classloader for the Solr webapp can find it.
-
- For more information, on how to customize this file, please see
- http://wiki.apache.org/solr/SchemaXml
--->
-
-<schema name="drupal-4.3-solr-3.x" version="1.3">
-    <!-- attribute "name" is the name of this schema and is only used for display purposes.
-         Applications should change this to reflect the nature of the search collection.
-         version="1.2" is Solr's version number for the schema syntax and semantics.  It should
-         not normally be changed by applications.
-         1.0: multiValued attribute did not exist, all fields are multiValued by nature
-         1.1: multiValued attribute introduced, false by default
-         1.2: omitTermFreqAndPositions attribute introduced, true by default except for text fields.
-         1.3: removed optional field compress feature
-       -->
-  <types>
-    <!-- field type definitions. The "name" attribute is
-       just a label to be used by field definitions.  The "class"
-       attribute and any other attributes determine the real
-       behavior of the fieldType.
-         Class names starting with "solr" refer to java classes in the
-       org.apache.solr.analysis package.
-    -->
-
-    <!-- The StrField type is not analyzed, but indexed/stored verbatim.
-       - StrField and TextField support an optional compressThreshold which
-       limits compression (if enabled in the derived fields) to values which
-       exceed a certain size (in characters).
-    -->
-    <fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
-
-    <!-- boolean type: "true" or "false" -->
-    <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" omitNorms="true"/>
-    <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->
-    <fieldtype name="binary" class="solr.BinaryField"/>
-
-    <!-- The optional sortMissingLast and sortMissingFirst attributes are
-         currently supported on types that are sorted internally as strings.
-       - If sortMissingLast="true", then a sort on this field will cause documents
-         without the field to come after documents with the field,
-         regardless of the requested sort order (asc or desc).
-       - If sortMissingFirst="true", then a sort on this field will cause documents
-         without the field to come before documents with the field,
-         regardless of the requested sort order.
-       - If sortMissingLast="false" and sortMissingFirst="false" (the default),
-         then default lucene sorting will be used which places docs without the
-         field first in an ascending sort and last in a descending sort.
-    -->
-
-    <!-- numeric field types that can be sorted, but are not optimized for range queries -->
-    <fieldType name="integer" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="float" class="solr.TrieFloatField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="double" class="solr.TrieDoubleField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-
-    <!--
-      Note:
-      These should only be used for compatibility with existing indexes (created with older Solr versions)
-      or if "sortMissingFirst" or "sortMissingLast" functionality is needed. Use Trie based fields instead.
-
-      Numeric field types that manipulate the value into
-      a string value that isn't human-readable in its internal form,
-      but with a lexicographic ordering the same as the numeric ordering,
-      so that range queries work correctly.
-    -->
-    <fieldType name="sint" class="solr.TrieIntField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="sfloat" class="solr.TrieFloatField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="slong" class="solr.TrieLongField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="sdouble" class="solr.TrieDoubleField" sortMissingLast="true" omitNorms="true"/>
-
-    <!--
-     Numeric field types that index each value at various levels of precision
-     to accelerate range queries when the number of values between the range
-     endpoints is large. See the javadoc for NumericRangeQuery for internal
-     implementation details.
-
-     Smaller precisionStep values (specified in bits) will lead to more tokens
-     indexed per value, slightly larger index size, and faster range queries.
-     A precisionStep of 0 disables indexing at different precision levels.
-    -->
-    <fieldType name="tint" class="solr.TrieIntField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tfloat" class="solr.TrieFloatField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tlong" class="solr.TrieLongField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tdouble" class="solr.TrieDoubleField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-
-    <!--
-     The ExternalFileField type gets values from an external file instead of the
-     index. This is useful for data such as rankings that might change frequently
-     and require different update frequencies than the documents they are
-     associated with.
-    -->
-    <fieldType name="pfloat" class="solr.FloatField" omitNorms="true"/>
-    <fieldType name="file" keyField="id" defVal="1" stored="false" indexed="false" class="solr.ExternalFileField" valType="pfloat"/>
-
-    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and
-         is a more restricted form of the canonical representation of dateTime
-         http://www.w3.org/TR/xmlschema-2/#dateTime
-         The trailing "Z" designates UTC time and is mandatory.
-         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z
-         All other components are mandatory.
-
-         Expressions can also be used to denote calculations that should be
-         performed relative to "NOW" to determine the value, ie...
-
-               NOW/HOUR
-                  ... Round to the start of the current hour
-               NOW-1DAY
-                  ... Exactly 1 day prior to now
-               NOW/DAY+6MONTHS+3DAYS
-                  ... 6 months and 3 days in the future from the start of
-                      the current day
-
-         Consult the DateField javadocs for more information.
-      -->
-    <fieldType name="date" class="solr.DateField" sortMissingLast="true" omitNorms="true"/>
-
-    <!-- A Trie based date field for faster date range queries and date faceting. -->
-    <fieldType name="tdate" class="solr.TrieDateField" omitNorms="true" precisionStep="6" positionIncrementGap="0"/>
-
-    <!-- solr.TextField allows the specification of custom text analyzers
-         specified as a tokenizer and a list of token filters. Different
-         analyzers may be specified for indexing and querying.
-
-         The optional positionIncrementGap puts space between multiple fields of
-         this type on the same document, with the purpose of preventing false phrase
-         matching across fields.
-
-         For more info on customizing your analyzer chain, please see
-         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters
-     -->
-
-    <!-- One can also specify an existing Analyzer class that has a
-         default constructor via the class attribute on the analyzer element
-    <fieldType name="text_greek" class="solr.TextField">
-      <analyzer class="org.apache.lucene.analysis.el.GreekAnalyzer"/>
-    </fieldType>
-    -->
-
-    <!-- A text field that only splits on whitespace for exact matching of words -->
-    <fieldType name="text_ws" class="solr.TextField" omitNorms="true" positionIncrementGap="100">
-      <analyzer>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of
-        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,
-        so that a query of "wifi" or "wi fi" could match a document containing "Wi-Fi".
-        Synonyms and stopwords are customized by external files, and stemming is enabled.
-        Duplicate tokens at the same position (which may result from Stemmed Synonyms or
-        WordDelim parts) are removed.
-        -->
-    <fieldType name="text" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <!-- in this example, we will only use synonyms at query time
-        <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
-        -->
-        <!-- Case insensitive stop word removal.
-          add enablePositionIncrements=true in both the index and query
-          analyzers to leave a 'gap' for more accurate phrase queries.
-        -->
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="1"
-                catenateNumbers="1"
-                catenateAll="0"
-                splitOnCaseChange="0"
-                preserveOriginal="1"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="0"
-                catenateNumbers="0"
-                catenateAll="0"
-                splitOnCaseChange="0"
-                preserveOriginal="1"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- An unstemmed text field - good if one does not know the language of the field -->
-    <fieldType name="text_und" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="1"
-                catenateNumbers="1"
-                catenateAll="0"
-                splitOnCaseChange="0"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="0"
-                catenateNumbers="0"
-                catenateAll="0"
-                splitOnCaseChange="0"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- Edge N gram type - for example for matching against queries with results
-        KeywordTokenizer leaves input string intact as a single term.
-        see: http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/
-      -->
-    <fieldType name="edge_n2_kw_text" class="solr.TextField" omitNorms="true" positionIncrementGap="100">
-      <analyzer type="index">
-        <tokenizer class="solr.KeywordTokenizerFactory"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.EdgeNGramFilterFactory" minGramSize="2" maxGramSize="25" />
-      </analyzer>
-      <analyzer type="query">
-        <tokenizer class="solr.KeywordTokenizerFactory"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-    <!--  Setup simple analysis for spell checking -->
-
-    <fieldType name="textSpell" class="solr.TextField" positionIncrementGap="100">
-      <analyzer>
-        <tokenizer class="solr.StandardTokenizerFactory" />
-        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/>
-        <filter class="solr.LengthFilterFactory" min="4" max="20" />
-        <filter class="solr.LowerCaseFilterFactory" />
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory" />
-      </analyzer>
-    </fieldType>
-
-    <!-- This is an example of using the KeywordTokenizer along
-         With various TokenFilterFactories to produce a sortable field
-         that does not include some properties of the source text
-      -->
-    <fieldType name="sortString" class="solr.TextField" sortMissingLast="true" omitNorms="true">
-      <analyzer>
-        <!-- KeywordTokenizer does no actual tokenizing, so the entire
-            input string is preserved as a single token
-          -->
-        <tokenizer class="solr.KeywordTokenizerFactory"/>
-        <!-- The LowerCase TokenFilter does what you expect, which can be
-            when you want your sorting to be case insensitive
-          -->
-        <filter class="solr.LowerCaseFilterFactory" />
-        <!-- The TrimFilter removes any leading or trailing whitespace -->
-        <filter class="solr.TrimFilterFactory" />
-        <!-- The PatternReplaceFilter gives you the flexibility to use
-            Java Regular expression to replace any sequence of characters
-            matching a pattern with an arbitrary replacement string,
-            which may include back refrences to portions of the orriginal
-            string matched by the pattern.
-
-            See the Java Regular Expression documentation for more
-            infomation on pattern and replacement string syntax.
-
-            http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/package-summary.html
-
-        <filter class="solr.PatternReplaceFilterFactory"
-               pattern="(^\p{Punct}+)" replacement="" replace="all"
-        />
-        -->
-      </analyzer>
-    </fieldType>
-
-    <!-- A random sort type -->
-    <fieldType name="rand" class="solr.RandomSortField" indexed="true" />
-
-    <!-- since fields of this type are by default not stored or indexed, any data added to
-         them will be ignored outright
-      -->
-    <fieldtype name="ignored" stored="false" indexed="false" class="solr.StrField" />
-
-    <!-- Begin added types to use features in Solr 3.4+ -->
-    <fieldType name="point" class="solr.PointType" dimension="2" subFieldType="tdouble"/>
-
-    <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->
-    <fieldType name="location" class="solr.LatLonType" subFieldType="tdouble"/>
-
-    <!-- A Geohash is a compact representation of a latitude longitude pair in a single field.
-         See http://wiki.apache.org/solr/SpatialSearch
-     -->
-    <fieldtype name="geohash" class="solr.GeoHashField"/>
-    <!-- End added Solr 3.4+ types -->
-  </types>
-
-  <!-- Following is a dynamic way to include other types, added by other contrib modules -->
-  <xi:include href="schema_extra_types.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
-    <xi:fallback></xi:fallback>
-  </xi:include>
-
-  <fields>
-    <!-- Valid attributes for fields:
-      name: mandatory - the name for the field
-      type: mandatory - the name of a previously defined type from the <types> section
-      indexed: true if this field should be indexed (searchable or sortable)
-      stored: true if this field should be retrievable
-      compressed: [false] if this field should be stored using gzip compression
-       (this will only apply if the field type is compressable; among
-       the standard field types, only TextField and StrField are)
-      multiValued: true if this field may contain multiple values per document
-      omitNorms: (expert) set to true to omit the norms associated with
-       this field (this disables length normalization and index-time
-       boosting for the field, and saves some memory).  Only full-text
-       fields or fields that need an index-time boost need norms.
-    -->
-
-    <!-- The document id is usually derived from a site-spcific key (hash) and the
-      entity type and ID like:
-      Search Api :
-        The format used is $document->id = $index_id . '-' . $item_id
-      Apache Solr Search Integration
-        The format used is $document->id = $site_hash . '/' . $entity_type . '/' . $entity->id;
-    -->
-    <field name="id" type="string" indexed="true" stored="true" required="true" />
-
-    <!-- Search Api specific fields -->
-    <!-- item_id contains the entity ID, e.g. a node's nid. -->
-    <field name="item_id"  type="string" indexed="true" stored="true" />
-    <!-- index_id is the machine name of the search index this entry belongs to. -->
-    <field name="index_id" type="string" indexed="true" stored="true" />
-    <!-- Since sorting by ID is explicitly allowed, store item_id also in a sortable way. -->
-    <copyField source="item_id" dest="sort_search_api_id" />
-
-    <!-- Apache Solr Search Integration specific fields -->
-    <!-- entity_id is the numeric object ID, e.g. Node ID, File ID -->
-    <field name="entity_id"  type="long" indexed="true" stored="true" />
-    <!-- entity_type is 'node', 'file', 'user', or some other Drupal object type -->
-    <field name="entity_type" type="string" indexed="true" stored="true" />
-    <!-- bundle is a node type, or as appropriate for other entity types -->
-    <field name="bundle" type="string" indexed="true" stored="true"/>
-    <field name="bundle_name" type="string" indexed="true" stored="true"/>
-    <field name="site" type="string" indexed="true" stored="true"/>
-    <field name="hash" type="string" indexed="true" stored="true"/>
-    <field name="url" type="string" indexed="true" stored="true"/>
-    <!-- label is the default field for a human-readable string for this entity (e.g. the title of a node) -->
-    <field name="label" type="text" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-    <!-- The string version of the title is used for sorting -->
-    <copyField source="label" dest="sort_label"/>
-
-    <!-- content is the default field for full text search - dump crap here -->
-    <field name="content" type="text" indexed="true" stored="true" termVectors="true"/>
-    <field name="teaser" type="text" indexed="false" stored="true"/>
-    <field name="path" type="string" indexed="true" stored="true"/>
-    <field name="path_alias" type="text" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-
-    <!-- These are the fields that correspond to a Drupal node. The beauty of having
-      Lucene store title, body, type, etc., is that we retrieve them with the search
-      result set and don't need to go to the database with a node_load. -->
-    <field name="tid"  type="long" indexed="true" stored="true" multiValued="true"/>
-    <field name="taxonomy_names" type="text" indexed="true" stored="false" termVectors="true" multiValued="true" omitNorms="true"/>
-    <!-- Copy terms to a single field that contains all taxonomy term names -->
-    <copyField source="tm_vid_*" dest="taxonomy_names"/>
-
-    <!-- Here, default is used to create a "timestamp" field indicating
-         when each document was indexed.-->
-    <field name="timestamp" type="tdate" indexed="true" stored="true" default="NOW" multiValued="false"/>
-
-    <!-- This field is used to build the spellchecker index -->
-    <field name="spell" type="textSpell" indexed="true" stored="true" multiValued="true"/>
-
-    <!-- copyField commands copy one field to another at the time a document
-         is added to the index.  It's used either to index the same field differently,
-         or to add multiple fields to the same field for easier/faster searching.  -->
-    <copyField source="label" dest="spell"/>
-    <copyField source="content" dest="spell"/>
-
-    <copyField source="ts_*" dest="spell"/>
-    <copyField source="tm_*" dest="spell"/>
-
-    <!-- Dynamic field definitions.  If a field name is not found, dynamicFields
-         will be used if the name matches any of the patterns.
-         RESTRICTION: the glob-like pattern in the name attribute must have
-         a "*" only at the start or the end.
-         EXAMPLE:  name="*_i" will match any field ending in _i (like myid_i, z_i)
-         Longer patterns will be matched first.  if equal size patterns
-         both match, the first appearing in the schema will be used.  -->
-
-    <!-- A set of fields to contain text extracted from HTML tag contents which we
-         can boost at query time. -->
-    <dynamicField name="tags_*" type="text"   indexed="true" stored="false" omitNorms="true"/>
-
-    <!-- For 2 and 3 letter prefix dynamic fields, the 1st letter indicates the data type and
-         the last letter is 's' for single valued, 'm' for multi-valued -->
-
-    <!-- We use long for integer since 64 bit ints are now common in PHP. -->
-    <dynamicField name="is_*"  type="long"    indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="im_*"  type="long"    indexed="true"  stored="true" multiValued="true"/>
-    <!-- List of floats can be saved in a regular float field -->
-    <dynamicField name="fs_*"  type="float"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="fm_*"  type="float"   indexed="true"  stored="true" multiValued="true"/>
-    <!-- List of doubles can be saved in a regular double field -->
-    <dynamicField name="ps_*"  type="double"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="pm_*"  type="double"   indexed="true"  stored="true" multiValued="true"/>
-    <!-- List of booleans can be saved in a regular boolean field -->
-    <dynamicField name="bm_*"  type="boolean" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="bs_*"  type="boolean" indexed="true"  stored="true" multiValued="false"/>
-    <!-- Regular text (without processing) can be stored in a string field-->
-    <dynamicField name="ss_*"  type="string"  indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="sm_*"  type="string"  indexed="true"  stored="true" multiValued="true"/>
-    <!-- Normal text fields are for full text - the relevance of a match depends on the length of the text -->
-    <dynamicField name="ts_*"  type="text"    indexed="true"  stored="true" multiValued="false" termVectors="true"/>
-    <dynamicField name="tm_*"  type="text"    indexed="true"  stored="true" multiValued="true" termVectors="true"/>
-    <!-- Unstemmed text fields for full text - the relevance of a match depends on the length of the text -->
-    <dynamicField name="tus_*" type="text_und" indexed="true"  stored="true" multiValued="false" termVectors="true"/>
-    <dynamicField name="tum_*" type="text_und" indexed="true"  stored="true" multiValued="true" termVectors="true"/>
-    <!-- These text fields omit norms - useful for extracted text like taxonomy_names -->
-    <dynamicField name="tos_*" type="text"    indexed="true"  stored="true" multiValued="false" termVectors="true" omitNorms="true"/>
-    <dynamicField name="tom_*" type="text"    indexed="true"  stored="true" multiValued="true" termVectors="true" omitNorms="true"/>
-    <!-- Special-purpose text fields -->
-    <dynamicField name="tes_*" type="edge_n2_kw_text" indexed="true" stored="true" multiValued="false" omitTermFreqAndPositions="true" />
-    <dynamicField name="tem_*" type="edge_n2_kw_text" indexed="true" stored="true" multiValued="true" omitTermFreqAndPositions="true" />
-    <dynamicField name="tws_*" type="text_ws" indexed="true" stored="true" multiValued="false"/>
-    <dynamicField name="twm_*" type="text_ws" indexed="true" stored="true" multiValued="true"/>
-
-    <!-- trie dates are preferred, so give them the 2 letter prefix -->
-    <dynamicField name="ds_*"  type="tdate"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="dm_*"  type="tdate"   indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="its_*" type="tlong"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="itm_*" type="tlong"   indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="fts_*" type="tfloat"  indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ftm_*" type="tfloat"  indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="pts_*" type="tdouble" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ptm_*" type="tdouble" indexed="true"  stored="true" multiValued="true"/>
-    <!-- Binary fields can be populated using base64 encoded data. Useful e.g. for embedding
-         a small image in a search result using the data URI scheme -->
-    <dynamicField name="xs_*"  type="binary"  indexed="false" stored="true" multiValued="false"/>
-    <dynamicField name="xm_*"  type="binary"  indexed="false" stored="true" multiValued="true"/>
-    <!-- In rare cases a date rather than tdate is needed for sortMissingLast -->
-    <dynamicField name="dds_*" type="date"    indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ddm_*" type="date"    indexed="true"  stored="true" multiValued="true"/>
-    <!-- Sortable fields, good for sortMissingLast support &
-         We use long for integer since 64 bit ints are now common in PHP. -->
-    <dynamicField name="iss_*" type="slong"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ism_*" type="slong"   indexed="true"  stored="true" multiValued="true"/>
-    <!-- In rare cases a sfloat rather than tfloat is needed for sortMissingLast -->
-    <dynamicField name="fss_*" type="sfloat"  indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="fsm_*" type="sfloat"  indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="pss_*" type="sdouble" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="psm_*" type="sdouble" indexed="true"  stored="true" multiValued="true"/>
-    <!-- In case a 32 bit int is really needed, we provide these fields. 'h' is mnemonic for 'half word', i.e. 32 bit on 64 arch -->
-    <dynamicField name="hs_*" type="integer" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="hm_*" type="integer" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="hss_*" type="sint"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="hsm_*" type="sint"   indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="hts_*" type="tint"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="htm_*" type="tint"   indexed="true"  stored="true" multiValued="true"/>
-
-    <!-- Unindexed string fields that can be used to store values that won't be searchable -->
-    <dynamicField name="zs_*" type="string"   indexed="false"  stored="true" multiValued="false"/>
-    <dynamicField name="zm_*" type="string"   indexed="false"  stored="true" multiValued="true"/>
-
-    <!-- Begin added fields to use features in Solr 3.4+
-         http://wiki.apache.org/solr/SpatialSearch#geodist_-_The_distance_function -->
-    <dynamicField name="points_*" type="point" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="pointm_*" type="point" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="locs_*" type="location" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="locm_*" type="location" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="geos_*" type="geohash" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="geom_*" type="geohash" indexed="true"  stored="true" multiValued="true"/>
-
-    <!-- External file fields -->
-    <dynamicField name="eff_*" type="file"/>
-    <!-- End added fields for Solr 3.4+ -->
-
-    <!-- Sortable version of the dynamic string field -->
-    <dynamicField name="sort_*" type="sortString" indexed="true" stored="false"/>
-    <copyField source="ss_*" dest="sort_*"/>
-    <!-- A random sort field -->
-    <dynamicField name="random_*" type="rand" indexed="true" stored="true"/>
-    <!-- This field is used to store access information (e.g. node access grants), as opposed to field data -->
-    <dynamicField name="access_*" type="integer" indexed="true" stored="false" multiValued="true"/>
-
-    <!-- The following causes solr to ignore any fields that don't already match an existing
-         field name or dynamic field, rather than reporting them as an error.
-         Alternately, change the type="ignored" to some other type e.g. "text" if you want
-         unknown fields indexed and/or stored by default -->
-    <dynamicField name="*" type="ignored" multiValued="true" />
-
-  </fields>
-
-  <!-- Following is a dynamic way to include other fields, added by other contrib modules -->
-  <xi:include href="schema_extra_fields.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
-    <xi:fallback></xi:fallback>
-  </xi:include>
-
-  <!-- Field to use to determine and enforce document uniqueness.
-       Unless this field is marked with required="false", it will be a required field
-    -->
-  <uniqueKey>id</uniqueKey>
-
-  <!-- field for the QueryParser to use when an explicit fieldname is absent -->
-  <defaultSearchField>content</defaultSearchField>
-
-  <!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
-  <solrQueryParser defaultOperator="AND"/>
-
-</schema>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema_extra_fields.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema_extra_fields.xml
deleted file mode 100644
index 9ecd5f4fa637598bb55136694d1b7133089dd0c7..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema_extra_fields.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<fields>
-<!--
-  Adding German dynamic field types to our Solr Schema
-  If you enable this, make sure you have a folder called lang with stopwords_de.txt
-  and synonyms_de.txt in there
-  This also requires to enable the content in schema_extra_types.xml
--->
-<!--
-   <field name="label_de" type="text_de" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-   <field name="content_de" type="text_de" indexed="true" stored="true" termVectors="true"/>
-   <field name="teaser_de" type="text_de" indexed="false" stored="true"/>
-   <field name="path_alias_de" type="text_de" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-   <field name="taxonomy_names_de" type="text_de" indexed="true" stored="false" termVectors="true" multiValued="true" omitNorms="true"/>
-   <field name="spell_de" type="text_de" indexed="true" stored="true" multiValued="true"/>
-   <copyField source="label_de" dest="spell_de"/>
-   <copyField source="content_de" dest="spell_de"/>
-   <dynamicField name="tags_de_*" type="text_de" indexed="true" stored="false" omitNorms="true"/>
-   <dynamicField name="ts_de_*" type="text_de" indexed="true" stored="true" multiValued="false" termVectors="true"/>
-   <dynamicField name="tm_de_*" type="text_de" indexed="true" stored="true" multiValued="true" termVectors="true"/>
-   <dynamicField name="tos_de_*" type="text_de" indexed="true" stored="true" multiValued="false" termVectors="true" omitNorms="true"/>
-   <dynamicField name="tom_de_*" type="text_de" indexed="true" stored="true" multiValued="true" termVectors="true" omitNorms="true"/>
--->
-</fields>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema_extra_types.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema_extra_types.xml
deleted file mode 100644
index e82072e2fb9235de0cf8b286f169f79d180630cb..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/schema_extra_types.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<types>
-<!--
-  Adding German language to our Solr Schema German
-  If you enable this, make sure you have a folder called lang with stopwords_de.txt
-  and synonyms_de.txt in there
--->
-<!--
-    <fieldType name="text_de" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.StopFilterFactory" words="lang/stopwords_de.txt" format="snowball" ignoreCase="true" enablePositionIncrements="true"/>
-        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" splitOnCaseChange="1" splitOnNumerics="1" catenateWords="1" catenateNumbers="1" catenateAll="0" protected="protwords.txt" preserveOriginal="1"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.GermanLightStemFilterFactory"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="lang/synonyms_de.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory" words="lang/stopwords_de.txt" format="snowball" ignoreCase="true" enablePositionIncrements="true"/>
-        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" splitOnCaseChange="1" splitOnNumerics="1" catenateWords="0" catenateNumbers="0" catenateAll="0" protected="protwords.txt" preserveOriginal="1"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.GermanLightStemFilterFactory"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-    </fieldType>
--->
-</types>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrconfig.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrconfig.xml
deleted file mode 100644
index 17c1ca7adb8d2bddba06921dc6e81fa6ad6d815e..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrconfig.xml
+++ /dev/null
@@ -1,1614 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<!--
-     For more details about configurations options that may appear in
-     this file, see http://wiki.apache.org/solr/SolrConfigXml.
--->
-<config name="drupal-4.3-solr-3.x">
-  <!-- In all configuration below, a prefix of "solr." for class names
-       is an alias that causes solr to search appropriate packages,
-       including org.apache.solr.(search|update|request|core|analysis)
-
-       You may also specify a fully qualified Java classname if you
-       have your own custom plugins.
-    -->
-
-  <!-- Set this to 'false' if you want solr to continue working after
-       it has encountered an severe configuration error.  In a
-       production environment, you may want solr to keep working even
-       if one handler is mis-configured.
-
-       You may also set this to false using by setting the system
-       property:
-
-         -Dsolr.abortOnConfigurationError=false
-    -->
-  <abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
-
-  <!-- Controls what version of Lucene various components of Solr
-       adhere to.  Generally, you want to use the latest version to
-       get all bug fixes and improvements. It is highly recommended
-       that you fully re-index after changing this setting as it can
-       affect both how text is indexed and queried.
-    -->
-  <luceneMatchVersion>${solr.luceneMatchVersion:LUCENE_35}</luceneMatchVersion>
-
-  <!-- lib directives can be used to instruct Solr to load an Jars
-       identified and use them to resolve any "plugins" specified in
-       your solrconfig.xml or schema.xml (ie: Analyzers, Request
-       Handlers, etc...).
-
-       All directories and paths are resolved relative to the
-       instanceDir.
-
-       If a "./lib" directory exists in your instanceDir, all files
-       found in it are included as if you had used the following
-       syntax...
-       
-              <lib dir="./lib" />
-    -->
-
-  <!-- A dir option by itself adds any files found in the directory to
-       the classpath, this is useful for including all jars in a
-       directory.
-    -->
-  <lib dir="${solr.contrib.dir:../../contrib}/extraction/lib" />
-  <lib dir="${solr.contrib.dir:../../contrib}/clustering/lib/" />
-
-  <!-- The velocity library has been known to crash Solr in some
-       instances when deployed as a war file to Tomcat. Therefore all
-       references have been removed from the default configuration.
-       @see http://drupal.org/node/1612556
-  -->
-  <!-- <lib dir="../../contrib/velocity/lib" /> -->
-
-  <!-- When a regex is specified in addition to a directory, only the
-       files in that directory which completely match the regex
-       (anchored on both ends) will be included.
-    -->
-  <!--<lib dir="../../dist/" regex="apache-solr-cell-\d.*\.jar" />-->
-  <!--<lib dir="../../dist/" regex="apache-solr-clustering-\d.*\.jar" />-->
-  <!--<lib dir="../../dist/" regex="apache-solr-dataimporthandler-\d.*\.jar" />-->
-  <!--<lib dir="../../dist/" regex="apache-solr-langid-\d.*\.jar" />-->
-  <!-- <lib dir="../../dist/" regex="apache-solr-velocity-\d.*\.jar" /> -->
-
-  <!-- If a dir option (with or without a regex) is used and nothing
-       is found that matches, it will be ignored
-    -->
-  <!--<lib dir="../../contrib/clustering/lib/" />-->
-  <!--<lib dir="/total/crap/dir/ignored" />-->
-
-  <!-- an exact path can be used to specify a specific file.  This
-       will cause a serious error to be logged if it can't be loaded.
-    -->
-  <!--
-  <lib path="../a-jar-that-does-not-exist.jar" /> 
-  -->
-  
-  <!-- Data Directory
-
-       Used to specify an alternate directory to hold all index data
-       other than the default ./data under the Solr home.  If
-       replication is in use, this should match the replication
-       configuration.
-    -->
-  <!-- <dataDir>${solr.data.dir:}</dataDir> -->
-
-
-  <!-- The DirectoryFactory to use for indexes.
-       
-       solr.StandardDirectoryFactory, the default, is filesystem
-       based and tries to pick the best implementation for the current
-       JVM and platform.  One can force a particular implementation
-       via solr.MMapDirectoryFactory, solr.NIOFSDirectoryFactory, or
-       solr.SimpleFSDirectoryFactory.
-
-       solr.RAMDirectoryFactory is memory based, not
-       persistent, and doesn't work with replication.
-    -->
-  <directoryFactory name="DirectoryFactory" 
-                    class="${solr.directoryFactory:solr.StandardDirectoryFactory}"/>
-
-  <!-- Index Defaults
-
-       Values here affect all index writers and act as a default
-       unless overridden.
-
-       WARNING: See also the <mainIndex> section below for parameters
-       that overfor Solr's main Lucene index.
-    -->
-  <indexDefaults>
-
-    <useCompoundFile>false</useCompoundFile>
-
-    <mergeFactor>4</mergeFactor>
-    <!-- Sets the amount of RAM that may be used by Lucene indexing
-         for buffering added documents and deletions before they are
-         flushed to the Directory.  -->
-    <ramBufferSizeMB>32</ramBufferSizeMB>
-    <!-- If both ramBufferSizeMB and maxBufferedDocs is set, then
-         Lucene will flush based on whichever limit is hit first.  
-      -->
-    <!-- <maxBufferedDocs>1000</maxBufferedDocs> -->
-
-    <maxMergeDocs>2147483647</maxMergeDocs>
-    <maxFieldLength>100000</maxFieldLength>
-    <writeLockTimeout>1000</writeLockTimeout>
-
-    <!-- Expert: Merge Policy 
-
-         The Merge Policy in Lucene controls how merging is handled by
-         Lucene.  The default in Solr 3.3 is TieredMergePolicy.
-         
-         The default in 2.3 was the LogByteSizeMergePolicy,
-         previous versions used LogDocMergePolicy.
-         
-         LogByteSizeMergePolicy chooses segments to merge based on
-         their size.  The Lucene 2.2 default, LogDocMergePolicy chose
-         when to merge based on number of documents
-         
-         Other implementations of MergePolicy must have a no-argument
-         constructor
-      -->
-    <mergePolicy class="org.apache.lucene.index.LogByteSizeMergePolicy"/>
-
-    <!-- Expert: Merge Scheduler
-
-         The Merge Scheduler in Lucene controls how merges are
-         performed.  The ConcurrentMergeScheduler (Lucene 2.3 default)
-         can perform merges in the background using separate threads.
-         The SerialMergeScheduler (Lucene 2.2 default) does not.
-     -->
-    <!-- 
-       <mergeScheduler class="org.apache.lucene.index.ConcurrentMergeScheduler"/>
-       -->
-	  
-    <!-- LockFactory 
-
-         This option specifies which Lucene LockFactory implementation
-         to use.
-      
-         single = SingleInstanceLockFactory - suggested for a
-                  read-only index or when there is no possibility of
-                  another process trying to modify the index.
-         native = NativeFSLockFactory - uses OS native file locking.
-                  Do not use when multiple solr webapps in the same
-                  JVM are attempting to share a single index.
-         simple = SimpleFSLockFactory  - uses a plain file for locking
-
-         (For backwards compatibility with Solr 1.2, 'simple' is the
-         default if not specified.)
-
-         More details on the nuances of each LockFactory...
-         http://wiki.apache.org/lucene-java/AvailableLockFactories
-    -->
-    <lockType>single</lockType>
-
-    <!-- Expert: Controls how often Lucene loads terms into memory
-         Default is 128 and is likely good for most everyone.
-      -->
-    <!-- <termIndexInterval>256</termIndexInterval> -->
-  </indexDefaults>
-
-  <!-- Main Index
-
-       Values here override the values in the <indexDefaults> section
-       for the main on disk index.
-    -->
-  <mainIndex>
-
-    <useCompoundFile>false</useCompoundFile>
-    <ramBufferSizeMB>32</ramBufferSizeMB>
-    <mergeFactor>10</mergeFactor>
-
-    <!-- Unlock On Startup
-
-         If true, unlock any held write or commit locks on startup.
-         This defeats the locking mechanism that allows multiple
-         processes to safely access a lucene index, and should be used
-         with care.
-
-         This is not needed if lock type is 'none' or 'single'
-     -->
-    <unlockOnStartup>false</unlockOnStartup>
-    
-    <!-- If true, IndexReaders will be reopened (often more efficient)
-         instead of closed and then opened.
-      -->
-    <reopenReaders>true</reopenReaders>
-
-    <!-- Commit Deletion Policy
-
-         Custom deletion policies can specified here. The class must
-         implement org.apache.lucene.index.IndexDeletionPolicy.
-
-         http://lucene.apache.org/java/2_9_1/api/all/org/apache/lucene/index/IndexDeletionPolicy.html
-
-         The standard Solr IndexDeletionPolicy implementation supports
-         deleting index commit points on number of commits, age of
-         commit point and optimized status.
-         
-         The latest commit point should always be preserved regardless
-         of the criteria.
-    -->
-    <deletionPolicy class="solr.SolrDeletionPolicy">
-      <!-- The number of commit points to be kept -->
-      <str name="maxCommitsToKeep">1</str>
-      <!-- The number of optimized commit points to be kept -->
-      <str name="maxOptimizedCommitsToKeep">0</str>
-      <!--
-          Delete all commit points once they have reached the given age.
-          Supports DateMathParser syntax e.g.
-        -->
-      <!--
-         <str name="maxCommitAge">30MINUTES</str>
-         <str name="maxCommitAge">1DAY</str>
-      -->
-    </deletionPolicy>
-
-    <!-- Lucene Infostream
-       
-         To aid in advanced debugging, Lucene provides an "InfoStream"
-         of detailed information when indexing.
-
-         Setting The value to true will instruct the underlying Lucene
-         IndexWriter to write its debugging info the specified file
-      -->
-     <infoStream file="INFOSTREAM.txt">false</infoStream> 
-
-  </mainIndex>
-
-  <!-- JMX
-       
-       This example enables JMX if and only if an existing MBeanServer
-       is found, use this if you want to configure JMX through JVM
-       parameters. Remove this to disable exposing Solr configuration
-       and statistics to JMX.
-
-       For more details see http://wiki.apache.org/solr/SolrJmx
-    -->
-  <!-- <jmx /> -->
-  <!-- If you want to connect to a particular server, specify the
-       agentId 
-    -->
-  <!-- <jmx agentId="myAgent" /> -->
-  <!-- If you want to start a new MBeanServer, specify the serviceUrl -->
-  <!-- <jmx serviceUrl="service:jmx:rmi:///jndi/rmi://localhost:9999/solr"/>
-    -->
-
-  <!-- The default high-performance update handler -->
-  <updateHandler class="solr.DirectUpdateHandler2">
-
-    <!-- AutoCommit
-
-         Perform a <commit/> automatically under certain conditions.
-         Instead of enabling autoCommit, consider using "commitWithin"
-         when adding documents. 
-
-         http://wiki.apache.org/solr/UpdateXmlMessages
-
-         maxDocs - Maximum number of documents to add since the last
-                   commit before automatically triggering a new commit.
-
-         maxTime - Maximum amount of time that is allowed to pass
-                   since a document was added before automaticly
-                   triggering a new commit.
-      -->
-    <autoCommit>
-      <maxDocs>${solr.autoCommit.MaxDocs:10000}</maxDocs>
-      <maxTime>${solr.autoCommit.MaxTime:120000}</maxTime>
-    </autoCommit>
-
-    <!-- Update Related Event Listeners
-
-         Various IndexWriter related events can trigger Listeners to
-         take actions.
-
-         postCommit - fired after every commit or optimize command
-         postOptimize - fired after every optimize command
-      -->
-    <!-- The RunExecutableListener executes an external command from a
-         hook such as postCommit or postOptimize.
-         
-         exe - the name of the executable to run
-         dir - dir to use as the current working directory. (default=".")
-         wait - the calling thread waits until the executable returns. 
-                (default="true")
-         args - the arguments to pass to the program.  (default is none)
-         env - environment variables to set.  (default is none)
-      -->
-    <!-- This example shows how RunExecutableListener could be used
-         with the script based replication...
-         http://wiki.apache.org/solr/CollectionDistribution
-      -->
-    <!--
-       <listener event="postCommit" class="solr.RunExecutableListener">
-         <str name="exe">solr/bin/snapshooter</str>
-         <str name="dir">.</str>
-         <bool name="wait">true</bool>
-         <arr name="args"> <str>arg1</str> <str>arg2</str> </arr>
-         <arr name="env"> <str>MYVAR=val1</str> </arr>
-       </listener>
-      -->
-  </updateHandler>
-  
-  <!-- IndexReaderFactory
-
-       Use the following format to specify a custom IndexReaderFactory,
-       which allows for alternate IndexReader implementations.
-
-       ** Experimental Feature **
-
-       Please note - Using a custom IndexReaderFactory may prevent
-       certain other features from working. The API to
-       IndexReaderFactory may change without warning or may even be
-       removed from future releases if the problems cannot be
-       resolved.
-
-
-       ** Features that may not work with custom IndexReaderFactory **
-
-       The ReplicationHandler assumes a disk-resident index. Using a
-       custom IndexReader implementation may cause incompatibility
-       with ReplicationHandler and may cause replication to not work
-       correctly. See SOLR-1366 for details.
-
-    -->
-  <!--
-  <indexReaderFactory name="IndexReaderFactory" class="package.class">
-    <str name="someArg">Some Value</str>
-  </indexReaderFactory >
-  -->
-  <!-- By explicitly declaring the Factory, the termIndexDivisor can
-       be specified.
-    -->
-  <!--
-     <indexReaderFactory name="IndexReaderFactory" 
-                         class="solr.StandardIndexReaderFactory">
-       <int name="setTermIndexDivisor">12</int>
-     </indexReaderFactory >
-    -->
-
-
-  <query>
-    <!-- Max Boolean Clauses
-
-         Maximum number of clauses in each BooleanQuery,  an exception
-         is thrown if exceeded.
-
-         ** WARNING **
-         
-         This option actually modifies a global Lucene property that
-         will affect all SolrCores.  If multiple solrconfig.xml files
-         disagree on this property, the value at any given moment will
-         be based on the last SolrCore to be initialized.
-         
-      -->
-    <maxBooleanClauses>1024</maxBooleanClauses>
-
-
-    <!-- Solr Internal Query Caches
-
-         There are two implementations of cache available for Solr,
-         LRUCache, based on a synchronized LinkedHashMap, and
-         FastLRUCache, based on a ConcurrentHashMap.  
-
-         FastLRUCache has faster gets and slower puts in single
-         threaded operation and thus is generally faster than LRUCache
-         when the hit ratio of the cache is high (> 75%), and may be
-         faster under other scenarios on multi-cpu systems.
-    -->
-
-    <!-- Filter Cache
-
-         Cache used by SolrIndexSearcher for filters (DocSets),
-         unordered sets of *all* documents that match a query.  When a
-         new searcher is opened, its caches may be prepopulated or
-         "autowarmed" using data from caches in the old searcher.
-         autowarmCount is the number of items to prepopulate.  For
-         LRUCache, the autowarmed items will be the most recently
-         accessed items.
-
-         Parameters:
-           class - the SolrCache implementation LRUCache or
-               (LRUCache or FastLRUCache)
-           size - the maximum number of entries in the cache
-           initialSize - the initial capacity (number of entries) of
-               the cache.  (see java.util.HashMap)
-           autowarmCount - the number of entries to prepopulate from
-               and old cache.  
-      -->
-    <filterCache class="solr.FastLRUCache"
-                 size="512"
-                 initialSize="512"
-                 autowarmCount="0"/>
-
-    <!-- Query Result Cache
-         
-         Caches results of searches - ordered lists of document ids
-         (DocList) based on a query, a sort, and the range of documents requested.  
-      -->
-    <queryResultCache class="solr.LRUCache"
-                     size="512"
-                     initialSize="512"
-                     autowarmCount="32"/>
-   
-    <!-- Document Cache
-
-         Caches Lucene Document objects (the stored fields for each
-         document).  Since Lucene internal document ids are transient,
-         this cache will not be autowarmed.  
-      -->
-    <documentCache class="solr.LRUCache"
-                   size="512"
-                   initialSize="512"
-                   autowarmCount="0"/>
-    
-    <!-- Field Value Cache
-         
-         Cache used to hold field values that are quickly accessible
-         by document id.  The fieldValueCache is created by default
-         even if not configured here.
-      -->
-    <!--
-       <fieldValueCache class="solr.FastLRUCache"
-                        size="512"
-                        autowarmCount="128"
-                        showItems="32" />
-      -->
-
-    <!-- Custom Cache
-
-         Example of a generic cache.  These caches may be accessed by
-         name through SolrIndexSearcher.getCache(),cacheLookup(), and
-         cacheInsert().  The purpose is to enable easy caching of
-         user/application level data.  The regenerator argument should
-         be specified as an implementation of solr.CacheRegenerator 
-         if autowarming is desired.  
-      -->
-    <!--
-       <cache name="myUserCache"
-              class="solr.LRUCache"
-              size="4096"
-              initialSize="1024"
-              autowarmCount="1024"
-              regenerator="com.mycompany.MyRegenerator"
-              />
-      -->
-
-
-    <!-- Lazy Field Loading
-
-         If true, stored fields that are not requested will be loaded
-         lazily.  This can result in a significant speed improvement
-         if the usual case is to not load all stored fields,
-         especially if the skipped fields are large compressed text
-         fields.
-    -->
-    <enableLazyFieldLoading>true</enableLazyFieldLoading>
-
-   <!-- Use Filter For Sorted Query
-
-        A possible optimization that attempts to use a filter to
-        satisfy a search.  If the requested sort does not include
-        score, then the filterCache will be checked for a filter
-        matching the query. If found, the filter will be used as the
-        source of document ids, and then the sort will be applied to
-        that.
-
-        For most situations, this will not be useful unless you
-        frequently get the same search repeatedly with different sort
-        options, and none of them ever use "score"
-     -->
-   <!--
-      <useFilterForSortedQuery>true</useFilterForSortedQuery>
-     -->
-
-   <!-- Result Window Size
-
-        An optimization for use with the queryResultCache.  When a search
-        is requested, a superset of the requested number of document ids
-        are collected.  For example, if a search for a particular query
-        requests matching documents 10 through 19, and queryWindowSize is 50,
-        then documents 0 through 49 will be collected and cached.  Any further
-        requests in that range can be satisfied via the cache.  
-     -->
-   <queryResultWindowSize>20</queryResultWindowSize>
-
-   <!-- Maximum number of documents to cache for any entry in the
-        queryResultCache. 
-     -->
-   <queryResultMaxDocsCached>200</queryResultMaxDocsCached>
-
-   <!-- Query Related Event Listeners
-
-        Various IndexSearcher related events can trigger Listeners to
-        take actions.
-
-        newSearcher - fired whenever a new searcher is being prepared
-        and there is a current searcher handling requests (aka
-        registered).  It can be used to prime certain caches to
-        prevent long request times for certain requests.
-
-        firstSearcher - fired whenever a new searcher is being
-        prepared but there is no current registered searcher to handle
-        requests or to gain autowarming data from.
-
-        
-     -->
-    <!-- QuerySenderListener takes an array of NamedList and executes a
-         local query request for each NamedList in sequence. 
-      -->
-    <listener event="newSearcher" class="solr.QuerySenderListener">
-      <arr name="queries">
-        <!--
-           <lst><str name="q">solr</str><str name="sort">price asc</str></lst>
-           <lst><str name="q">rocks</str><str name="sort">weight asc</str></lst>
-          -->
-      </arr>
-    </listener>
-    <listener event="firstSearcher" class="solr.QuerySenderListener">
-      <arr name="queries">
-        <lst>
-          <str name="q">solr rocks</str><str name="start">0</str><str name="rows">10</str>
-        </lst>
-      </arr>
-    </listener>
-
-    <!-- Use Cold Searcher
-
-         If a search request comes in and there is no current
-         registered searcher, then immediately register the still
-         warming searcher and use it.  If "false" then all requests
-         will block until the first searcher is done warming.
-      -->
-    <useColdSearcher>false</useColdSearcher>
-
-    <!-- Max Warming Searchers
-         
-         Maximum number of searchers that may be warming in the
-         background concurrently.  An error is returned if this limit
-         is exceeded.
-
-         Recommend values of 1-2 for read-only slaves, higher for
-         masters w/o cache warming.
-      -->
-    <maxWarmingSearchers>2</maxWarmingSearchers>
-
-  </query>
-
-
-  <!-- Request Dispatcher
-
-       This section contains instructions for how the SolrDispatchFilter
-       should behave when processing requests for this SolrCore.
-
-       handleSelect affects the behavior of requests such as /select?qt=XXX
-
-       handleSelect="true" will cause the SolrDispatchFilter to process
-       the request and will result in consistent error handling and
-       formatting for all types of requests.
-
-       handleSelect="false" will cause the SolrDispatchFilter to
-       ignore "/select" requests and fallback to using the legacy
-       SolrServlet and it's Solr 1.1 style error formatting
-    -->
-  <requestDispatcher handleSelect="true" >
-    <!-- Request Parsing
-
-         These settings indicate how Solr Requests may be parsed, and
-         what restrictions may be placed on the ContentStreams from
-         those requests
-
-         enableRemoteStreaming - enables use of the stream.file
-         and stream.url parameters for specifying remote streams.
-
-         multipartUploadLimitInKB - specifies the max size of
-         Multipart File Uploads that Solr will allow in a Request.
-         
-         *** WARNING ***
-         The settings below authorize Solr to fetch remote files, You
-         should make sure your system has some authentication before
-         using enableRemoteStreaming="true"
-
-      --> 
-    <requestParsers enableRemoteStreaming="true" 
-                    multipartUploadLimitInKB="2048000" />
-
-    <!-- HTTP Caching
-
-         Set HTTP caching related parameters (for proxy caches and clients).
-
-         The options below instruct Solr not to output any HTTP Caching
-         related headers
-      -->
-    <httpCaching never304="true" />
-    <!-- If you include a <cacheControl> directive, it will be used to
-         generate a Cache-Control header (as well as an Expires header
-         if the value contains "max-age=")
-         
-         By default, no Cache-Control header is generated.
-         
-         You can use the <cacheControl> option even if you have set
-         never304="true"
-      -->
-    <!--
-       <httpCaching never304="true" >
-         <cacheControl>max-age=30, public</cacheControl> 
-       </httpCaching>
-      -->
-    <!-- To enable Solr to respond with automatically generated HTTP
-         Caching headers, and to response to Cache Validation requests
-         correctly, set the value of never304="false"
-         
-         This will cause Solr to generate Last-Modified and ETag
-         headers based on the properties of the Index.
-
-         The following options can also be specified to affect the
-         values of these headers...
-
-         lastModFrom - the default value is "openTime" which means the
-         Last-Modified value (and validation against If-Modified-Since
-         requests) will all be relative to when the current Searcher
-         was opened.  You can change it to lastModFrom="dirLastMod" if
-         you want the value to exactly correspond to when the physical
-         index was last modified.
-
-         etagSeed="..." is an option you can change to force the ETag
-         header (and validation against If-None-Match requests) to be
-         different even if the index has not changed (ie: when making
-         significant changes to your config file)
-
-         (lastModifiedFrom and etagSeed are both ignored if you use
-         the never304="true" option)
-      -->
-    <!--
-       <httpCaching lastModifiedFrom="openTime"
-                    etagSeed="Solr">
-         <cacheControl>max-age=30, public</cacheControl> 
-       </httpCaching>
-      -->
-  </requestDispatcher>
-
-  <!-- Request Handlers 
-
-       http://wiki.apache.org/solr/SolrRequestHandler
-
-       incoming queries will be dispatched to the correct handler
-       based on the path or the qt (query type) param.
-
-       Names starting with a '/' are accessed with the a path equal to
-       the registered name.  Names without a leading '/' are accessed
-       with: http://host/app/[core/]select?qt=name
-
-       If a /select request is processed with out a qt param
-       specified, the requestHandler that declares default="true" will
-       be used.
-       
-       If a Request Handler is declared with startup="lazy", then it will
-       not be initialized until the first request that uses it.
-
-    -->
-  <!-- SearchHandler
-
-       http://wiki.apache.org/solr/SearchHandler
-
-       For processing Search Queries, the primary Request Handler
-       provided with Solr is "SearchHandler" It delegates to a sequent
-       of SearchComponents (see below) and supports distributed
-       queries across multiple shards
-    -->
-  <!--<requestHandler name="search" class="solr.SearchHandler" default="true">-->
-    <!-- default values for query parameters can be specified, these
-         will be overridden by parameters in the request
-      -->
-     <!--<lst name="defaults">
-       <str name="echoParams">explicit</str>
-       <int name="rows">10</int>
-     </lst>-->
-    <!-- In addition to defaults, "appends" params can be specified
-         to identify values which should be appended to the list of
-         multi-val params from the query (or the existing "defaults").
-      -->
-    <!-- In this example, the param "fq=instock:true" would be appended to
-         any query time fq params the user may specify, as a mechanism for
-         partitioning the index, independent of any user selected filtering
-         that may also be desired (perhaps as a result of faceted searching).
-
-         NOTE: there is *absolutely* nothing a client can do to prevent these
-         "appends" values from being used, so don't use this mechanism
-         unless you are sure you always want it.
-      -->
-    <!--
-       <lst name="appends">
-         <str name="fq">inStock:true</str>
-       </lst>
-      -->
-    <!-- "invariants" are a way of letting the Solr maintainer lock down
-         the options available to Solr clients.  Any params values
-         specified here are used regardless of what values may be specified
-         in either the query, the "defaults", or the "appends" params.
-
-         In this example, the facet.field and facet.query params would
-         be fixed, limiting the facets clients can use.  Faceting is
-         not turned on by default - but if the client does specify
-         facet=true in the request, these are the only facets they
-         will be able to see counts for; regardless of what other
-         facet.field or facet.query params they may specify.
-
-         NOTE: there is *absolutely* nothing a client can do to prevent these
-         "invariants" values from being used, so don't use this mechanism
-         unless you are sure you always want it.
-      -->
-    <!--
-       <lst name="invariants">
-         <str name="facet.field">cat</str>
-         <str name="facet.field">manu_exact</str>
-         <str name="facet.query">price:[* TO 500]</str>
-         <str name="facet.query">price:[500 TO *]</str>
-       </lst>
-      -->
-    <!-- If the default list of SearchComponents is not desired, that
-         list can either be overridden completely, or components can be
-         prepended or appended to the default list.  (see below)
-      -->
-    <!--
-       <arr name="components">
-         <str>nameOfCustomComponent1</str>
-         <str>nameOfCustomComponent2</str>
-       </arr>
-      -->
-    <!--</requestHandler>-->
-
-  <!-- A Robust Example
-
-       This example SearchHandler declaration shows off usage of the
-       SearchHandler with many defaults declared
-
-       Note that multiple instances of the same Request Handler
-       (SearchHandler) can be registered multiple times with different
-       names (and different init parameters)
-    -->
-  <!--
-  <requestHandler name="/browse" class="solr.SearchHandler">
-     <lst name="defaults">
-       <str name="echoParams">explicit</str>-->
-
-       <!-- VelocityResponseWriter settings -->
-       <!--<str name="wt">velocity</str>
-
-       <str name="v.template">browse</str>
-       <str name="v.layout">layout</str>
-       <str name="title">Solritas</str>
-
-       <str name="defType">edismax</str>
-       <str name="q.alt">*:*</str>
-       <str name="rows">10</str>
-       <str name="fl">*,score</str>
-       <str name="mlt.qf">
-         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
-       </str>
-       <str name="mlt.fl">text,features,name,sku,id,manu,cat</str>
-       <int name="mlt.count">3</int>
-
-       <str name="qf">
-          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
-       </str>
-
-       <str name="facet">on</str>
-       <str name="facet.field">cat</str>
-       <str name="facet.field">manu_exact</str>
-       <str name="facet.query">ipod</str>
-       <str name="facet.query">GB</str>
-       <str name="facet.mincount">1</str>
-       <str name="facet.pivot">cat,inStock</str>
-       <str name="facet.range.other">after</str>
-       <str name="facet.range">price</str>
-       <int name="f.price.facet.range.start">0</int>
-       <int name="f.price.facet.range.end">600</int>
-       <int name="f.price.facet.range.gap">50</int>
-       <str name="facet.range">popularity</str>
-       <int name="f.popularity.facet.range.start">0</int>
-       <int name="f.popularity.facet.range.end">10</int>
-       <int name="f.popularity.facet.range.gap">3</int>
-       <str name="facet.range">manufacturedate_dt</str>
-       <str name="f.manufacturedate_dt.facet.range.start">NOW/YEAR-10YEARS</str>
-       <str name="f.manufacturedate_dt.facet.range.end">NOW</str>
-       <str name="f.manufacturedate_dt.facet.range.gap">+1YEAR</str>
-       <str name="f.manufacturedate_dt.facet.range.other">before</str>
-       <str name="f.manufacturedate_dt.facet.range.other">after</str>-->
-
-
-       <!-- Highlighting defaults -->
-       <!--<str name="hl">on</str>
-       <str name="hl.fl">text features name</str>
-       <str name="f.name.hl.fragsize">0</str>
-       <str name="f.name.hl.alternateField">name</str>
-     </lst>
-     <arr name="last-components">
-       <str>spellcheck</str>
-     </arr>-->
-     <!--
-     <str name="url-scheme">httpx</str>
-     -->
-  <!--</requestHandler>-->
-  <!-- trivia: the name pinkPony requestHandler was an agreement between the Search API and the
-    apachesolr maintainers. The decision was taken during the Drupalcon Munich codesprint.
-    -->
-  <requestHandler name="pinkPony" class="solr.SearchHandler" default="true">
-    <lst name="defaults">
-      <str name="defType">edismax</str>
-      <str name="echoParams">explicit</str>
-      <bool name="omitHeader">true</bool>
-      <float name="tie">0.01</float>
-      <!-- Don't abort searches for the pinkPony request handler (set in solrcore.properties) -->
-      <int name="timeAllowed">${solr.pinkPony.timeAllowed:-1}</int>
-      <str name="q.alt">*:*</str>
-
-      <!-- By default, don't spell check -->
-      <str name="spellcheck">false</str>
-      <!-- Defaults for the spell checker when used -->
-      <str name="spellcheck.onlyMorePopular">true</str>
-      <str name="spellcheck.extendedResults">false</str>
-      <!--  The number of suggestions to return -->
-      <str name="spellcheck.count">1</str>
-    </lst>
-    <arr name="last-components">
-      <str>spellcheck</str>
-      <str>elevator</str>
-    </arr>
-  </requestHandler>
-
-  <!-- The more like this handler offers many advantages over the standard handler,
-     when performing moreLikeThis requests.-->
-  <requestHandler name="mlt" class="solr.MoreLikeThisHandler">
-    <lst name="defaults">
-      <str name="mlt.mintf">1</str>
-      <str name="mlt.mindf">1</str>
-      <str name="mlt.minwl">3</str>
-      <str name="mlt.maxwl">15</str>
-      <str name="mlt.maxqt">20</str>
-      <str name="mlt.match.include">false</str>
-      <!-- Abort any searches longer than 2 seconds (set in solrcore.properties) -->
-      <int name="timeAllowed">${solr.mlt.timeAllowed:2000}</int>
-    </lst>
-  </requestHandler>
-
-  <!-- A minimal query type for doing luene queries -->
-  <requestHandler name="standard" class="solr.SearchHandler">
-     <lst name="defaults">
-       <str name="echoParams">explicit</str>
-       <bool name="omitHeader">true</bool>
-     </lst>
-  </requestHandler>
-
-  <!-- XML Update Request Handler.  
-       
-       http://wiki.apache.org/solr/UpdateXmlMessages
-
-       The canonical Request Handler for Modifying the Index through
-       commands specified using XML.
-
-       Note: Since solr1.1 requestHandlers requires a valid content
-       type header if posted in the body. For example, curl now
-       requires: -H 'Content-type:text/xml; charset=utf-8'
-    -->
-  <requestHandler name="/update" 
-                  class="solr.XmlUpdateRequestHandler">
-    <!-- See below for information on defining 
-         updateRequestProcessorChains that can be used by name 
-         on each Update Request
-      -->
-    <!--
-       <lst name="defaults">
-         <str name="update.chain">dedupe</str>
-       </lst>
-       -->
-    </requestHandler>
-  <!-- Binary Update Request Handler
-       http://wiki.apache.org/solr/javabin
-    -->
-  <requestHandler name="/update/javabin" 
-                  class="solr.BinaryUpdateRequestHandler" />
-
-  <!-- CSV Update Request Handler
-       http://wiki.apache.org/solr/UpdateCSV
-    -->
-  <requestHandler name="/update/csv" 
-                  class="solr.CSVRequestHandler" 
-                  startup="lazy" />
-
-  <!-- JSON Update Request Handler
-       http://wiki.apache.org/solr/UpdateJSON
-    -->
-  <requestHandler name="/update/json" 
-                  class="solr.JsonUpdateRequestHandler" 
-                  startup="lazy" />
-
-  <!-- Solr Cell Update Request Handler
-
-       http://wiki.apache.org/solr/ExtractingRequestHandler 
-
-    -->
-  <requestHandler name="/update/extract" 
-                  startup="lazy"
-                  class="solr.extraction.ExtractingRequestHandler" >
-    <lst name="defaults">
-      <!-- All the main content goes into "text"... if you need to return
-           the extracted text or do highlighting, use a stored field. -->
-      <str name="fmap.content">text</str>
-      <str name="lowernames">true</str>
-      <str name="uprefix">ignored_</str>
-
-      <!-- capture link hrefs but ignore div attributes -->
-      <str name="captureAttr">true</str>
-      <str name="fmap.a">links</str>
-      <str name="fmap.div">ignored_</str>
-    </lst>
-  </requestHandler>
-
-  <!-- XSLT Update Request Handler
-       Transforms incoming XML with stylesheet identified by tr=
-  -->
-  <requestHandler name="/update/xslt"
-                   startup="lazy"
-                   class="solr.XsltUpdateRequestHandler"/>
-
-  <!-- Field Analysis Request Handler
-
-       RequestHandler that provides much the same functionality as
-       analysis.jsp. Provides the ability to specify multiple field
-       types and field names in the same request and outputs
-       index-time and query-time analysis for each of them.
-
-       Request parameters are:
-       analysis.fieldname - field name whose analyzers are to be used
-
-       analysis.fieldtype - field type whose analyzers are to be used
-       analysis.fieldvalue - text for index-time analysis
-       q (or analysis.q) - text for query time analysis
-       analysis.showmatch (true|false) - When set to true and when
-           query analysis is performed, the produced tokens of the
-           field value analysis will be marked as "matched" for every
-           token that is produces by the query analysis
-   -->
-  <requestHandler name="/analysis/field" 
-                  startup="lazy"
-                  class="solr.FieldAnalysisRequestHandler" />
-
-
-  <!-- Document Analysis Handler
-
-       http://wiki.apache.org/solr/AnalysisRequestHandler
-
-       An analysis handler that provides a breakdown of the analysis
-       process of provided docuemnts. This handler expects a (single)
-       content stream with the following format:
-
-       <docs>
-         <doc>
-           <field name="id">1</field>
-           <field name="name">The Name</field>
-           <field name="text">The Text Value</field>
-         </doc>
-         <doc>...</doc>
-         <doc>...</doc>
-         ...
-       </docs>
-
-    Note: Each document must contain a field which serves as the
-    unique key. This key is used in the returned response to associate
-    an analysis breakdown to the analyzed document.
-
-    Like the FieldAnalysisRequestHandler, this handler also supports
-    query analysis by sending either an "analysis.query" or "q"
-    request parameter that holds the query text to be analyzed. It
-    also supports the "analysis.showmatch" parameter which when set to
-    true, all field tokens that match the query tokens will be marked
-    as a "match". 
-  -->
-  <requestHandler name="/analysis/document" 
-                  class="solr.DocumentAnalysisRequestHandler" 
-                  startup="lazy" />
-
-  <!-- Admin Handlers
-
-       Admin Handlers - This will register all the standard admin
-       RequestHandlers.  
-    -->
-  <requestHandler name="/admin/" 
-                  class="solr.admin.AdminHandlers" />
-  <!-- This single handler is equivalent to the following... -->
-  <!--
-     <requestHandler name="/admin/luke"       class="solr.admin.LukeRequestHandler" />
-     <requestHandler name="/admin/system"     class="solr.admin.SystemInfoHandler" />
-     <requestHandler name="/admin/plugins"    class="solr.admin.PluginInfoHandler" />
-     <requestHandler name="/admin/threads"    class="solr.admin.ThreadDumpHandler" />
-     <requestHandler name="/admin/properties" class="solr.admin.PropertiesRequestHandler" />
-     <requestHandler name="/admin/file"       class="solr.admin.ShowFileRequestHandler" >
-    -->
-  <!-- If you wish to hide files under ${solr.home}/conf, explicitly
-       register the ShowFileRequestHandler using: 
-    -->
-  <!--
-     <requestHandler name="/admin/file" 
-                     class="solr.admin.ShowFileRequestHandler" >
-       <lst name="invariants">
-         <str name="hidden">synonyms.txt</str> 
-         <str name="hidden">anotherfile.txt</str> 
-       </lst>
-     </requestHandler>
-    -->
-
-  <!-- ping/healthcheck -->
-  <requestHandler name="/admin/ping" class="solr.PingRequestHandler">
-    <lst name="invariants">
-      <str name="qt">pinkPony</str>
-      <str name="q">solrpingquery</str>
-    </lst>
-    <lst name="defaults">
-      <str name="echoParams">all</str>
-    </lst>
-  </requestHandler>
-
-  <!-- Echo the request contents back to the client -->
-  <requestHandler name="/debug/dump" class="solr.DumpRequestHandler" >
-    <lst name="defaults">
-     <str name="echoParams">explicit</str> 
-     <str name="echoHandler">true</str>
-    </lst>
-  </requestHandler>
-  
-  <!-- Solr Replication
-
-       The SolrReplicationHandler supports replicating indexes from a
-       "master" used for indexing and "slaves" used for queries.
-
-       http://wiki.apache.org/solr/SolrReplication 
-
-       In the example below, remove the <lst name="master"> section if
-       this is just a slave and remove  the <lst name="slave"> section
-       if this is just a master.
-    -->
-     <requestHandler name="/replication" class="solr.ReplicationHandler" >
-       <lst name="master">
-         <str name="enable">${solr.replication.master:false}</str>
-         <str name="replicateAfter">commit</str>
-         <str name="replicateAfter">startup</str>
-         <str name="confFiles">${solr.replication.confFiles:schema.xml,mapping-ISOLatin1Accent.txt,protwords.txt,stopwords.txt,synonyms.txt,elevate.xml}</str>
-       </lst>
-       <lst name="slave">
-         <str name="enable">${solr.replication.slave:false}</str>
-         <str name="masterUrl">${solr.replication.masterUrl:http://localhost:8983/solr}/replication</str>
-         <str name="pollInterval">${solr.replication.pollInterval:00:00:60}</str>
-       </lst>
-     </requestHandler>
-
-  <!-- Search Components
-
-       Search components are registered to SolrCore and used by
-       instances of SearchHandler (which can access them by name)
-
-       By default, the following components are available:
-
-       <searchComponent name="query"     class="solr.QueryComponent" />
-       <searchComponent name="facet"     class="solr.FacetComponent" />
-       <searchComponent name="mlt"       class="solr.MoreLikeThisComponent" />
-       <searchComponent name="highlight" class="solr.HighlightComponent" />
-       <searchComponent name="stats"     class="solr.StatsComponent" />
-       <searchComponent name="debug"     class="solr.DebugComponent" />
-
-       Default configuration in a requestHandler would look like:
-
-       <arr name="components">
-         <str>query</str>
-         <str>facet</str>
-         <str>mlt</str>
-         <str>highlight</str>
-         <str>stats</str>
-         <str>debug</str>
-       </arr>
-
-       If you register a searchComponent to one of the standard names, 
-       that will be used instead of the default.
-
-       To insert components before or after the 'standard' components, use:
-    
-       <arr name="first-components">
-         <str>myFirstComponentName</str>
-       </arr>
-    
-       <arr name="last-components">
-         <str>myLastComponentName</str>
-       </arr>
-
-       NOTE: The component registered with the name "debug" will
-       always be executed after the "last-components" 
-       
-     -->
-
-  <!-- A request handler for demonstrating the spellcheck component.  
-
-       NOTE: This is purely as an example.  The whole purpose of the
-       SpellCheckComponent is to hook it into the request handler that
-       handles your normal user queries so that a separate request is
-       not needed to get suggestions.
-
-       IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS
-       NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!
-       
-       See http://wiki.apache.org/solr/SpellCheckComponent for details
-       on the request parameters.
-    -->
-  <requestHandler name="/spell" class="solr.SearchHandler" startup="lazy">
-    <lst name="defaults">
-      <str name="spellcheck.onlyMorePopular">false</str>
-      <str name="spellcheck.extendedResults">false</str>
-      <str name="spellcheck.count">1</str>
-    </lst>
-    <arr name="last-components">
-      <str>spellcheck</str>
-    </arr>
-  </requestHandler>
-
-  <!-- Term Vector Component
-
-       http://wiki.apache.org/solr/TermVectorComponent
-    -->
-  <searchComponent name="tvComponent" class="solr.TermVectorComponent"/>
-
-  <!-- A request handler for demonstrating the term vector component
-
-       This is purely as an example.
-
-       In reality you will likely want to add the component to your 
-       already specified request handlers. 
-    -->
-  <requestHandler name="tvrh" class="solr.SearchHandler" startup="lazy">
-    <lst name="defaults">
-      <bool name="tv">true</bool>
-    </lst>
-    <arr name="last-components">
-      <str>tvComponent</str>
-    </arr>
-  </requestHandler>
-
-  <!-- Clustering Component
-
-       http://wiki.apache.org/solr/ClusteringComponent
-
-       This relies on third party jars which are notincluded in the
-       release.  To use this component (and the "/clustering" handler)
-       Those jars will need to be downloaded, and you'll need to set
-       the solr.cluster.enabled system property when running solr...
-
-          java -Dsolr.clustering.enabled=true -jar start.jar
-    -->
-  <!-- <searchComponent name="clustering"
-                   enable="${solr.clustering.enabled:false}"
-                   class="solr.clustering.ClusteringComponent" > -->
-    <!-- Declare an engine -->
-    <!--<lst name="engine">-->
-      <!-- The name, only one can be named "default" -->
-      <!--<str name="name">default</str>-->
-
-      <!-- Class name of Carrot2 clustering algorithm. 
-           
-           Currently available algorithms are:
-           
-           * org.carrot2.clustering.lingo.LingoClusteringAlgorithm
-           * org.carrot2.clustering.stc.STCClusteringAlgorithm
-           * org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm
-           
-           See http://project.carrot2.org/algorithms.html for the
-           algorithm's characteristics.
-        -->
-      <!--<str name="carrot.algorithm">org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str>-->
-
-      <!-- Overriding values for Carrot2 default algorithm attributes.
-
-           For a description of all available attributes, see:
-           http://download.carrot2.org/stable/manual/#chapter.components.
-           Use attribute key as name attribute of str elements
-           below. These can be further overridden for individual
-           requests by specifying attribute key as request parameter
-           name and attribute value as parameter value.
-        -->
-      <!--<str name="LingoClusteringAlgorithm.desiredClusterCountBase">20</str>-->
-      
-      <!-- Location of Carrot2 lexical resources.
-
-           A directory from which to load Carrot2-specific stop words
-           and stop labels. Absolute or relative to Solr config directory.
-           If a specific resource (e.g. stopwords.en) is present in the
-           specified dir, it will completely override the corresponding
-           default one that ships with Carrot2.
-
-           For an overview of Carrot2 lexical resources, see:
-           http://download.carrot2.org/head/manual/#chapter.lexical-resources
-        -->
-      <!--<str name="carrot.lexicalResourcesDir">clustering/carrot2</str>-->
-
-      <!-- The language to assume for the documents.
-           
-           For a list of allowed values, see:
-           http://download.carrot2.org/stable/manual/#section.attribute.lingo.MultilingualClustering.defaultLanguage
-       -->
-      <!--<str name="MultilingualClustering.defaultLanguage">ENGLISH</str>
-    </lst>
-    <lst name="engine">
-      <str name="name">stc</str>
-      <str name="carrot.algorithm">org.carrot2.clustering.stc.STCClusteringAlgorithm</str>
-    </lst>
-  </searchComponent>-->
-
-  <!-- A request handler for demonstrating the clustering component
-
-       This is purely as an example.
-
-       In reality you will likely want to add the component to your 
-       already specified request handlers. 
-    -->
-  <!--<requestHandler name="/clustering"
-                  startup="lazy"
-                  enable="${solr.clustering.enabled:false}"
-                  class="solr.SearchHandler">
-    <lst name="defaults">
-      <bool name="clustering">true</bool>
-      <str name="clustering.engine">default</str>
-      <bool name="clustering.results">true</bool>-->
-      <!-- The title field -->
-      <!--<str name="carrot.title">name</str>-->
-      <!--<str name="carrot.url">id</str>-->
-      <!-- The field to cluster on -->
-       <!--<str name="carrot.snippet">features</str>-->
-       <!-- produce summaries -->
-       <!--<bool name="carrot.produceSummary">true</bool>-->
-       <!-- the maximum number of labels per cluster -->
-       <!--<int name="carrot.numDescriptions">5</int>-->
-       <!-- produce sub clusters -->
-       <!--<bool name="carrot.outputSubClusters">false</bool>-->
-       
-       <!--<str name="defType">edismax</str>
-       <str name="qf">
-          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
-       </str>
-       <str name="q.alt">*:*</str>
-       <str name="rows">10</str>
-       <str name="fl">*,score</str>
-    </lst>     
-    <arr name="last-components">
-      <str>clustering</str>
-    </arr>
-  </requestHandler>-->
-  
-  <!-- Terms Component
-
-       http://wiki.apache.org/solr/TermsComponent
-
-       A component to return terms and document frequency of those
-       terms
-    -->
-  <searchComponent name="terms" class="solr.TermsComponent"/>
-
-  <!-- A request handler for demonstrating the terms component -->
-  <requestHandler name="/terms" class="solr.SearchHandler" startup="lazy">
-     <lst name="defaults">
-      <bool name="terms">true</bool>
-    </lst>     
-    <arr name="components">
-      <str>terms</str>
-    </arr>
-  </requestHandler>
-
-
-  <!-- Query Elevation Component
-
-       http://wiki.apache.org/solr/QueryElevationComponent
-
-       a search component that enables you to configure the top
-       results for a given query regardless of the normal lucene
-       scoring.
-    -->
-  <searchComponent name="elevator" class="solr.QueryElevationComponent" >
-    <!-- pick a fieldType to analyze queries -->
-    <str name="queryFieldType">string</str>
-    <str name="config-file">elevate.xml</str>
-  </searchComponent>
-
-  <!-- A request handler for demonstrating the elevator component -->
-  <requestHandler name="/elevate" class="solr.SearchHandler" startup="lazy">
-    <lst name="defaults">
-      <str name="echoParams">explicit</str>
-    </lst>
-    <arr name="last-components">
-      <str>elevator</str>
-    </arr>
-  </requestHandler>
-
-  <!-- Highlighting Component
-
-       http://wiki.apache.org/solr/HighlightingParameters
-    -->
-  <searchComponent class="solr.HighlightComponent" name="highlight">
-    <highlighting>
-      <!-- Configure the standard fragmenter -->
-      <!-- This could most likely be commented out in the "default" case -->
-      <fragmenter name="gap" 
-                  default="true"
-                  class="solr.highlight.GapFragmenter">
-        <lst name="defaults">
-          <int name="hl.fragsize">100</int>
-        </lst>
-      </fragmenter>
-
-      <!-- A regular-expression-based fragmenter 
-           (for sentence extraction) 
-        -->
-      <fragmenter name="regex" 
-                  class="solr.highlight.RegexFragmenter">
-        <lst name="defaults">
-          <!-- slightly smaller fragsizes work better because of slop -->
-          <int name="hl.fragsize">70</int>
-          <!-- allow 50% slop on fragment sizes -->
-          <float name="hl.regex.slop">0.5</float>
-          <!-- a basic sentence pattern -->
-          <str name="hl.regex.pattern">[-\w ,/\n\&quot;&apos;]{20,200}</str>
-        </lst>
-      </fragmenter>
-
-      <!-- Configure the standard formatter -->
-      <formatter name="html" 
-                 default="true"
-                 class="solr.highlight.HtmlFormatter">
-        <lst name="defaults">
-          <str name="hl.simple.pre"><![CDATA[<strong>]]></str>
-          <str name="hl.simple.post"><![CDATA[</strong>]]></str>
-        </lst>
-      </formatter>
-
-      <!-- Configure the standard encoder -->
-      <encoder name="html" 
-               class="solr.highlight.HtmlEncoder" />
-
-      <!-- Configure the standard fragListBuilder -->
-      <fragListBuilder name="simple" 
-                       default="true"
-                       class="solr.highlight.SimpleFragListBuilder"/>
-
-      <!-- Configure the single fragListBuilder -->
-      <fragListBuilder name="single" 
-                       class="solr.highlight.SingleFragListBuilder"/>
-
-      <!-- default tag FragmentsBuilder -->
-      <fragmentsBuilder name="default" 
-                        default="true"
-                        class="solr.highlight.ScoreOrderFragmentsBuilder">
-        <!-- 
-        <lst name="defaults">
-          <str name="hl.multiValuedSeparatorChar">/</str>
-        </lst>
-        -->
-      </fragmentsBuilder>
-
-      <!-- multi-colored tag FragmentsBuilder -->
-      <fragmentsBuilder name="colored" 
-                        class="solr.highlight.ScoreOrderFragmentsBuilder">
-        <lst name="defaults">
-          <str name="hl.tag.pre"><![CDATA[
-               <b style="background:yellow">,<b style="background:lawgreen">,
-               <b style="background:aquamarine">,<b style="background:magenta">,
-               <b style="background:palegreen">,<b style="background:coral">,
-               <b style="background:wheat">,<b style="background:khaki">,
-               <b style="background:lime">,<b style="background:deepskyblue">]]></str>
-          <str name="hl.tag.post"><![CDATA[</b>]]></str>
-        </lst>
-      </fragmentsBuilder>
-      
-      <boundaryScanner name="default" 
-                       default="true"
-                       class="solr.highlight.SimpleBoundaryScanner">
-        <lst name="defaults">
-          <str name="hl.bs.maxScan">10</str>
-          <str name="hl.bs.chars">.,!? &#9;&#10;&#13;</str>
-        </lst>
-      </boundaryScanner>
-      
-      <boundaryScanner name="breakIterator" 
-                       class="solr.highlight.BreakIteratorBoundaryScanner">
-        <lst name="defaults">
-          <!-- type should be one of CHARACTER, WORD(default), LINE and SENTENCE -->
-          <str name="hl.bs.type">WORD</str>
-          <!-- language and country are used when constructing Locale object.  -->
-          <!-- And the Locale object will be used when getting instance of BreakIterator -->
-          <str name="hl.bs.language">en</str>
-          <str name="hl.bs.country">US</str>
-        </lst>
-      </boundaryScanner>
-    </highlighting>
-  </searchComponent>
-
-  <!-- Update Processors
-
-       Chains of Update Processor Factories for dealing with Update
-       Requests can be declared, and then used by name in Update
-       Request Processors
-
-       http://wiki.apache.org/solr/UpdateRequestProcessor
-
-    --> 
-  <!-- Deduplication
-
-       An example dedup update processor that creates the "id" field
-       on the fly based on the hash code of some other fields.  This
-       example has overwriteDupes set to false since we are using the
-       id field as the signatureField and Solr will maintain
-       uniqueness based on that anyway.  
-       
-    -->
-  <!--
-     <updateRequestProcessorChain name="dedupe">
-       <processor class="solr.processor.SignatureUpdateProcessorFactory">
-         <bool name="enabled">true</bool>
-         <str name="signatureField">id</str>
-         <bool name="overwriteDupes">false</bool>
-         <str name="fields">name,features,cat</str>
-         <str name="signatureClass">solr.processor.Lookup3Signature</str>
-       </processor>
-       <processor class="solr.LogUpdateProcessorFactory" />
-       <processor class="solr.RunUpdateProcessorFactory" />
-     </updateRequestProcessorChain>
-    -->
-
-    <!--
-       This example update chain identifies the language of the incoming
-       documents using the langid contrib. The detected language is
-       written to field language_s. No field name mapping is done.
-       The fields used for detection are text, title, subject and description,
-       making this example suitable for detecting languages form full-text
-       rich documents injected via ExtractingRequestHandler.
-       See more about langId at http://wiki.apache.org/solr/LanguageDetection
-    -->
-    <!--
-     <updateRequestProcessorChain name="langid">
-       <processor class="org.apache.solr.update.processor.TikaLanguageIdentifierUpdateProcessorFactory">
-         <str name="langid.fl">text,title,subject,description</str>
-         <str name="langid.langField">language_s</str>
-         <str name="langid.fallback">en</str>
-       </processor>
-       <processor class="solr.LogUpdateProcessorFactory" />
-       <processor class="solr.RunUpdateProcessorFactory" />
-     </updateRequestProcessorChain>
-    -->
- 
-  <!-- Response Writers
-
-       http://wiki.apache.org/solr/QueryResponseWriter
-
-       Request responses will be written using the writer specified by
-       the 'wt' request parameter matching the name of a registered
-       writer.
-
-       The "default" writer is the default and will be used if 'wt' is
-       not specified in the request.
-    -->
-  <!-- The following response writers are implicitly configured unless
-       overridden...
-    -->
-  <!--
-     <queryResponseWriter name="xml" 
-                          default="true"
-                          class="solr.XMLResponseWriter" />
-     <queryResponseWriter name="json" class="solr.JSONResponseWriter"/>
-     <queryResponseWriter name="python" class="solr.PythonResponseWriter"/>
-     <queryResponseWriter name="ruby" class="solr.RubyResponseWriter"/>
-     <queryResponseWriter name="php" class="solr.PHPResponseWriter"/>
-     <queryResponseWriter name="phps" class="solr.PHPSerializedResponseWriter"/>
-     <queryResponseWriter name="csv" class="solr.CSVResponseWriter"/>
-    -->
-
-  <queryResponseWriter name="json" class="solr.JSONResponseWriter">
-     <!-- For the purposes of the tutorial, JSON responses are written as
-      plain text so that they are easy to read in *any* browser.
-      If you expect a MIME type of "application/json" just remove this override.
-     -->
-    <str name="content-type">text/plain; charset=UTF-8</str>
-  </queryResponseWriter>
-  
-  <!--
-     Custom response writers can be declared as needed...
-    -->
-    <!-- The solr.velocity.enabled flag is used by Solr's test cases so that this response writer is not
-         loaded (causing an error if contrib/velocity has not been built fully) -->
-    <!-- <queryResponseWriter name="velocity" class="solr.VelocityResponseWriter" enable="${solr.velocity.enabled:true}"/> -->
-  
-
-  <!-- XSLT response writer transforms the XML output by any xslt file found
-       in Solr's conf/xslt directory.  Changes to xslt files are checked for
-       every xsltCacheLifetimeSeconds.  
-    -->
-  <queryResponseWriter name="xslt" class="solr.XSLTResponseWriter">
-    <int name="xsltCacheLifetimeSeconds">5</int>
-  </queryResponseWriter>
-
-  <!-- Query Parsers
-
-       http://wiki.apache.org/solr/SolrQuerySyntax
-
-       Multiple QParserPlugins can be registered by name, and then
-       used in either the "defType" param for the QueryComponent (used
-       by SearchHandler) or in LocalParams
-    -->
-  <!-- example of registering a query parser -->
-  <!--
-     <queryParser name="myparser" class="com.mycompany.MyQParserPlugin"/>
-    -->
-
-  <!-- Function Parsers
-
-       http://wiki.apache.org/solr/FunctionQuery
-
-       Multiple ValueSourceParsers can be registered by name, and then
-       used as function names when using the "func" QParser.
-    -->
-  <!-- example of registering a custom function parser  -->
-  <!--
-     <valueSourceParser name="myfunc" 
-                        class="com.mycompany.MyValueSourceParser" />
-    -->
-
-  <!-- Legacy config for the admin interface -->
-  <admin>
-    <defaultQuery>*:*</defaultQuery>
-
-    <!-- configure a healthcheck file for servers behind a
-         loadbalancer 
-      -->
-    <!--
-       <healthcheck type="file">server-enabled</healthcheck>
-      -->
-  </admin>
-
-  <!-- Following is a dynamic way to include other components or any customized solrconfig.xml stuff, added by other contrib modules -->
-  <xi:include href="solrconfig_extra.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
-    <xi:fallback>
-    <!-- Spell Check
-
-        The spell check component can return a list of alternative spelling
-        suggestions. This component must be defined in
-        solrconfig_extra.xml if present, since it's used in the search handler.
-
-        http://wiki.apache.org/solr/SpellCheckComponent
-     -->
-    <searchComponent name="spellcheck" class="solr.SpellCheckComponent">
-
-    <str name="queryAnalyzerFieldType">textSpell</str>
-
-    <!-- a spellchecker built from a field of the main index -->
-      <lst name="spellchecker">
-        <str name="name">default</str>
-        <str name="field">spell</str>
-        <str name="spellcheckIndexDir">spellchecker</str>
-        <str name="buildOnOptimize">true</str>
-      </lst>
-    </searchComponent>
-    </xi:fallback>
-  </xi:include>
-
-</config>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrconfig_extra.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrconfig_extra.xml
deleted file mode 100644
index c5bc3acfb52805c4f16d8ebf5239ea6443923030..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrconfig_extra.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<!-- Spell Check
-
-    The spell check component can return a list of alternative spelling
-    suggestions.
-
-    http://wiki.apache.org/solr/SpellCheckComponent
- -->
-<searchComponent name="spellcheck" class="solr.SpellCheckComponent">
-
-<str name="queryAnalyzerFieldType">textSpell</str>
-
-<!-- Multiple "Spell Checkers" can be declared and used by this
-     component
-  -->
-
-<!-- a spellchecker built from a field of the main index, and
-     written to disk
-  -->
-<lst name="spellchecker">
-  <str name="name">default</str>
-  <str name="field">spell</str>
-  <str name="spellcheckIndexDir">spellchecker</str>
-  <str name="buildOnOptimize">true</str>
-  <!-- uncomment this to require terms to occur in 1% of the documents in order to be included in the dictionary
-    <float name="thresholdTokenFrequency">.01</float>
-  -->
-</lst>
-
-<!--
-  Adding German spellhecker index to our Solr index
-  This also requires to enable the content in schema_extra_types.xml and schema_extra_fields.xml
--->
-<!--
-<lst name="spellchecker">
-  <str name="name">spellchecker_de</str>
-  <str name="field">spell_de</str>
-  <str name="spellcheckIndexDir">./spellchecker_de</str>
-  <str name="buildOnOptimize">true</str>
-</lst>
--->
-
-<!-- a spellchecker that uses a different distance measure -->
-<!--
-   <lst name="spellchecker">
-     <str name="name">jarowinkler</str>
-     <str name="field">spell</str>
-     <str name="distanceMeasure">
-       org.apache.lucene.search.spell.JaroWinklerDistance
-     </str>
-     <str name="spellcheckIndexDir">spellcheckerJaro</str>
-   </lst>
- -->
-
-<!-- a spellchecker that use an alternate comparator
-
-     comparatorClass be one of:
-      1. score (default)
-      2. freq (Frequency first, then score)
-      3. A fully qualified class name
-  -->
-<!--
-   <lst name="spellchecker">
-     <str name="name">freq</str>
-     <str name="field">lowerfilt</str>
-     <str name="spellcheckIndexDir">spellcheckerFreq</str>
-     <str name="comparatorClass">freq</str>
-     <str name="buildOnCommit">true</str>
-  -->
-
-<!-- A spellchecker that reads the list of words from a file -->
-<!--
-   <lst name="spellchecker">
-     <str name="classname">solr.FileBasedSpellChecker</str>
-     <str name="name">file</str>
-     <str name="sourceLocation">spellings.txt</str>
-     <str name="characterEncoding">UTF-8</str>
-     <str name="spellcheckIndexDir">spellcheckerFile</str>
-   </lst>
-  -->
-</searchComponent>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrcore.properties b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrcore.properties
deleted file mode 100644
index bc468862ceba7e6bfdd4eddd4436ad6b3de0c351..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/solrcore.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Defines Solr properties for this specific core.
-solr.replication.master=false
-solr.replication.slave=false
-solr.replication.pollInterval=00:00:60
-solr.replication.masterUrl=http://localhost:8983/solr
-solr.replication.confFiles=schema.xml,mapping-ISOLatin1Accent.txt,protwords.txt,stopwords.txt,synonyms.txt,elevate.xml
-solr.mlt.timeAllowed=2000
-# You should not set your luceneMatchVersion to anything lower than your Solr
-# Version.
-solr.luceneMatchVersion=LUCENE_35
-solr.pinkPony.timeAllowed=-1
-# autoCommit after 10000 docs
-solr.autoCommit.MaxDocs=10000
-# autoCommit after 2 minutes
-solr.autoCommit.MaxTime=120000
-solr.contrib.dir=../../contrib
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/stopwords.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/stopwords.txt
deleted file mode 100644
index d7f243e48a9f8706cf8ba5aeb3218558e716fa0b..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/stopwords.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-# Contains words which shouldn't be indexed for fulltext fields, e.g., because
-# they're too common. For documentation of the format, see
-# http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.StopFilterFactory
-# (Lines starting with a pound character # are ignored.)
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/synonyms.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/synonyms.txt
deleted file mode 100644
index 7d22eea6d6ee1548e239d42bfe44515370a2a091..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-3.x/synonyms.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Contains synonyms to use for your index. For the format used, see
-# http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.SynonymFilterFactory
-# (Lines starting with a pound character # are ignored.)
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/elevate.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/elevate.xml
deleted file mode 100644
index 71ea0006cf12153977aa618d36761e7141071d31..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/elevate.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-
-<!--
- This file allows you to boost certain search items to the top of search
- results. You can find out an item's ID by searching directly on the Solr
- server. The item IDs are in general constructed as follows:
-   Search API:
-     $document->id = $index_id . '-' . $item_id;
-   Apache Solr Search Integration:
-     $document->id = $site_hash . '/' . $entity_type . '/' . $entity->id;
-
- If you want this file to be automatically re-loaded when a Solr commit takes
- place (e.g., if you have an automatic script active which updates elevate.xml
- according to newly-indexed data), place it into Solr's data/ directory.
- Otherwise, place it with the other configuration files into the conf/
- directory.
-
- See http://wiki.apache.org/solr/QueryElevationComponent for more information.
--->
-
-<elevate>
-<!-- Example for ranking the node #1 first in searches for "example query": -->
-<!--
- <query text="example query">
-  <doc id="default_node_index-1" />
-  <doc id="7v3jsc/node/1" />
- </query>
--->
-<!-- Multiple <query> elements can be specified, contained in one <elevate>. -->
-<!-- <query text="...">...</query> -->
-</elevate>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/mapping-ISOLatin1Accent.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/mapping-ISOLatin1Accent.txt
deleted file mode 100644
index b92d03c55005ef6107723cd3575be7f77a7f4346..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/mapping-ISOLatin1Accent.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-# This file contains character mappings for the default fulltext field type.
-# The source characters (on the left) will be replaced by the respective target
-# characters before any other processing takes place.
-# Lines starting with a pound character # are ignored.
-#
-# For sensible defaults, use the mapping-ISOLatin1Accent.txt file distributed
-# with the example application of your Solr version.
-#
-# Examples:
-#   "À" => "A"
-#   "\u00c4" => "A"
-#   "\u00c4" => "\u0041"
-#   "æ" => "ae"
-#   "\n" => " "
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/protwords.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/protwords.txt
deleted file mode 100644
index cda858149750acd3e5f7cf00c8deecb167fa6193..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/protwords.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-#-----------------------------------------------------------------------
-# This file blocks words from being operated on by the stemmer and word delimiter.
-&amp;
-&lt;
-&gt;
-&#039;
-&quot;
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema.xml
deleted file mode 100644
index 069cffc7db665415b241b03db43f9399512dd7e1..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema.xml
+++ /dev/null
@@ -1,552 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-
-<!--
- This is the Solr schema file. This file should be named "schema.xml" and
- should be in the conf directory under the solr home
- (i.e. ./solr/conf/schema.xml by default)
- or located where the classloader for the Solr webapp can find it.
-
- For more information, on how to customize this file, please see
- http://wiki.apache.org/solr/SchemaXml
--->
-
-<schema name="drupal-4.3-solr-4.x" version="1.3">
-    <!-- attribute "name" is the name of this schema and is only used for display purposes.
-         Applications should change this to reflect the nature of the search collection.
-         version="1.2" is Solr's version number for the schema syntax and semantics.  It should
-         not normally be changed by applications.
-         1.0: multiValued attribute did not exist, all fields are multiValued by nature
-         1.1: multiValued attribute introduced, false by default
-         1.2: omitTermFreqAndPositions attribute introduced, true by default except for text fields.
-         1.3: removed optional field compress feature
-       -->
-  <types>
-    <!-- field type definitions. The "name" attribute is
-       just a label to be used by field definitions.  The "class"
-       attribute and any other attributes determine the real
-       behavior of the fieldType.
-         Class names starting with "solr" refer to java classes in the
-       org.apache.solr.analysis package.
-    -->
-
-    <!-- The StrField type is not analyzed, but indexed/stored verbatim.
-       - StrField and TextField support an optional compressThreshold which
-       limits compression (if enabled in the derived fields) to values which
-       exceed a certain size (in characters).
-    -->
-    <fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
-
-    <!-- boolean type: "true" or "false" -->
-    <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" omitNorms="true"/>
-    <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->
-    <fieldtype name="binary" class="solr.BinaryField"/>
-
-    <!-- The optional sortMissingLast and sortMissingFirst attributes are
-         currently supported on types that are sorted internally as strings.
-       - If sortMissingLast="true", then a sort on this field will cause documents
-         without the field to come after documents with the field,
-         regardless of the requested sort order (asc or desc).
-       - If sortMissingFirst="true", then a sort on this field will cause documents
-         without the field to come before documents with the field,
-         regardless of the requested sort order.
-       - If sortMissingLast="false" and sortMissingFirst="false" (the default),
-         then default lucene sorting will be used which places docs without the
-         field first in an ascending sort and last in a descending sort.
-    -->
-
-    <!-- numeric field types that can be sorted, but are not optimized for range queries -->
-    <fieldType name="integer" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="float" class="solr.TrieFloatField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="double" class="solr.TrieDoubleField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-
-    <!--
-      Note:
-      These should only be used for compatibility with existing indexes (created with older Solr versions)
-      or if "sortMissingFirst" or "sortMissingLast" functionality is needed. Use Trie based fields instead.
-
-      Numeric field types that manipulate the value into
-      a string value that isn't human-readable in its internal form,
-      but with a lexicographic ordering the same as the numeric ordering,
-      so that range queries work correctly.
-    -->
-    <fieldType name="sint" class="solr.TrieIntField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="sfloat" class="solr.TrieFloatField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="slong" class="solr.TrieLongField" sortMissingLast="true" omitNorms="true"/>
-    <fieldType name="sdouble" class="solr.TrieDoubleField" sortMissingLast="true" omitNorms="true"/>
-
-    <!--
-     Numeric field types that index each value at various levels of precision
-     to accelerate range queries when the number of values between the range
-     endpoints is large. See the javadoc for NumericRangeQuery for internal
-     implementation details.
-
-     Smaller precisionStep values (specified in bits) will lead to more tokens
-     indexed per value, slightly larger index size, and faster range queries.
-     A precisionStep of 0 disables indexing at different precision levels.
-    -->
-    <fieldType name="tint" class="solr.TrieIntField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tfloat" class="solr.TrieFloatField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tlong" class="solr.TrieLongField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-    <fieldType name="tdouble" class="solr.TrieDoubleField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
-
-    <!--
-     The ExternalFileField type gets values from an external file instead of the
-     index. This is useful for data such as rankings that might change frequently
-     and require different update frequencies than the documents they are
-     associated with.
-    -->
-    <fieldType name="pfloat" class="solr.FloatField" omitNorms="true"/>
-    <fieldType name="file" keyField="id" defVal="1" stored="false" indexed="false" class="solr.ExternalFileField" valType="pfloat"/>
-
-    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and
-         is a more restricted form of the canonical representation of dateTime
-         http://www.w3.org/TR/xmlschema-2/#dateTime
-         The trailing "Z" designates UTC time and is mandatory.
-         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z
-         All other components are mandatory.
-
-         Expressions can also be used to denote calculations that should be
-         performed relative to "NOW" to determine the value, ie...
-
-               NOW/HOUR
-                  ... Round to the start of the current hour
-               NOW-1DAY
-                  ... Exactly 1 day prior to now
-               NOW/DAY+6MONTHS+3DAYS
-                  ... 6 months and 3 days in the future from the start of
-                      the current day
-
-         Consult the DateField javadocs for more information.
-      -->
-    <fieldType name="date" class="solr.DateField" sortMissingLast="true" omitNorms="true"/>
-
-    <!-- A Trie based date field for faster date range queries and date faceting. -->
-    <fieldType name="tdate" class="solr.TrieDateField" omitNorms="true" precisionStep="6" positionIncrementGap="0"/>
-
-    <!-- solr.TextField allows the specification of custom text analyzers
-         specified as a tokenizer and a list of token filters. Different
-         analyzers may be specified for indexing and querying.
-
-         The optional positionIncrementGap puts space between multiple fields of
-         this type on the same document, with the purpose of preventing false phrase
-         matching across fields.
-
-         For more info on customizing your analyzer chain, please see
-         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters
-     -->
-
-    <!-- One can also specify an existing Analyzer class that has a
-         default constructor via the class attribute on the analyzer element
-    <fieldType name="text_greek" class="solr.TextField">
-      <analyzer class="org.apache.lucene.analysis.el.GreekAnalyzer"/>
-    </fieldType>
-    -->
-
-    <!-- A text field that only splits on whitespace for exact matching of words -->
-    <fieldType name="text_ws" class="solr.TextField" omitNorms="true" positionIncrementGap="100">
-      <analyzer>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of
-        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,
-        so that a query of "wifi" or "wi fi" could match a document containing "Wi-Fi".
-        Synonyms and stopwords are customized by external files, and stemming is enabled.
-        Duplicate tokens at the same position (which may result from Stemmed Synonyms or
-        WordDelim parts) are removed.
-        -->
-    <fieldType name="text" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <!-- in this example, we will only use synonyms at query time
-        <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
-        -->
-        <!-- Case insensitive stop word removal.
-          add enablePositionIncrements=true in both the index and query
-          analyzers to leave a 'gap' for more accurate phrase queries.
-        -->
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="1"
-                catenateNumbers="1"
-                catenateAll="0"
-                splitOnCaseChange="0"
-                preserveOriginal="1"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="0"
-                catenateNumbers="0"
-                catenateAll="0"
-                splitOnCaseChange="0"
-                preserveOriginal="1"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- An unstemmed text field - good if one does not know the language of the field -->
-    <fieldType name="text_und" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="1"
-                catenateNumbers="1"
-                catenateAll="0"
-                splitOnCaseChange="0"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory"
-                ignoreCase="true"
-                words="stopwords.txt"
-                enablePositionIncrements="true"
-                />
-        <filter class="solr.WordDelimiterFilterFactory"
-                protected="protwords.txt"
-                generateWordParts="1"
-                generateNumberParts="1"
-                catenateWords="0"
-                catenateNumbers="0"
-                catenateAll="0"
-                splitOnCaseChange="0"/>
-        <filter class="solr.LengthFilterFactory" min="2" max="100" />
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-
-    <!-- Edge N gram type - for example for matching against queries with results
-        KeywordTokenizer leaves input string intact as a single term.
-        see: http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/
-      -->
-    <fieldType name="edge_n2_kw_text" class="solr.TextField" omitNorms="true" positionIncrementGap="100">
-      <analyzer type="index">
-        <tokenizer class="solr.KeywordTokenizerFactory"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.EdgeNGramFilterFactory" minGramSize="2" maxGramSize="25" />
-      </analyzer>
-      <analyzer type="query">
-        <tokenizer class="solr.KeywordTokenizerFactory"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-      </analyzer>
-    </fieldType>
-    <!--  Setup simple analysis for spell checking -->
-
-    <fieldType name="textSpell" class="solr.TextField" positionIncrementGap="100">
-      <analyzer>
-        <tokenizer class="solr.StandardTokenizerFactory" />
-        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/>
-        <filter class="solr.LengthFilterFactory" min="4" max="20" />
-        <filter class="solr.LowerCaseFilterFactory" />
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory" />
-      </analyzer>
-    </fieldType>
-
-    <!-- This is an example of using the KeywordTokenizer along
-         With various TokenFilterFactories to produce a sortable field
-         that does not include some properties of the source text
-      -->
-    <fieldType name="sortString" class="solr.TextField" sortMissingLast="true" omitNorms="true">
-      <analyzer>
-        <!-- KeywordTokenizer does no actual tokenizing, so the entire
-            input string is preserved as a single token
-          -->
-        <tokenizer class="solr.KeywordTokenizerFactory"/>
-        <!-- The LowerCase TokenFilter does what you expect, which can be
-            when you want your sorting to be case insensitive
-          -->
-        <filter class="solr.LowerCaseFilterFactory" />
-        <!-- The TrimFilter removes any leading or trailing whitespace -->
-        <filter class="solr.TrimFilterFactory" />
-        <!-- The PatternReplaceFilter gives you the flexibility to use
-            Java Regular expression to replace any sequence of characters
-            matching a pattern with an arbitrary replacement string,
-            which may include back refrences to portions of the orriginal
-            string matched by the pattern.
-
-            See the Java Regular Expression documentation for more
-            infomation on pattern and replacement string syntax.
-
-            http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/package-summary.html
-
-        <filter class="solr.PatternReplaceFilterFactory"
-               pattern="(^\p{Punct}+)" replacement="" replace="all"
-        />
-        -->
-      </analyzer>
-    </fieldType>
-
-    <!-- A random sort type -->
-    <fieldType name="rand" class="solr.RandomSortField" indexed="true" />
-
-    <!-- since fields of this type are by default not stored or indexed, any data added to
-         them will be ignored outright
-      -->
-    <fieldtype name="ignored" stored="false" indexed="false" class="solr.StrField" />
-
-    <!-- Begin added types to use features in Solr 3.4+ -->
-    <fieldType name="point" class="solr.PointType" dimension="2" subFieldType="tdouble"/>
-
-    <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->
-    <fieldType name="location" class="solr.LatLonType" subFieldType="tdouble"/>
-
-    <!-- A Geohash is a compact representation of a latitude longitude pair in a single field.
-         See http://wiki.apache.org/solr/SpatialSearch
-     -->
-    <fieldtype name="geohash" class="solr.GeoHashField"/>
-    <!-- End added Solr 3.4+ types -->
-
-  </types>
-
-  <!-- Following is a dynamic way to include other types, added by other contrib modules -->
-  <xi:include href="schema_extra_types.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
-    <xi:fallback></xi:fallback>
-  </xi:include>
-
-  <fields>
-    <!-- Valid attributes for fields:
-      name: mandatory - the name for the field
-      type: mandatory - the name of a previously defined type from the <types> section
-      indexed: true if this field should be indexed (searchable or sortable)
-      stored: true if this field should be retrievable
-      compressed: [false] if this field should be stored using gzip compression
-       (this will only apply if the field type is compressable; among
-       the standard field types, only TextField and StrField are)
-      multiValued: true if this field may contain multiple values per document
-      omitNorms: (expert) set to true to omit the norms associated with
-       this field (this disables length normalization and index-time
-       boosting for the field, and saves some memory).  Only full-text
-       fields or fields that need an index-time boost need norms.
-    -->
-
-    <!-- The document id is usually derived from a site-spcific key (hash) and the
-      entity type and ID like:
-      Search Api :
-        The format used is $document->id = $index_id . '-' . $item_id
-      Apache Solr Search Integration
-        The format used is $document->id = $site_hash . '/' . $entity_type . '/' . $entity->id;
-    -->
-    <field name="id" type="string" indexed="true" stored="true" required="true" />
-
-    <!-- Add Solr Cloud version field as mentioned in
-         http://wiki.apache.org/solr/SolrCloud#Required_Config
-    -->
-    <field name="_version_" type="long" indexed="true" stored="true" multiValued="false"/>
-
-    <!-- Search Api specific fields -->
-    <!-- item_id contains the entity ID, e.g. a node's nid. -->
-    <field name="item_id"  type="string" indexed="true" stored="true" />
-    <!-- index_id is the machine name of the search index this entry belongs to. -->
-    <field name="index_id" type="string" indexed="true" stored="true" />
-    <!-- Since sorting by ID is explicitly allowed, store item_id also in a sortable way. -->
-    <copyField source="item_id" dest="sort_search_api_id" />
-
-    <!-- Apache Solr Search Integration specific fields -->
-    <!-- entity_id is the numeric object ID, e.g. Node ID, File ID -->
-    <field name="entity_id"  type="long" indexed="true" stored="true" />
-    <!-- entity_type is 'node', 'file', 'user', or some other Drupal object type -->
-    <field name="entity_type" type="string" indexed="true" stored="true" />
-    <!-- bundle is a node type, or as appropriate for other entity types -->
-    <field name="bundle" type="string" indexed="true" stored="true"/>
-    <field name="bundle_name" type="string" indexed="true" stored="true"/>
-    <field name="site" type="string" indexed="true" stored="true"/>
-    <field name="hash" type="string" indexed="true" stored="true"/>
-    <field name="url" type="string" indexed="true" stored="true"/>
-    <!-- label is the default field for a human-readable string for this entity (e.g. the title of a node) -->
-    <field name="label" type="text" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-    <!-- The string version of the title is used for sorting -->
-    <copyField source="label" dest="sort_label"/>
-
-    <!-- content is the default field for full text search - dump crap here -->
-    <field name="content" type="text" indexed="true" stored="true" termVectors="true"/>
-    <field name="teaser" type="text" indexed="false" stored="true"/>
-    <field name="path" type="string" indexed="true" stored="true"/>
-    <field name="path_alias" type="text" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-
-    <!-- These are the fields that correspond to a Drupal node. The beauty of having
-      Lucene store title, body, type, etc., is that we retrieve them with the search
-      result set and don't need to go to the database with a node_load. -->
-    <field name="tid"  type="long" indexed="true" stored="true" multiValued="true"/>
-    <field name="taxonomy_names" type="text" indexed="true" stored="false" termVectors="true" multiValued="true" omitNorms="true"/>
-    <!-- Copy terms to a single field that contains all taxonomy term names -->
-    <copyField source="tm_vid_*" dest="taxonomy_names"/>
-
-    <!-- Here, default is used to create a "timestamp" field indicating
-         when each document was indexed.-->
-    <field name="timestamp" type="tdate" indexed="true" stored="true" default="NOW" multiValued="false"/>
-
-    <!-- This field is used to build the spellchecker index -->
-    <field name="spell" type="textSpell" indexed="true" stored="true" multiValued="true"/>
-
-    <!-- copyField commands copy one field to another at the time a document
-         is added to the index.  It's used either to index the same field differently,
-         or to add multiple fields to the same field for easier/faster searching.  -->
-    <copyField source="label" dest="spell"/>
-    <copyField source="content" dest="spell"/>
-
-    <copyField source="ts_*" dest="spell"/>
-    <copyField source="tm_*" dest="spell"/>
-
-    <!-- Dynamic field definitions.  If a field name is not found, dynamicFields
-         will be used if the name matches any of the patterns.
-         RESTRICTION: the glob-like pattern in the name attribute must have
-         a "*" only at the start or the end.
-         EXAMPLE:  name="*_i" will match any field ending in _i (like myid_i, z_i)
-         Longer patterns will be matched first.  if equal size patterns
-         both match, the first appearing in the schema will be used.  -->
-
-    <!-- A set of fields to contain text extracted from HTML tag contents which we
-         can boost at query time. -->
-    <dynamicField name="tags_*" type="text"   indexed="true" stored="false" omitNorms="true"/>
-
-    <!-- For 2 and 3 letter prefix dynamic fields, the 1st letter indicates the data type and
-         the last letter is 's' for single valued, 'm' for multi-valued -->
-
-    <!-- We use long for integer since 64 bit ints are now common in PHP. -->
-    <dynamicField name="is_*"  type="long"    indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="im_*"  type="long"    indexed="true"  stored="true" multiValued="true"/>
-    <!-- List of floats can be saved in a regular float field -->
-    <dynamicField name="fs_*"  type="float"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="fm_*"  type="float"   indexed="true"  stored="true" multiValued="true"/>
-    <!-- List of doubles can be saved in a regular double field -->
-    <dynamicField name="ps_*"  type="double"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="pm_*"  type="double"   indexed="true"  stored="true" multiValued="true"/>
-    <!-- List of booleans can be saved in a regular boolean field -->
-    <dynamicField name="bm_*"  type="boolean" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="bs_*"  type="boolean" indexed="true"  stored="true" multiValued="false"/>
-    <!-- Regular text (without processing) can be stored in a string field-->
-    <dynamicField name="ss_*"  type="string"  indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="sm_*"  type="string"  indexed="true"  stored="true" multiValued="true"/>
-    <!-- Normal text fields are for full text - the relevance of a match depends on the length of the text -->
-    <dynamicField name="ts_*"  type="text"    indexed="true"  stored="true" multiValued="false" termVectors="true"/>
-    <dynamicField name="tm_*"  type="text"    indexed="true"  stored="true" multiValued="true" termVectors="true"/>
-    <!-- Unstemmed text fields for full text - the relevance of a match depends on the length of the text -->
-    <dynamicField name="tus_*" type="text_und" indexed="true"  stored="true" multiValued="false" termVectors="true"/>
-    <dynamicField name="tum_*" type="text_und" indexed="true"  stored="true" multiValued="true" termVectors="true"/>
-    <!-- These text fields omit norms - useful for extracted text like taxonomy_names -->
-    <dynamicField name="tos_*" type="text"    indexed="true"  stored="true" multiValued="false" termVectors="true" omitNorms="true"/>
-    <dynamicField name="tom_*" type="text"    indexed="true"  stored="true" multiValued="true" termVectors="true" omitNorms="true"/>
-    <!-- Special-purpose text fields -->
-    <dynamicField name="tes_*" type="edge_n2_kw_text" indexed="true" stored="true" multiValued="false" omitTermFreqAndPositions="true" />
-    <dynamicField name="tem_*" type="edge_n2_kw_text" indexed="true" stored="true" multiValued="true" omitTermFreqAndPositions="true" />
-    <dynamicField name="tws_*" type="text_ws" indexed="true" stored="true" multiValued="false"/>
-    <dynamicField name="twm_*" type="text_ws" indexed="true" stored="true" multiValued="true"/>
-
-    <!-- trie dates are preferred, so give them the 2 letter prefix -->
-    <dynamicField name="ds_*"  type="tdate"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="dm_*"  type="tdate"   indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="its_*" type="tlong"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="itm_*" type="tlong"   indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="fts_*" type="tfloat"  indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ftm_*" type="tfloat"  indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="pts_*" type="tdouble" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ptm_*" type="tdouble" indexed="true"  stored="true" multiValued="true"/>
-    <!-- Binary fields can be populated using base64 encoded data. Useful e.g. for embedding
-         a small image in a search result using the data URI scheme -->
-    <dynamicField name="xs_*"  type="binary"  indexed="false" stored="true" multiValued="false"/>
-    <dynamicField name="xm_*"  type="binary"  indexed="false" stored="true" multiValued="true"/>
-    <!-- In rare cases a date rather than tdate is needed for sortMissingLast -->
-    <dynamicField name="dds_*" type="date"    indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ddm_*" type="date"    indexed="true"  stored="true" multiValued="true"/>
-    <!-- Sortable fields, good for sortMissingLast support &
-         We use long for integer since 64 bit ints are now common in PHP. -->
-    <dynamicField name="iss_*" type="slong"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="ism_*" type="slong"   indexed="true"  stored="true" multiValued="true"/>
-    <!-- In rare cases a sfloat rather than tfloat is needed for sortMissingLast -->
-    <dynamicField name="fss_*" type="sfloat"  indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="fsm_*" type="sfloat"  indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="pss_*" type="sdouble" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="psm_*" type="sdouble" indexed="true"  stored="true" multiValued="true"/>
-    <!-- In case a 32 bit int is really needed, we provide these fields. 'h' is mnemonic for 'half word', i.e. 32 bit on 64 arch -->
-    <dynamicField name="hs_*" type="integer" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="hm_*" type="integer" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="hss_*" type="sint"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="hsm_*" type="sint"   indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="hts_*" type="tint"   indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="htm_*" type="tint"   indexed="true"  stored="true" multiValued="true"/>
-
-    <!-- Unindexed string fields that can be used to store values that won't be searchable -->
-    <dynamicField name="zs_*" type="string"   indexed="false"  stored="true" multiValued="false"/>
-    <dynamicField name="zm_*" type="string"   indexed="false"  stored="true" multiValued="true"/>
-
-    <!-- Begin added fields to use features in Solr 3.4+
-         http://wiki.apache.org/solr/SpatialSearch#geodist_-_The_distance_function -->
-    <dynamicField name="points_*" type="point" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="pointm_*" type="point" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="locs_*" type="location" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="locm_*" type="location" indexed="true"  stored="true" multiValued="true"/>
-    <dynamicField name="geos_*" type="geohash" indexed="true"  stored="true" multiValued="false"/>
-    <dynamicField name="geom_*" type="geohash" indexed="true"  stored="true" multiValued="true"/>
-
-    <!-- External file fields -->
-    <dynamicField name="eff_*" type="file"/>
-    <!-- End added fields for Solr 3.4+ -->
-
-    <!-- Sortable version of the dynamic string field -->
-    <dynamicField name="sort_*" type="sortString" indexed="true" stored="false"/>
-    <copyField source="ss_*" dest="sort_*"/>
-    <!-- A random sort field -->
-    <dynamicField name="random_*" type="rand" indexed="true" stored="true"/>
-    <!-- This field is used to store access information (e.g. node access grants), as opposed to field data -->
-    <dynamicField name="access_*" type="integer" indexed="true" stored="false" multiValued="true"/>
-
-    <!-- The following causes solr to ignore any fields that don't already match an existing
-         field name or dynamic field, rather than reporting them as an error.
-         Alternately, change the type="ignored" to some other type e.g. "text" if you want
-         unknown fields indexed and/or stored by default -->
-    <dynamicField name="*" type="ignored" multiValued="true" />
-
-  </fields>
-
-  <!-- Following is a dynamic way to include other fields, added by other contrib modules -->
-  <xi:include href="schema_extra_fields.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
-    <xi:fallback></xi:fallback>
-  </xi:include>
-
-  <!-- Field to use to determine and enforce document uniqueness.
-       Unless this field is marked with required="false", it will be a required field
-    -->
-  <uniqueKey>id</uniqueKey>
-
-  <!-- field for the QueryParser to use when an explicit fieldname is absent -->
-  <defaultSearchField>content</defaultSearchField>
-
-  <!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
-  <solrQueryParser defaultOperator="AND"/>
-
-</schema>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema_extra_fields.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema_extra_fields.xml
deleted file mode 100644
index 9ecd5f4fa637598bb55136694d1b7133089dd0c7..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema_extra_fields.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<fields>
-<!--
-  Adding German dynamic field types to our Solr Schema
-  If you enable this, make sure you have a folder called lang with stopwords_de.txt
-  and synonyms_de.txt in there
-  This also requires to enable the content in schema_extra_types.xml
--->
-<!--
-   <field name="label_de" type="text_de" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-   <field name="content_de" type="text_de" indexed="true" stored="true" termVectors="true"/>
-   <field name="teaser_de" type="text_de" indexed="false" stored="true"/>
-   <field name="path_alias_de" type="text_de" indexed="true" stored="true" termVectors="true" omitNorms="true"/>
-   <field name="taxonomy_names_de" type="text_de" indexed="true" stored="false" termVectors="true" multiValued="true" omitNorms="true"/>
-   <field name="spell_de" type="text_de" indexed="true" stored="true" multiValued="true"/>
-   <copyField source="label_de" dest="spell_de"/>
-   <copyField source="content_de" dest="spell_de"/>
-   <dynamicField name="tags_de_*" type="text_de" indexed="true" stored="false" omitNorms="true"/>
-   <dynamicField name="ts_de_*" type="text_de" indexed="true" stored="true" multiValued="false" termVectors="true"/>
-   <dynamicField name="tm_de_*" type="text_de" indexed="true" stored="true" multiValued="true" termVectors="true"/>
-   <dynamicField name="tos_de_*" type="text_de" indexed="true" stored="true" multiValued="false" termVectors="true" omitNorms="true"/>
-   <dynamicField name="tom_de_*" type="text_de" indexed="true" stored="true" multiValued="true" termVectors="true" omitNorms="true"/>
--->
-</fields>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema_extra_types.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema_extra_types.xml
deleted file mode 100644
index e82072e2fb9235de0cf8b286f169f79d180630cb..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/schema_extra_types.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<types>
-<!--
-  Adding German language to our Solr Schema German
-  If you enable this, make sure you have a folder called lang with stopwords_de.txt
-  and synonyms_de.txt in there
--->
-<!--
-    <fieldType name="text_de" class="solr.TextField" positionIncrementGap="100">
-      <analyzer type="index">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.StopFilterFactory" words="lang/stopwords_de.txt" format="snowball" ignoreCase="true" enablePositionIncrements="true"/>
-        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" splitOnCaseChange="1" splitOnNumerics="1" catenateWords="1" catenateNumbers="1" catenateAll="0" protected="protwords.txt" preserveOriginal="1"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.GermanLightStemFilterFactory"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-      <analyzer type="query">
-        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
-        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
-        <filter class="solr.SynonymFilterFactory" synonyms="lang/synonyms_de.txt" ignoreCase="true" expand="true"/>
-        <filter class="solr.StopFilterFactory" words="lang/stopwords_de.txt" format="snowball" ignoreCase="true" enablePositionIncrements="true"/>
-        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" splitOnCaseChange="1" splitOnNumerics="1" catenateWords="0" catenateNumbers="0" catenateAll="0" protected="protwords.txt" preserveOriginal="1"/>
-        <filter class="solr.LowerCaseFilterFactory"/>
-        <filter class="solr.GermanLightStemFilterFactory"/>
-        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
-      </analyzer>
-    </fieldType>
--->
-</types>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrconfig.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrconfig.xml
deleted file mode 100644
index c75f57ab6f2cf47780bfdd0c543952d72aad6d39..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrconfig.xml
+++ /dev/null
@@ -1,1641 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<!--
-     For more details about configurations options that may appear in
-     this file, see http://wiki.apache.org/solr/SolrConfigXml.
--->
-<config name="drupal-4.3-solr-4.x" >
-  <!-- In all configuration below, a prefix of "solr." for class names
-       is an alias that causes solr to search appropriate packages,
-       including org.apache.solr.(search|update|request|core|analysis)
-
-       You may also specify a fully qualified Java classname if you
-       have your own custom plugins.
-    -->
-
-  <!-- Set this to 'false' if you want solr to continue working after
-       it has encountered an severe configuration error.  In a
-       production environment, you may want solr to keep working even
-       if one handler is mis-configured.
-
-       You may also set this to false using by setting the system
-       property:
-
-         -Dsolr.abortOnConfigurationError=false
-    -->
-  <abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
-
-  <!-- Controls what version of Lucene various components of Solr
-       adhere to.  Generally, you want to use the latest version to
-       get all bug fixes and improvements. It is highly recommended
-       that you fully re-index after changing this setting as it can
-       affect both how text is indexed and queried.
-    -->
-  <luceneMatchVersion>${solr.luceneMatchVersion:LUCENE_40}</luceneMatchVersion>
-
-  <!-- lib directives can be used to instruct Solr to load an Jars
-       identified and use them to resolve any "plugins" specified in
-       your solrconfig.xml or schema.xml (ie: Analyzers, Request
-       Handlers, etc...).
-
-       All directories and paths are resolved relative to the
-       instanceDir.
-
-       If a "./lib" directory exists in your instanceDir, all files
-       found in it are included as if you had used the following
-       syntax...
-       
-              <lib dir="./lib" />
-    -->
-
-  <!-- A dir option by itself adds any files found in the directory to
-       the classpath, this is useful for including all jars in a
-       directory.
-    -->
-  <lib dir="${solr.contrib.dir:../../../contrib}/extraction/lib" />
-  <lib dir="${solr.contrib.dir:../../../contrib}/clustering/lib/" />
-
-  <!-- The velocity library has been known to crash Solr in some
-       instances when deployed as a war file to Tomcat. Therefore all
-       references have been removed from the default configuration.
-       @see http://drupal.org/node/1612556
-  -->
-  <!-- <lib dir="../../contrib/velocity/lib" /> -->
-
-  <!-- When a regex is specified in addition to a directory, only the
-       files in that directory which completely match the regex
-       (anchored on both ends) will be included.
-    -->
-  <!--<lib dir="../../dist/" regex="apache-solr-cell-\d.*\.jar" />-->
-  <!--<lib dir="../../dist/" regex="apache-solr-clustering-\d.*\.jar" />-->
-  <!--<lib dir="../../dist/" regex="apache-solr-dataimporthandler-\d.*\.jar" />-->
-  <!--<lib dir="../../dist/" regex="apache-solr-langid-\d.*\.jar" />-->
-  <!-- <lib dir="../../dist/" regex="apache-solr-velocity-\d.*\.jar" /> -->
-
-  <!-- If a dir option (with or without a regex) is used and nothing
-       is found that matches, it will be ignored
-    -->
-  <!--<lib dir="../../contrib/clustering/lib/" />-->
-  <!--<lib dir="/total/crap/dir/ignored" />-->
-
-  <!-- an exact path can be used to specify a specific file.  This
-       will cause a serious error to be logged if it can't be loaded.
-    -->
-  <!--
-  <lib path="../a-jar-that-does-not-exist.jar" /> 
-  -->
-  
-  <!-- Data Directory
-
-       Used to specify an alternate directory to hold all index data
-       other than the default ./data under the Solr home.  If
-       replication is in use, this should match the replication
-       configuration.
-    -->
-  <!-- <dataDir>${solr.data.dir:}</dataDir> -->
-
-
-  <!-- The DirectoryFactory to use for indexes.
-       
-       solr.StandardDirectoryFactory, the default, is filesystem
-       based and tries to pick the best implementation for the current
-       JVM and platform.  One can force a particular implementation
-       via solr.MMapDirectoryFactory, solr.NIOFSDirectoryFactory, or
-       solr.SimpleFSDirectoryFactory.
-
-       solr.RAMDirectoryFactory is memory based, not
-       persistent, and doesn't work with replication.
-    -->
-  <directoryFactory name="DirectoryFactory" 
-                    class="${solr.directoryFactory:solr.StandardDirectoryFactory}"/>
-
-  <!-- Index Defaults
-
-       Values here affect all index writers and act as a default
-       unless overridden.
-
-       WARNING: See also the <mainIndex> section below for parameters
-       that overfor Solr's main Lucene index.
-    -->
-  <indexConfig>
-
-    <useCompoundFile>false</useCompoundFile>
-
-    <mergeFactor>4</mergeFactor>
-    <!-- Sets the amount of RAM that may be used by Lucene indexing
-         for buffering added documents and deletions before they are
-         flushed to the Directory.  -->
-    <ramBufferSizeMB>32</ramBufferSizeMB>
-    <!-- If both ramBufferSizeMB and maxBufferedDocs is set, then
-         Lucene will flush based on whichever limit is hit first.  
-      -->
-    <!-- <maxBufferedDocs>1000</maxBufferedDocs> -->
-
-    <maxMergeDocs>2147483647</maxMergeDocs>
-    <maxFieldLength>100000</maxFieldLength>
-    <writeLockTimeout>1000</writeLockTimeout>
-
-    <!-- Expert: Merge Policy 
-
-         The Merge Policy in Lucene controls how merging is handled by
-         Lucene.  The default in Solr 3.3 is TieredMergePolicy.
-         
-         The default in 2.3 was the LogByteSizeMergePolicy,
-         previous versions used LogDocMergePolicy.
-         
-         LogByteSizeMergePolicy chooses segments to merge based on
-         their size.  The Lucene 2.2 default, LogDocMergePolicy chose
-         when to merge based on number of documents
-         
-         Other implementations of MergePolicy must have a no-argument
-         constructor
-      -->
-    <mergePolicy class="org.apache.lucene.index.LogByteSizeMergePolicy"/>
-
-    <!-- Expert: Merge Scheduler
-
-         The Merge Scheduler in Lucene controls how merges are
-         performed.  The ConcurrentMergeScheduler (Lucene 2.3 default)
-         can perform merges in the background using separate threads.
-         The SerialMergeScheduler (Lucene 2.2 default) does not.
-     -->
-    <!-- 
-       <mergeScheduler class="org.apache.lucene.index.ConcurrentMergeScheduler"/>
-       -->
-	  
-    <!-- LockFactory 
-
-         This option specifies which Lucene LockFactory implementation
-         to use.
-      
-         single = SingleInstanceLockFactory - suggested for a
-                  read-only index or when there is no possibility of
-                  another process trying to modify the index.
-         native = NativeFSLockFactory - uses OS native file locking.
-                  Do not use when multiple solr webapps in the same
-                  JVM are attempting to share a single index.
-         simple = SimpleFSLockFactory  - uses a plain file for locking
-
-         (For backwards compatibility with Solr 1.2, 'simple' is the
-         default if not specified.)
-
-         More details on the nuances of each LockFactory...
-         http://wiki.apache.org/lucene-java/AvailableLockFactories
-    -->
-    <lockType>single</lockType>
-
-    <!-- Expert: Controls how often Lucene loads terms into memory
-         Default is 128 and is likely good for most everyone.
-      -->
-    <!-- <termIndexInterval>256</termIndexInterval> -->
-
-    <!-- Unlock On Startup
-
-         If true, unlock any held write or commit locks on startup.
-         This defeats the locking mechanism that allows multiple
-         processes to safely access a lucene index, and should be used
-         with care.
-
-         This is not needed if lock type is 'none' or 'single'
-     -->
-    <unlockOnStartup>false</unlockOnStartup>
-    
-    <!-- If true, IndexReaders will be reopened (often more efficient)
-         instead of closed and then opened.
-      -->
-    <reopenReaders>true</reopenReaders>
-
-    <!-- Commit Deletion Policy
-
-         Custom deletion policies can specified here. The class must
-         implement org.apache.lucene.index.IndexDeletionPolicy.
-
-         http://lucene.apache.org/java/2_9_1/api/all/org/apache/lucene/index/IndexDeletionPolicy.html
-
-         The standard Solr IndexDeletionPolicy implementation supports
-         deleting index commit points on number of commits, age of
-         commit point and optimized status.
-         
-         The latest commit point should always be preserved regardless
-         of the criteria.
-    -->
-    <deletionPolicy class="solr.SolrDeletionPolicy">
-      <!-- The number of commit points to be kept -->
-      <str name="maxCommitsToKeep">1</str>
-      <!-- The number of optimized commit points to be kept -->
-      <str name="maxOptimizedCommitsToKeep">0</str>
-      <!--
-          Delete all commit points once they have reached the given age.
-          Supports DateMathParser syntax e.g.
-        -->
-      <!--
-         <str name="maxCommitAge">30MINUTES</str>
-         <str name="maxCommitAge">1DAY</str>
-      -->
-    </deletionPolicy>
-
-    <!-- Lucene Infostream
-       
-         To aid in advanced debugging, Lucene provides an "InfoStream"
-         of detailed information when indexing.
-
-         Setting The value to true will instruct the underlying Lucene
-         IndexWriter to write its debugging info the specified file
-      -->
-     <infoStream file="INFOSTREAM.txt">false</infoStream> 
-
-  </indexConfig>
-
-  <!-- JMX
-       
-       This example enables JMX if and only if an existing MBeanServer
-       is found, use this if you want to configure JMX through JVM
-       parameters. Remove this to disable exposing Solr configuration
-       and statistics to JMX.
-
-       For more details see http://wiki.apache.org/solr/SolrJmx
-    -->
-  <!-- <jmx /> -->
-  <!-- If you want to connect to a particular server, specify the
-       agentId 
-    -->
-  <!-- <jmx agentId="myAgent" /> -->
-  <!-- If you want to start a new MBeanServer, specify the serviceUrl -->
-  <!-- <jmx serviceUrl="service:jmx:rmi:///jndi/rmi://localhost:9999/solr"/>
-    -->
-
-  <!-- The default high-performance update handler -->
-  <updateHandler class="solr.DirectUpdateHandler2">
-
-    <!-- AutoCommit
-
-         Perform a <commit/> automatically under certain conditions.
-         Instead of enabling autoCommit, consider using "commitWithin"
-         when adding documents. 
-
-         http://wiki.apache.org/solr/UpdateXmlMessages
-
-         maxDocs - Maximum number of documents to add since the last
-                   commit before automatically triggering a new commit.
-
-         maxTime - Maximum amount of time that is allowed to pass
-                   since a document was added before automaticly
-                   triggering a new commit.
-      -->
-    <autoCommit>
-      <maxDocs>${solr.autoCommit.MaxDocs:10000}</maxDocs>
-      <maxTime>${solr.autoCommit.MaxTime:120000}</maxTime>
-    </autoCommit>
-
-    <!-- softAutoCommit is like autoCommit except it causes a
-         'soft' commit which only ensures that changes are visible
-         but does not ensure that data is synced to disk.  This is
-         faster and more near-realtime friendly than a hard commit.
-    -->
-    <autoSoftCommit>
-      <maxDocs>${solr.autoSoftCommit.MaxDocs:2000}</maxDocs>
-      <maxTime>${solr.autoSoftCommit.MaxTime:10000}</maxTime>
-    </autoSoftCommit>
-
-    <!-- Update Related Event Listeners
-
-         Various IndexWriter related events can trigger Listeners to
-         take actions.
-
-         postCommit - fired after every commit or optimize command
-         postOptimize - fired after every optimize command
-      -->
-    <!-- The RunExecutableListener executes an external command from a
-         hook such as postCommit or postOptimize.
-         
-         exe - the name of the executable to run
-         dir - dir to use as the current working directory. (default=".")
-         wait - the calling thread waits until the executable returns. 
-                (default="true")
-         args - the arguments to pass to the program.  (default is none)
-         env - environment variables to set.  (default is none)
-      -->
-    <!-- This example shows how RunExecutableListener could be used
-         with the script based replication...
-         http://wiki.apache.org/solr/CollectionDistribution
-      -->
-    <!--
-       <listener event="postCommit" class="solr.RunExecutableListener">
-         <str name="exe">solr/bin/snapshooter</str>
-         <str name="dir">.</str>
-         <bool name="wait">true</bool>
-         <arr name="args"> <str>arg1</str> <str>arg2</str> </arr>
-         <arr name="env"> <str>MYVAR=val1</str> </arr>
-       </listener>
-      -->
-    <!-- Enables a transaction log, currently used for real-time get.
-         "dir" - the target directory for transaction logs, defaults to the
-         solr data directory.  -->
-    <updateLog>
-      <str name="dir">${solr.data.dir:}</str>
-      <!-- if you want to take control of the synchronization you may specify
-           the syncLevel as one of the following where ''flush'' is the default.
-           Fsync will reduce throughput.
-           <str name="syncLevel">flush|fsync|none</str>
-      -->
-    </updateLog>
-  </updateHandler>
-  
-  <!-- IndexReaderFactory
-
-       Use the following format to specify a custom IndexReaderFactory,
-       which allows for alternate IndexReader implementations.
-
-       ** Experimental Feature **
-
-       Please note - Using a custom IndexReaderFactory may prevent
-       certain other features from working. The API to
-       IndexReaderFactory may change without warning or may even be
-       removed from future releases if the problems cannot be
-       resolved.
-
-
-       ** Features that may not work with custom IndexReaderFactory **
-
-       The ReplicationHandler assumes a disk-resident index. Using a
-       custom IndexReader implementation may cause incompatibility
-       with ReplicationHandler and may cause replication to not work
-       correctly. See SOLR-1366 for details.
-
-    -->
-  <!--
-  <indexReaderFactory name="IndexReaderFactory" class="package.class">
-    <str name="someArg">Some Value</str>
-  </indexReaderFactory >
-  -->
-  <!-- By explicitly declaring the Factory, the termIndexDivisor can
-       be specified.
-    -->
-  <!--
-     <indexReaderFactory name="IndexReaderFactory" 
-                         class="solr.StandardIndexReaderFactory">
-       <int name="setTermIndexDivisor">12</int>
-     </indexReaderFactory >
-    -->
-
-
-  <query>
-    <!-- Max Boolean Clauses
-
-         Maximum number of clauses in each BooleanQuery,  an exception
-         is thrown if exceeded.
-
-         ** WARNING **
-         
-         This option actually modifies a global Lucene property that
-         will affect all SolrCores.  If multiple solrconfig.xml files
-         disagree on this property, the value at any given moment will
-         be based on the last SolrCore to be initialized.
-         
-      -->
-    <maxBooleanClauses>1024</maxBooleanClauses>
-
-
-    <!-- Solr Internal Query Caches
-
-         There are two implementations of cache available for Solr,
-         LRUCache, based on a synchronized LinkedHashMap, and
-         FastLRUCache, based on a ConcurrentHashMap.  
-
-         FastLRUCache has faster gets and slower puts in single
-         threaded operation and thus is generally faster than LRUCache
-         when the hit ratio of the cache is high (> 75%), and may be
-         faster under other scenarios on multi-cpu systems.
-    -->
-
-    <!-- Filter Cache
-
-         Cache used by SolrIndexSearcher for filters (DocSets),
-         unordered sets of *all* documents that match a query.  When a
-         new searcher is opened, its caches may be prepopulated or
-         "autowarmed" using data from caches in the old searcher.
-         autowarmCount is the number of items to prepopulate.  For
-         LRUCache, the autowarmed items will be the most recently
-         accessed items.
-
-         Parameters:
-           class - the SolrCache implementation LRUCache or
-               (LRUCache or FastLRUCache)
-           size - the maximum number of entries in the cache
-           initialSize - the initial capacity (number of entries) of
-               the cache.  (see java.util.HashMap)
-           autowarmCount - the number of entries to prepopulate from
-               and old cache.  
-      -->
-    <filterCache class="solr.FastLRUCache"
-                 size="512"
-                 initialSize="512"
-                 autowarmCount="0"/>
-
-    <!-- Query Result Cache
-         
-         Caches results of searches - ordered lists of document ids
-         (DocList) based on a query, a sort, and the range of documents requested.  
-      -->
-    <queryResultCache class="solr.LRUCache"
-                     size="512"
-                     initialSize="512"
-                     autowarmCount="32"/>
-   
-    <!-- Document Cache
-
-         Caches Lucene Document objects (the stored fields for each
-         document).  Since Lucene internal document ids are transient,
-         this cache will not be autowarmed.  
-      -->
-    <documentCache class="solr.LRUCache"
-                   size="512"
-                   initialSize="512"
-                   autowarmCount="0"/>
-    
-    <!-- Field Value Cache
-         
-         Cache used to hold field values that are quickly accessible
-         by document id.  The fieldValueCache is created by default
-         even if not configured here.
-      -->
-    <!--
-       <fieldValueCache class="solr.FastLRUCache"
-                        size="512"
-                        autowarmCount="128"
-                        showItems="32" />
-      -->
-
-    <!-- Custom Cache
-
-         Example of a generic cache.  These caches may be accessed by
-         name through SolrIndexSearcher.getCache(),cacheLookup(), and
-         cacheInsert().  The purpose is to enable easy caching of
-         user/application level data.  The regenerator argument should
-         be specified as an implementation of solr.CacheRegenerator 
-         if autowarming is desired.  
-      -->
-    <!--
-       <cache name="myUserCache"
-              class="solr.LRUCache"
-              size="4096"
-              initialSize="1024"
-              autowarmCount="1024"
-              regenerator="com.mycompany.MyRegenerator"
-              />
-      -->
-
-
-    <!-- Lazy Field Loading
-
-         If true, stored fields that are not requested will be loaded
-         lazily.  This can result in a significant speed improvement
-         if the usual case is to not load all stored fields,
-         especially if the skipped fields are large compressed text
-         fields.
-    -->
-    <enableLazyFieldLoading>true</enableLazyFieldLoading>
-
-   <!-- Use Filter For Sorted Query
-
-        A possible optimization that attempts to use a filter to
-        satisfy a search.  If the requested sort does not include
-        score, then the filterCache will be checked for a filter
-        matching the query. If found, the filter will be used as the
-        source of document ids, and then the sort will be applied to
-        that.
-
-        For most situations, this will not be useful unless you
-        frequently get the same search repeatedly with different sort
-        options, and none of them ever use "score"
-     -->
-   <!--
-      <useFilterForSortedQuery>true</useFilterForSortedQuery>
-     -->
-
-   <!-- Result Window Size
-
-        An optimization for use with the queryResultCache.  When a search
-        is requested, a superset of the requested number of document ids
-        are collected.  For example, if a search for a particular query
-        requests matching documents 10 through 19, and queryWindowSize is 50,
-        then documents 0 through 49 will be collected and cached.  Any further
-        requests in that range can be satisfied via the cache.  
-     -->
-   <queryResultWindowSize>20</queryResultWindowSize>
-
-   <!-- Maximum number of documents to cache for any entry in the
-        queryResultCache. 
-     -->
-   <queryResultMaxDocsCached>200</queryResultMaxDocsCached>
-
-   <!-- Query Related Event Listeners
-
-        Various IndexSearcher related events can trigger Listeners to
-        take actions.
-
-        newSearcher - fired whenever a new searcher is being prepared
-        and there is a current searcher handling requests (aka
-        registered).  It can be used to prime certain caches to
-        prevent long request times for certain requests.
-
-        firstSearcher - fired whenever a new searcher is being
-        prepared but there is no current registered searcher to handle
-        requests or to gain autowarming data from.
-
-        
-     -->
-    <!-- QuerySenderListener takes an array of NamedList and executes a
-         local query request for each NamedList in sequence. 
-      -->
-    <listener event="newSearcher" class="solr.QuerySenderListener">
-      <arr name="queries">
-        <!--
-           <lst><str name="q">solr</str><str name="sort">price asc</str></lst>
-           <lst><str name="q">rocks</str><str name="sort">weight asc</str></lst>
-          -->
-      </arr>
-    </listener>
-    <listener event="firstSearcher" class="solr.QuerySenderListener">
-      <arr name="queries">
-        <lst>
-          <str name="q">solr rocks</str><str name="start">0</str><str name="rows">10</str>
-        </lst>
-      </arr>
-    </listener>
-
-    <!-- Use Cold Searcher
-
-         If a search request comes in and there is no current
-         registered searcher, then immediately register the still
-         warming searcher and use it.  If "false" then all requests
-         will block until the first searcher is done warming.
-      -->
-    <useColdSearcher>false</useColdSearcher>
-
-    <!-- Max Warming Searchers
-         
-         Maximum number of searchers that may be warming in the
-         background concurrently.  An error is returned if this limit
-         is exceeded.
-
-         Recommend values of 1-2 for read-only slaves, higher for
-         masters w/o cache warming.
-      -->
-    <maxWarmingSearchers>2</maxWarmingSearchers>
-
-  </query>
-
-
-  <!-- Request Dispatcher
-
-       This section contains instructions for how the SolrDispatchFilter
-       should behave when processing requests for this SolrCore.
-
-       handleSelect affects the behavior of requests such as /select?qt=XXX
-
-       handleSelect="true" will cause the SolrDispatchFilter to process
-       the request and will result in consistent error handling and
-       formatting for all types of requests.
-
-       handleSelect="false" will cause the SolrDispatchFilter to
-       ignore "/select" requests and fallback to using the legacy
-       SolrServlet and it's Solr 1.1 style error formatting
-    -->
-  <requestDispatcher handleSelect="true" >
-    <!-- Request Parsing
-
-         These settings indicate how Solr Requests may be parsed, and
-         what restrictions may be placed on the ContentStreams from
-         those requests
-
-         enableRemoteStreaming - enables use of the stream.file
-         and stream.url parameters for specifying remote streams.
-
-         multipartUploadLimitInKB - specifies the max size of
-         Multipart File Uploads that Solr will allow in a Request.
-         
-         *** WARNING ***
-         The settings below authorize Solr to fetch remote files, You
-         should make sure your system has some authentication before
-         using enableRemoteStreaming="true"
-
-      --> 
-    <requestParsers enableRemoteStreaming="true" 
-                    multipartUploadLimitInKB="2048000" />
-
-    <!-- HTTP Caching
-
-         Set HTTP caching related parameters (for proxy caches and clients).
-
-         The options below instruct Solr not to output any HTTP Caching
-         related headers
-      -->
-    <httpCaching never304="true" />
-    <!-- If you include a <cacheControl> directive, it will be used to
-         generate a Cache-Control header (as well as an Expires header
-         if the value contains "max-age=")
-         
-         By default, no Cache-Control header is generated.
-         
-         You can use the <cacheControl> option even if you have set
-         never304="true"
-      -->
-    <!--
-       <httpCaching never304="true" >
-         <cacheControl>max-age=30, public</cacheControl> 
-       </httpCaching>
-      -->
-    <!-- To enable Solr to respond with automatically generated HTTP
-         Caching headers, and to response to Cache Validation requests
-         correctly, set the value of never304="false"
-         
-         This will cause Solr to generate Last-Modified and ETag
-         headers based on the properties of the Index.
-
-         The following options can also be specified to affect the
-         values of these headers...
-
-         lastModFrom - the default value is "openTime" which means the
-         Last-Modified value (and validation against If-Modified-Since
-         requests) will all be relative to when the current Searcher
-         was opened.  You can change it to lastModFrom="dirLastMod" if
-         you want the value to exactly correspond to when the physical
-         index was last modified.
-
-         etagSeed="..." is an option you can change to force the ETag
-         header (and validation against If-None-Match requests) to be
-         different even if the index has not changed (ie: when making
-         significant changes to your config file)
-
-         (lastModifiedFrom and etagSeed are both ignored if you use
-         the never304="true" option)
-      -->
-    <!--
-       <httpCaching lastModifiedFrom="openTime"
-                    etagSeed="Solr">
-         <cacheControl>max-age=30, public</cacheControl> 
-       </httpCaching>
-      -->
-  </requestDispatcher>
-
-  <!-- Request Handlers 
-
-       http://wiki.apache.org/solr/SolrRequestHandler
-
-       incoming queries will be dispatched to the correct handler
-       based on the path or the qt (query type) param.
-
-       Names starting with a '/' are accessed with the a path equal to
-       the registered name.  Names without a leading '/' are accessed
-       with: http://host/app/[core/]select?qt=name
-
-       If a /select request is processed with out a qt param
-       specified, the requestHandler that declares default="true" will
-       be used.
-       
-       If a Request Handler is declared with startup="lazy", then it will
-       not be initialized until the first request that uses it.
-
-    -->
-  <!-- SearchHandler
-
-       http://wiki.apache.org/solr/SearchHandler
-
-       For processing Search Queries, the primary Request Handler
-       provided with Solr is "SearchHandler" It delegates to a sequent
-       of SearchComponents (see below) and supports distributed
-       queries across multiple shards
-    -->
-  <!--<requestHandler name="search" class="solr.SearchHandler" default="true">-->
-    <!-- default values for query parameters can be specified, these
-         will be overridden by parameters in the request
-      -->
-     <!--<lst name="defaults">
-       <str name="echoParams">explicit</str>
-       <int name="rows">10</int>
-     </lst>-->
-    <!-- In addition to defaults, "appends" params can be specified
-         to identify values which should be appended to the list of
-         multi-val params from the query (or the existing "defaults").
-      -->
-    <!-- In this example, the param "fq=instock:true" would be appended to
-         any query time fq params the user may specify, as a mechanism for
-         partitioning the index, independent of any user selected filtering
-         that may also be desired (perhaps as a result of faceted searching).
-
-         NOTE: there is *absolutely* nothing a client can do to prevent these
-         "appends" values from being used, so don't use this mechanism
-         unless you are sure you always want it.
-      -->
-    <!--
-       <lst name="appends">
-         <str name="fq">inStock:true</str>
-       </lst>
-      -->
-    <!-- "invariants" are a way of letting the Solr maintainer lock down
-         the options available to Solr clients.  Any params values
-         specified here are used regardless of what values may be specified
-         in either the query, the "defaults", or the "appends" params.
-
-         In this example, the facet.field and facet.query params would
-         be fixed, limiting the facets clients can use.  Faceting is
-         not turned on by default - but if the client does specify
-         facet=true in the request, these are the only facets they
-         will be able to see counts for; regardless of what other
-         facet.field or facet.query params they may specify.
-
-         NOTE: there is *absolutely* nothing a client can do to prevent these
-         "invariants" values from being used, so don't use this mechanism
-         unless you are sure you always want it.
-      -->
-    <!--
-       <lst name="invariants">
-         <str name="facet.field">cat</str>
-         <str name="facet.field">manu_exact</str>
-         <str name="facet.query">price:[* TO 500]</str>
-         <str name="facet.query">price:[500 TO *]</str>
-       </lst>
-      -->
-    <!-- If the default list of SearchComponents is not desired, that
-         list can either be overridden completely, or components can be
-         prepended or appended to the default list.  (see below)
-      -->
-    <!--
-       <arr name="components">
-         <str>nameOfCustomComponent1</str>
-         <str>nameOfCustomComponent2</str>
-       </arr>
-      -->
-    <!--</requestHandler>-->
-
-  <!-- A Robust Example
-
-       This example SearchHandler declaration shows off usage of the
-       SearchHandler with many defaults declared
-
-       Note that multiple instances of the same Request Handler
-       (SearchHandler) can be registered multiple times with different
-       names (and different init parameters)
-    -->
-  <!--
-  <requestHandler name="/browse" class="solr.SearchHandler">
-     <lst name="defaults">
-       <str name="echoParams">explicit</str>-->
-
-       <!-- VelocityResponseWriter settings -->
-       <!--<str name="wt">velocity</str>
-
-       <str name="v.template">browse</str>
-       <str name="v.layout">layout</str>
-       <str name="title">Solritas</str>
-
-       <str name="defType">edismax</str>
-       <str name="q.alt">*:*</str>
-       <str name="rows">10</str>
-       <str name="fl">*,score</str>
-       <str name="mlt.qf">
-         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
-       </str>
-       <str name="mlt.fl">text,features,name,sku,id,manu,cat</str>
-       <int name="mlt.count">3</int>
-
-       <str name="qf">
-          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
-       </str>
-
-       <str name="facet">on</str>
-       <str name="facet.field">cat</str>
-       <str name="facet.field">manu_exact</str>
-       <str name="facet.query">ipod</str>
-       <str name="facet.query">GB</str>
-       <str name="facet.mincount">1</str>
-       <str name="facet.pivot">cat,inStock</str>
-       <str name="facet.range.other">after</str>
-       <str name="facet.range">price</str>
-       <int name="f.price.facet.range.start">0</int>
-       <int name="f.price.facet.range.end">600</int>
-       <int name="f.price.facet.range.gap">50</int>
-       <str name="facet.range">popularity</str>
-       <int name="f.popularity.facet.range.start">0</int>
-       <int name="f.popularity.facet.range.end">10</int>
-       <int name="f.popularity.facet.range.gap">3</int>
-       <str name="facet.range">manufacturedate_dt</str>
-       <str name="f.manufacturedate_dt.facet.range.start">NOW/YEAR-10YEARS</str>
-       <str name="f.manufacturedate_dt.facet.range.end">NOW</str>
-       <str name="f.manufacturedate_dt.facet.range.gap">+1YEAR</str>
-       <str name="f.manufacturedate_dt.facet.range.other">before</str>
-       <str name="f.manufacturedate_dt.facet.range.other">after</str>-->
-
-
-       <!-- Highlighting defaults -->
-       <!--<str name="hl">on</str>
-       <str name="hl.fl">text features name</str>
-       <str name="f.name.hl.fragsize">0</str>
-       <str name="f.name.hl.alternateField">name</str>
-     </lst>
-     <arr name="last-components">
-       <str>spellcheck</str>
-     </arr>-->
-     <!--
-     <str name="url-scheme">httpx</str>
-     -->
-  <!--</requestHandler>-->
-  <!-- trivia: the name pinkPony requestHandler was an agreement between the Search API and the
-    apachesolr maintainers. The decision was taken during the Drupalcon Munich codesprint.
-    -->
-  <requestHandler name="pinkPony" class="solr.SearchHandler" default="true">
-    <lst name="defaults">
-      <str name="defType">edismax</str>
-      <str name="echoParams">explicit</str>
-      <bool name="omitHeader">true</bool>
-      <float name="tie">0.01</float>
-      <!-- Don't abort searches for the pinkPony request handler (set in solrcore.properties) -->
-      <int name="timeAllowed">${solr.pinkPony.timeAllowed:-1}</int>
-      <str name="q.alt">*:*</str>
-
-      <!-- By default, don't spell check -->
-      <str name="spellcheck">false</str>
-      <!-- Defaults for the spell checker when used -->
-      <str name="spellcheck.onlyMorePopular">true</str>
-      <str name="spellcheck.extendedResults">false</str>
-      <!--  The number of suggestions to return -->
-      <str name="spellcheck.count">1</str>
-    </lst>
-    <arr name="last-components">
-      <str>spellcheck</str>
-      <str>elevator</str>
-    </arr>
-  </requestHandler>
-
-  <!-- The more like this handler offers many advantages over the standard handler,
-     when performing moreLikeThis requests.-->
-  <requestHandler name="mlt" class="solr.MoreLikeThisHandler">
-    <lst name="defaults">
-      <str name="mlt.mintf">1</str>
-      <str name="mlt.mindf">1</str>
-      <str name="mlt.minwl">3</str>
-      <str name="mlt.maxwl">15</str>
-      <str name="mlt.maxqt">20</str>
-      <str name="mlt.match.include">false</str>
-      <!-- Abort any searches longer than 2 seconds (set in solrcore.properties) -->
-      <int name="timeAllowed">${solr.mlt.timeAllowed:2000}</int>
-    </lst>
-  </requestHandler>
-
-  <!-- A minimal query type for doing luene queries -->
-  <requestHandler name="standard" class="solr.SearchHandler">
-     <lst name="defaults">
-       <str name="echoParams">explicit</str>
-       <bool name="omitHeader">true</bool>
-     </lst>
-  </requestHandler>
-
-  <!-- XML Update Request Handler.  
-       
-       http://wiki.apache.org/solr/UpdateXmlMessages
-
-       The canonical Request Handler for Modifying the Index through
-       commands specified using XML.
-
-       Note: Since solr1.1 requestHandlers requires a valid content
-       type header if posted in the body. For example, curl now
-       requires: -H 'Content-type:text/xml; charset=utf-8'
-    -->
-  <requestHandler name="/update" 
-                  class="solr.UpdateRequestHandler">
-    <!-- See below for information on defining 
-         updateRequestProcessorChains that can be used by name 
-         on each Update Request
-      -->
-    <!--
-       <lst name="defaults">
-         <str name="update.chain">dedupe</str>
-       </lst>
-       -->
-    </requestHandler>
-  <!-- Binary Update Request Handler
-       http://wiki.apache.org/solr/javabin
-    -->
-  <requestHandler name="/update/javabin" 
-                  class="solr.UpdateRequestHandler" />
-
-  <!-- CSV Update Request Handler
-       http://wiki.apache.org/solr/UpdateCSV
-    -->
-  <requestHandler name="/update/csv" 
-                  class="solr.CSVRequestHandler" 
-                  startup="lazy" />
-
-  <!-- JSON Update Request Handler
-       http://wiki.apache.org/solr/UpdateJSON
-    -->
-  <requestHandler name="/update/json" 
-                  class="solr.JsonUpdateRequestHandler" 
-                  startup="lazy" />
-
-  <!-- Solr Cell Update Request Handler
-
-       http://wiki.apache.org/solr/ExtractingRequestHandler 
-
-    -->
-  <requestHandler name="/update/extract" 
-                  startup="lazy"
-                  class="solr.extraction.ExtractingRequestHandler" >
-    <lst name="defaults">
-      <!-- All the main content goes into "text"... if you need to return
-           the extracted text or do highlighting, use a stored field. -->
-      <str name="fmap.content">text</str>
-      <str name="lowernames">true</str>
-      <str name="uprefix">ignored_</str>
-
-      <!-- capture link hrefs but ignore div attributes -->
-      <str name="captureAttr">true</str>
-      <str name="fmap.a">links</str>
-      <str name="fmap.div">ignored_</str>
-    </lst>
-  </requestHandler>
-
-  <!-- XSLT Update Request Handler
-       Transforms incoming XML with stylesheet identified by tr=
-  -->
-  <requestHandler name="/update/xslt"
-                   startup="lazy"
-                   class="solr.XsltUpdateRequestHandler"/>
-
-  <!-- Field Analysis Request Handler
-
-       RequestHandler that provides much the same functionality as
-       analysis.jsp. Provides the ability to specify multiple field
-       types and field names in the same request and outputs
-       index-time and query-time analysis for each of them.
-
-       Request parameters are:
-       analysis.fieldname - field name whose analyzers are to be used
-
-       analysis.fieldtype - field type whose analyzers are to be used
-       analysis.fieldvalue - text for index-time analysis
-       q (or analysis.q) - text for query time analysis
-       analysis.showmatch (true|false) - When set to true and when
-           query analysis is performed, the produced tokens of the
-           field value analysis will be marked as "matched" for every
-           token that is produces by the query analysis
-   -->
-  <requestHandler name="/analysis/field" 
-                  startup="lazy"
-                  class="solr.FieldAnalysisRequestHandler" />
-
-
-  <!-- Document Analysis Handler
-
-       http://wiki.apache.org/solr/AnalysisRequestHandler
-
-       An analysis handler that provides a breakdown of the analysis
-       process of provided docuemnts. This handler expects a (single)
-       content stream with the following format:
-
-       <docs>
-         <doc>
-           <field name="id">1</field>
-           <field name="name">The Name</field>
-           <field name="text">The Text Value</field>
-         </doc>
-         <doc>...</doc>
-         <doc>...</doc>
-         ...
-       </docs>
-
-    Note: Each document must contain a field which serves as the
-    unique key. This key is used in the returned response to associate
-    an analysis breakdown to the analyzed document.
-
-    Like the FieldAnalysisRequestHandler, this handler also supports
-    query analysis by sending either an "analysis.query" or "q"
-    request parameter that holds the query text to be analyzed. It
-    also supports the "analysis.showmatch" parameter which when set to
-    true, all field tokens that match the query tokens will be marked
-    as a "match". 
-  -->
-  <requestHandler name="/analysis/document" 
-                  class="solr.DocumentAnalysisRequestHandler" 
-                  startup="lazy" />
-
-  <!-- Admin Handlers
-
-       Admin Handlers - This will register all the standard admin
-       RequestHandlers.  
-    -->
-  <requestHandler name="/admin/" class="solr.admin.AdminHandlers" />
-  <!-- This single handler is equivalent to the following... -->
-  <!--
-     <requestHandler name="/admin/luke"       class="solr.admin.LukeRequestHandler" />
-     <requestHandler name="/admin/system"     class="solr.admin.SystemInfoHandler" />
-     <requestHandler name="/admin/plugins"    class="solr.admin.PluginInfoHandler" />
-     <requestHandler name="/admin/threads"    class="solr.admin.ThreadDumpHandler" />
-     <requestHandler name="/admin/properties" class="solr.admin.PropertiesRequestHandler" />
-     <requestHandler name="/admin/file"       class="solr.admin.ShowFileRequestHandler" >
-    -->
-  <!-- If you wish to hide files under ${solr.home}/conf, explicitly
-       register the ShowFileRequestHandler using: 
-    -->
-  <!--
-     <requestHandler name="/admin/file" 
-                     class="solr.admin.ShowFileRequestHandler" >
-       <lst name="invariants">
-         <str name="hidden">synonyms.txt</str> 
-         <str name="hidden">anotherfile.txt</str> 
-       </lst>
-     </requestHandler>
-    -->
-
-  <!-- ping/healthcheck -->
-  <requestHandler name="/admin/ping" class="solr.PingRequestHandler">
-    <lst name="invariants">
-      <str name="qt">pinkPony</str>
-      <str name="q">solrpingquery</str>
-      <str name="omitHeader">false</str>
-    </lst>
-    <lst name="defaults">
-      <str name="echoParams">all</str>
-    </lst>
-    <!-- An optional feature of the PingRequestHandler is to configure the 
-         handler with a "healthcheckFile" which can be used to enable/disable 
-         the PingRequestHandler.
-         relative paths are resolved against the data dir 
-    -->
-    <!-- <str name="healthcheckFile">server-enabled.txt</str> -->
-  </requestHandler>
-
-  <!-- Echo the request contents back to the client -->
-  <requestHandler name="/debug/dump" class="solr.DumpRequestHandler" >
-    <lst name="defaults">
-     <str name="echoParams">explicit</str> 
-     <str name="echoHandler">true</str>
-    </lst>
-  </requestHandler>
-  
-  <!-- Solr Replication
-
-       The SolrReplicationHandler supports replicating indexes from a
-       "master" used for indexing and "slaves" used for queries.
-
-       http://wiki.apache.org/solr/SolrReplication
-
-       In the example below, remove the <lst name="master"> section if
-       this is just a slave and remove  the <lst name="slave"> section
-       if this is just a master.
-  -->
-  <requestHandler name="/replication" class="solr.ReplicationHandler" >
-    <lst name="master">
-      <str name="enable">${solr.replication.master:false}</str>
-      <str name="replicateAfter">commit</str>
-      <str name="replicateAfter">startup</str>
-      <str name="confFiles">${solr.replication.confFiles:schema.xml,mapping-ISOLatin1Accent.txt,protwords.txt,stopwords.txt,synonyms.txt,elevate.xml}</str>
-    </lst>
-    <lst name="slave">
-      <str name="enable">${solr.replication.slave:false}</str>
-      <str name="masterUrl">${solr.replication.masterUrl:http://localhost:8983/solr}/replication</str>
-      <str name="pollInterval">${solr.replication.pollInterval:00:00:60}</str>
-    </lst>
-  </requestHandler>
-
-  <!-- Realtime get handler, guaranteed to return the latest stored fields of
-       any document, without the need to commit or open a new searcher.  The
-       current implementation relies on the updateLog feature being enabled.
-  -->
-  <requestHandler name="/get" class="solr.RealTimeGetHandler">
-    <lst name="defaults">
-      <str name="omitHeader">true</str>
-      <str name="wt">json</str>
-      <str name="indent">true</str>
-    </lst>
-  </requestHandler>
-
-  <!-- Search Components
-
-       Search components are registered to SolrCore and used by
-       instances of SearchHandler (which can access them by name)
-
-       By default, the following components are available:
-
-       <searchComponent name="query"     class="solr.QueryComponent" />
-       <searchComponent name="facet"     class="solr.FacetComponent" />
-       <searchComponent name="mlt"       class="solr.MoreLikeThisComponent" />
-       <searchComponent name="highlight" class="solr.HighlightComponent" />
-       <searchComponent name="stats"     class="solr.StatsComponent" />
-       <searchComponent name="debug"     class="solr.DebugComponent" />
-
-       Default configuration in a requestHandler would look like:
-
-       <arr name="components">
-         <str>query</str>
-         <str>facet</str>
-         <str>mlt</str>
-         <str>highlight</str>
-         <str>stats</str>
-         <str>debug</str>
-       </arr>
-
-       If you register a searchComponent to one of the standard names, 
-       that will be used instead of the default.
-
-       To insert components before or after the 'standard' components, use:
-    
-       <arr name="first-components">
-         <str>myFirstComponentName</str>
-       </arr>
-    
-       <arr name="last-components">
-         <str>myLastComponentName</str>
-       </arr>
-
-       NOTE: The component registered with the name "debug" will
-       always be executed after the "last-components" 
-       
-     -->
-
-  <!-- A request handler for demonstrating the spellcheck component.  
-
-       NOTE: This is purely as an example.  The whole purpose of the
-       SpellCheckComponent is to hook it into the request handler that
-       handles your normal user queries so that a separate request is
-       not needed to get suggestions.
-
-       IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS
-       NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM!
-       
-       See http://wiki.apache.org/solr/SpellCheckComponent for details
-       on the request parameters.
-    -->
-  <requestHandler name="/spell" class="solr.SearchHandler" startup="lazy">
-    <lst name="defaults">
-      <str name="spellcheck.onlyMorePopular">false</str>
-      <str name="spellcheck.extendedResults">false</str>
-      <str name="spellcheck.count">1</str>
-    </lst>
-    <arr name="last-components">
-      <str>spellcheck</str>
-    </arr>
-  </requestHandler>
-
-  <!-- Term Vector Component
-
-       http://wiki.apache.org/solr/TermVectorComponent
-    -->
-  <searchComponent name="tvComponent" class="solr.TermVectorComponent"/>
-
-  <!-- A request handler for demonstrating the term vector component
-
-       This is purely as an example.
-
-       In reality you will likely want to add the component to your 
-       already specified request handlers. 
-    -->
-  <requestHandler name="tvrh" class="solr.SearchHandler" startup="lazy">
-    <lst name="defaults">
-      <bool name="tv">true</bool>
-    </lst>
-    <arr name="last-components">
-      <str>tvComponent</str>
-    </arr>
-  </requestHandler>
-
-  <!-- Clustering Component
-
-       http://wiki.apache.org/solr/ClusteringComponent
-
-       This relies on third party jars which are notincluded in the
-       release.  To use this component (and the "/clustering" handler)
-       Those jars will need to be downloaded, and you'll need to set
-       the solr.cluster.enabled system property when running solr...
-
-          java -Dsolr.clustering.enabled=true -jar start.jar
-    -->
-  <!-- <searchComponent name="clustering"
-                   enable="${solr.clustering.enabled:false}"
-                   class="solr.clustering.ClusteringComponent" > -->
-    <!-- Declare an engine -->
-    <!--<lst name="engine">-->
-      <!-- The name, only one can be named "default" -->
-      <!--<str name="name">default</str>-->
-
-      <!-- Class name of Carrot2 clustering algorithm. 
-           
-           Currently available algorithms are:
-           
-           * org.carrot2.clustering.lingo.LingoClusteringAlgorithm
-           * org.carrot2.clustering.stc.STCClusteringAlgorithm
-           * org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm
-           
-           See http://project.carrot2.org/algorithms.html for the
-           algorithm's characteristics.
-        -->
-      <!--<str name="carrot.algorithm">org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str>-->
-
-      <!-- Overriding values for Carrot2 default algorithm attributes.
-
-           For a description of all available attributes, see:
-           http://download.carrot2.org/stable/manual/#chapter.components.
-           Use attribute key as name attribute of str elements
-           below. These can be further overridden for individual
-           requests by specifying attribute key as request parameter
-           name and attribute value as parameter value.
-        -->
-      <!--<str name="LingoClusteringAlgorithm.desiredClusterCountBase">20</str>-->
-      
-      <!-- Location of Carrot2 lexical resources.
-
-           A directory from which to load Carrot2-specific stop words
-           and stop labels. Absolute or relative to Solr config directory.
-           If a specific resource (e.g. stopwords.en) is present in the
-           specified dir, it will completely override the corresponding
-           default one that ships with Carrot2.
-
-           For an overview of Carrot2 lexical resources, see:
-           http://download.carrot2.org/head/manual/#chapter.lexical-resources
-        -->
-      <!--<str name="carrot.lexicalResourcesDir">clustering/carrot2</str>-->
-
-      <!-- The language to assume for the documents.
-           
-           For a list of allowed values, see:
-           http://download.carrot2.org/stable/manual/#section.attribute.lingo.MultilingualClustering.defaultLanguage
-       -->
-      <!--<str name="MultilingualClustering.defaultLanguage">ENGLISH</str>
-    </lst>
-    <lst name="engine">
-      <str name="name">stc</str>
-      <str name="carrot.algorithm">org.carrot2.clustering.stc.STCClusteringAlgorithm</str>
-    </lst>
-  </searchComponent>-->
-
-  <!-- A request handler for demonstrating the clustering component
-
-       This is purely as an example.
-
-       In reality you will likely want to add the component to your 
-       already specified request handlers. 
-    -->
-  <!--<requestHandler name="/clustering"
-                  startup="lazy"
-                  enable="${solr.clustering.enabled:false}"
-                  class="solr.SearchHandler">
-    <lst name="defaults">
-      <bool name="clustering">true</bool>
-      <str name="clustering.engine">default</str>
-      <bool name="clustering.results">true</bool>-->
-      <!-- The title field -->
-      <!--<str name="carrot.title">name</str>-->
-      <!--<str name="carrot.url">id</str>-->
-      <!-- The field to cluster on -->
-       <!--<str name="carrot.snippet">features</str>-->
-       <!-- produce summaries -->
-       <!--<bool name="carrot.produceSummary">true</bool>-->
-       <!-- the maximum number of labels per cluster -->
-       <!--<int name="carrot.numDescriptions">5</int>-->
-       <!-- produce sub clusters -->
-       <!--<bool name="carrot.outputSubClusters">false</bool>-->
-       
-       <!--<str name="defType">edismax</str>
-       <str name="qf">
-          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
-       </str>
-       <str name="q.alt">*:*</str>
-       <str name="rows">10</str>
-       <str name="fl">*,score</str>
-    </lst>     
-    <arr name="last-components">
-      <str>clustering</str>
-    </arr>
-  </requestHandler>-->
-  
-  <!-- Terms Component
-
-       http://wiki.apache.org/solr/TermsComponent
-
-       A component to return terms and document frequency of those
-       terms
-    -->
-  <searchComponent name="terms" class="solr.TermsComponent"/>
-
-  <!-- A request handler for demonstrating the terms component -->
-  <requestHandler name="/terms" class="solr.SearchHandler" startup="lazy">
-     <lst name="defaults">
-      <bool name="terms">true</bool>
-    </lst>     
-    <arr name="components">
-      <str>terms</str>
-    </arr>
-  </requestHandler>
-
-
-  <!-- Query Elevation Component
-
-       http://wiki.apache.org/solr/QueryElevationComponent
-
-       a search component that enables you to configure the top
-       results for a given query regardless of the normal lucene
-       scoring.
-    -->
-  <searchComponent name="elevator" class="solr.QueryElevationComponent" >
-    <!-- pick a fieldType to analyze queries -->
-    <str name="queryFieldType">string</str>
-    <str name="config-file">elevate.xml</str>
-  </searchComponent>
-
-  <!-- A request handler for demonstrating the elevator component -->
-  <requestHandler name="/elevate" class="solr.SearchHandler" startup="lazy">
-    <lst name="defaults">
-      <str name="echoParams">explicit</str>
-    </lst>
-    <arr name="last-components">
-      <str>elevator</str>
-    </arr>
-  </requestHandler>
-
-  <!-- Highlighting Component
-
-       http://wiki.apache.org/solr/HighlightingParameters
-    -->
-  <searchComponent class="solr.HighlightComponent" name="highlight">
-    <highlighting>
-      <!-- Configure the standard fragmenter -->
-      <!-- This could most likely be commented out in the "default" case -->
-      <fragmenter name="gap" 
-                  default="true"
-                  class="solr.highlight.GapFragmenter">
-        <lst name="defaults">
-          <int name="hl.fragsize">100</int>
-        </lst>
-      </fragmenter>
-
-      <!-- A regular-expression-based fragmenter 
-           (for sentence extraction) 
-        -->
-      <fragmenter name="regex" 
-                  class="solr.highlight.RegexFragmenter">
-        <lst name="defaults">
-          <!-- slightly smaller fragsizes work better because of slop -->
-          <int name="hl.fragsize">70</int>
-          <!-- allow 50% slop on fragment sizes -->
-          <float name="hl.regex.slop">0.5</float>
-          <!-- a basic sentence pattern -->
-          <str name="hl.regex.pattern">[-\w ,/\n\&quot;&apos;]{20,200}</str>
-        </lst>
-      </fragmenter>
-
-      <!-- Configure the standard formatter -->
-      <formatter name="html" 
-                 default="true"
-                 class="solr.highlight.HtmlFormatter">
-        <lst name="defaults">
-          <str name="hl.simple.pre"><![CDATA[<strong>]]></str>
-          <str name="hl.simple.post"><![CDATA[</strong>]]></str>
-        </lst>
-      </formatter>
-
-      <!-- Configure the standard encoder -->
-      <encoder name="html" 
-               class="solr.highlight.HtmlEncoder" />
-
-      <!-- Configure the standard fragListBuilder -->
-      <fragListBuilder name="simple" 
-                       default="true"
-                       class="solr.highlight.SimpleFragListBuilder"/>
-
-      <!-- Configure the single fragListBuilder -->
-      <fragListBuilder name="single" 
-                       class="solr.highlight.SingleFragListBuilder"/>
-
-      <!-- default tag FragmentsBuilder -->
-      <fragmentsBuilder name="default" 
-                        default="true"
-                        class="solr.highlight.ScoreOrderFragmentsBuilder">
-        <!-- 
-        <lst name="defaults">
-          <str name="hl.multiValuedSeparatorChar">/</str>
-        </lst>
-        -->
-      </fragmentsBuilder>
-
-      <!-- multi-colored tag FragmentsBuilder -->
-      <fragmentsBuilder name="colored" 
-                        class="solr.highlight.ScoreOrderFragmentsBuilder">
-        <lst name="defaults">
-          <str name="hl.tag.pre"><![CDATA[
-               <b style="background:yellow">,<b style="background:lawgreen">,
-               <b style="background:aquamarine">,<b style="background:magenta">,
-               <b style="background:palegreen">,<b style="background:coral">,
-               <b style="background:wheat">,<b style="background:khaki">,
-               <b style="background:lime">,<b style="background:deepskyblue">]]></str>
-          <str name="hl.tag.post"><![CDATA[</b>]]></str>
-        </lst>
-      </fragmentsBuilder>
-      
-      <boundaryScanner name="default" 
-                       default="true"
-                       class="solr.highlight.SimpleBoundaryScanner">
-        <lst name="defaults">
-          <str name="hl.bs.maxScan">10</str>
-          <str name="hl.bs.chars">.,!? &#9;&#10;&#13;</str>
-        </lst>
-      </boundaryScanner>
-      
-      <boundaryScanner name="breakIterator" 
-                       class="solr.highlight.BreakIteratorBoundaryScanner">
-        <lst name="defaults">
-          <!-- type should be one of CHARACTER, WORD(default), LINE and SENTENCE -->
-          <str name="hl.bs.type">WORD</str>
-          <!-- language and country are used when constructing Locale object.  -->
-          <!-- And the Locale object will be used when getting instance of BreakIterator -->
-          <str name="hl.bs.language">en</str>
-          <str name="hl.bs.country">US</str>
-        </lst>
-      </boundaryScanner>
-    </highlighting>
-  </searchComponent>
-
-  <!-- Update Processors
-
-       Chains of Update Processor Factories for dealing with Update
-       Requests can be declared, and then used by name in Update
-       Request Processors
-
-       http://wiki.apache.org/solr/UpdateRequestProcessor
-
-    --> 
-  <!-- Deduplication
-
-       An example dedup update processor that creates the "id" field
-       on the fly based on the hash code of some other fields.  This
-       example has overwriteDupes set to false since we are using the
-       id field as the signatureField and Solr will maintain
-       uniqueness based on that anyway.  
-       
-    -->
-  <!--
-     <updateRequestProcessorChain name="dedupe">
-       <processor class="solr.processor.SignatureUpdateProcessorFactory">
-         <bool name="enabled">true</bool>
-         <str name="signatureField">id</str>
-         <bool name="overwriteDupes">false</bool>
-         <str name="fields">name,features,cat</str>
-         <str name="signatureClass">solr.processor.Lookup3Signature</str>
-       </processor>
-       <processor class="solr.LogUpdateProcessorFactory" />
-       <processor class="solr.RunUpdateProcessorFactory" />
-     </updateRequestProcessorChain>
-    -->
-
-    <!--
-       This example update chain identifies the language of the incoming
-       documents using the langid contrib. The detected language is
-       written to field language_s. No field name mapping is done.
-       The fields used for detection are text, title, subject and description,
-       making this example suitable for detecting languages form full-text
-       rich documents injected via ExtractingRequestHandler.
-       See more about langId at http://wiki.apache.org/solr/LanguageDetection
-    -->
-    <!--
-     <updateRequestProcessorChain name="langid">
-       <processor class="org.apache.solr.update.processor.TikaLanguageIdentifierUpdateProcessorFactory">
-         <str name="langid.fl">text,title,subject,description</str>
-         <str name="langid.langField">language_s</str>
-         <str name="langid.fallback">en</str>
-       </processor>
-       <processor class="solr.LogUpdateProcessorFactory" />
-       <processor class="solr.RunUpdateProcessorFactory" />
-     </updateRequestProcessorChain>
-    -->
- 
-  <!-- Response Writers
-
-       http://wiki.apache.org/solr/QueryResponseWriter
-
-       Request responses will be written using the writer specified by
-       the 'wt' request parameter matching the name of a registered
-       writer.
-
-       The "default" writer is the default and will be used if 'wt' is
-       not specified in the request.
-    -->
-  <!-- The following response writers are implicitly configured unless
-       overridden...
-    -->
-  <!--
-     <queryResponseWriter name="xml" 
-                          default="true"
-                          class="solr.XMLResponseWriter" />
-     <queryResponseWriter name="json" class="solr.JSONResponseWriter"/>
-     <queryResponseWriter name="python" class="solr.PythonResponseWriter"/>
-     <queryResponseWriter name="ruby" class="solr.RubyResponseWriter"/>
-     <queryResponseWriter name="php" class="solr.PHPResponseWriter"/>
-     <queryResponseWriter name="phps" class="solr.PHPSerializedResponseWriter"/>
-     <queryResponseWriter name="csv" class="solr.CSVResponseWriter"/>
-    -->
-
-  <queryResponseWriter name="json" class="solr.JSONResponseWriter">
-     <!-- For the purposes of the tutorial, JSON responses are written as
-      plain text so that they are easy to read in *any* browser.
-      If you expect a MIME type of "application/json" just remove this override.
-     -->
-    <str name="content-type">text/plain; charset=UTF-8</str>
-  </queryResponseWriter>
-  
-  <!--
-     Custom response writers can be declared as needed...
-    -->
-    <!-- The solr.velocity.enabled flag is used by Solr's test cases so that this response writer is not
-         loaded (causing an error if contrib/velocity has not been built fully) -->
-    <!-- <queryResponseWriter name="velocity" class="solr.VelocityResponseWriter" enable="${solr.velocity.enabled:true}"/> -->
-  
-
-  <!-- XSLT response writer transforms the XML output by any xslt file found
-       in Solr's conf/xslt directory.  Changes to xslt files are checked for
-       every xsltCacheLifetimeSeconds.  
-    -->
-  <queryResponseWriter name="xslt" class="solr.XSLTResponseWriter">
-    <int name="xsltCacheLifetimeSeconds">5</int>
-  </queryResponseWriter>
-
-  <!-- Query Parsers
-
-       http://wiki.apache.org/solr/SolrQuerySyntax
-
-       Multiple QParserPlugins can be registered by name, and then
-       used in either the "defType" param for the QueryComponent (used
-       by SearchHandler) or in LocalParams
-    -->
-  <!-- example of registering a query parser -->
-  <!--
-     <queryParser name="myparser" class="com.mycompany.MyQParserPlugin"/>
-    -->
-
-  <!-- Function Parsers
-
-       http://wiki.apache.org/solr/FunctionQuery
-
-       Multiple ValueSourceParsers can be registered by name, and then
-       used as function names when using the "func" QParser.
-    -->
-  <!-- example of registering a custom function parser  -->
-  <!--
-     <valueSourceParser name="myfunc" 
-                        class="com.mycompany.MyValueSourceParser" />
-    -->
-
-  <!-- Legacy config for the admin interface -->
-  <admin>
-    <defaultQuery>*:*</defaultQuery>
-
-    <!-- configure a healthcheck file for servers behind a
-         loadbalancer 
-      -->
-    <!--
-       <healthcheck type="file">server-enabled</healthcheck>
-      -->
-  </admin>
-
-  <!-- Following is a dynamic way to include other components or any customized solrconfig.xml stuff, added by other contrib modules -->
-  <xi:include href="solrconfig_extra.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
-    <xi:fallback>
-    <!-- Spell Check
-
-        The spell check component can return a list of alternative spelling
-        suggestions. This component must be defined in
-        solrconfig_extra.xml if present, since it's used in the search handler.
-
-        http://wiki.apache.org/solr/SpellCheckComponent
-     -->
-    <searchComponent name="spellcheck" class="solr.SpellCheckComponent">
-
-    <str name="queryAnalyzerFieldType">textSpell</str>
-
-    <!-- a spellchecker built from a field of the main index -->
-      <lst name="spellchecker">
-        <str name="name">default</str>
-        <str name="field">spell</str>
-        <str name="spellcheckIndexDir">spellchecker</str>
-        <str name="buildOnOptimize">true</str>
-      </lst>
-    </searchComponent>
-    </xi:fallback>
-  </xi:include>
-
-</config>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrconfig_extra.xml b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrconfig_extra.xml
deleted file mode 100644
index c5bc3acfb52805c4f16d8ebf5239ea6443923030..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrconfig_extra.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<!-- Spell Check
-
-    The spell check component can return a list of alternative spelling
-    suggestions.
-
-    http://wiki.apache.org/solr/SpellCheckComponent
- -->
-<searchComponent name="spellcheck" class="solr.SpellCheckComponent">
-
-<str name="queryAnalyzerFieldType">textSpell</str>
-
-<!-- Multiple "Spell Checkers" can be declared and used by this
-     component
-  -->
-
-<!-- a spellchecker built from a field of the main index, and
-     written to disk
-  -->
-<lst name="spellchecker">
-  <str name="name">default</str>
-  <str name="field">spell</str>
-  <str name="spellcheckIndexDir">spellchecker</str>
-  <str name="buildOnOptimize">true</str>
-  <!-- uncomment this to require terms to occur in 1% of the documents in order to be included in the dictionary
-    <float name="thresholdTokenFrequency">.01</float>
-  -->
-</lst>
-
-<!--
-  Adding German spellhecker index to our Solr index
-  This also requires to enable the content in schema_extra_types.xml and schema_extra_fields.xml
--->
-<!--
-<lst name="spellchecker">
-  <str name="name">spellchecker_de</str>
-  <str name="field">spell_de</str>
-  <str name="spellcheckIndexDir">./spellchecker_de</str>
-  <str name="buildOnOptimize">true</str>
-</lst>
--->
-
-<!-- a spellchecker that uses a different distance measure -->
-<!--
-   <lst name="spellchecker">
-     <str name="name">jarowinkler</str>
-     <str name="field">spell</str>
-     <str name="distanceMeasure">
-       org.apache.lucene.search.spell.JaroWinklerDistance
-     </str>
-     <str name="spellcheckIndexDir">spellcheckerJaro</str>
-   </lst>
- -->
-
-<!-- a spellchecker that use an alternate comparator
-
-     comparatorClass be one of:
-      1. score (default)
-      2. freq (Frequency first, then score)
-      3. A fully qualified class name
-  -->
-<!--
-   <lst name="spellchecker">
-     <str name="name">freq</str>
-     <str name="field">lowerfilt</str>
-     <str name="spellcheckIndexDir">spellcheckerFreq</str>
-     <str name="comparatorClass">freq</str>
-     <str name="buildOnCommit">true</str>
-  -->
-
-<!-- A spellchecker that reads the list of words from a file -->
-<!--
-   <lst name="spellchecker">
-     <str name="classname">solr.FileBasedSpellChecker</str>
-     <str name="name">file</str>
-     <str name="sourceLocation">spellings.txt</str>
-     <str name="characterEncoding">UTF-8</str>
-     <str name="spellcheckIndexDir">spellcheckerFile</str>
-   </lst>
-  -->
-</searchComponent>
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrcore.properties b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrcore.properties
deleted file mode 100644
index b7f8f6c801408ece28505ba9b354e76f9dcebbb5..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/solrcore.properties
+++ /dev/null
@@ -1,20 +0,0 @@
-# Defines Solr properties for this specific core.
-solr.replication.master=false
-solr.replication.slave=false
-solr.replication.pollInterval=00:00:60
-solr.replication.masterUrl=http://localhost:8983/solr
-solr.replication.confFiles=schema.xml,mapping-ISOLatin1Accent.txt,protwords.txt,stopwords.txt,synonyms.txt,elevate.xml
-solr.mlt.timeAllowed=2000
-# You should not set your luceneMatchVersion to anything lower than your Solr
-# Version.
-solr.luceneMatchVersion=LUCENE_40
-solr.pinkPony.timeAllowed=-1
-# autoCommit after 10000 docs
-solr.autoCommit.MaxDocs=10000
-# autoCommit after 2 minutes
-solr.autoCommit.MaxTime=120000
-# autoSoftCommit after 2000 docs
-solr.autoSoftCommit.MaxDocs=2000
-# autoSoftCommit after 10 seconds
-solr.autoSoftCommit.MaxTime=10000
-solr.contrib.dir=../../../contrib
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/stopwords.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/stopwords.txt
deleted file mode 100644
index d7f243e48a9f8706cf8ba5aeb3218558e716fa0b..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/stopwords.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-# Contains words which shouldn't be indexed for fulltext fields, e.g., because
-# they're too common. For documentation of the format, see
-# http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.StopFilterFactory
-# (Lines starting with a pound character # are ignored.)
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/synonyms.txt b/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/synonyms.txt
deleted file mode 100644
index 7d22eea6d6ee1548e239d42bfe44515370a2a091..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/solr-conf/solr-4.x/synonyms.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Contains synonyms to use for your index. For the format used, see
-# http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.SynonymFilterFactory
-# (Lines starting with a pound character # are ignored.)
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/task-check.png b/profiles/wcm_base/modules/contrib/apachesolr/task-check.png
deleted file mode 100644
index 64fadf848a4e16827ebf59f624a382786facf728..0000000000000000000000000000000000000000
Binary files a/profiles/wcm_base/modules/contrib/apachesolr/task-check.png and /dev/null differ
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/Dummy_Solr.php b/profiles/wcm_base/modules/contrib/apachesolr/tests/Dummy_Solr.php
deleted file mode 100644
index 08998b250c85102c063e2be84ba4321ac0677b3d..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/Dummy_Solr.php
+++ /dev/null
@@ -1,474 +0,0 @@
-<?php
-
-/**
- * @file
- *   Dummy object to simulate a Solr Service
- *
- */
-class DummySolr implements DrupalApacheSolrServiceInterface {
-
-  function getId() {
-    return __CLASS__;
-  }
-
-  function getFields($num_terms = 0) {
-    return (object) array(
-       'is_uid' =>
-      (object) array(
-         'type' => 'long',
-         'schema' => 'I-S----OF-----',
-      ),
-       'content' =>
-      (object) array(
-         'type' => 'text',
-         'schema' => 'ITS-V---------',
-      ),
-       'im_3_field_tags' =>
-      (object) array(
-         'type' => 'long',
-         'schema' => 'I-SM---OF-----',
-         'dynamicBase' => 'im_*',
-      ),
-       'entity_type' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'ds_last_comment_or_change' =>
-      (object) array(
-         'type' => 'tdate',
-         'schema' => 'ITS----OF-----',
-      ),
-       'nodeaccess_ari4jj_node_access_example_view' =>
-      (object) array(
-         'type' => 'integer',
-         'schema' => 'I--M---OF-----',
-         'dynamicBase' => 'nodeaccess*',
-      ),
-       'entity_id' =>
-      (object) array(
-         'type' => 'tlong',
-         'schema' => 'ITS----OF-----',
-      ),
-       'ds_changed' =>
-      (object) array(
-         'type' => 'tdate',
-         'schema' => 'ITS----OF-----',
-      ),
-       'id' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'timestamp' =>
-      (object) array(
-         'type' => 'date',
-         'schema' => 'I-S----OF----l',
-      ),
-       'label' =>
-      (object) array(
-         'type' => 'text',
-         'schema' => 'ITS-V--O------',
-      ),
-       'nodeaccess_ari4jj_node_access_example_edit' =>
-      (object) array(
-         'type' => 'integer',
-         'schema' => 'I--M---OF-----',
-         'dynamicBase' => 'nodeaccess*',
-      ),
-       'ds_created' =>
-      (object) array(
-         'type' => 'tdate',
-         'schema' => 'ITS----OF-----',
-      ),
-       'ss_name' =>
-      (object) array(
-         'type' => 'text',
-         'schema' => 'ITS-V---------',
-      ),
-       'path' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'taxonomy_names' =>
-      (object) array(
-         'type' => 'text',
-         'schema' => 'IT-MV--O------',
-      ),
-       'bundle' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'tid' =>
-      (object) array(
-         'type' => 'long',
-         'schema' => 'I-SM---OF-----',
-      ),
-       'is_tnid' =>
-      (object) array(
-         'type' => 'long',
-         'schema' => 'I-S----OF-----',
-      ),
-       'nodeaccess_ari4jj_node_access_example_author' =>
-      (object) array(
-         'type' => 'integer',
-         'schema' => 'I--M---OF-----',
-         'dynamicBase' => 'nodeaccess*',
-      ),
-       'tm_vid_1_names' =>
-      (object) array(
-         'type' => 'text',
-         'schema' => 'ITSMV---------',
-         'dynamicBase' => 'tm_*',
-      ),
-       'spell' =>
-      (object) array(
-         'type' => 'textSpell',
-         'schema' => 'ITSM----------',
-      ),
-       'site' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'is_comment_count' =>
-      (object) array(
-         'type' => 'tint',
-         'schema' => 'ITS----OF-----',
-      ),
-       'bundle_name' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'hash' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'bs_status' =>
-      (object) array(
-         'type' => 'boolean',
-         'schema' => 'I-S----OF----l',
-      ),
-       'entity_id' =>
-      (object) array(
-         'type' => 'long',
-         'schema' => 'I-S----OF-----',
-      ),
-       'url' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'nodeaccess_all' =>
-      (object) array(
-         'type' => 'integer',
-         'schema' => 'I--M---OF-----',
-         'dynamicBase' => 'nodeaccess*',
-      ),
-       'sort_name' =>
-      (object) array(
-         'type' => 'sortString',
-         'schema' => 'IT-----O-----l',
-      ),
-       'tags_a' =>
-      (object) array(
-         'type' => 'text',
-         'schema' => 'IT-----O------',
-         'dynamicBase' => 'tags_*',
-      ),
-       'bs_sticky' =>
-      (object) array(
-         'type' => 'boolean',
-         'schema' => 'I-S----OF----l',
-      ),
-       'bs_promote' =>
-      (object) array(
-         'type' => 'boolean',
-         'schema' => 'I-S----OF----l',
-      ),
-       'teaser' =>
-      (object) array(
-         'type' => 'text',
-         'schema' => '-TS-----------',
-      ),
-       'im_vid_1' =>
-      (object) array(
-         'type' => 'long',
-         'schema' => 'I-SM---OF-----',
-         'dynamicBase' => 'im_*',
-      ),
-       'bs_translate' =>
-      (object) array(
-         'type' => 'boolean',
-         'schema' => 'I-S----OF----l',
-      ),
-       'sort_label' =>
-      (object) array(
-         'type' => 'sortString',
-         'schema' => 'IT-----O-----l',
-      ),
-       'ss_language' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-S----OF----l',
-      ),
-       'sm_vid_Tags' =>
-      (object) array(
-         'type' => 'string',
-         'schema' => 'I-SM---OF----l',
-         'dynamicBase' => 'sm_*',
-      ),
-    );
-  }
-
-  protected $last_search = array();
-
-  public function search($query = '', array $params = array(), $method = 'GET') {
-    $this->last_search = array('query' => $query, 'params' => $params, 'method' => $method);
-    $response = new stdClass();
-    $response->response = new stdClass();
-    $response->response->numFound = 0;
-    $response->response->docs = array();
-
-    return $response;
-  }
-
-  public function getLastSearch() {
-    return $this->last_search;
-  }
-
-  /**
-   * Call the /admin/ping servlet, to test the connection to the server.
-   *
-   * @param $timeout
-   *   maximum time to wait for ping in seconds, -1 for unlimited (default 2).
-   * @return
-   *   (float) seconds taken to ping the server, FALSE if timeout occurs.
-   */
-  function ping($timeout = 2) {
-  }
-
-  /**
-   * Get information about the Solr Core.
-   *
-   * @return
-   *   (string) system info encoded in json
-   */
-  function getSystemInfo() {
-  }
-
-  /**
-   * Get meta-data about the index.
-   */
-  function getLuke($num_terms = 0) {
-  }
-
-  /**
-   * Get information about the Solr Core.
-   *
-   * Returns a Simple XMl document
-   */
-  function getStats() {
-  }
-
-  /**
-   * Get summary information about the Solr Core.
-   */
-  function getStatsSummary() {
-  }
-
-  /**
-   * Clear cached Solr data.
-   */
-  function clearCache() {
-  }
-
-  /**
-   * Constructor
-   *
-   * @param $url
-   *   The URL to the Solr server, possibly including a core name.  E.g. http://localhost:8983/solr/
-   *   or https://search.example.com/solr/core99/
-   * @param $env_id
-   *   The machine name of a corresponding saved configuration used for loading
-   *   data like which facets are enabled.
-   */
-  function __construct($url, $env_id = NULL) {
-  }
-
-  /**
-   * Make a request to a servlet (a path) that's not a standard path.
-   *
-   * @param string $servlet
-   *   A path to be added to the base Solr path. e.g. 'extract/tika'
-   *
-   * @param array $params
-   *   Any request parameters when constructing the URL.
-   *
-   * @param array $options
-   *  @see drupal_http_request() $options.
-   *
-   * @return
-   *  response object
-   *
-   * @thows Exception
-   */
-  function makeServletRequest($servlet, $params = array(), $options = array()) {
-  }
-
-  /**
-   * Get the Solr url
-   *
-   * @return string
-   */
-  function getUrl() {
-  }
-
-  /**
-   * Set the Solr url.
-   *
-   * @param $url
-   *
-   * @return $this
-   */
-  function setUrl($url) {
-  }
-
-  /**
-   * Raw update Method. Takes a raw post body and sends it to the update service. Post body
-   * should be a complete and well formed xml document.
-   *
-   * @param string $rawPost
-   * @param float $timeout Maximum expected duration (in seconds)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function update($rawPost, $timeout = FALSE) {
-  }
-
-  /**
-   * Add an array of Solr Documents to the index all at once
-   *
-   * @param array $documents Should be an array of ApacheSolrDocument instances
-   * @param boolean $allowDups
-   * @param boolean $overwritePending
-   * @param boolean $overwriteCommitted
-   *
-   * @return response objecte
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function addDocuments($documents, $overwrite = NULL, $commitWithin = NULL) {
-  }
-
-  /**
-   * Send a commit command.  Will be synchronous unless both wait parameters are set to false.
-   *
-   * @param boolean $optimize Defaults to true
-   * @param boolean $waitFlush Defaults to true
-   * @param boolean $waitSearcher Defaults to true
-   * @param float $timeout Maximum expected duration (in seconds) of the commit operation on the server (otherwise, will throw a communication exception). Defaults to 1 hour
-   * @param boolean $softCommit optimize by using a softCommit
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function commit($optimize = TRUE, $waitFlush = TRUE, $waitSearcher = TRUE, $timeout = 3600, $softCommit = FALSE) {
-  }
-
-  /**
-   * Create a delete document based on document ID
-   *
-   * @param string $id Expected to be utf-8 encoded
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function deleteById($id, $timeout = 3600) {
-  }
-
-  /**
-   * Create and post a delete document based on multiple document IDs.
-   *
-   * @param array $ids Expected to be utf-8 encoded strings
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function deleteByMultipleIds($ids, $timeout = 3600) {
-  }
-
-  /**
-   * Create a delete document based on a query and submit it
-   *
-   * @param string $rawQuery Expected to be utf-8 encoded
-   * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
-   * @return stdClass response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function deleteByQuery($rawQuery, $timeout = 3600) {
-  }
-
-  /**
-   * Send an optimize command.  Will be synchronous unless both wait parameters are set
-   * to false.
-   *
-   * @param boolean $waitFlush
-   * @param boolean $waitSearcher
-   * @param float $timeout Maximum expected duration of the commit operation on the server (otherwise, will throw a communication exception)
-   * @param boolean $softCommit optimize by using a softCommit
-   *
-   * @return response object
-   *
-   * @throws Exception If an error occurs during the service call
-   */
-  function optimize($waitFlush = TRUE, $waitSearcher = TRUE, $timeout = 3600, $softCommit = FALSE) {
-  }
-
-  /**
-   * Get the current solr version. This could be 1, 3 or 4
-   *
-   * @return int
-   *   1, 3 or 4. Does not give a more details version, for that you need
-   *   to get the system info.
-   */
-  function getSolrVersion() {
-  }
-
-  /**
-   * Get query name.
-   */
-  function getName() {
-  }
-
-  /**
-   * Get query searcher name (for facetapi, views, pages, etc).
-   */
-  function getSearcher() {
-  }
-
-  /**
-   * Get context values.
-   */
-  function getContext() {
-  }
-
-  /**
-   * Set context value.
-   */
-  function addContext(array $context) { 
-  }
-}
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_base.test b/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_base.test
deleted file mode 100644
index 31a01a44052b86ddf379e04baa1eb081396723e4..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_base.test
+++ /dev/null
@@ -1,692 +0,0 @@
-<?php
-
-abstract class DrupalSolrOfflineWebTestCase extends DrupalWebTestCase {
-  function _nestedCompare($a1, $a2) {
-    if (count($a1) != count($a2)) {
-      //$extra1 = array_diff_key($a1, $a2);
-      //$extra2 = array_diff_key($a2, $a1);
-      //$extra = '';
-      //if ($extra1) {
-      //  $extra .= ' Extra keys in $a1: ' . implode(', ', array_keys($extra1));
-      //}
-      //if ($extra2) {
-      //  $extra .= ' Extra keys in $a2: ' . implode(', ', array_keys($extra2));
-      //}
-      //debug('count($a1) != count($a2) :' . $extra);
-      return FALSE;
-    }
-    foreach ($a1 as $k => $v) {
-      if (!isset($a2[$k])) {
-        //debug("\$a2[$k] is not set");
-        return FALSE;
-      }
-      if (is_array($a1[$k]) && is_array($a2[$k])) {
-        if (!$this->_nestedCompare($a1[$k], $a2[$k])) {
-          //debug("_nestedCompare(\$a1[$k], \$a2[$k]) is false");
-          return FALSE;
-        }
-      }
-      elseif ($a1[$k] !== $a2[$k]) {
-        //debug("\$a1[$k] !== \$a2[$k] : " . var_export($a1[$k], TRUE) . " " . var_export($a2[$k], TRUE));
-        return FALSE;
-      }
-    }
-    return TRUE;
-  }
-}
-
-/**
- * @file
- *   Unit test class that provides tests for base functionality of the Apachesolr
- *   Module without having the need of a Solr Server
- */
-class DrupalSolrOfflineEnvironmentWebTestCase extends DrupalSolrOfflineWebTestCase {
-  /**
-   * A global basic user who can search.
-   */
-  var $basic_user;
-
-  /**
-   * A global administrative user who can administer search.
-   */
-  var $admin_user;
-
-  public static function getInfo() {
-    return array(
-      'name' => 'Solr Search Environments',
-      'description' => 'Tests search environments functionality of the Solr module',
-      'group' => 'ApacheSolr',
-    );
-  }
-  /**
-   * Implementation of setUp().
-   */
-  function setUp() {
-    parent::setUp('apachesolr', 'search', 'apachesolr_search', 'apachesolr_test');
-    // Create a basic user, which is subject to moderation.
-    $permissions = array(
-      'access content',
-      'search content',
-    );
-    $basic_user = $this->drupalCreateUser($permissions);
-
-    // Create an admin user that can bypass revision moderation.
-    $permissions = array(
-      'access content',
-      'search content',
-      'administer nodes',
-      'administer search',
-    );
-    $admin_user = $this->drupalCreateUser($permissions);
-
-    // Assign users to their test suite-wide properties.
-    $this->basic_user = $basic_user;
-    $this->admin_user = $admin_user;
-  }
-
-  /**
-   * Asserts that the module was installed and that a notice appears that the server is offline
-   */
-  function testServerOffline() {
-    // Load the default server.
-    $env_id = apachesolr_default_environment();
-    $environment = apachesolr_environment_load($env_id);
-    $environment['url'] = 'http://localhost/solr/core_that_should_not_exist';
-    apachesolr_environment_save($environment);
-    $status = apachesolr_server_status($environment['url']);
-    $this->assertFalse($status, t('A false URL could not be loaded and is offline'));
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr');
-    $text = t('The server seems to be unavailable. Please verify the server settings');
-    $this->assertText($text, t('When checking the status of the server it gives the correct message to inform the user that the server is not reachable'));
-  }
-
-  /**
-   * Asserts that the module was installed and that a notice appears that the server is offline
-   */
-  function testIndexFileIncluded() {
-    $env_id = apachesolr_default_environment();
-    $environment = apachesolr_environment_load($env_id);
-    $environment['url'] = 'http://localhost/solr/core_that_should_not_exist';
-    apachesolr_environment_save($environment);
-
-    $paths = array(
-      'user',
-      'node',
-      'admin/config/search/apachesolr',
-      'admin/config/search/apachesolr/search-pages',
-      'admin/config/search/apachesolr/search-pages/core_search/edit',
-      'admin/structure/block/manage/apachesolr_search/mlt-001/configure',
-      'admin/config/search/apachesolr/settings/solr/bias',
-      'admin/config/search/apachesolr/settings/solr/index',
-      'admin/config/search/apachesolr/settings/solr/edit',
-      'admin/reports/apachesolr',
-      'admin/reports/apachesolr/conf',
-      'search/site',
-    );
-    $this->drupalLogin($this->admin_user);
-    foreach ($paths as $path) {
-      $this->drupalGet($path);
-      $text = 'apachesolr.index.inc was included';
-      $this->assertNoText($text, t('Apachesolr.index.inc was not included'));
-    }
-  }
-
-  /**
-   * Asserts that we can edit a search environment
-   */
-  function testEditSearchEnvironment() {
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    $this->clickLink(t('Edit'));
-    $this->assertText(t('Example: http://localhost:8983/solr'), t('Edit page was successfully loaded'));
-    $edit = array('name' => 'new description foo bar', 'url' => 'http://localhost:8983/solr/core_does_not_exists');
-    $this->drupalPost($this->getUrl(), $edit, t('Save'));
-    $this->assertResponse(200);
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    $this->assertText(t('new description foo bar'), t('Search environment description was successfully edited'));
-    $this->assertText('http://localhost:8983/solr/core_does_not_exists', t('Search environment url was successfully edited'));
-  }
-
-  /**
-   * Asserts that we can use various url forms for the search environment
-   */
-  function testEditSearchEnvironmentURLs() {
-    // Set the various url schemes that will be tested
-    $urls = array(
-      'http://user@localhost:8983/solr/core_does_not_exists',
-      'http://user:pass@localhost:8983/solr/core_does_not_exists',
-      'http://user:pass@localhost/solr/core_does_not_exists',
-      'https://localhost:8983/solr/core_does_not_exists'
-    );
-    $this->drupalLogin($this->admin_user);
-    foreach ($urls as $url) {
-      $this->drupalGet('admin/config/search/apachesolr/settings');
-      $this->clickLink(t('Edit'));
-      $this->assertText(t('Example: http://localhost:8983/solr'), t('Edit page was successfully loaded'));
-      $edit = array('url' => $url);
-      $this->drupalPost($this->getUrl(), $edit, t('Save'));
-      $this->assertResponse(200);
-      $this->drupalGet('admin/config/search/apachesolr/settings');
-      $this->assertText($url, t('Search environment url was successfully set to !url', array('!url' => $url)));
-    }
-  }
-
-  /**
-   * Asserts that we can clone a search environment
-   */
-  function testCloneSearchEnvironment() {
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    $this->assertText(t('Clone'), t('Clone button is available'));
-    $this->drupalGet('admin/config/search/apachesolr/settings/solr/clone');
-    $this->assertText(t('Are you sure you want to clone search environment localhost server'), t('Clone confirmation page was successfully loaded'));
-    $this->drupalPost($this->getUrl(), array(), t('Clone'));
-    $this->assertResponse(200);
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    $this->assertText(t('localhost server [cloned]'), t('Search Environment was successfully cloned'));
-    // Check if the bundles and configurations are exactly the same
-    // after we clear the caches.
-    apachesolr_environments_clear_cache();
-    $envs = apachesolr_load_all_environments();
-    $this->assertEqual(count($envs), 2, 'Now we have 2 environments');
-    $orig_env = $envs['solr'];
-    unset($envs['solr']);
-    $cloned_env = array_pop($envs);
-    $this->assertTrue($this->_nestedCompare($orig_env['index_bundles'], $cloned_env['index_bundles']));
-    $this->assertTrue($this->_nestedCompare($orig_env['conf'], $cloned_env['conf']));
-  }
-
-  /**
-   * Asserts that we can edit a search environment
-   */
-  function testCreateNewSearchEnvironment() {
-    // Create a new environment
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    $this->assertText(t('Add search environment'), t('Create new environment link is available'));
-    $this->clickLink(t('Add search environment'));
-    $this->assertText(t('Make this Solr search environment the default'), t('Environment creation page successfully added'));
-    $edit = array('url' => 'http://localhost:8983/solr', 'name' => 'my test description', 'env_id' => 'solr_test');
-    $this->drupalPost($this->getUrl(), $edit, t('Save'));
-    $this->assertResponse(200);
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    $this->assertText(t('my test description'), t('Search Environment was successfully created'));
-
-    // Make this new search environment the default
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    // Click on the second environment edit link
-    $this->clickLink(t('Edit'), 1);
-    $this->assertText(t('Example: http://localhost:8983/solr'), t('Edit page was successfully loaded'));
-    $edit = array('make_default' => 1, 'conf[apachesolr_read_only]' => APACHESOLR_READ_ONLY);
-    $this->drupalPost($this->getUrl(), $edit, t('Save'));
-    $this->assertResponse(200);
-    $this->drupalGet('admin/config/search/apachesolr/settings');
-    $this->assertText(t('my test description (Default)'), t('New Search environment was successfully changed to default environment'));
-    // Clear our cache.
-    apachesolr_environments_clear_cache();
-    $mode = apachesolr_environment_variable_get('solr_test', 'apachesolr_read_only', APACHESOLR_READ_WRITE);
-    $this->assertEqual($mode, APACHESOLR_READ_ONLY, 'Environment successfully changed to read only');
-  }
-}
-
-/**
- * @file
- *   Unit test class that provides tests for base functionality of the Apachesolr
- *   Module without having the need of a Solr Server
- */
-class DrupalSolrOfflineSearchPagesWebTestCase extends DrupalSolrOfflineWebTestCase {
-  /**
-   * A global basic user who can search.
-   */
-  var $basic_user;
-
-  /**
-   * A global administrative user who can administer search.
-   */
-  var $admin_user;
-
-  public static function getInfo() {
-    return array(
-      'name' => 'Solr Search Pages',
-      'description' => 'Tests search pages functionality of the Solr module',
-      'group' => 'ApacheSolr',
-    );
-  }
-  /**
-   * Implementation of setUp().
-   */
-  function setUp() {
-    parent::setUp('apachesolr', 'apachesolr_search', 'search', 'apachesolr_test');
-    // Create a basic user, which is subject to moderation.
-    $permissions = array(
-      'access content',
-      'search content',
-    );
-    $basic_user = $this->drupalCreateUser($permissions);
-
-    // Create an admin user that can bypass revision moderation.
-    $permissions = array(
-      'access content',
-      'search content',
-      'administer nodes',
-      'administer search',
-    );
-    $admin_user = $this->drupalCreateUser($permissions);
-
-    // Assign users to their test suite-wide properties.
-    $this->basic_user = $basic_user;
-    $this->admin_user = $admin_user;
-
-    // Make sure our environment does not exists
-    $env_id = apachesolr_default_environment(NULL, TRUE);
-    $environment = apachesolr_environment_load($env_id, TRUE);
-    $environment['url'] = 'http://localhost/solr/core_that_should_not_exist';
-    apachesolr_environment_save($environment);
-    // Reset all caches
-    apachesolr_load_all_environments(TRUE);
-  }
-
-  /**
-   *	Asserts that we can edit a search environment
-   */
-  function testCheckCoreSearchPage() {
-    // Create a new environment
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->assertText(t('Core Search'), t('Core Search page is available'));
-  }
-
-  /**
-   * Asserts that we can edit a search environment
-   */
-  function testEditSearchPage() {
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->clickLink(t('Edit'));
-    $this->assertText(t('The human-readable name of the search page configuration'), t('Edit page was successfully loaded'));
-    $edit = array(
-      'label' => 'Test Search Page',
-      'description' => 'Test Description',
-      'page_title' => 'Test Title',
-      'search_path' => 'search/searchdifferentpath',
-    );
-    $this->drupalPost($this->getUrl(), $edit, t('Save'));
-    $this->assertResponse(200);
-    // Make sure the menu is recognized
-    drupal_static_reset('apachesolr_search_load_all_search_pages');
-    menu_cache_clear_all();
-    menu_rebuild();
-
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->assertText(t('Test Search Page'), t('Search page was successfully edited'));
-    $this->assertText('search/searchdifferentpath', t('Search path was updated'));
-    $this->drupalGet('search/searchdifferentpath');
-    $this->assertText(t('Search is temporarily unavailable. If the problem persists, please contact the site administrator.'), t('Search path was successfully created and is accessible'));
-  }
-
-  /**
-   * Asserts that we can clone a search page
-   */
-  function testCloneSearchPage() {
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->assertText(t('Clone'), t('Clone button is available'));
-    $this->drupalGet('admin/config/search/apachesolr/search-pages/core_search/clone');
-    $this->assertText(t('Are you sure you want to clone search page Core Search?'), t('Clone confirmation page was successfully loaded'));
-    $this->drupalPost($this->getUrl(), array(), t('Clone'));
-    $this->assertResponse(200);
-    drupal_static_reset('apachesolr_search_load_all_search_pages');
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->assertText(t('Core Search [cloned]'), 'Search page was successfully cloned');
-  }
-
-  /**
-   * Asserts that we can edit a search environment
-   */
-  function testNewAndRemoveSearchPage() {
-    // Create a new search page
-    $this->drupalLogin($this->admin_user);
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->assertText(t('Add search page'), t('Create new search page link is available'));
-    $this->clickLink(t('Add search page'));
-    $this->assertText(t('The human-readable name of the search page configuration.'), t('Search page creation page successfully added'));
-    $edit = array(
-      'page_id' => 'solr_testingsuite',
-      'env_id' => 'solr',
-      'label' => 'Test Search Page',
-      'description' => 'Test Description',
-      'page_title' => 'Test Title',
-      'search_path' => 'search/searchdifferentpath',
-    );
-    $this->drupalPost($this->getUrl(), $edit, t('Save'));
-    $this->assertResponse(200);
-    // Make sure the menu is recognized
-    drupal_static_reset('apachesolr_search_load_all_search_pages');
-    menu_cache_clear_all();
-    menu_rebuild();
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->assertText(t('Test Search Page'), t('Search Page was successfully created'));
-
-    // Remove the same environment
-    $this->clickLink(t('Delete'));
-    $this->assertText(t('search page configuration will be deleted.This action cannot be undone.'), t('Delete confirmation page was successfully loaded'));
-    $this->drupalPost($this->getUrl(), array(), t('Delete'));
-    $this->assertResponse(200);
-    drupal_static_reset('apachesolr_search_load_all_search_pages');
-    $this->drupalGet('admin/config/search/apachesolr/search-pages');
-    $this->assertNoText(t('Test Search Page'), t('Search Environment was successfully deleted'));
-    apachesolr_environment_save(array('env_id' => 'DummySolr', 'service_class' => 'DummySolr', 'name' => 'dummy server', 'url' => 'http://localhost:8983/solr'));
-    $solr = new DummySolr($url = NULL, $env_id = 'DummySolr');
-    $params = array(
-      'rows' => 5,
-    );
-    $results = apachesolr_search_run('apachesolr_test', $params, '', '', 0, $solr);
-    $query = apachesolr_current_query('DummySolr');
-    $this->assertEqual($query->getParam('rows'), 5, 'Passed in rows param overrode default');
-  }
-}
-
-class DrupalSolrNodeTestCase extends DrupalWebTestCase {
-
-  public static function getInfo() {
-    return array(
-      'name' => 'Solr Node add, deletion, indexing and document building tests',
-      'description' => 'Tests if we can successfully add and delete nodes',
-      'group' => 'ApacheSolr',
-    );
-  }
-  /**
-   * Implementation of setUp().
-   */
-  function setUp() {
-    parent::setUp('apachesolr', 'apachesolr_search', 'search', 'apachesolr_test');
-  }
-
-  function testApacheSolrNodeAddDelete() {
-    // Login as basic user to perform initial content creation.
-    // Create an admin user that can bypass revision moderation.
-    $permissions = array(
-      'access content',
-      'search content',
-      'administer nodes',
-      'administer search',
-      'access content overview',
-      'bypass node access',
-    );
-    $admin_user = $this->drupalCreateUser($permissions);
-
-    $this->drupalLogin($admin_user);
-
-    // enable our bundles to be indexed, and clear caches
-    apachesolr_index_set_bundles('solr', 'node', array('page', 'article'));
-    entity_info_cache_clear();
-    apachesolr_environments_clear_cache();
-
-    // Define types of node bundles that we want to index
-    $types = array('page', 'article');
-
-    foreach ($types as $type) {
-      $edit = array();
-      // Create a node of the type $type.
-      $edit['uid'] = $admin_user->uid;
-      $edit['type'] = $type;
-      $edit['title'] = $this->randomName(16);
-      $node = $this->drupalCreateNode($edit);
-      $this->assertTrue(is_object($node) && isset($node->nid), t('Article type @type has been created.', array('@type' => $type)));
-
-      // Check that the node has been created.
-      $node = $this->drupalGetNodeByTitle($edit['title']);
-      $this->assertTrue($node, t('Created article @type found in database.', array('@type' => $type)));
-
-      // Check that the node has status 1
-      $indexer_table = apachesolr_get_indexer_table('node');
-      $query = db_select($indexer_table, 'aien')
-        ->condition('entity_id', $node->nid)
-        ->fields('aien', array('entity_id', 'status'));
-      $db_node = $query->execute()->fetchObject();
-      $this->assertEqual($db_node->status, 1, t('Node @entity_id has status 1', array('@entity_id' => $db_node->entity_id)));
-
-      // Delete the node
-      $this->drupalPost('node/' . $node->nid . '/delete', array(), t('Delete'));
-
-      // check if the entity delete does its work. It should have set the
-      // status to 0 so it will be deleted when solr comes online
-      $indexer_table = apachesolr_get_indexer_table('node');
-      $nodes_in_tracking_table = db_select($indexer_table, 'aien')
-        ->condition('entity_id', $node->nid)
-        ->countQuery()
-        ->execute()
-        ->fetchField();
-
-      if ($nodes_in_tracking_table > 0) {
-        $db_node = db_select($indexer_table, 'aien')
-          ->condition('entity_id', $node->nid)
-          ->fields('aien', array('entity_id', 'status'))
-          ->execute()
-          ->fetchObject();
-        $this->assertEqual($db_node->status, 0, t('Node @entity_id has status 0', array('@entity_id' => $db_node->entity_id)));
-      }
-      else {
-        // Check that all of the nodes (should only have 1) have status 0, it
-        // is set as 0 because it is pending to be deleted
-        $this->assertEqual($nodes_in_tracking_table, 0, t('No more nodes in the tracking table'));
-      }
-
-
-      // Check that all the nodes have been deleted.
-      $count = db_select('node', 'n')
-        ->condition('n.nid', $node->nid)
-        ->countQuery()
-        ->execute()
-        ->fetchField();
-      $this->assertEqual($count, 0, t('No more nodes left in the node table.'));
-    }
-  }
-
-  function testApacheSolrNodeReindex() {
-    // Login as basic user to perform initial content creation.
-    // Create an admin user that can bypass revision moderation.
-    $permissions = array(
-      'access content',
-      'search content',
-      'administer nodes',
-      'administer search',
-      'access content overview',
-      'bypass node access',
-    );
-    $admin_user = $this->drupalCreateUser($permissions);
-
-    $this->drupalLogin($admin_user);
-
-    // enable our bundles to be indexed, and clear caches
-    apachesolr_index_set_bundles('solr', 'node', array('page', 'article'));
-    entity_info_cache_clear();
-    apachesolr_environments_clear_cache();
-
-    // Define types of node bundles that we want to index
-    $types = array('page', 'article');
-
-    // Create 20 nodes (10 times 2)
-    foreach ($types as $type) {
-      for ($i = 0; $i < 5; $i++) {
-        $edit = array();
-        // Create a node of the type $type.
-        $edit['uid'] = $admin_user->uid;
-        $edit['type'] = $type;
-        $edit['title'] = $this->randomName(16);
-        $node = $this->drupalCreateNode($edit);
-      }
-    }
-
-    // Set a static timestamp
-    $timestamp = 1382019301;
-
-    $env_id = apachesolr_default_environment();
-
-    // Clear the last timestamp so we know that our nodes have to be indexed.
-    apachesolr_environment_variable_set($env_id, 'apachesolr_index_last', array());
-
-    // Set apachesolr_index_entities_node.changed to the same value
-    // (REQUEST_TIME).
-    $table = apachesolr_get_indexer_table('node');
-    db_update($table)
-        ->fields(array('changed' => $timestamp, 'status' => 1))
-        ->execute();
-    // Fake that we actually indexed before
-    apachesolr_set_last_index_position($env_id, 'node', $timestamp + 1, 10);
-    
-    // Set the changed date to after our previous index cycle
-    db_update($table)
-        ->fields(array('changed' => $timestamp + 10, 'status' => 1))
-        ->condition('entity_id', 9, '<=')
-        ->execute();
-
-    // Get the next 5 entities to index.
-    $set = apachesolr_index_get_entities_to_index($env_id, 'node', 5);
-    $count = count($set);
-    $this->assertEqual($count, 5, t('We found 5 entities to index.'));
-
-    // Mark the last item from that 5 as last indexed.
-    $last_row = end($set);
-    apachesolr_set_last_index_position($env_id, 'node', $last_row->changed, $last_row->entity_id);
-
-    // Get the next batch of 5 and this should be 4 items.
-    $set = apachesolr_index_get_entities_to_index($env_id, 'node', 4);
-    $count = count($set);
-    $this->assertEqual($count, 4, t('We found 4 entities to index.'));
-
-    // Mark the last item from that 4 as last indexed.
-    $last_row = end($set);
-    apachesolr_set_last_index_position($env_id, 'node', $last_row->changed, $last_row->entity_id);
-
-    // Get the next batch of 5 and this should be 0 items
-    $set = apachesolr_index_get_entities_to_index($env_id, 'node', 5);
-    $count = count($set);
-    $this->assertEqual($count, 0, t('We found 0 entities to index.'));
-  }
-
-  function testNodeToDocument() {
-    // enable our bundles to be indexed, and clear caches
-    apachesolr_index_set_bundles('solr', 'node', array('article'));
-    entity_info_cache_clear();
-    apachesolr_environments_clear_cache();
-    $edit = array();
-    // Create a node of the type article.
-    $type = 'article';
-    $edit['uid'] = 1;
-    $edit['type'] = $type;
-    $edit['title'] = $this->randomName(16);
-    $edit['body'][LANGUAGE_NONE][0]['value'] = 'some other ORDINARY_TEXT ';
-    // Make sure the format allows all tags.
-    $edit['body'][LANGUAGE_NONE][0]['format'] = 'full_html';
-    $tags_to_index = _apachesolr_tags_to_index();
-    // Tags that are not boosted normally.
-    $other_tags = array('div' => 'tags_inline', 'span' => 'tags_inline');
-    $all_tags = $tags_to_index + $other_tags;
-    $tag_content = array();
-    foreach ($all_tags as $tag_name => $field_name) {
-      $tag_content[$tag_name] = strtoupper($tag_name) . '_TAG_CONTENT';
-      if ($tag_name == 'a') {
-        $edit['body'][LANGUAGE_NONE][0]['value'] .= "<{$tag_name} href=\"http://example.com\">{$tag_content[$tag_name]}</{$tag_name}> other filler ";
-      }
-      else {
-        $edit['body'][LANGUAGE_NONE][0]['value'] .= "<{$tag_name}>{$tag_content[$tag_name]}</{$tag_name}> dummy text ";
-      }
-    }
-    $node = $this->drupalCreateNode($edit);
-    $this->assertTrue(is_object($node) && isset($node->nid), t('Article type @type has been created.', array('@type' => $type)));
-
-    $item = new stdClass();
-    $item->entity_id = $node->nid;
-    $item->entity_type = 'node';
-    $item->bundle = $node->type;
-    $env_id = apachesolr_default_environment();
-    $docs = apachesolr_index_entity_to_documents($item, $env_id);
-    $this->assertEqual(count($docs), 1, 'Only one document from one node');
-    $document = end($docs);
-    $this->assertTrue(strpos($document->content,'ORDINARY_TEXT') !== FALSE, "Found in content field expected: ORDINARY_TEXT");
-    foreach ($tags_to_index as $tag_name => $field_name) {
-      $this->assertTrue(strpos($document->content, $tag_content[$tag_name]) !== FALSE, "Found in content field expected: {$tag_content[$tag_name]}");
-      $this->assertTrue(!empty($document->{$field_name}) && strpos($document->{$field_name}, $tag_content[$tag_name]) !== FALSE, "Found in {$field_name} field expected: {$tag_content[$tag_name]}");
-      $this->assertTrue(empty($document->{$field_name}) || strpos($document->{$field_name},'ORDINARY_TEXT') === FALSE, "NOT Found in {$field_name}: ORDINARY_TEXT");
-    }
-    foreach ($other_tags as $tag_name => $field_name) {
-      $this->assertTrue(strpos($document->content, $tag_content[$tag_name]) !== FALSE, "Found in content field expected: {$tag_content[$tag_name]}");
-      $this->assertTrue(empty($document->{$field_name}) || strpos($document->{$field_name}, $tag_content[$tag_name]) === FALSE, "NOT found in {$field_name}: {$tag_content[$tag_name]}");
-    }
-  }
-}
-
-class DrupalSolrOfflineUnitTestCase extends DrupalUnitTestCase {
-  public static function getInfo() {
-    return array(
-      'name' => 'Solr Base Framework Tests Unit Test',
-      'description' => 'Unit test functionality of the Solr module',
-      'group' => 'ApacheSolr',
-    );
-  }
-
-  protected function setUp() {
-    parent::setUp();
-    require_once dirname(dirname(realpath(__FILE__))) . '/apachesolr.module';
-
-    $this->script_content = <<<EOF
-<p>GOOD_CONTENT</p>
-<script type="text/javascript" >
-$(document).ready(function(){
-  $('.accordion_teachers').accordion({ collapsible:true, autoHeight:false });
-});
-</script>
-
-EOF;
-
-    $this->embed_content = <<<EOF
-<p>GOOD_CONTENT</p>
-<object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/8Vmnq5dBF7Y?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8Vmnq5dBF7Y?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="425" height="349" allowscriptaccess="always" allowfullscreen="true"></embed></object>
-OTHER_CONTENT
-
-EOF;
-
-    $this->iframe_content = <<<EOF
-<iframe width="425" height="349" src="http://www.youtube.com/embed/8Vmnq5dBF7Y" frameborder="0" allowfullscreen></iframe>
-<p><a href="#">GOOD_CONTENT</a></p><iframe></iframe>
-
-EOF;
-
-    $this->comment_content = <<<EOF
-<p><em>GOOD_CONTENT</em></p><!-- COMMENT -->
-OTHER_CONTENT
-
-EOF;
-  }
-
-  /**
-   * Test ordering of parsed filter positions.
-   *
-   * Regression test for http://drupal.org/node/891962
-   */
-  function testContentFilters() {
-    $cleaned = apachesolr_clean_text($this->script_content);
-    $this->assertFalse(strpos($cleaned, 'script'), 'Script tags removed');
-    $this->assertFalse(strpos($cleaned, 'accordion_teachers'), 'Script tags conent removed');
-    $this->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
-
-    $cleaned = apachesolr_clean_text($this->embed_content);
-    $this->assertFalse(strpos($cleaned, 'object'), 'object tags removed');
-    $this->assertFalse(strpos($cleaned, 'embed'), 'embed tags removed');
-    $this->assertFalse(strpos($cleaned, '8Vmnq5dBF7Y'), 'object tags conent removed');
-    $this->assertFalse(strpos($cleaned, 'shockwave-flash'), 'embed tags conent removed');
-    $this->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
-    $this->assertTrue(strpos($cleaned, 'OTHER_CONTENT') > 0, 'Other content retained');
-
-    $cleaned = apachesolr_clean_text($this->iframe_content);
-    $this->assertFalse(strpos($cleaned, 'iframe'), 'iframe tags removed');
-    $this->assertFalse(strpos($cleaned, '8Vmnq5dBF7Y'), 'iframe tags conent removed');
-    $this->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
-
-    $cleaned = apachesolr_clean_text($this->comment_content);
-    $this->assertFalse(strpos($cleaned, 'COMMENT'), 'html comment content removed ');
-    $this->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
-  }
-}
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_test/apachesolr_test.info b/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_test/apachesolr_test.info
deleted file mode 100644
index b2022a4e1a56125f36cce90111db833e1ba87aa3..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_test/apachesolr_test.info
+++ /dev/null
@@ -1,13 +0,0 @@
-name = Apache Solr helper module for tests
-description = Support module for apachesolr module testing.
-package = Search Toolkit
-core = 7.x
-hidden = TRUE
-dependencies[] = apachesolr
-
-; Information added by Drupal.org packaging script on 2015-12-02
-version = "7.x-1.8"
-core = "7.x"
-project = "apachesolr"
-datestamp = "1449085462"
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_test/apachesolr_test.module b/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_test/apachesolr_test.module
deleted file mode 100644
index d4cc898c548e1117fe88dbf77630397151fc8dc6..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/apachesolr_test/apachesolr_test.module
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-/**
- * Implements hook_page_alter().
- *
- */
-function apachesolr_test_page_alter(&$page) {
-  $included_files = get_included_files();
-  $filename = dirname(dirname(dirname(realpath(__FILE__)))) . '/apachesolr.index.inc';
-  if (in_array($filename, $included_files)) {
-    $page['page_bottom']['solr']= array(
-      '#type' => 'markup',
-      '#markup' => 'apachesolr.index.inc was included',
-    );
-  }
-}
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/README.txt b/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/README.txt
deleted file mode 100644
index 297f903be690100c64c3fb7f599ec4d4861c595c..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/README.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-
-The conf files in this directory are complete in addition to schema.xml and solrconfig.xml
-in order to provide what a core needs to run.  However, these are only for testing.  For
-production start from the ones from the example/solr directory of a Solr 1.4.x
-release tarball.
-
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/elevate.xml b/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/elevate.xml
deleted file mode 100644
index 1a6af43fce9c5eab8689e3690f0cc91fe7ee5576..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/elevate.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<elevate>
-</elevate>
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/mapping-ISOLatin1Accent.txt b/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/mapping-ISOLatin1Accent.txt
deleted file mode 100644
index fabbebe21b12534f4dd08f63f285443fcec67c75..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/mapping-ISOLatin1Accent.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-# Incomplete example for testing
-
-# à => a
-"\u00E0" => "a"
-
-# á => a
-"\u00E1" => "a"
-
-# â => a
-"\u00E2" => "a"
-
-# ã => a
-"\u00E3" => "a"
-
-# ä => a
-"\u00E4" => "a"
-
-# å => a
-"\u00E5" => "a"
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/protwords.txt b/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/protwords.txt
deleted file mode 100644
index c4169448bf6b849a9db6557a343a43ea9be8b9b2..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/protwords.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# Incomplete example for testing
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/stopwords.txt b/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/stopwords.txt
deleted file mode 100644
index 9b0d136d15647480e6439404f259c04151cec617..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/stopwords.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-# Incomplete example set for testing
-a
-an
-of
-the
-to
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/synonyms.txt b/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/synonyms.txt
deleted file mode 100644
index 121845531992c8c6dfaa6cd8123dc32901417697..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/conf/synonyms.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Example synonmym mappings for testing
-druplicon => drupal icon
-love,hate,spam
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_base_query.test b/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_base_query.test
deleted file mode 100644
index 47f588eed9a8ddfeabea4bd1158643f6825668b9..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_base_query.test
+++ /dev/null
@@ -1,226 +0,0 @@
-<?php
-
-/**
- * Unit tests for query object methods.
- */
-class SolrBaseQueryTests extends DrupalUnitTestCase {
-  public static function getInfo() {
-        return array(
-      'name' => 'SolrBaseQuery Unit tests',
-      'description' => 'Unit Tests for queries.',
-      'group' => 'ApacheSolr',
-    );
-  }
-
-  function setUp() {
-    parent::setUp();
-    require_once dirname(dirname(realpath(__FILE__))) . '/apachesolr.module';
-    require_once dirname(dirname(realpath(__FILE__))) . '/apachesolr.interface.inc';
-    require_once dirname(dirname(realpath(__FILE__))) . '/Solr_Base_Query.php';
-    require_once dirname(dirname(realpath(__FILE__))) . '/Drupal_Apache_Solr_Service.php';
-    require_once dirname(dirname(realpath(__FILE__))) . '/tests/Dummy_Solr.php';
-  }
-
-  /**
-   * Helper function to simulate the auto loading and other non-needed functions
-   * that otherwise require a database
-   * @see apachesolr_drupal_query().
-   * @return SolrBaseQuery
-   */
-  private function _apachesolr_drupal_query($name, $params = array(), $solrsort = '', $base_path = '', $solr = NULL) {
-    if (empty($solr)) {
-      $solr = new DummySolr(NULL);
-    }
-    return new SolrBaseQuery($name, $solr, $params, $solrsort, $base_path);
-  }
-
-  private function _apachesolr_drupal_subquery($operator = 'OR') {
-    return new SolrFilterSubQuery($operator);
-  }
-
-  /**
-   * Test ordering of parsed filter positions.
-   *
-   * Regression test for http://drupal.org/node/891962
-   */
-  function testParseFilters() {
-    $fq = array('tid:3', 'sort_label:hello', 'tid:11', 'tid:1', 'tid:12', 'label:hello');
-    // Setup dummy Solr object.
-    $query = $this->_apachesolr_drupal_query("apachesolr_tests", array('q' => 'mykeys', 'fq' => $fq), 'sort_label asc', 'search/test');
-    // Check setSolrSort().
-    $this->assertEqual(array('solrsort' => 'sort_label asc'), $query->getSolrsortUrlQuery());
-    $query->setSolrsort('sort_name', 'desc');
-    $this->assertEqual(array('solrsort' => 'sort_name desc'), $query->getSolrsortUrlQuery());
-    $query->setSolrsort('score', 'desc');
-    $this->assertEqual(array(), $query->getSolrsortUrlQuery());
-
-    // We cannot set a sort if the sort was not made available.
-    $query->setSolrsort('geodist()', 'asc');
-    $this->assertNotEqual(array('solrsort' => 'geodist() asc'), $query->getSolrsortUrlQuery(), t('Sort was not applied as it was not available'));
-
-    // Set the sort after it was made available.
-    $query->setAvailableSort('geodist()', array('title' => 'Distance', 'default' => 'asc'));
-    $query->setSolrsort('geodist()', 'asc');
-
-    $this->assertEqual(array('solrsort' => 'geodist() asc'), $query->getSolrsortUrlQuery());
-
-    // Check escaping of the setSolrSort functinality
-    // Check getPath() functionality
-    $this->assertEqual('search/test/mykeys', $query->getPath());
-    $this->assertEqual('search/test/newkeys', $query->getPath('newkeys'));
-    // Check hasFilter functionality
-    $this->assertFalse($query->hasFilter('label', 'Jello'), "hasFilter('label', 'Jello') is FALSE");
-    $this->assertTrue($query->hasFilter('label', 'hello'), "hasFilter('label', 'hello') is TRUE");
-    $this->assertTrue($query->hasFilter('label', 'hello', FALSE), "hasFilter('label', 'hello', FALSE) is TRUE");
-    $this->assertFalse($query->hasFilter('label', 'hello', TRUE), "hasFilter('label', 'hello', TRUE) is FALSE");
-    $filters = $query->getFilters();
-    $this->assertEqual(count($filters), 6, count($filters) . ' filters found, expected 6 filters');
-    // Check positions of filters
-    foreach ($fq as $idx => $filter) {
-      $this->assertEqual($filter, $query->makeFilterQuery($filters[$idx]));
-    }
-    // Check that the query string is re-assembled correctly
-    $this->assertEqual($fq, $query->getParam('fq'));
-    $this->assertEqual('mykeys', $query->getParam('q'));
-    $query->removeFilter('tid', '11');
-    $filters = $query->getFilters();
-    $this->assertEqual(count($filters), 5, count($filters) . ' filters found, expected 5 filters');
-    $this->assertEqual(array('tid:3', 'sort_label:hello', 'tid:1', 'tid:12', 'label:hello'), $query->getParam('fq'));
-    $query->removeFilter('tid');
-    $filters = $query->getFilters();
-    $this->assertEqual(count($filters), 2, count($filters) . ' filters found, expected 2 filters');
-    $this->assertEqual(array('sort_label:hello', 'label:hello'), $query->getParam('fq'));
-
-    $subquery = $this->_apachesolr_drupal_subquery();
-    $subquery->addFilter('access__all', 0);
-    $subquery->addFilter('hash', 'randomhash');
-    $query->addFilterSubQuery($subquery);
-    $this->assertEqual(count($query->getParam('fq')), 3, count($query->getParam('fq')) . ' fq params found, expected 3 after adding subquery');
-    $this->assertEqual(array('sort_label:hello', 'label:hello', '(access__all:0 OR hash:randomhash' . ')'), $query->getParam('fq'));
-  }
-
-  function testAddParams() {
-    $examples = array();
-    $examples['{!cache=false}inStock:true'] = array(
-      '#local' => 'cache=false',
-      '#exclude' => FALSE,
-      '#name' => 'inStock',
-      '#value' => 'true',
-    );
-    $examples['{!frange l=1 u=4 cache=false}sqrt(popularity)'] = array(
-      '#local' => 'frange l=1 u=4 cache=false',
-      '#exclude' => FALSE,
-      '#name' => NULL,
-      '#value' => 'sqrt(popularity)',
-    );
-    $examples['{!cache=false cost=5}inStock:true'] = array(
-      '#local' => 'cache=false cost=5',
-      '#exclude' => FALSE,
-      '#name' => 'inStock',
-      '#value' => 'true',
-    );
-    $examples['{!tag=impala}model:Impala'] = array(
-      '#local' => 'tag=impala',
-      '#exclude' => FALSE,
-      '#name' => 'model',
-      '#value' => 'Impala',
-    );
-    $examples['{!anything that appears to be local}'] = array(
-      '#local' => 'anything that appears to be local',
-      '#exclude' => FALSE,
-      '#name' => NULL,
-      '#value' => NULL,
-    );
-    $examples['bundle:(article OR page)'] = array(
-      '#local' => NULL,
-      '#exclude' => FALSE,
-      '#name' => 'bundle',
-      '#value' => '(article OR page)',
-    );
-    $examples['-bundle:(article OR page)'] = array(
-      '#local' => NULL,
-      '#exclude' => TRUE,
-      '#name' => 'bundle',
-      '#value' => '(article OR page)',
-    );
-    $examples['-{!anything that appears to be local}'] = array(
-      '#local' => 'anything that appears to be local',
-      '#exclude' => TRUE,
-      '#name' => NULL,
-      '#value' => NULL,
-    );
-    $examples['title:"double words"'] = array(
-      '#local' => NULL,
-      '#exclude' => FALSE,
-      '#name' => 'title',
-      '#value' => '"double words"',
-    );
-    $examples['field_date:[1970-12-31T23:59:59Z TO NOW]'] = array(
-      '#local' => NULL,
-      '#exclude' => FALSE,
-      '#name' => 'field_date',
-      '#value' => '[1970-12-31T23:59:59Z TO NOW]',
-    );
-
-    $query = $this->_apachesolr_drupal_query("apachesolr_tests");
-    foreach ($examples as $fq => $example) {
-      $name = (!empty($example['#name'])) ? $example['#name'] : '_QUERY_';
-      $value = (!empty($example['#value'])) ? $example['#value'] : '_VALUE_';
-      $filter = $name . ':' . $value;
-      // Check if filter is seen as a valid one
-      $message = t('Filter (@fq) is Valid', array('@fq' => $filter));
-      $this->assertTrue($query->validFilterValue($filter), $message);
-
-      $query->addParam('fq', $fq);
-      // Check if filter was added
-      $message = t('hasFilter(@name, @value) is True', array('@name' => $example['#name'], '@value' => $example['#value']));
-      $this->assertTrue($query->hasFilter($example['#name'], $example['#value'], $example['#exclude']), $message);
-      $filters = $query->getFilters();
-      $filter = reset($filters);
-      $message = t('The filter "@fq" was added with all the given properties', array('@fq' => $fq));
-      $this->assertTrue(!array_diff($example, $filter), $message);
-      $query->removeFilter($example['#name']);
-      $message = t('The filter "@fq" was correctly removed', array('@fq' => $fq));
-      $this->assertFalse($query->hasFilter($example['#name'], $example['#value'], $example['#exclude']), $message);
-      // Since we cannot remove filters without names yet we have to clear the whole fq array
-      $query->removeParam('fq');
-      // Check the ones without the name also
-    }
-
-    // Check for invalid combinations
-    $bad_examples['wrong name:"double words"'] = array(
-      '#local' => NULL,
-      '#exclude' => FALSE,
-      '#name' => 'wrong name',
-      '#value' => '"double words"',
-    );
-    $bad_examples['field_date:[1970-12-31 TO NOW]'] = array(
-      '#local' => NULL,
-      '#exclude' => FALSE,
-      '#name' => 'field_date',
-      '#value' => '[1970-12-31 TO NOW]',
-    );
-    $bad_examples['bundle:((article OR page)]'] = array(
-      '#local' => NULL,
-      '#exclude' => FALSE,
-      '#name' => 'bundle',
-      '#value' => '((article OR page)]',
-    );
-
-    foreach ($bad_examples as $fq => $example) {
-      $name = (!empty($example['#name'])) ? $example['#name'] : '_QUERY_';
-      $value = (!empty($example['#value'])) ? $example['#value'] : '_VALUE_';
-      $filter = $name . ':' . $value;
-      // Check if filter is seen as a valid one
-      $message = t('Filter (@fq) is not Valid', array('@fq' => $filter));
-      $this->assertFalse($query->validFilterValue($filter), $message);
-    }
-    // Check parameter normalization.
-    $query->addParam('spellcheck', TRUE);
-    $this->assertTrue($query->getParam('spellcheck') === 'true', "TRUE normalized to string 'true'");
-    $query->replaceParam('spellcheck', FALSE);
-    $this->assertTrue($query->getParam('spellcheck') === 'false', "FALSE normalized to string 'false'");
-    $query->addParam('fl', array(' x ', TRUE));
-    $this->assertTrue($query->getParam('fl') === array('x', 'true'), "Array of params all normalized");
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_base_subquery.test b/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_base_subquery.test
deleted file mode 100644
index b49800ccbbb953636778ae2684c3e0f8b76d70d8..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_base_subquery.test
+++ /dev/null
@@ -1,109 +0,0 @@
-<?php
-
-/**
- * @file
- *   Unit tests for subquery object methods.
- */
-class DrupalSolrFilterSubQueryTests extends DrupalUnitTestCase {
-
-  public static function getInfo() {
-    return array(
-      'name' => 'SolrFilterSubQuery Unit tests',
-      'description' => 'Unit Tests for subqueries.',
-      'group' => 'ApacheSolr',
-    );
-  }
-
-  function setUp() {
-    parent::setUp();
-    require_once dirname(dirname(realpath(__FILE__))) . '/apachesolr.module';
-    require_once dirname(dirname(realpath(__FILE__))) . '/apachesolr.interface.inc';
-    require_once dirname(dirname(realpath(__FILE__))) . '/Solr_Base_Query.php';
-    require_once dirname(dirname(realpath(__FILE__))) . '/Drupal_Apache_Solr_Service.php';
-    require_once dirname(dirname(realpath(__FILE__))) . '/tests/Dummy_Solr.php';
-  }
-
-  /**
-   * Helper function to simulate the auto loading and other non-needed functions
-   * that otherwise require a database
-   * @see apachesolr_drupal_query().
-   * @return SolrBaseQuery
-   */
-  private function _apachesolr_drupal_query($name, $params = array(), $solrsort = '', $base_path = '', $solr = NULL) {
-    if (empty($solr)) {
-      $solr = new DummySolr(NULL);
-    }
-    return new SolrBaseQuery($name, $solr, $params, $solrsort, $base_path);
-  }
-
-  private function _apachesolr_drupal_subquery($operator = 'OR') {
-    return new SolrFilterSubQuery($operator);
-  }
-
-  function testSubQueriesQuery() {
-    $query1 = $this->_apachesolr_drupal_query('DrupalTest');
-    $query1->addFilter('label', 'foo');
-
-    $query2 = $this->_apachesolr_drupal_subquery();
-    $query2->addFilter('label', 'bar');
-
-    $query3 = $this->_apachesolr_drupal_subquery();
-    $query3->addFilter('label', 'baz');
-
-    $query1->addFilterSubQuery($query2);
-    $params = $query1->getParam('fq');
-    $this->assertEqual($params[0], 'label:foo', t('First field should be label:foo'));
-    $this->assertEqual($params[1], '(label:bar)', t('Second field should be label:bar'));
-
-    $query1->removeFilterSubQuery($query2);
-    $params = $query1->getParam('fq');
-    $this->assertFalse(isset($params[1]), t('Second field should be empty'));
-
-    $query1->addFilterSubQuery($query2);
-    $query1->addFilterSubQuery($query2);
-    $query1->addFilterSubQuery($query2);
-    $params = $query1->getParam('fq');
-    $this->assertEqual($params[0], 'label:foo', t('First field should be label:foo'));
-    $this->assertEqual($params[1], '(label:bar)', t('Second field should be label:bar'));
-    $this->assertEqual(count($params), 2, t('Add bar several times; should only appear once.'));
-
-    // Empty out query1
-    $query1 = $this->_apachesolr_drupal_query('DrupalTest');
-    $query2 = $this->_apachesolr_drupal_subquery('DrupalTest');
-    $query2->operator = 'OR';
-    $query2->addFilter('label', 'bar');
-    $query2->addFilter('label', 'baz');
-    $query1->addFilterSubQuery($query2);
-    $params = $query1->getParam('fq');
-    $this->assertEqual($params[0], '(label:bar OR label:baz)', '(label:bar OR label:baz)');
-
-    // Empty out query1
-    $query1 = $this->_apachesolr_drupal_query('DrupalTest');
-    $query2 = $this->_apachesolr_drupal_subquery('DrupalTest');
-    $query2->operator = 'AND';
-    $query2->addFilter('label', 'bar');
-    $query2->addFilter('label', 'baz');
-    $query1->addFilterSubQuery($query2);
-    $params = $query1->getParam('fq');
-    $this->assertEqual($params[0], '(label:bar AND label:baz)', '(label:bar AND label:baz)');
-
-    // Test with multiple filters in first query
-    $query1 = $this->_apachesolr_drupal_query('DrupalTest');
-    $query1->addFilter('is_uid', '10');
-
-    $query2 = $this->_apachesolr_drupal_subquery();
-    $query2->addFilter('is_uid', '1');
-    $query2->addFilter('tid', '5');
-    $query1->addFilterSubQuery($query2);
-
-    $params = $query1->getParam('fq');
-    $this->assertEqual($params[0], 'is_uid:10', 'First field value is is_uid:10');
-    $this->assertEqual($params[1], '(is_uid:1 OR tid:5)', 'Second field value is (is_uid:1 OR tid:5)');
-
-    $query2->operator = 'AND';
-    $query1->addFilterSubQuery($query2);
-    $params = $query1->getParam('fq');
-    $this->assertEqual($params[0], 'is_uid:10', 'First field value is is_uid:10');
-    $this->assertEqual($params[1], '(is_uid:1 AND tid:5)', 'Second field value is (is_uid:1 AND tid:5)');
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_document.test b/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_document.test
deleted file mode 100644
index a5cd65c709e2e0ff96c81ee454477a17b0a6acf0..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_document.test
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-
-/**
- * @file
- *   Unit tests for document object methods.
- *
- *
- */
-class DrupalSolrDocumentTest extends DrupalUnitTestCase {
-  public static function getInfo() {
-    return array(
-      'name' => 'ApacheSolrDocument Unit tests',
-      'description' => 'Unit test of ApacheSolrDocument',
-      'group' => 'ApacheSolr',
-    );
-  }
-
-  protected function setUp() {
-    parent::setUp();
-    require_once dirname(dirname(realpath(__FILE__))) . '/apachesolr.module';
-    require_once dirname(dirname(realpath(__FILE__))) . '/Apache_Solr_Document.php';
-  }
-
-  function testSolrDocument() {
-    $document = new ApacheSolrDocument();
-
-    $document->addField('ss_testing', 'testingvalue');
-    $field_value = $document->getField('ss_testing');
-    $this->assertEqual($field_value['value'][0], 'testingvalue', t('The field was correctly added and verified'));
-    $document->clear();
-
-    $document->addField('ss_testing', 'testingvalue', 10);
-    $field_value = $document->getField('ss_testing');
-    $this->assertEqual($field_value['value'][0], 'testingvalue', t('The field and boost were correctly added and verified'));
-    $field_boost = $document->getFieldBoost('ss_testing');
-    $this->assertEqual($field_boost, 10, t('The field boost was correctly added and verified'));
-    $document->clear();
-
-    $document->setMultiValue('sm_testing', 'testingvalue1');
-    $document->setMultiValue('sm_testing', 'testingvalue2');
-    $field_value = $document->getField('sm_testing');
-    $this->assertTrue(in_array('testingvalue1', $field_value['value']), t('The multivalued field value was correctly added and verified'));
-    $this->assertTrue(in_array('testingvalue2', $field_value['value']), t('The second multivalued field value was correctly added and verified'));
-    $document->clear();
-
-    $document->setMultiValue('sm_testing', 'testingvalue1', 10);
-    $document->setMultiValue('sm_testing', 'testingvalue2', 20);
-    $field_value = $document->getField('sm_testing');
-    $this->assertTrue(in_array('testingvalue1', $field_value['value']), t('The multivalued field value and boost were correctly added and verified'));
-    $this->assertTrue(in_array('testingvalue2', $field_value['value']), t('The second multivalued field value and boost were correctly added and verified'));
-    $field_boost = $document->getFieldBoost('sm_testing');
-    $this->assertEqual($field_boost, 200, t('The field boost was correctly multiplied and retrieved'));
-
-    $document_field_names = $document->getFieldNames();
-    $this->assertTrue(in_array('sm_testing', $document_field_names), t('The field name was found in the document'));
-
-    $document_field_names = $document->getFieldValues();
-    $this->assertTrue(in_array('testingvalue1', $document_field_names[0]), t('The field value was found in the document'));
-
-    // Clear the complete document
-    $document->clear();
-
-    // Set and Get the document boost
-    $document->setBoost('10');
-    $document_boost = $document->getBoost();
-    $this->assertEqual($document_boost, 10, t('The document boost was correctly added and verified'));
-
-    $document->clear();
-    $document_boost = $document->getBoost();
-    $document_fields = $document->getFieldNames();
-    $document_field_boosts = $document->getFieldBoosts();
-    $this->assertFalse($document_boost, t('Document boost was successfully emptied'));
-    $this->assertFalse($document_fields, t('Document fields were successfully emptied'));
-    $this->assertFalse($document_field_boosts, t('Document field boosts were successfully emptied'));
-  }
-
-  function tearDown() {
-    parent::tearDown();
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_index_and_search.test b/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_index_and_search.test
deleted file mode 100644
index 222502c1835e0be6828b8f71bc0cc773c68d6bbb..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr/tests/solr_index_and_search.test
+++ /dev/null
@@ -1,354 +0,0 @@
-<?php
-
-abstract class AbstractDrupalSolrOnlineWebTestCase extends DrupalWebTestCase {
-
-  protected $solr;
-
-  protected $solr_available = FALSE; // workaround for drupal.org test bot
-
-  /**
-   * Implementation of setUp().
-   */
-  function setUp() {
-    // Install modules needed for this test. This could have been passed in as
-    // either a single array argument or a variable number of string arguments.
-    $modules = func_get_args();
-    if (isset($modules[0]) && is_array($modules[0])) {
-      $modules = $modules[0];
-    }
-    $modules[] = 'apachesolr';
-    $modules[] = 'apachesolr_search';
-    $modules[] = 'search';
-
-    parent::setUp($modules);
-  }
-
-  function setUpSolr() {
-    // Load the default server.
-    $env_id = apachesolr_default_environment();
-    $environment = apachesolr_environment_load($env_id);
-    $this->base_solr_url = $environment['url'];
-
-    // Because we are in a clean environment, this will always be the default
-    // http://localhost:8983/solr
-    $this->core_admin_url = "{$this->base_solr_url}/admin/cores";
-
-    // The core admin url will give a valid response if the
-    // Solr server is running locally.
-    if ($this->coreAdminAvailable()) {
-
-      // We will use a core named after the simpletest prefix.
-      $environment['url'] .= '/' . $this->databasePrefix;
-
-      $filesdir = file_directory_temp();
-      // Create our Solr core directory.
-      drupal_mkdir("{$filesdir}/solr", 0777, TRUE);
-      // Our temporary core is located here.
-      $instancedir = realpath($filesdir . "/solr");
-
-      // use the Solr version confs where appropriate.
-      $version = $this->getSolrVersion();
-      if (isset($version) && $version == 3) {
-        $conf_path = dirname(__FILE__) . '/../solr-conf/solr-3.x/*';
-      }
-      elseif (isset($version) && $version == 4) {
-        $conf_path = dirname(__FILE__) . '/../solr-conf/solr-4.x/*';
-      }
-      else {
-        $conf_path = dirname(__FILE__) . '/../solr-conf/solr-1.4/*';
-      }
-
-      $patterns = array(
-        $conf_path,
-        dirname(__FILE__) . '/conf/*',
-      );
-
-      // Copy all files in solr-conf dir to our temporary solr core.
-      drupal_mkdir("{$instancedir}/conf", 0777, TRUE);
-      foreach ($patterns as $pattern) {
-        foreach (glob($pattern) as $conf_file) {
-          copy($conf_file, "$instancedir/conf/" . basename($conf_file));
-        }
-      }
-
-      $contents = file_get_contents("$instancedir/conf/solrconfig.xml");
-
-      // Change the autoCommit time down to 1 second.
-      // @todo - use solrcore.properties file for 3.x.
-      file_put_contents("$instancedir/conf/solrconfig.xml", preg_replace('@<maxTime>[0-9]+</maxTime>@', '<maxTime>1000</maxTime>', $contents));
-
-      // hard chmod -R because it seems drupal dirs are too restricted in a
-      // testing environment
-      system("chmod -R 777 {$instancedir}");
-
-      $query['name'] = $this->databasePrefix;
-      $query['instanceDir'] = $instancedir;
-      $created = $this->coreAdmin('CREATE', $query);
-
-      if ($created && apachesolr_server_status($environment['url'])) {
-        $this->instancedir = $instancedir;
-        $this->solr_url = $environment['url'];
-        apachesolr_environment_save($environment);
-        $this->solr = apachesolr_get_solr($env_id);
-        $this->solr_available = TRUE;
-        $this->checkCoreStatus($this->databasePrefix);
-      }
-    }
-    // Workaround for drupal.org test bot.
-    // The tests succeed but further tests will not run because $this->solr_available is FALSE.
-    if (!$this->solr_available) {
-      $this->pass(t('Warning : The solr instance could not be found. Please enable a multicore one on http://localhost:8983/solr'));
-    }
-  }
-
-  protected function coreAdminAvailable() {
-    $url = url($this->core_admin_url, array('query' => array('action' => 'STATUS')));
-    $options['timeout'] = 2;
-    $result = drupal_http_request($url, $options);
-    return ($result->code == 200 && empty($result->error));
-  }
-
-  protected function getSolrVersion() {
-    $status = $this->coreAdmin('STATUS');
-    foreach($status['status'] as $core_id => $core) {
-      $solr = new DrupalApacheSolrService($this->base_solr_url . '/' . $core_id);
-      $version = $solr->getSolrVersion();
-      if (!empty($version)) {
-        return $version;
-      }
-      else {
-        return "1";
-      }
-    }
-  }
-
-  /**
-   * Helper function to invoke core admin actions.
-   */
-  protected function coreAdmin($action, $query = array()) {
-    $query['action'] = $action;
-    $query['wt'] = 'json';
-    $url = url($this->core_admin_url, array('query' => $query));
-    $options['timeout'] = 2;
-    $result = drupal_http_request($url, $options);
-
-    if ($result->code == 200) {
-      return json_decode($result->data, TRUE);
-    }
-    else {
-      return FALSE;
-    }
-  }
-
-  /**
-   * Helper function to verify that the expected core exists.
-   */
-  protected function checkCoreStatus($core_name) {
-    $response = $this->coreAdmin('STATUS', array('core' => $core_name));
-    $this->assertTrue(isset($response['status'][$core_name]['index']), 'Found Solr test core index status');
-  }
-
-  function tearDown() {
-    // Workaround for drupal.org test bot
-    if ($this->solr_available) {
-      // Unload the Solr core & delete all files
-      $query = array(
-        'core' => $this->databasePrefix,
-        'deleteIndex' => 'true',
-        'deleteDataDir' => 'true',
-        'deleteInstanceDir' => 'true'
-      );
-      // This is currently broken due to
-      // https://issues.apache.org/jira/browse/SOLR-3586
-      $this->coreAdmin('UNLOAD', $query);
-
-    }
-    parent::tearDown();
-  }
-}
-
-
-class DrupalSolrOnlineWebTestCase extends AbstractDrupalSolrOnlineWebTestCase {
-  /**
-   * Implementation of setUp().
-   */
-  function setUp() {
-    parent::setUp();
-    parent::setUpSolr();
-  }
-}
-
-
-class DrupalSolrMatchTestCase extends DrupalSolrOnlineWebTestCase {
-  public static function getInfo() {
-    return array(
-      'name' => 'Solr Index Data and test live queries',
-      'description' => 'Indexes content and queries it.',
-      'group' => 'ApacheSolr',
-    );
-  }
-
-  /**
-   * Test search indexing.
-   */
-  function testMatching() {
-    if ($this->solr_available) { // workaround for drupal.org test bot
-      $this->assertTrue($this->solr->ping(), "The Server could be Pinged");
-      $response = $this->solr->search("*:*", array());
-      $response = $response->response;
-      $this->assertEqual($response->numFound, 0, "There should not be any documents in the index");
-      $this->populateIndex(7);
-      $response = $this->solr->search("*:*", array());
-      $response = $response->response;
-      $this->assertEqual($response->numFound, 7, "There should be 7 documents in the index");
-      $this->_testQueries();
-    }
-  }
-
-  /**
-   * Set up a small index of items to test against.
-   */
-  protected function populateIndex($count) {
-
-    variable_set('minimum_word_size', 3);
-    for ($i = 1; $i <= $count; ++$i) {
-      $documents[] = $this->buildDocument(array('entity_id' => $i, 'content' => $this->getText($i)));
-    }
-    $this->solr->addDocuments($documents);
-    $this->solr->commit();
-  }
-
-  protected function buildDocument($values = array()) {
-    $document = new ApacheSolrDocument();
-    if (!isset($values['entity_type'])) {
-       $values['entity_type'] = 'fake.';
-    }
-    $document->id = apachesolr_document_id($values['entity_id'], $values['entity_type']);
-    foreach ($values as $key => $value) {
-      $document->$key = $value;
-    }
-    return $document;
-  }
-
-  /**
-   * Helper method for generating snippets of content.
-   *
-   * Generated items to test against:
-   *   1  ipsum
-   *   2  dolore sit
-   *   3  sit am ut
-   *   4  am ut enim am
-   *   5  ut enim am minim veniam
-   *   6  enim am minim veniam es cillum
-   *   7  am minim veniam es cillum dolore eu
-   */
-  function getText($n) {
-    // Start over after 7.
-    $n = $n % 7;
-    $words = explode(' ', "Ipsum dolore sit am. Ut enim am minim veniam. Es cillum dolore eu.");
-    return implode(' ', array_slice($words, $n - 1, $n));
-  }
-
-  /**
-   * Run predefine queries looking for indexed terms.
-   */
-  function _testQueries() {
-    /*
-      Note: OR queries that include short words in OR groups are only accepted
-      if the ORed terms are ANDed with at least one long word in the rest of the query.
-
-      e.g. enim dolore OR ut = enim (dolore OR ut) = (enim dolor) OR (enim ut) -> good
-      e.g. dolore OR ut = (dolore) OR (ut) -> bad
-
-      This is a design limitation to avoid full table scans.
-
-      APACHESOLR NOTE: These are not all in lucene syntax... @TODO.  Still works for text searching
-    */
-    $queries = array(
-      // Simple AND queries.
-      'ipsum' => array(1),
-      'enim' => array(4, 5, 6),
-      'xxxxx' => array(),
-      // Mixed queries.
-      '"minim am veniam es" OR "dolore sit"' => array(2),
-      '"minim am veniam es" OR "sit dolore"' => array(),
-      '"am minim veniam es" -eu' => array(6),
-      '"am minim veniam" -"cillum dolore"' => array(5, 6),
-    );
-    $broken = array(
-      'enim minim' => array(5, 6),
-      'enim xxxxx' => array(),
-      'dolore eu' => array(7),
-      'dolore xx' => array(),
-      'ut minim' => array(5),
-      'xx minim' => array(),
-      'enim veniam am minim ut' => array(5),
-      // Simple OR queries.
-      'dolore OR ipsum' => array(1, 2, 7),
-      'dolore OR xxxxx' => array(2, 7),
-      'dolore OR ipsum OR enim' => array(1, 2, 4, 5, 6, 7),
-      'minim dolore OR ipsum OR enim' => array(5, 6, 7),
-      'xxxxx dolore OR ipsum' => array(),
-      // Negative queries.
-      'dolore -sit' => array(7),
-      'dolore -eu' => array(2),
-      'dolore -xxxxx' => array(2, 7),
-      'dolore -xx' => array(2, 7),
-      // Phrase queries.
-      '"dolore sit"' => array(2),
-      '"sit dolore"' => array(),
-      '"am minim veniam es"' => array(6, 7),
-      '"minim am veniam es"' => array(),
-      'xxxxx "minim am veniam es" OR dolore' => array(),
-      'xx "minim am veniam es" OR dolore' => array(),
-      // Mixed queries.
-      '"am minim veniam es" OR dolore' => array(2, 6, 7),
-      '"am minim veniam" -"dolore cillum"' => array(5, 6, 7),
-    );
-    foreach ($queries as $query => $results) {
-      $response = $this->solr->search($query, array());
-      $this->_testQueryMatching($query, $response->response->docs, $results);
-      //@TODO: We might get to this later
-      #$this->_testQueryScores($query, $response->responses->docs, $results);
-    }
-  }
-
-  /**
-   * Test the matching abilities of the engine.
-   *
-   * Verify if a query produces the correct results.
-   */
-  function _testQueryMatching($query, $set, $results) {
-    // Get result IDs.
-    $found = array();
-    foreach ($set as $item) {
-      $found[] = $item->entity_id;
-    }
-    // Compare $results and $found.
-    sort($found);
-    sort($results);
-    $this->assertEqual($found, $results, strtr("Query matching '$query' found: @found expected: @expected", array('@found' => implode(',', $found), '@expected' => implode(',', $results))));
-  }
-
-  /**
-   * Test the scoring abilities of the engine.
-   *
-   * Verify if a query produces normalized, monotonous scores.
-   */
-  function _testQueryScores($query, $set, $results) {
-    // Get result scores.
-    $scores = array();
-    foreach ($set as $item) {
-      $scores[] = $item->score;
-    }
-
-    // Check order.
-    $sorted = $scores;
-    sort($sorted);
-    $this->assertEqual($scores, array_reverse($sorted), "Query order '$query'");
-
-    // Check range.
-    $this->assertEqual(!count($scores) || (min($scores) > 0.0 && max($scores) <= 1.0001), TRUE, "Query scoring '$query'");
-  }
-
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_file/LICENSE.txt b/profiles/wcm_base/modules/contrib/apachesolr_file/LICENSE.txt
deleted file mode 100644
index d159169d1050894d3ea3b98e1c965c4058208fe1..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_file/LICENSE.txt
+++ /dev/null
@@ -1,339 +0,0 @@
-                    GNU GENERAL PUBLIC LICENSE
-                       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-                            Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-                    GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-  2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections
-    1 and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable.  However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-  5. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded.  In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-                            NO WARRANTY
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-                     END OF TERMS AND CONDITIONS
-
-            How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License along
-    with this program; if not, write to the Free Software Foundation, Inc.,
-    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) year name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
-  `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
-  <signature of Ty Coon>, 1 April 1989
-  Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs.  If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.info b/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.info
deleted file mode 100644
index 3ab28457729090ee0cd9bf1b8af967f78fd99f80..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.info
+++ /dev/null
@@ -1,17 +0,0 @@
-name = Apache Solr File
-description = Index file enity types into Solr core.
-package = Search Toolkit
-core = 7.x
-files[] = apachesolr_file.install
-files[] = apachesolr_file.module
-dependencies[] = "apachesolr_search"
-dependencies[] = "file_entity"
-configure = admin/config/search/apachesolr/settings
-
-
-; Information added by drupal.org packaging script on 2013-09-30
-version = "7.x-1.x-dev"
-core = "7.x"
-project = "apachesolr_file"
-datestamp = "1380554042"
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.install b/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.install
deleted file mode 100644
index be99b2fcec3b9e28daf0b43dcbf05992d186205c..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.install
+++ /dev/null
@@ -1,93 +0,0 @@
-<?php
-
-/**
- * @file
- * Enter file description here
- */
-
-/**
- * Implements hook_schema().
- */
-function apachesolr_file_schema() {
-  $schema['apachesolr_index_entities_file'] = array(
-    'description' => 'Stores a record of when a file property changed to determine if it needs indexing by Solr.',
-    'fields' => array(
-      'entity_type' => array(
-        'description' => t('The type of entity.'),
-        'type' => 'varchar',
-        'length' => 128,
-        'not null' => TRUE,
-      ),
-      'entity_id' => array(
-        'description' => t('The primary identifier for an entity.'),
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-      ),
-      'bundle' => array(
-        'description' => t('The bundle to which this entity belongs.'),
-        'type' => 'varchar',
-        'length' => 128,
-        'not null' => TRUE,
-      ),
-      'status' => array(
-        'description' => t('Boolean indicating whether the entity is visible to non-administrators (eg, published for nodes).'),
-        'type' => 'int',
-        'not null' => TRUE,
-        'default' => 1,
-      ),
-      'changed' => array(
-        'description' => t('The Unix timestamp when an entity was changed.'),
-        'type' => 'int',
-        'not null' => TRUE,
-        'default' => 0,
-      ),
-    ),
-    'indexes' => array(
-      'changed' => array('bundle', 'changed', 'status'),
-    ),
-    'primary key' => array('entity_id'),
-  );
-
-  return $schema;
-}
-
-/**
- * Implements hook_enable().
- */
-function apachesolr_file_enable() {
-  // Make sure the default core search page is installed.
-  $search_page = apachesolr_search_page_load('file_search');
-  if (empty($search_page)) {
-    // Add Default search page (core search)
-    // This is a duplication from update_7004 but it is intended
-    // so future changes are possible without breaking the update
-    $settings = array(
-      'fq' => array('entity_type:file'),
-      'apachesolr_search_custom_enable' => TRUE,
-      'apachesolr_search_search_type' => 'custom',
-      'apachesolr_search_per_page' => 10,
-      'apachesolr_search_browse' => 'browse',
-      'apachesolr_search_spellcheck' => TRUE,
-      'apachesolr_search_search_box' => TRUE,
-    );
-    $settings = serialize($settings);
-
-    $fields = array(
-      'page_id' => 'file_search',
-      'label' => 'File Search',
-      'description' => 'File Search',
-      'search_path' => 'search/file_entity',
-      'env_id' => 'solr',
-      'page_title' => 'File',
-      'settings' => $settings,
-    );
-    db_insert('apachesolr_search_page')->fields($fields)->execute();
-  }
-
-
-  $active = variable_get('search_active_modules', array('node', 'file'));
-  $active[] = 'apachesolr_search';
-  variable_set('search_active_modules', array_unique($active));
-}
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.module b/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.module
deleted file mode 100644
index 631a930261913a9d5a5191f9f4aa98374ab7d5c3..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_file/apachesolr_file.module
+++ /dev/null
@@ -1,134 +0,0 @@
-<?php
-function apachesolr_file_apachesolr_entity_info_alter(&$entity_info) {
-  $entity_info['file']['indexable'] = TRUE;
-  $entity_info['file']['status callback'][] = 'apachesolr_file_status_callback';
-  $entity_info['file']['document callback'][] = 'apachesolr_file_index_solr_document';
-  $entity_info['file']['reindex callback'] = 'apachesolr_file_solr_reindex';
-  $entity_info['file']['index_table'] = 'apachesolr_index_entities_file';
-  $entity_info['file']['result callback'] = 'apachesolr_file_result';
-}
-
-/**
- * Implements hook_facetapi_facet_info().
- */
-function apachesolr_file_facetapi_facet_info($searcher_info) {
-  $facets = array();
-  $facets = array_merge($facets, apachesolr_entity_field_facets('file'));
-
-  return $facets;
-}
-
-/**
- * Allows for alterations to the searcher definitions.
- *
- * @param array &$searcher_info
- *   The return values of hook_facetapi_searcher_info() implementations.
- *
- * @see hook_facetapi_searcher_info()
- */
-function apachesolr_file_facetapi_searcher_info_alter(array &$searcher_info) {
-//  dpm($searcher_info);
-}
-
-function apachesolr_file_status_callback($entity_id, $entity_type) {
-  $file = file_load($entity_id);
-  return $file->status;
-}
-
-function apachesolr_file_index_solr_document(ApacheSolrDocument $document, $file, $entity_type) {
-  $document->is_uid = $file->uid;
-  $document->label = apachesolr_clean_text($file->filename);
-  $document->timestamp = apachesolr_date_iso($file->timestamp);
-  $document->ds_created = apachesolr_date_iso($file->timestamp);
-  $document->ds_changed = apachesolr_date_iso($file->timestamp);
-  $document->bundle = $file->type;
-  $document->bundle_name = $file->type;
-
-  $document->ts_uri = file_create_url($file->uri);
-
-  if (function_exists('drupal_get_path_alias')) {
-    $language = empty($file->language) ? NULL : $node->language;
-    $path = 'file/' . $file->fid;
-    $output = drupal_get_path_alias($path, $language);
-    if ($output && $output != $path) {
-      $document->path_alias = $output;
-    }
-  }
-
-  $env_id = apachesolr_default_environment();
-  $data = apachesolr_file_extract($env_id, $file);
-  $text = $data['extracted'];
-  //data['extracted_metadata']
-  $document->content = apachesolr_clean_text($text);
-
-  $documents = array();
-  $documents[] = $document;
-  return $documents;
-}
-
-function apachesolr_file_solr_reindex() {
- $indexer_table = apachesolr_get_indexer_table('file');
-  $transaction = db_transaction();
-  $env_id = apachesolr_default_environment();
-  try {
-    db_delete($indexer_table)
-      ->condition('entity_type', 'file')
-      ->execute();
-
-    if (apachesolr_get_index_bundles($env_id, 'file')) {
-      $select = db_select('file_managed', 'f');
-      $select->addExpression("'file'", 'entity_type');
-      $select->addField('f', 'fid', 'entity_id');
-      $select->addField('f', 'type', 'bundle');
-      $select->addField('f', 'status', 'status');
-      $select->addExpression(REQUEST_TIME, 'changed');
-      $select->condition('f.type', apachesolr_get_index_bundles($env_id, 'file'), 'IN');
-
-      $insert = db_insert($indexer_table)
-        ->fields(array('entity_id', 'bundle', 'status', 'entity_type', 'changed'))
-        ->from($select)
-        ->execute();
-    }
-  }
-  catch (Exception $e) {
-    $transaction->rollback();
-    drupal_set_message($e->getMessage(), 'error');
-    watchdog_exception('Apache Solr', $e);
-    return FALSE;
-  }
-
-  return TRUE;
-}
-
-function apachesolr_file_result($doc, &$result, &$extra) {
-  $result += array(
-    'type' => file_entity_type_get_name($doc->bundle),
-    'user' => theme('username', array('account' => $doc)),
-    'date' => isset($doc->created) ? $doc->created : 0,
-    'uid' => $doc->is_uid,
-  );
-}
-
-function apachesolr_file_extract($env_id, $file){
-  $env = apachesolr_environment_load($env_id);
-  $url = $env['url'] . '/update/extract/?extractOnly=true&wt=phps&extractFormat=text';
-  $filepath = drupal_realpath($file->uri);
-  // Construct a multi-part form-data POST body in $data.
-  $boundary = '--' . md5(uniqid(REQUEST_TIME));
-  $data = "--{$boundary}\r\n";
-  // The 'filename' used here becomes the property name in the response.
-  $data .= 'Content-Disposition: form-data; name="file"; filename="extracted"';
-  $data .= "\r\nContent-Type: application/octet-stream\r\n\r\n";
-  $data .= file_get_contents($filepath);
-  $data .= "\r\n--{$boundary}--\r\n";
-  $headers = array('Content-Type' => 'multipart/form-data; boundary=' . $boundary);
-  $options = array(
-    'method' => 'POST',
-    'headers' => $headers,
-    'data' => $data,
-  );
-
-  $request = drupal_http_request($url, $options);
-  $response = @unserialize($request->data);
-  return $response;
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/LICENSE.txt b/profiles/wcm_base/modules/contrib/apachesolr_views/LICENSE.txt
deleted file mode 100644
index d159169d1050894d3ea3b98e1c965c4058208fe1..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/LICENSE.txt
+++ /dev/null
@@ -1,339 +0,0 @@
-                    GNU GENERAL PUBLIC LICENSE
-                       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-                            Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-                    GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-  2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections
-    1 and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable.  However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-  5. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded.  In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-                            NO WARRANTY
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-                     END OF TERMS AND CONDITIONS
-
-            How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License along
-    with this program; if not, write to the Free Software Foundation, Inc.,
-    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) year name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
-  `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
-  <signature of Ty Coon>, 1 April 1989
-  Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs.  If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/README.txt b/profiles/wcm_base/modules/contrib/apachesolr_views/README.txt
deleted file mode 100644
index 1c3c8d36339be8e817d0c384922b77d0573cad83..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/README.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-CONTENTS OF THIS FILE
----------------------
-* Introduction
-* Requirements
-* Installation
-* Configuration
-* Troubleshooting
-* Advantages
-* Limitations
-* Maintainers
-
-INTRODUCTION
-------------
-
-This module provides a Views integration to the Apache Solr Search Integration
-project. It provides the views plugins and handlers needed to be able to
-create a view that fetches its results from Apachesolr index, without hitting
-the database.
-
-REQUIREMENTS
-------------
-
-Requires Apache Solr Search https://www.drupal.org/project/apachesolr
-Requires the use of an Apachesolr search index.
-
-INSTALLATION
-------------
-
-Download and install the module as normal.
-
-CONFIGURATION
--------------
-
-First make sure that Apachesolr module is configured correctly.
-If in the page "admin/config/search/apachesolr/settings" the Apachesolr
-environment is green and working, you can test this by using the site
-search page.
-Create a view from admin/structure/views/add and choose Apachesolr search. All
-of the fields indexed in solr should be available as views fields/filters/sort.
-Configure the view as needed and save it.
-
-TROUBLESHOOTING
----------------
-
-This module can diagnose problems with solr entity indexing:
-https://www.drupal.org/project/solr_devel
-Solr admin adds even more options, and is usually available at:
-http://[host]:8983/solr/admin/
-
-ADVANTAGES
-----------
-
-It is impossible to have duplicate results, unlike database views.
-
-Queries do not hit the database, and so they offload the database server.
-
-Views are very easy to customize, unlike search pages.
-
-LIMITATIONS
------------
-
-Exposed filters are only textfields. See [#1807028].
-
-Search facets are supported, but may not work reliably in combination with
-views filters.
-
-Search sort block is not supported. See [#443410].
-
-Multiple Apachesolr views on the same page do not work See [#1766254].
-
-Most entity field types are not sent to Solr, and will not be available as
-views handlers. Apachesolr views doesn't index the fields itself. This is
-done from other modules by implementing hook_apachesolr_field_mappings().
-
-MAINTAINERS
------------
-
-The 7.x branch is maintained by Miroslav Vladimirov Banov.
-https://www.drupal.org/user/1509224
-
-The 6.x branch is unmaintained.
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.info b/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.info
deleted file mode 100644
index 45284dd12c2e7d602b262472c86dae4e963d3e30..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.info
+++ /dev/null
@@ -1,27 +0,0 @@
-name = Apache Solr Views integration
-description = Provides Apache Solr integration with Views
-package = Search Toolkit
-core = "7.x"
-
-dependencies[] = apachesolr
-dependencies[] = apachesolr_search
-dependencies[] = views
-
-files[] = apachesolr_views_query.inc
-files[] = apachesolr_views_solr_base_query.inc
-files[] = handlers/apachesolr_views_handler_field.inc
-files[] = handlers/apachesolr_views_handler_field_date.inc
-files[] = handlers/apachesolr_views_snippet_handler_field.inc
-files[] = handlers/apachesolr_views_handler_sort.inc
-files[] = handlers/apachesolr_views_handler_filter.inc
-files[] = handlers/apachesolr_views_handler_filter_date.inc
-files[] = handlers/apachesolr_views_handler_filter_string.inc
-files[] = handlers/apachesolr_views_keyword_handler_filter.inc
-files[] = handlers/apachesolr_views_handler_argument.inc
-
-; Information added by Drupal.org packaging script on 2015-05-21
-version = "7.x-1.1-beta1"
-core = "7.x"
-project = "apachesolr_views"
-datestamp = "1432238584"
-
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.module b/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.module
deleted file mode 100644
index 38779f8691502c540aeb9af3405ab7363b9de335..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.module
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-/**
- * @file
- * Provides Views Implementation for the ApacheSolr Search Integration project
- * drupal.org/project/apachesolr
- */
-
-/**
- * Implements of hook_views_api().
- */
-function apachesolr_views_views_api() {
-  return array('api' => '3.0');
-}
-
-/**
- * Implements hook_views_query_alter().
- */
-function apachesolr_views_views_query_alter($view, $query) {
-  if (get_class($query) == 'apachesolr_views_query' && isset($view->fields['snippet'])) {
-    // Add additional parameters to get snippet.
-    // @see apachesolr_search_highlighting_params().
-    $params['hl'] = variable_get('apachesolr_hl_active', NULL);
-    $params['hl.fragsize'] = variable_get('apachesolr_hl_textsnippetlength', NULL);
-    $params['hl.simple.pre'] = variable_get('apachesolr_hl_pretag', NULL);
-    $params['hl.simple.post'] = variable_get('apachesolr_hl_posttag', NULL);
-    $params['hl.snippets'] = variable_get('apachesolr_hl_numsnippets', NULL);
-    // This should be an array of possible field names.
-    $params['hl.fl'] = variable_get('apachesolr_hl_fieldtohighlight', NULL);
-    $params = array_filter($params);
-
-    foreach ($params as $key => $value) {
-      $view->query->add_parameter($key, $value);
-    }
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.views.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.views.inc
deleted file mode 100644
index 7d1b0d57f4e1a2a44c13cbd86d72aaab632b31df..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views.views.inc
+++ /dev/null
@@ -1,142 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains Views hooks to register Views plugins and handlers.
- */
-
-/**
- * Implements of hook_views_plugins().
- */
-function apachesolr_views_views_plugins() {
-  return array(
-    'module' => 'apachesolr_views',
-    'query' => array(
-      'apachesolr_views_query' => array(
-        'title' => t('Apache Solr Query'),
-        'help' => t('Query that allows you to search with Apache Solr.'),
-        'handler' => 'apachesolr_views_query',
-        'parent' => 'views_query',
-      ),
-    ),
-  );
-
-}
-
-/**
- * Implements of hook_views_data().
- */
-function apachesolr_views_views_data() {
-  foreach (apachesolr_load_all_environments() as $env_id => $environment) {
-    $name = $environment['name'];
-    $apachesolr_base_table = 'apachesolr__' . $env_id;
-
-    $data[$apachesolr_base_table]['table']['group'] = t('Apache Solr');
-    $data[$apachesolr_base_table]['table']['base'] = array(
-      'query class' => 'apachesolr_views_query',
-      'title' => t('Apache Solr @name', array('@name' => $name)),
-      'help' => t('Searches the site with the Apache Solr search engine for @name', array('@name' => $name)),
-    );
-
-    // Get the list of the fields in index directly from Solr.
-    try {
-      $solr = apachesolr_get_solr($env_id);
-      $solr_fields = $solr->getFields(0);
-    }
-    catch (Exception $e) {
-      $solr_fields = array();
-      watchdog('Apache Solr Views', nl2br(check_plain($e->getMessage())), NULL, WATCHDOG_WARNING);
-    }
-
-    foreach ($solr_fields as $solr_field_name => $solr_field) {
-
-      // We do not allow to display 'sort_*' fields.
-      if (strpos($solr_field_name, 'sort_') === 0) {
-        continue;
-      }
-
-      $field_type = $solr_field->type;
-
-      $field_handler = 'apachesolr_views_handler_field';
-      $filter_handler = 'apachesolr_views_handler_filter';
-      switch ($field_type) {
-        case 'tdate':
-          $field_handler = 'apachesolr_views_handler_field_date';
-          $filter_handler = 'apachesolr_views_handler_filter_date';
-          break;
-
-        case 'text':
-        case 'string':
-          $filter_handler = 'apachesolr_views_handler_filter_string';
-          break;
-      }
-
-      $data[$apachesolr_base_table][$solr_field_name] = array(
-        'title' => $solr_field_name,
-        'help' => filter_xss(apachesolr_field_name_map($solr_field_name)),
-        'field' => array(
-          'handler' => $field_handler,
-          'click sortable' => TRUE,
-        ),
-        'filter' => array(
-          'handler' => $filter_handler,
-        ),
-        'sort' => array(
-          'handler' => 'apachesolr_views_handler_sort',
-        ),
-        'argument' => array(
-          'handler' => 'apachesolr_views_handler_argument',
-        ),
-      );
-
-      // Default sort field for label.
-      $sort_field_name = ($solr_field_name == 'label') ? 'sort_label' : '';
-      // Check if corresponding sort_ field exists. We remove prefix from field
-      // name (for example prefix "ss_" from "ss_name") and check if "sort_*"
-      // field is available.
-      if (array_key_exists('sort_' . substr($solr_field_name, 2), $solr_fields)) {
-        $sort_field_name = 'sort_' . substr($solr_field_name, 2);
-      }
-      if (!empty($sort_field_name)) {
-        // Use the sort field for click sorting.
-        $data[$apachesolr_base_table][$solr_field_name]['field']['click sort field'] = $sort_field_name;
-        // And use the sort field for explicit sorts.
-        $data[$apachesolr_base_table][$solr_field_name]['sort']['real field'] = $sort_field_name;
-      }
-    }
-
-    // Keyword field.
-    $data[$apachesolr_base_table]['keyword'] = array(
-      'title' => t('Search'),
-      'help' => t('Fulltext search'),
-      'filter' => array(
-        'handler' => 'apachesolr_views_keyword_handler_filter',
-      ),
-    );
-
-    // Snippet field.
-    $data[$apachesolr_base_table]['snippet'] = array(
-      'title' => t('Snippet'),
-      'help' => t('Search snippet'),
-      'field' => array(
-        'handler' => 'apachesolr_views_snippet_handler_field',
-        'click sortable' => TRUE,
-      ),
-    );
-
-    // Score field.
-    $data[$apachesolr_base_table]['score'] = array(
-      'title' => t('Score'),
-      'help' => t('Score'),
-      'field' => array(
-        'handler' => 'apachesolr_views_handler_field',
-        'click sortable' => TRUE,
-      ),
-      'sort' => array(
-        'handler' => 'apachesolr_views_handler_sort',
-      ),
-    );
-  }
-
-  return $data;
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views_query.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views_query.inc
deleted file mode 100644
index c10da5c088177f1654fb963c5961963ebe340410..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views_query.inc
+++ /dev/null
@@ -1,274 +0,0 @@
-<?php
-
-/**
- * @file
- * Views query plugin for Apache Solr Views.
- * Gets its data not from the database, but from a Solr server.
- */
-
-class apachesolr_views_query extends views_plugin_query {
-
-  /**
-   * Array of parameters for Solr query.
-   */
-  protected $params;
-  protected $query_params;
-  public $orderby = array();
-
-  /**
-   * Store results of apachesolr search.
-   */
-  protected $apachesolr_results;
-
-  /**
-   * Array of where conditions.
-   *
-   * Neede for grouppin of query conditions.
-   */
-  protected $where = array();
-
-  /**
-   * The default group operator.
-   *
-   * @var string
-   */
-  protected $group_operator = 'AND';
-
-  /**
-   * Builds what is necessary prior to executing the query.
-   */
-  public function build(&$view) {
-    $view->init_pager();
-
-    // Let the pager modify the query to add limits.
-    $this->pager->query();
-
-    // Add fields to the query so they will be shown in solr document.
-    $this->params['fl'] = array_keys($view->field);
-
-    $params = array();
-    if (isset($this->params['q'])) {
-      $params['q'] = $this->params['q'];
-    }
-
-    $params['rows'] = $this->pager->options['items_per_page'];
-    $params['start'] = $this->pager->current_page * $this->pager->options['items_per_page'];
-
-    // If we display all items without pager.
-    if ($params['rows'] == 0) {
-      $params['rows'] = 100000;
-    }
-
-    // Add fields.
-    $params['fl'] = array('id', 'entity_id');
-    if (isset($this->params['fl'])) {
-      $params['fl'] = array_merge($params['fl'], $this->params['fl']);
-    }
-    $params['fl'] = implode(',', $params['fl']);
-
-    $where = $this->where;
-    // Remove any empty conditions (exposed filters), they will cause an error.
-    foreach ($where as &$where_condition) {
-      foreach ($where_condition['conditions'] as $index => $condition) {
-        if ($condition['value'] == '') {
-          unset($where_condition['conditions'][$index]);
-        }
-      }
-    }
-    // Add conditions to filter parameter.
-    $conditions = array('conditions' => $where, 'type' => $this->group_operator);
-    $conditions_string = $this->build_where_string($conditions);
-
-    if (!empty($conditions_string)) {
-      $params['fq'] = $conditions_string;
-    }
-
-    // Set query type if it is present.
-    if (isset($this->params['defType'])) {
-      $params['defType'] = $this->params['defType'];
-    }
-
-    $this->query_params = $params;
-
-    // Export parameters for preview.
-    $view->build_info['query'] = var_export($params, TRUE);
-  }
-
-  /**
-   * Let modules modify the query just prior to finalizing it.
-   */
-  public function alter(&$view) {
-    foreach (module_implements('views_query_alter') as $module) {
-      $function = $module . '_views_query_alter';
-      $function($view, $this);
-    }
-  }
-
-  /**
-   * Executes the query.
-   *
-   * Assigns the resulting values to the view object.
-   * Values to set: $view->result, $view->total_rows, $view->execute_time.
-   */
-  public function execute(&$view) {
-    try {
-      $start = microtime(TRUE);
-
-      // Execute the search.
-
-
-      // Load search query.
-      // Get the Apache Solr "environment id".
-      if (strpos($view->base_table, 'apachesolr__') === 0) {
-        $env_id = substr($view->base_table, 12);
-      }
-      else {
-        $env_id = apachesolr_default_environment();
-      }
-
-      $solr = apachesolr_get_solr($env_id);
-      $context = array(
-        'search_type' => 'apachesolr_views_query',
-        'view_name' => $view->name,
-        'current_display' => $view->current_display,
-      );
-
-      $query = new ApachesolrViewsSolrBaseQuery('apachesolr', $solr, $this->query_params, '', current_path(), $context, $view);
-
-      // Add sorting. The setSolrsort method can't be used, because it doesn't support multiple sorting criteria.
-      $query->replaceParam('sort', $this->orderby);
-
-      $query->page = $this->pager->current_page;
-
-      // Boost parameters if apachesolr_search module is available.
-      apachesolr_search_add_boost_params($query);
-
-      // Execute search.
-      list($final_query, $response) = apachesolr_do_query($query);
-      apachesolr_has_searched($solr->getId(), TRUE);
-
-      // Store results.
-      $view->result = $response->response->docs;
-
-      // Store apachesolr cached response.
-      $this->apachesolr_response = $response;
-
-      // Store the results.
-      $this->pager->total_items = $view->total_rows = $this->apachesolr_response->response->numFound;
-      $this->pager->update_page_info();
-    }
-    catch (Exception $e) {
-      $view->result = array();
-      $view->total_rows = 0;
-      if (!empty($view->live_preview)) {
-        drupal_set_message($e->getMessage(), 'error');
-      }
-      else {
-        vpr('Exception in @human_name[@view_name]: @message', array('@human_name' => $view->human_name, '@view_name' => $view->name, '@message' => $e->getMessage()));
-      }
-    }
-
-    $view->execute_time = microtime(TRUE) - $start;
-  }
-
-  public function add_filter($type, $value, $exclude = FALSE) {
-    $exclude_string = ($exclude) ? '-' : '';
-    $this->params['filters'][] = $exclude_string . $type . ':(' . $value . ')';
-  }
-
-  public function add_filter_string($string) {
-    $this->params['q.alt'][] = $string;
-  }
-
-  public function add_sort($field, $order) {
-    $this->orderby[] = "$field $order";
-  }
-
-  public function add_parameter($key, $value) {
-    $this->params[$key] = $value;
-  }
-
-  public function add_field($table_alias, $field, $alias = '', $params = array()) {
-    // Make sure an alias is assigned.
-    $alias = $alias ? $alias : $field;
-    return $alias;
-  }
-
-  public function get_params() {
-    return $this->params;
-  }
-
-  /**
-   *  Build filter string from where array.
-   */
-  function build_where_string($where) {
-    if (!isset($where['conditions'])) {
-      return $where['field'] . ':(' . $where['value'] . ')';
-    }
-    else {
-      $condition_strings = array();
-      foreach ($where['conditions'] as $condition) {
-        $condition_strings[] = $this->build_where_string($condition);
-      }
-      $condition_strings = array_filter($condition_strings);
-      $condition_string = implode(' ' . $where['type'] . ' ', $condition_strings);
-      // Respect grouping by wrapping multiple conditions with parenthesis.
-      if (count($condition_strings) > 1) {
-        $condition_string = '(' . $condition_string . ')';
-      }
-      return $condition_string;
-    }
-  }
-
-  /**
-   * Support for groupping.
-   *
-   * @see views_plugin_query_default::add_where().
-   */
-  function add_where($group, $field, $value = NULL, $operator = NULL) {
-    // Ensure all variants of 0 are actually 0. Thus '', 0 and NULL are all
-    // the default group.
-    if (empty($group)) {
-      $group = 0;
-    }
-
-    // Check for a group.
-    if (!isset($this->where[$group])) {
-      $this->set_where_group('AND', $group);
-    }
-
-    $this->where[$group]['conditions'][] = array(
-      'field' => $field,
-      'value' => $value,
-      'operator' => $operator,
-    );
-  }
-
-  /**
-   * Support for groupping.
-   *
-   * @see views_plugin_query_default::set_where_group().
-   */
-  function set_where_group($type = 'AND', $group = NULL, $where = 'where') {
-    // Set an alias.
-    $groups = &$this->$where;
-
-    if (!isset($group)) {
-      $group = empty($groups) ? 1 : max(array_keys($groups)) + 1;
-    }
-
-    // Create an empty group
-    if (empty($groups[$group])) {
-      $groups[$group] = array('conditions' => array(), 'args' => array());
-    }
-
-    $groups[$group]['type'] = strtoupper($type);
-    return $group;
-  }
-
-  /**
-   * Implement ensure_table, do nothing.
-   */
-  function ensure_table($table, $relationship = NULL, $join = NULL) {
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views_solr_base_query.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views_solr_base_query.inc
deleted file mode 100644
index 4d6c96072af5b39b7f9fe5436939b3e6fa5aa2ad..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/apachesolr_views_solr_base_query.inc
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains custom SolrBaseQuery class for Apachesolr Views.
- */
-
-class ApachesolrViewsSolrBaseQuery extends SolrBaseQuery {
-
-  // The view related with this query object.
-  protected $view;
-
-  /**
-   * Constructs a new archiver instance.
-   *
-   * @param string $name
-   *   The search name, used for finding the correct blocks and other config.
-   *   Typically "apachesolr".
-   *
-   * @param string $solr
-   *   An instantiated DrupalApacheSolrService Object.
-   *   Can be instantiated from apachesolr_get_solr().
-   *
-   * @param array $params
-   *   Array of params to initialize the object (typically 'q' and 'fq').
-   *
-   * @param string $sortstring
-   *   Visible string telling solr how to sort - added to GET query params.
-   *
-   * @param string $base_path
-   *   The search base path (without the keywords) for this query,
-   *   without trailing slash.
-   *
-   * @param array $context
-   *   The context related with this query.
-   *
-   * @param object $view
-   *   The view object related with this query.
-   */
-  public function __construct($name, $solr, array $params = array(), $sortstring = '', $base_path = '', $context = array(), $view = NULL) {
-    parent::__construct($name, $solr, $params, $sortstring, $base_path, $context);
-    $this->view = $view;
-  }
-
-  /**
-   * Need to set proper base path for facets.
-   */
-  public function getPath($new_keywords = NULL) {
-    if (isset($new_keywords)) {
-      return $this->base_path . '/' . $new_keywords;
-    }
-    return $this->base_path;
-  }
-
-  /**
-   * Returns the view related with this query object.
-   */
-  public function getView() {
-    return $this->view;
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_argument.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_argument.inc
deleted file mode 100644
index c9f9a919b4061e36d00b340b0b4f711400f9f495..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_argument.inc
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-/**
- * @file
- * Argument handler for Apache Solr Views.
- */
-
-class apachesolr_views_handler_argument extends views_handler_argument {
-
-  /**
-   * Set up the query parameters for this argument.
-   */
-  public function query($group_by = FALSE) {
-    $this->query->add_where(0, $this->real_field, $this->argument);
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_field.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_field.inc
deleted file mode 100644
index e2fa480ade2fe1252e706befaa89ae24dca1d8f2..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_field.inc
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-/**
- * @file
- * Field handler for Apache Solr Views.
- */
-
-class apachesolr_views_handler_field extends views_handler_field {
-
-  /**
-   * Retrieve value from Solr result document.
-   */
-  public function get_value($values, $field = NULL) {
-    $alias = isset($field) ? $this->aliases[$field] : $this->field_alias;
-    if (isset($values->{$alias})) {
-      if (is_array($values->{$alias})) {
-        return decode_entities(implode(' ', $values->{$alias}));
-      }
-      else {
-        return decode_entities($values->{$alias});
-      }
-    }
-  }
-
-  /**
-   * Called to determine what to tell the clicksorter.
-   */
-  public function click_sort($order) {
-    $sort_field = (isset($this->definition['click sort field']) ? $this->definition['click sort field'] : $this->real_field);
-    $this->query->add_sort($sort_field, $order);
-  }
-
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_field_date.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_field_date.inc
deleted file mode 100644
index eac4c8193d9f06957c5697f6b19256a33096c2f4..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_field_date.inc
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/**
- * Field handler for Solr date fields.
- */
-class apachesolr_views_handler_field_date extends views_handler_field_date {
-
-  // Transform a Solr date field into a Unix timestamp
-  function get_value($values, $field = NULL) {
-    $value = parent::get_value($values, $field);
-    if (isset($value)) {
-      return strtotime($value);
-    }
-  }
-
-  /**
-   * Called to determine what to tell the clicksorter.
-   */
-  function click_sort($order) {
-    $sort_field = (isset($this->definition['click sort field']) ? $this->definition['click sort field'] : $this->real_field);
-    $this->query->add_sort($sort_field, $order);
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter.inc
deleted file mode 100644
index 1297b6a81b6a0b72919de5f7bf5f96a40c1e2f84..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter.inc
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-
-/**
- * @file
- * Main filter handler for Apache Solr Views.
- */
-
-class apachesolr_views_handler_filter extends views_handler_filter {
-
-  /**
-   * Add this filter to the query.
-   */
-  public function query() {
-    $this->trim_value();
-
-    if (!empty($this->value)) {
-      if (is_array($this->value)) {
-        $this->value = implode(' OR ', $this->value);
-      }
-      $this->query->add_where($this->options['group'], $this->real_field, $this->value, $this->operator);
-    }
-  }
-
-  /**
-   * Trim filter value.
-   */
-  public function trim_value() {
-    // Trim both array or scalar value.
-    if (is_array($this->value)) {
-      array_walk($this->value, 'apachesolr_views_handler_filter::trim');
-      $this->value = array_filter($this->value);
-    }
-    else {
-      $this->value = trim($this->value);
-    }
-  }
-
-  /**
-   * Trim value.
-   */
-  public function trim(&$value) {
-    $value = trim($value);
-  }
-
-  /**
-   * Provide a simple textfield for equality.
-   */
-  public function value_form(&$form, &$form_state) {
-    $form['value'] = array(
-      '#type' => 'textfield',
-      '#title' => t($this->definition['title']),
-      '#default_value' => $this->value,
-    );
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter_date.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter_date.inc
deleted file mode 100644
index 7b1f82f393cc8d38597ac66342cbb4a138c3b8f9..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter_date.inc
+++ /dev/null
@@ -1,157 +0,0 @@
-<?php
-
-/**
- * @file
- * Date filter handler for Apache Solr Views.
- */
-
-// Date format used by Solr.
-define('APACHESOLR_VIEWS_DATE_ISO8601', 'Y-m-d\TH:i:s\Z');
-
-class apachesolr_views_handler_filter_date extends views_handler_filter_date {
-
-  /**
-   * Filter for a date within certain range.
-   */
-  public function op_between($field) {
-    $min_value = $this->obtain_formated_date($this->value['min'], '00:00:00');
-    $max_value = $this->obtain_formated_date($this->value['max'], '23:59:59.999');
-    $value = "[$min_value TO $max_value]";
-    $operator = strtoupper($this->operator);
-    $this->query->add_where($this->options['group'], $this->real_field, $value, $operator);
-  }
-
-  /**
-   * Add the date filter to the query parameters.
-   */
-  public function op_simple($field) {
-    $value = intval(strtotime($this->value['value']));
-    $value = new DateObject($value);
-
-    // Probably there is a better way with dateobject, but no way to find how.
-    $has_time = strpos($this->value['value'], ':');
-
-    $value_format = $value->format(APACHESOLR_VIEWS_DATE_ISO8601);
-    switch ($this->operator) {
-      case '<':
-      case '<=':
-        if ($has_time) {
-          $value = '[* TO ' . $value_format . ']';
-        }
-        else {
-          $value = '[* TO ' . $value_format . '/DAY+1DAY]';
-        }
-        break;
-
-      case '>':
-      case '>=':
-        if ($has_time) {
-          $value = '[' . $value_format . ' TO *]';
-        }
-        else {
-          $value = '[' . $value_format . '/DAY TO *]';
-        }
-        break;
-
-      case '!=':
-        if ($has_time) {
-          $value = '[* TO ' . $value_format . '-1SECOND] OR [' . $value_format . '+1SECOND TO *]';
-        }
-        else {
-          $value = '[* TO ' . $value_format . '/DAY-1DAY] OR [' . $value_format . '/DAY+1DAY TO *]';
-        }
-        break;
-
-      case '=':
-      default:
-        if ($has_time) {
-          $value = '[' . $value_format . ' TO ' . $value_format . ']';
-        }
-        else {
-          $value = '[' . $value_format . '/DAY TO ' . $value_format . '/DAY+1DAY]';
-        }
-        break;
-    }
-    $this->query->add_where($this->options['group'], $this->real_field, $value, $this->operator);
-  }
-
-  /**
-   * Add a type selector to the value form.
-   */
-  public function value_form(&$form, &$form_state) {
-    parent::value_form($form, $form_state);
-    // Remove offset functionality.
-    unset($form['value']['type']);
-
-    // Add class to identify in jquery input fields and add jquery.ui.datepicker
-    if (isset($form['value']['min'])) {
-      $form['value']['max']['#attributes']['class'][] = 'views_input_date';
-      $form['value']['min']['#attributes']['class'][] = 'views_input_date';
-    }
-    else {
-      $form['value']['value']['#attributes']['class'][] = 'views_input_date';
-    }
-  }
-
-  /**
-   * Override to allow ranges without end-date, assume * if not present.
-   */
-  public function accept_exposed_input($input) {
-    if (empty($this->options['exposed'])) {
-      return TRUE;
-    }
-
-    // Store this because it will get overwritten.
-    $type = $this->value['type'];
-    $rc = parent::accept_exposed_input($input);
-
-    $operators = $this->operators();
-    if (!empty($this->options['expose']['use_operator']) && !empty($this->options['expose']['operator_id'])) {
-      $operator = $input[$this->options['expose']['operator_id']];
-    }
-    else {
-      $operator = $this->operator;
-    }
-
-    if ($operators[$operator]['values'] != 1) {
-      // This is the line overridden.
-      if ($this->value['min'] == '' && $this->value['max'] == '') {
-        return FALSE;
-      }
-      else {
-        return TRUE;
-      }
-    }
-
-    // Restore what got overwritten by the parent.
-    $this->value['type'] = $type;
-    return $rc;
-  }
-
-  /**
-   * Obtains a formated data for SOLR.
-   *
-   * @param string $date_str
-   *   Date in string format.
-   * @param string $round_string
-   *   String to add if no time is present.
-   *
-   * @return string
-   *   The date formated for SOLR.
-   */
-  public function obtain_formated_date($date_str, $round_string = '00:00:00') {
-    // Guess if we time part to the date and if not, add the round string.
-    if ($date_str != '' && !strpos($date_str, ':')) {
-      $date_str .= ' ' . $round_string;
-    }
-    $time = intval(strtotime($date_str));
-    if ($time != 0) {
-      $date = new DateObject($time);
-      $date_formatted = $date->format(APACHESOLR_VIEWS_DATE_ISO8601);
-    }
-    else {
-      $date_formatted = '*';
-    }
-    return $date_formatted;
-  }
-}
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter_string.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter_string.inc
deleted file mode 100644
index 69ab64944ec4da5cfa99b92311e6803427d1e007..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_filter_string.inc
+++ /dev/null
@@ -1,90 +0,0 @@
-<?php
-
-/**
- * @file
- * Sring filter handler for Apache Solr Views.
- */
-
-class apachesolr_views_handler_filter_string extends views_handler_filter_string {
-
-  /**
-   * Override the operators provided from the parent class.
-   */
-  public function operators() {
-    $operators = parent::operators();
-    foreach (array('shorterthan', 'longerthan', 'regular_expression',
-        'contains', 'ends', 'not_ends') as $key) {
-      if (isset($operators[$key])) {
-        unset($operators[$key]);
-      }
-    }
-    return $operators;
-  }
-
-  /**
-   * Operator for equality.
-   */
-  public function op_equal($field) {
-    if ($this->operator == '!=') {
-      $this->real_field = '-' . $this->real_field;
-    }
-    $this->query->add_where($this->options['group'], $this->real_field, $this->value);
-  }
-
-  /**
-   * Contains any word.
-   */
-  public function op_word($field) {
-    $where_operator = $this->operator == 'word' ? ' OR ' : ' AND ';
-    $where = array();
-
-    // Don't filter on empty strings.
-    if (empty($this->value)) {
-      return;
-    }
-
-    preg_match_all('/ (-?)("[^"]+"|[^" ]+)/i', ' ' . $this->value, $matches, PREG_SET_ORDER);
-    foreach ($matches as $match) {
-      $phrase = FALSE;
-      // Strip off phrase quotes.
-      if ($match[2]{0} == '"') {
-        $match[2] = substr($match[2], 1, -1);
-        $phrase = TRUE;
-      }
-      $words = trim($match[2], ',?!();:-');
-      $words = $phrase ? array($words) : preg_split('/ /', $words, -1, PREG_SPLIT_NO_EMPTY);
-      foreach ($words as $word) {
-        $where[] = trim($word, ' ,!?') . '*';
-      }
-    }
-
-    if (!$where) {
-      return;
-    }
-
-    // Previously this was a call_user_func_array but that's unnecessary
-    // as views will unpack an array that is a single arg.
-    $this->query->add_where($this->options['group'], $this->real_field, implode($where_operator, $where));
-  }
-
-  /**
-   * Operator for string starting with a value.
-   */
-  public function op_starts($field) {
-    $this->query->add_where($this->options['group'], $this->real_field, $this->value . '*');
-  }
-
-  /**
-   * Operator for not string starting with a value.
-   */
-  public function op_not_starts($field) {
-    $this->query->add_where($this->options['group'], '-' . $this->real_field, $this->value . '*');
-  }
-
-  /**
-   * Does not contain.
-   */
-  public function op_not($field) {
-    $this->query->add_where($this->options['group'], '-' . $this->real_field, $this->value);
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_sort.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_sort.inc
deleted file mode 100644
index d3e70e80ed955fe3d0782fef11665209400bb30f..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_handler_sort.inc
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-/**
- * @file
- * Sort handler for Apache Solr Views.
- */
-
-class apachesolr_views_handler_sort extends views_handler_sort {
-
-  /**
-   * Places the sort into the search parameters.
-   */
-  public function query() {
-    // Find out why apachesolr module adds sort_* fields
-    // to index and use them if needed.
-    $order = strtolower($this->options['order']);
-    $this->query->add_sort($this->real_field, $order);
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_keyword_handler_filter.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_keyword_handler_filter.inc
deleted file mode 100644
index ab31312f4bfae5bae1b3040588c7f8a5d5ebc237..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_keyword_handler_filter.inc
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-/**
- * @file
- * Filter handler to do fulltext keyword search.
- */
-
-class apachesolr_views_keyword_handler_filter extends apachesolr_views_handler_filter {
-
-  /**
-   * Add this filter to the query.
-   */
-  public function query() {
-    if (!empty($this->value)) {
-      $this->query->add_parameter('q', $this->value);
-    }
-  }
-}
diff --git a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_snippet_handler_field.inc b/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_snippet_handler_field.inc
deleted file mode 100644
index f0511f0c149566dcf25c039021e07d45ef441120..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/contrib/apachesolr_views/handlers/apachesolr_views_snippet_handler_field.inc
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-
-/**
- * @file
- * Snippet field handler for Apache Solr Views.
- */
-
-class apachesolr_views_snippet_handler_field extends views_handler_field {
-
-  /**
-   * Retrieve value from Solr result document.
-   */
-  public function get_value($doc, $field = NULL) {
-    $response = $this->query->apachesolr_response;
-
-    // We default to getting snippets from the body content and comments.
-    $hl_fl = array('content', 'ts_comments');
-
-    $params = $this->query->get_params();
-    if (isset($params['hl.fl'])) {
-      $hl_fl = $params['hl.fl'];
-    }
-
-    // Start with an empty snippets array.
-    $snippets = array();
-
-    // Find the nicest available snippet.
-    foreach ($hl_fl as $hl_param) {
-      if (isset($response->highlighting->{$doc->id}->$hl_param)) {
-        // Merge arrays preserving keys.
-        foreach ($response->highlighting->{$doc->id}->$hl_param as $value) {
-          $snippets[$hl_param] = $value;
-        }
-      }
-    }
-    // If there's no snippet at this point, add the teaser.
-    if (!$snippets) {
-      if (isset($doc->teaser)) {
-        $snippets[] = truncate_utf8($doc->teaser, 256, TRUE);
-      }
-    }
-
-    $hook = 'apachesolr_search_snippets';
-    if (isset($doc->entity_type)) {
-      $hook .= '__' . $doc->entity_type;
-    }
-    if (!empty($doc->bundle)) {
-      $hook .= '__' . $doc->bundle;
-    }
-    return theme($hook, array('doc' => $doc, 'snippets' => $snippets));
-  }
-
-  /**
-   * Render the snippet field.
-   */
-  public function render($values) {
-    $value = $this->get_value($values);
-    return $this->sanitize_value($value, 'xss');
-  }
-}
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.apachesolr_environments.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.apachesolr_environments.inc
deleted file mode 100644
index 1f62de6644b5946f191a8698ba0757d2ec96f1dd..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.apachesolr_environments.inc
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-/**
- * @file
- * wcm_search.apachesolr_environments.inc
- */
-
-/**
- * Implements hook_apachesolr_environments().
- */
-function wcm_search_apachesolr_environments() {
-  $export = array();
-
-  $environment = new stdClass();
-  $environment->api_version = 1;
-  $environment->env_id = 'solr';
-  $environment->name = 'localhost server';
-  $environment->url = 'http://localhost:8983/solr';
-  $environment->service_class = '';
-  $environment->conf = array(
-    'apachesolr_direct_commit' => 0,
-    'apachesolr_read_only' => '0',
-    'apachesolr_soft_commit' => 0,
-  );
-  $environment->index_bundles = array(
-    'node' => array(
-      0 => 'article',
-      1 => 'basic_page',
-      2 => 'book_page',
-      3 => 'calendar_entry',
-      4 => 'faq',
-      5 => 'ocio_landing_page',
-      6 => 'web_form',
-    ),
-    'file' => array(
-      0 => 'document',
-    ),
-  );
-  $export['solr'] = $environment;
-
-  return $export;
-}
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.apachesolr_search_defaults.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.apachesolr_search_defaults.inc
deleted file mode 100644
index 956bf1b20c1a5dd4952412f44ce5251ff7d3e89f..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.apachesolr_search_defaults.inc
+++ /dev/null
@@ -1,74 +0,0 @@
-<?php
-/**
- * @file
- * wcm_search.apachesolr_search_defaults.inc
- */
-
-/**
- * Implements hook_apachesolr_search_default_searchers().
- */
-function wcm_search_apachesolr_search_default_searchers() {
-  $export = array();
-
-  $searcher = new stdClass();
-  $searcher->disabled = FALSE; /* Edit this to true to make a default searcher disabled initially */
-  $searcher->api_version = 3;
-  $searcher->page_id = 'core_search';
-  $searcher->label = 'Core Search';
-  $searcher->description = 'Core Search';
-  $searcher->search_path = 'search/defaultsearchdisabled';
-  $searcher->page_title = 'Site';
-  $searcher->env_id = 'solr';
-  $searcher->settings = array(
-    'fq' => array(),
-    'apachesolr_search_custom_enable' => 0,
-    'apachesolr_search_search_type' => 'custom',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_spellcheck' => 0,
-    'apachesolr_search_search_box' => 0,
-    'apachesolr_search_allow_user_input' => 0,
-    'apachesolr_search_browse' => 'browse',
-  );
-  $export['core_search'] = $searcher;
-
-  $searcher = new stdClass();
-  $searcher->disabled = FALSE; /* Edit this to true to make a default searcher disabled initially */
-  $searcher->api_version = 3;
-  $searcher->page_id = 'file_search';
-  $searcher->label = 'File Search';
-  $searcher->description = 'File Search';
-  $searcher->search_path = 'search/filesdefaultdisabled';
-  $searcher->page_title = 'Search results for: "%terms"';
-  $searcher->env_id = 'solr';
-  $searcher->settings = array(
-    'fq' => array(),
-    'apachesolr_search_custom_enable' => 0,
-    'apachesolr_search_search_type' => 'custom',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_spellcheck' => 0,
-    'apachesolr_search_search_box' => 0,
-    'apachesolr_search_allow_user_input' => 0,
-    'apachesolr_search_browse' => 'browse',
-  );
-  $export['file_search'] = $searcher;
-
-  $searcher = new stdClass();
-  $searcher->disabled = FALSE; /* Edit this to true to make a default searcher disabled initially */
-  $searcher->api_version = 3;
-  $searcher->page_id = 'taxonomy_search';
-  $searcher->label = 'Taxonomy Search';
-  $searcher->description = 'Search all items with given term';
-  $searcher->search_path = 'taxonomy/term/%';
-  $searcher->page_title = '%value';
-  $searcher->env_id = '';
-  $searcher->settings = array(
-    'apachesolr_search_search_type' => 'tid',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_browse' => 'results',
-    'apachesolr_search_spellcheck' => FALSE,
-    'apachesolr_search_search_box' => FALSE,
-  );
-  $export['taxonomy_search'] = $searcher;
-
-  return $export;
-}
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.content_menu_links.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.content_menu_links.inc
deleted file mode 100644
index c46577826cf6ef6360bc29745117060b1e6ea036..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.content_menu_links.inc
+++ /dev/null
@@ -1,81 +0,0 @@
-<?php
-/**
- * @file
- * wcm_search.features.content_menu_links.inc
- */
-
-/**
- * Implements hook_content_menu_links_defaults().
- */
-function wcm_search_content_menu_links_defaults() {
-  $menu_links = array();
-
-  // Exported menu link: management:admin/config/search/apachesolr
-  $menu_links['management:admin/config/search/apachesolr'] = array(
-    'menu_name' => 'management',
-    'link_path' => 'admin/config/search/apachesolr',
-    'router_path' => 'admin/config/search/apachesolr',
-    'link_title' => 'Apache Solr search',
-    'options' => array(
-      'attributes' => array(
-        'title' => 'Administer Apache Solr.',
-      ),
-    ),
-    'module' => 'system',
-    'hidden' => 0,
-    'external' => 0,
-    'has_children' => 0,
-    'expanded' => 0,
-    'weight' => -8,
-    'customized' => 0,
-    'parent_path' => 'admin/config/search',
-  );
-  // Exported menu link: management:admin/config/search/pantheon
-  $menu_links['management:admin/config/search/pantheon'] = array(
-    'menu_name' => 'management',
-    'link_path' => 'admin/config/search/pantheon',
-    'router_path' => 'admin/config/search/pantheon',
-    'link_title' => 'Pantheon Apache Solr',
-    'options' => array(
-      'attributes' => array(
-        'title' => 'Check communication with Pantheon\'s Apache Solr Service',
-      ),
-    ),
-    'module' => 'system',
-    'hidden' => 0,
-    'external' => 0,
-    'has_children' => 0,
-    'expanded' => 0,
-    'weight' => 0,
-    'customized' => 0,
-    'parent_path' => 'admin/config/search',
-  );
-  // Exported menu link: management:admin/reports/apachesolr
-  $menu_links['management:admin/reports/apachesolr'] = array(
-    'menu_name' => 'management',
-    'link_path' => 'admin/reports/apachesolr',
-    'router_path' => 'admin/reports/apachesolr',
-    'link_title' => 'Apache Solr search index',
-    'options' => array(
-      'attributes' => array(
-        'title' => 'Information about the contents of the index on the server',
-      ),
-    ),
-    'module' => 'system',
-    'hidden' => 0,
-    'external' => 0,
-    'has_children' => 1,
-    'expanded' => 0,
-    'weight' => 0,
-    'customized' => 0,
-    'parent_path' => 'admin/reports',
-  );
-  // Translatables
-  // Included for use with string extractors like potx.
-  t('Apache Solr search');
-  t('Apache Solr search index');
-  t('Pantheon Apache Solr');
-
-
-  return $menu_links;
-}
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.defaultconfig.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.defaultconfig.inc
deleted file mode 100644
index b7b4e3fa37fe2f5df79635acc09b39dbfedb65b5..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.defaultconfig.inc
+++ /dev/null
@@ -1,84 +0,0 @@
-<?php
-/**
- * @file
- * wcm_search.features.defaultconfig.inc
- */
-
-/**
- * Implements hook_defaultconfig_features().
- */
-function wcm_search_defaultconfig_features() {
-  return array(
-    'wcm_search' => array(
-      'apachesolr_search_default_searchers' => 'apachesolr_search_default_searchers',
-    ),
-  );
-}
-
-/**
- * Implements hook_defaultconfig_apachesolr_search_default_searchers().
- */
-function wcm_search_defaultconfig_apachesolr_search_default_searchers() {
-  $export = array();
-
-  $searcher = new stdClass();
-  $searcher->disabled = FALSE; /* Edit this to true to make a default searcher disabled initially */
-  $searcher->api_version = 3;
-  $searcher->page_id = 'core_search';
-  $searcher->label = 'Core Search';
-  $searcher->description = 'Core Search';
-  $searcher->search_path = 'search/site';
-  $searcher->page_title = 'Site';
-  $searcher->env_id = '';
-  $searcher->settings = array(
-    'apachesolr_search_search_type' => 'custom',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_browse' => 'browse',
-    'apachesolr_search_spellcheck' => TRUE,
-    'apachesolr_search_not_removable' => TRUE,
-    'apachesolr_search_search_box' => TRUE,
-  );
-  $export['core_search'] = $searcher;
-
-  $searcher = new stdClass();
-  $searcher->disabled = FALSE; /* Edit this to true to make a default searcher disabled initially */
-  $searcher->api_version = 3;
-  $searcher->page_id = 'file_search';
-  $searcher->label = 'File Search';
-  $searcher->description = 'File Search';
-  $searcher->search_path = 'search/file_entity';
-  $searcher->page_title = 'File';
-  $searcher->env_id = '';
-  $searcher->settings = array(
-    'fq' => array(
-      0 => 'entity_type:file',
-    ),
-    'apachesolr_search_custom_enable' => TRUE,
-    'apachesolr_search_search_type' => 'custom',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_browse' => 'browse',
-    'apachesolr_search_spellcheck' => TRUE,
-    'apachesolr_search_search_box' => TRUE,
-  );
-  $export['file_search'] = $searcher;
-
-  $searcher = new stdClass();
-  $searcher->disabled = FALSE; /* Edit this to true to make a default searcher disabled initially */
-  $searcher->api_version = 3;
-  $searcher->page_id = 'taxonomy_search';
-  $searcher->label = 'Taxonomy Search';
-  $searcher->description = 'Search all items with given term';
-  $searcher->search_path = 'taxonomy/term/%';
-  $searcher->page_title = '%value';
-  $searcher->env_id = '';
-  $searcher->settings = array(
-    'apachesolr_search_search_type' => 'tid',
-    'apachesolr_search_per_page' => 10,
-    'apachesolr_search_browse' => 'results',
-    'apachesolr_search_spellcheck' => FALSE,
-    'apachesolr_search_search_box' => FALSE,
-  );
-  $export['taxonomy_search'] = $searcher;
-
-  return $export;
-}
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.fe_block_settings.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.fe_block_settings.inc
deleted file mode 100644
index 98940ed0d327d28c7750d9b4b9ee63443139efb5..0000000000000000000000000000000000000000
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.fe_block_settings.inc
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-/**
- * @file
- * wcm_search.features.fe_block_settings.inc
- */
-
-/**
- * Implements hook_default_fe_block_settings().
- */
-function wcm_search_default_fe_block_settings() {
-  $export = array();
-
-  $export['version'] = '2.0';
-
-  $export['apachesolr_search-mlt-001'] = array(
-    'cache' => 4,
-    'custom' => 0,
-    'delta' => 'mlt-001',
-    'module' => 'apachesolr_search',
-    'node_types' => array(),
-    'pages' => '',
-    'roles' => array(),
-    'themes' => array(
-      'ocio_1' => array(
-        'region' => '',
-        'status' => 0,
-        'theme' => 'ocio_1',
-        'weight' => 0,
-      ),
-      'ocio_2' => array(
-        'region' => '',
-        'status' => 0,
-        'theme' => 'ocio_2',
-        'weight' => 0,
-      ),
-      'ocio_3' => array(
-        'region' => '',
-        'status' => 0,
-        'theme' => 'ocio_3',
-        'weight' => 0,
-      ),
-    ),
-    'title' => '',
-    'visibility' => 0,
-  );
-
-  $export['apachesolr_search-sort'] = array(
-    'cache' => -1,
-    'custom' => 0,
-    'delta' => 'sort',
-    'module' => 'apachesolr_search',
-    'node_types' => array(),
-    'pages' => '',
-    'roles' => array(),
-    'themes' => array(
-      'ocio_1' => array(
-        'region' => '',
-        'status' => 0,
-        'theme' => 'ocio_1',
-        'weight' => 0,
-      ),
-      'ocio_2' => array(
-        'region' => '',
-        'status' => 0,
-        'theme' => 'ocio_2',
-        'weight' => 0,
-      ),
-      'ocio_3' => array(
-        'region' => '',
-        'status' => 0,
-        'theme' => 'ocio_3',
-        'weight' => 0,
-      ),
-    ),
-    'title' => '',
-    'visibility' => 0,
-  );
-
-  return $export;
-}
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.features_overrides.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.features_overrides.inc
index 3b424127fe1f3672ce9c03c1548c38e12fab5ed1..3c87401872622681c9f0f746b91f737d4288ddd6 100644
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.features_overrides.inc
+++ b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.features_overrides.inc
@@ -11,60 +11,10 @@ function wcm_search_features_override_default_overrides() {
   // This code is only used for UI in features. Exported alters hooks do the magic.
   $overrides = array();
 
-  // Exported overrides for: apachesolr_environment
-  $overrides["apachesolr_environment.solr.index_bundles|node|5"] = 'ocio_landing_page';
-  $overrides["apachesolr_environment.solr.index_bundles|node|6"] = 'web_form';
-  $overrides["apachesolr_environment.solr.index_bundles|node|7"]["DELETED"] = TRUE;
-
-  // Exported overrides for: apachesolr_search_page
-  $overrides["apachesolr_search_page.core_search.search_path"] = 'search/defaultsearchdisabled';
-  $overrides["apachesolr_search_page.core_search.settings|apachesolr_search_allow_user_input"] = 0;
-  $overrides["apachesolr_search_page.core_search.settings|apachesolr_search_custom_enable"] = 0;
-  $overrides["apachesolr_search_page.core_search.settings|apachesolr_search_not_removable"]["DELETED"] = TRUE;
-  $overrides["apachesolr_search_page.core_search.settings|apachesolr_search_search_box"] = 0;
-  $overrides["apachesolr_search_page.core_search.settings|apachesolr_search_spellcheck"] = 0;
-  $overrides["apachesolr_search_page.core_search.settings|fq"] = array();
-  $overrides["apachesolr_search_page.file_search.page_title"] = 'Search results for: "%terms"';
-  $overrides["apachesolr_search_page.file_search.search_path"] = 'search/filesdefaultdisabled';
-  $overrides["apachesolr_search_page.file_search.settings|apachesolr_search_allow_user_input"] = 0;
-  $overrides["apachesolr_search_page.file_search.settings|apachesolr_search_custom_enable"] = 0;
-  $overrides["apachesolr_search_page.file_search.settings|apachesolr_search_search_box"] = 0;
-  $overrides["apachesolr_search_page.file_search.settings|apachesolr_search_spellcheck"] = 0;
-  $overrides["apachesolr_search_page.file_search.settings|fq|0"]["DELETED"] = TRUE;
-
   // Exported overrides for: search_api_index
   $overrides["search_api_index.database_node_index.options|data_alter_callbacks|search_api_alter_add_viewed_entity|status"] = 0;
   $overrides["search_api_index.database_node_index.options|fields|search_api_viewed"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.enabled"] = 1;
-  $overrides["search_api_index.node_index.options|data_alter_callbacks|search_api_alter_add_url|status"] = 0;
-  $overrides["search_api_index.node_index.options|data_alter_callbacks|search_api_alter_add_viewed_entity|status"] = 0;
-  $overrides["search_api_index.node_index.options|data_alter_callbacks|search_api_alter_node_status|status"] = 1;
-  $overrides["search_api_index.node_index.options|data_alter_callbacks|search_api_attachments_alter_settings"] = array(
-    'status' => 0,
-    'weight' => 0,
-    'settings' => array(
-      'excluded_extensions' => 'aif art avi bmp gif ico mov oga ogv png psd ra ram rgb flv',
-    ),
-  );
-  $overrides["search_api_index.node_index.options|fields|body:summary"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|fields|search_api_panelizer_title|boost"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|fields|search_api_url"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|fields|search_api_viewed"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|fields|type"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_case_ignore|settings|fields|body:summary"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_case_ignore|settings|fields|search_api_panelizer_title"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_case_ignore|settings|fields|search_api_viewed"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_case_ignore|status"] = 0;
-  $overrides["search_api_index.node_index.options|processors|search_api_html_filter|settings|fields|body:summary"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_html_filter|settings|fields|search_api_panelizer_title"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_html_filter|settings|fields|search_api_viewed"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_tokenizer|settings|fields|body:summary"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_tokenizer|settings|fields|search_api_panelizer_title"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_tokenizer|settings|fields|search_api_viewed"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_tokenizer|status"] = 0;
-  $overrides["search_api_index.node_index.options|processors|search_api_transliteration|settings|fields|body:summary"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.options|processors|search_api_transliteration|settings|fields|search_api_viewed"]["DELETED"] = TRUE;
-  $overrides["search_api_index.node_index.server"] = 'solr_server';
+  $overrides["search_api_index.node_index.name"] = 'Panopoly Node Index';
 
   // Exported overrides for: search_api_server
   $overrides["search_api_server.database_server.options|indexes|database_node_index|search_api_viewed"]["DELETED"] = TRUE;
@@ -75,48 +25,7 @@ function wcm_search_features_override_default_overrides() {
   $overrides["variable.search_active_modules.value|file_entity"] = 0;
   $overrides["variable.search_active_modules.value|node"] = 0;
   $overrides["variable.search_cron_limit.value"] = 200;
-
-  // Exported overrides for: views_view
-  $overrides["views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|breadcrumb"] = 'Search';
-  $overrides["views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|breadcrumb_enable"] = TRUE;
-  $overrides["views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|not"] = 0;
-  $overrides["views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|title"] = 'Search results for: "%1"';
-  $overrides["views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|title_enable"] = TRUE;
-  $overrides["views_view.panopoly_search.display|default|display_options|empty|area|content"] = '<ul class="tabs tabs--primary  links--inline">
-  <li><a class="active" href="/search">Content</a></li>
-  <li><a href="/search/files">Files</a></li>
-  </ul>
-  
-  Your search did not return any results.';
-  $overrides["views_view.panopoly_search.display|default|display_options|empty|area|empty"] = TRUE;
-  $overrides["views_view.panopoly_search.display|default|display_options|empty|area|format"] = 'filtered_html';
-  $overrides["views_view.panopoly_search.display|default|display_options|fields|body"]["DELETED"] = TRUE;
-  $overrides["views_view.panopoly_search.display|default|display_options|fields|field_featured_image"]["DELETED"] = TRUE;
-  $overrides["views_view.panopoly_search.display|default|display_options|fields|search_api_excerpt"] = array(
-    'id' => 'search_api_excerpt',
-    'table' => 'search_api_index_node_index',
-    'field' => 'search_api_excerpt',
-    'label' => '',
-    'element_label_colon' => FALSE,
-    'link_to_entity' => 0,
-  );
-  $overrides["views_view.panopoly_search.display|default|display_options|header"] = array(
-    'area' => array(
-      'id' => 'area',
-      'table' => 'views',
-      'field' => 'area',
-      'content' => '<ul class="tabs tabs--primary  links--inline">
-      <li><a class="active" href="/search/!1">Content</a></li>
-      <li><a href="/search/files/!1">Files</a></li>
-      </ul>',
-      'format' => 'filtered_html',
-      'tokenize' => TRUE,
-    ),
-  );
-  $overrides["views_view.panopoly_search.display|default|display_options|query|options|entity_access"] = 0;
-  $overrides["views_view.panopoly_search.display|default|display_options|query|options|search_api_bypass_access"] = 0;
-  $overrides["views_view.panopoly_search.display|default|display_options|title"] = 'Search';
-  $overrides["views_view.panopoly_search.display|page_1"] = unserialize('O:13:"views_display":7:{s:15:"display_options";a:4:{s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:4:"path";s:6:"search";s:4:"menu";a:5:{s:5:"title";s:7:"Content";s:6:"weight";s:1:"0";s:4:"name";s:9:"main-menu";s:7:"context";i:1;s:19:"context_only_inline";i:0;}s:11:"tab_options";a:4:{s:4:"type";s:3:"tab";s:5:"title";s:6:"Search";s:6:"weight";s:1:"0";s:4:"name";s:9:"main-menu";}}s:8:"db_table";s:13:"views_display";s:3:"vid";i:0;s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:0;}');
+  $overrides["variable.views_defaults.value|panopoly_search"] = TRUE;
 
  return $overrides;
 }
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.inc
index da6c21d4f81e3a34eabf816722eaa938a62905c2..dbe5227479f351eea70ae71d23c4ed68eed045b7 100644
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.inc
+++ b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.features.inc
@@ -8,12 +8,6 @@
  * Implements hook_ctools_plugin_api().
  */
 function wcm_search_ctools_plugin_api($module = NULL, $api = NULL) {
-  if ($module == "apachesolr" && $api == "apachesolr_environments") {
-    return array("version" => "1");
-  }
-  if ($module == "apachesolr_search" && $api == "apachesolr_search_defaults") {
-    return array("version" => "3");
-  }
   if ($module == "context" && $api == "context") {
     return array("version" => "3");
   }
@@ -29,41 +23,6 @@ function wcm_search_views_api($module = NULL, $api = NULL) {
   return array("api" => "3.0");
 }
 
-/**
- * Implements hook_apachesolr_environments_alter().
- */
-function wcm_search_apachesolr_environments_alter(&$data) {
-  if (isset($data['solr'])) {
-    $data['solr']->index_bundles['node'][5] = 'ocio_landing_page'; /* WAS: 'featured_slide' */
-    $data['solr']->index_bundles['node'][6] = 'web_form'; /* WAS: 'ocio_landing_page' */
-    unset($data['solr']->index_bundles['node'][7]);
-  }
-}
-
-/**
- * Implements hook_apachesolr_search_default_searchers_alter().
- */
-function wcm_search_apachesolr_search_default_searchers_alter(&$data) {
-  if (isset($data['core_search'])) {
-    $data['core_search']->search_path = 'search/defaultsearchdisabled'; /* WAS: 'search/site' */
-    $data['core_search']->settings['apachesolr_search_allow_user_input'] = 0; /* WAS: '' */
-    $data['core_search']->settings['apachesolr_search_custom_enable'] = 0; /* WAS: '' */
-    $data['core_search']->settings['apachesolr_search_search_box'] = 0; /* WAS: TRUE */
-    $data['core_search']->settings['apachesolr_search_spellcheck'] = 0; /* WAS: TRUE */
-    $data['core_search']->settings['fq'] = array(); /* WAS: '' */
-    unset($data['core_search']->settings['apachesolr_search_not_removable']);
-  }
-  if (isset($data['file_search'])) {
-    $data['file_search']->page_title = 'Search results for: "%terms"'; /* WAS: 'File' */
-    $data['file_search']->search_path = 'search/filesdefaultdisabled'; /* WAS: 'search/file_entity' */
-    $data['file_search']->settings['apachesolr_search_allow_user_input'] = 0; /* WAS: '' */
-    $data['file_search']->settings['apachesolr_search_custom_enable'] = 0; /* WAS: TRUE */
-    $data['file_search']->settings['apachesolr_search_search_box'] = 0; /* WAS: TRUE */
-    $data['file_search']->settings['apachesolr_search_spellcheck'] = 0; /* WAS: TRUE */
-    unset($data['file_search']->settings['fq'][0]);
-  }
-}
-
 /**
  * Implements hook_default_search_api_index_alter().
  */
@@ -73,36 +32,7 @@ function wcm_search_default_search_api_index_alter(&$data) {
     unset($data['database_node_index']->options['fields']['search_api_viewed']);
   }
   if (isset($data['node_index'])) {
-    $data['node_index']->enabled = 1; /* WAS: 0 */
-    $data['node_index']->options['data_alter_callbacks']['search_api_alter_add_url']['status'] = 0; /* WAS: 1 */
-    $data['node_index']->options['data_alter_callbacks']['search_api_alter_add_viewed_entity']['status'] = 0; /* WAS: 1 */
-    $data['node_index']->options['data_alter_callbacks']['search_api_alter_node_status']['status'] = 1; /* WAS: 0 */
-    $data['node_index']->options['data_alter_callbacks']['search_api_attachments_alter_settings'] = array(
-      'status' => 0,
-      'weight' => 0,
-      'settings' => array(
-        'excluded_extensions' => 'aif art avi bmp gif ico mov oga ogv png psd ra ram rgb flv',
-      ),
-    ); /* WAS: '' */
-    $data['node_index']->options['processors']['search_api_case_ignore']['status'] = 0; /* WAS: 1 */
-    $data['node_index']->options['processors']['search_api_tokenizer']['status'] = 0; /* WAS: 1 */
-    $data['node_index']->server = 'solr_server'; /* WAS: '' */
-    unset($data['node_index']->options['fields']['body:summary']);
-    unset($data['node_index']->options['fields']['search_api_panelizer_title']['boost']);
-    unset($data['node_index']->options['fields']['search_api_url']);
-    unset($data['node_index']->options['fields']['search_api_viewed']);
-    unset($data['node_index']->options['fields']['type']);
-    unset($data['node_index']->options['processors']['search_api_case_ignore']['settings']['fields']['body:summary']);
-    unset($data['node_index']->options['processors']['search_api_case_ignore']['settings']['fields']['search_api_panelizer_title']);
-    unset($data['node_index']->options['processors']['search_api_case_ignore']['settings']['fields']['search_api_viewed']);
-    unset($data['node_index']->options['processors']['search_api_html_filter']['settings']['fields']['body:summary']);
-    unset($data['node_index']->options['processors']['search_api_html_filter']['settings']['fields']['search_api_panelizer_title']);
-    unset($data['node_index']->options['processors']['search_api_html_filter']['settings']['fields']['search_api_viewed']);
-    unset($data['node_index']->options['processors']['search_api_tokenizer']['settings']['fields']['body:summary']);
-    unset($data['node_index']->options['processors']['search_api_tokenizer']['settings']['fields']['search_api_panelizer_title']);
-    unset($data['node_index']->options['processors']['search_api_tokenizer']['settings']['fields']['search_api_viewed']);
-    unset($data['node_index']->options['processors']['search_api_transliteration']['settings']['fields']['body:summary']);
-    unset($data['node_index']->options['processors']['search_api_transliteration']['settings']['fields']['search_api_viewed']);
+    $data['node_index']->name = 'Panopoly Node Index'; /* WAS: 'Solr Node Index' */
   }
 }
 
@@ -130,53 +60,8 @@ function wcm_search_strongarm_alter(&$data) {
   if (isset($data['search_cron_limit'])) {
     $data['search_cron_limit']->value = 200; /* WAS: 10 */
   }
-}
-
-/**
- * Implements hook_views_default_views_alter().
- */
-function wcm_search_views_default_views_alter(&$data) {
-  if (isset($data['panopoly_search'])) {
-    $data['panopoly_search']->display['default']->display_options['arguments']['search_api_views_fulltext']['breadcrumb'] = 'Search'; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['arguments']['search_api_views_fulltext']['breadcrumb_enable'] = TRUE; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['arguments']['search_api_views_fulltext']['not'] = 0; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['arguments']['search_api_views_fulltext']['title'] = 'Search results for: "%1"'; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['arguments']['search_api_views_fulltext']['title_enable'] = TRUE; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['empty']['area']['content'] = '<ul class="tabs tabs--primary  links--inline">
-    <li><a class="active" href="/search">Content</a></li>
-    <li><a href="/search/files">Files</a></li>
-    </ul>
-    
-    Your search did not return any results.'; /* WAS: 'Your search did not return any results.' */
-    $data['panopoly_search']->display['default']->display_options['empty']['area']['empty'] = TRUE; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['empty']['area']['format'] = 'filtered_html'; /* WAS: 'panopoly_html_text' */
-    $data['panopoly_search']->display['default']->display_options['fields']['search_api_excerpt'] = array(
-      'id' => 'search_api_excerpt',
-      'table' => 'search_api_index_node_index',
-      'field' => 'search_api_excerpt',
-      'label' => '',
-      'element_label_colon' => FALSE,
-      'link_to_entity' => 0,
-    ); /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['header'] = array(
-      'area' => array(
-        'id' => 'area',
-        'table' => 'views',
-        'field' => 'area',
-        'content' => '<ul class="tabs tabs--primary  links--inline">
-        <li><a class="active" href="/search/!1">Content</a></li>
-        <li><a href="/search/files/!1">Files</a></li>
-        </ul>',
-        'format' => 'filtered_html',
-        'tokenize' => TRUE,
-      ),
-    ); /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['query']['options']['entity_access'] = 0; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['query']['options']['search_api_bypass_access'] = 0; /* WAS: '' */
-    $data['panopoly_search']->display['default']->display_options['title'] = 'Search'; /* WAS: '' */
-    $data['panopoly_search']->display['page_1'] = unserialize('O:13:"views_display":7:{s:15:"display_options";a:4:{s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:4:"path";s:6:"search";s:4:"menu";a:5:{s:5:"title";s:7:"Content";s:6:"weight";s:1:"0";s:4:"name";s:9:"main-menu";s:7:"context";i:1;s:19:"context_only_inline";i:0;}s:11:"tab_options";a:4:{s:4:"type";s:3:"tab";s:5:"title";s:6:"Search";s:6:"weight";s:1:"0";s:4:"name";s:9:"main-menu";}}s:8:"db_table";s:13:"views_display";s:3:"vid";i:0;s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:0;}'); /* WAS: '' */
-    unset($data['panopoly_search']->display['default']->display_options['fields']['body']);
-    unset($data['panopoly_search']->display['default']->display_options['fields']['field_featured_image']);
+  if (isset($data['views_defaults'])) {
+    $data['views_defaults']->value['panopoly_search'] = TRUE; /* WAS: '' */
   }
 }
 
@@ -274,5 +159,115 @@ function wcm_search_default_search_api_index() {
     "enabled" : "1",
     "read_only" : "0"
   }');
+  $items['solr_node_index'] = entity_import('search_api_index', '{
+    "name" : "Solr Node Index",
+    "machine_name" : "solr_node_index",
+    "description" : null,
+    "server" : "solr_server",
+    "item_type" : "node",
+    "options" : {
+      "datasource" : { "bundles" : [
+          "basic_page",
+          "book_page",
+          "calendar_entry",
+          "faq",
+          "ocio_landing_page",
+          "article",
+          "web_form"
+        ]
+      },
+      "index_directly" : 1,
+      "cron_limit" : "50",
+      "fields" : {
+        "author" : { "type" : "integer", "entity_type" : "user" },
+        "body:summary" : { "type" : "text" },
+        "body:value" : { "type" : "text" },
+        "created" : { "type" : "date" },
+        "field_ocio_body:summary" : { "type" : "text" },
+        "field_ocio_body:value" : { "type" : "text" },
+        "nid" : { "type" : "integer" },
+        "search_api_access_node" : { "type" : "list\\u003Cstring\\u003E" },
+        "search_api_language" : { "type" : "string" },
+        "search_api_panelizer_content" : { "type" : "text" },
+        "search_api_panelizer_title" : { "type" : "text" },
+        "search_api_url" : { "type" : "uri" },
+        "status" : { "type" : "boolean" },
+        "title" : { "type" : "text", "boost" : "8.0" }
+      },
+      "data_alter_callbacks" : {
+        "search_api_alter_bundle_filter" : {
+          "status" : 0,
+          "weight" : "-10",
+          "settings" : { "default" : "1", "bundles" : [] }
+        },
+        "search_api_alter_node_status" : { "status" : 0, "weight" : "0", "settings" : [] },
+        "search_api_attachments_alter_settings" : {
+          "status" : 0,
+          "weight" : "0",
+          "settings" : { "excluded_extensions" : "aif art avi bmp gif ico mov oga ogv png psd ra ram rgb flv" }
+        },
+        "panelizer" : { "status" : 1, "weight" : "0", "settings" : [] },
+        "search_api_alter_node_access" : { "status" : 1, "weight" : "0", "settings" : [] },
+        "search_api_alter_add_hierarchy" : { "status" : 0, "weight" : "0", "settings" : { "fields" : [] } },
+        "search_api_alter_add_url" : { "status" : 1, "weight" : "0", "settings" : [] },
+        "search_api_alter_add_aggregation" : { "status" : 0, "weight" : "0", "settings" : [] },
+        "search_api_alter_add_viewed_entity" : { "status" : 0, "weight" : "0", "settings" : { "mode" : "search_index" } }
+      },
+      "processors" : {
+        "search_api_case_ignore" : {
+          "status" : 0,
+          "weight" : "0",
+          "settings" : { "fields" : { "title" : true } }
+        },
+        "search_api_html_filter" : {
+          "status" : 1,
+          "weight" : "10",
+          "settings" : {
+            "fields" : { "title" : true },
+            "title" : 0,
+            "alt" : 1,
+            "tags" : "h1 = 5\\r\\nh2 = 3\\r\\nh3 = 2\\r\\nstrong = 2\\r\\nb = 2\\r\\nem = 1.5\\r\\nu = 1.5"
+          }
+        },
+        "search_api_transliteration" : {
+          "status" : 0,
+          "weight" : "15",
+          "settings" : { "fields" : { "title" : true } }
+        },
+        "search_api_tokenizer" : {
+          "status" : 1,
+          "weight" : "20",
+          "settings" : {
+            "fields" : { "title" : true },
+            "spaces" : "[^[:alnum:]]",
+            "ignorable" : "[\\u0027]"
+          }
+        },
+        "search_api_stopwords" : {
+          "status" : 0,
+          "weight" : "30",
+          "settings" : {
+            "fields" : { "title" : true },
+            "file" : "",
+            "stopwords" : "but\\r\\ndid\\r\\nthe this that those\\r\\netc"
+          }
+        },
+        "search_api_highlighting" : {
+          "status" : 0,
+          "weight" : "35",
+          "settings" : {
+            "prefix" : "\\u003Cstrong\\u003E",
+            "suffix" : "\\u003C\\/strong\\u003E",
+            "excerpt" : 1,
+            "excerpt_length" : "256",
+            "exclude_fields" : [],
+            "highlight" : "always"
+          }
+        }
+      }
+    },
+    "enabled" : "1",
+    "read_only" : "0"
+  }');
   return $items;
 }
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.info b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.info
index 55c2b5256d1245843a8b18bfcc006f4ebd2650e8..f6a5833172d0fb94fd9badbb55793a35e541d6dc 100644
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.info
+++ b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.info
@@ -4,11 +4,6 @@ core = 7.x
 package = WCM Configuration
 version = 7.x-1.0
 project = wcm_search
-dependencies[] = apachesolr
-dependencies[] = apachesolr_access
-dependencies[] = apachesolr_file
-dependencies[] = apachesolr_search
-dependencies[] = apachesolr_views
 dependencies[] = ctools
 dependencies[] = panopoly_search
 dependencies[] = pantheon_apachesolr
@@ -17,103 +12,33 @@ dependencies[] = search_api
 dependencies[] = search_api_solr
 dependencies[] = strongarm
 dependencies[] = views
-features[apachesolr_environment][] = solr
-features[apachesolr_search_page][] = core_search
-features[apachesolr_search_page][] = file_search
-features[apachesolr_search_page][] = taxonomy_search
+dependencies[] = views_content
 features[context][] = search
-features[ctools][] = apachesolr:apachesolr_environments:1
-features[ctools][] = apachesolr_search:apachesolr_search_defaults:3
 features[ctools][] = context:context:3
 features[ctools][] = strongarm:strongarm:1
 features[ctools][] = views:views_default:3.0
 features[features_api][] = api:2
-features[features_override_items][] = apachesolr_environment.solr
-features[features_override_items][] = apachesolr_search_page.core_search
-features[features_override_items][] = apachesolr_search_page.file_search
 features[features_override_items][] = search_api_index.database_node_index
-features[features_override_items][] = search_api_index.node_index
 features[features_override_items][] = search_api_server.database_server
 features[features_override_items][] = search_api_server.solr_server
 features[features_override_items][] = variable.search_active_modules
+features[features_override_items][] = variable.search_api_facets_search_ids
 features[features_override_items][] = variable.search_cron_limit
-features[features_override_items][] = views_view.panopoly_search
-features[features_overrides][] = apachesolr_environment.solr.index_bundles|node|5
-features[features_overrides][] = apachesolr_environment.solr.index_bundles|node|6
-features[features_overrides][] = apachesolr_environment.solr.index_bundles|node|7
-features[features_overrides][] = apachesolr_search_page.core_search.search_path
-features[features_overrides][] = apachesolr_search_page.core_search.settings|apachesolr_search_allow_user_input
-features[features_overrides][] = apachesolr_search_page.core_search.settings|apachesolr_search_custom_enable
-features[features_overrides][] = apachesolr_search_page.core_search.settings|apachesolr_search_not_removable
-features[features_overrides][] = apachesolr_search_page.core_search.settings|apachesolr_search_search_box
-features[features_overrides][] = apachesolr_search_page.core_search.settings|apachesolr_search_spellcheck
-features[features_overrides][] = apachesolr_search_page.core_search.settings|fq
-features[features_overrides][] = apachesolr_search_page.file_search.page_title
-features[features_overrides][] = apachesolr_search_page.file_search.search_path
-features[features_overrides][] = apachesolr_search_page.file_search.settings|apachesolr_search_allow_user_input
-features[features_overrides][] = apachesolr_search_page.file_search.settings|apachesolr_search_custom_enable
-features[features_overrides][] = apachesolr_search_page.file_search.settings|apachesolr_search_search_box
-features[features_overrides][] = apachesolr_search_page.file_search.settings|apachesolr_search_spellcheck
-features[features_overrides][] = apachesolr_search_page.file_search.settings|fq|0
 features[features_overrides][] = search_api_index.database_node_index.options|data_alter_callbacks|search_api_alter_add_viewed_entity|status
 features[features_overrides][] = search_api_index.database_node_index.options|fields|search_api_viewed
-features[features_overrides][] = search_api_index.node_index.enabled
-features[features_overrides][] = search_api_index.node_index.options|data_alter_callbacks|search_api_alter_add_url|status
-features[features_overrides][] = search_api_index.node_index.options|data_alter_callbacks|search_api_alter_add_viewed_entity|status
-features[features_overrides][] = search_api_index.node_index.options|data_alter_callbacks|search_api_alter_node_status|status
-features[features_overrides][] = search_api_index.node_index.options|data_alter_callbacks|search_api_attachments_alter_settings
-features[features_overrides][] = search_api_index.node_index.options|fields|body:summary
-features[features_overrides][] = search_api_index.node_index.options|fields|search_api_panelizer_title|boost
-features[features_overrides][] = search_api_index.node_index.options|fields|search_api_url
-features[features_overrides][] = search_api_index.node_index.options|fields|search_api_viewed
-features[features_overrides][] = search_api_index.node_index.options|fields|type
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_case_ignore|settings|fields|body:summary
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_case_ignore|settings|fields|search_api_panelizer_title
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_case_ignore|settings|fields|search_api_viewed
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_case_ignore|status
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_html_filter|settings|fields|body:summary
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_html_filter|settings|fields|search_api_panelizer_title
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_html_filter|settings|fields|search_api_viewed
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_tokenizer|settings|fields|body:summary
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_tokenizer|settings|fields|search_api_panelizer_title
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_tokenizer|settings|fields|search_api_viewed
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_tokenizer|status
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_transliteration|settings|fields|body:summary
-features[features_overrides][] = search_api_index.node_index.options|processors|search_api_transliteration|settings|fields|search_api_viewed
-features[features_overrides][] = search_api_index.node_index.server
+features[features_overrides][] = search_api_index.node_index.name
 features[features_overrides][] = search_api_server.database_server.options|indexes|database_node_index|search_api_viewed
 features[features_overrides][] = search_api_server.solr_server.enabled
 features[features_overrides][] = variable.search_active_modules.value|apachesolr_search
 features[features_overrides][] = variable.search_active_modules.value|file_entity
 features[features_overrides][] = variable.search_active_modules.value|node
 features[features_overrides][] = variable.search_cron_limit.value
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|breadcrumb
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|breadcrumb_enable
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|not
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|title
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|arguments|search_api_views_fulltext|title_enable
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|empty|area|content
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|empty|area|empty
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|empty|area|format
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|fields|body
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|fields|field_featured_image
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|fields|search_api_excerpt
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|header
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|query|options|entity_access
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|query|options|search_api_bypass_access
-features[features_overrides][] = views_view.panopoly_search.display|default|display_options|title
-features[features_overrides][] = views_view.panopoly_search.display|page_1
+features[features_overrides][] = variable.views_defaults.value|panopoly_search
 features[search_api_index][] = solr_file_index
-features[variable][] = apachesolr_cron_limit
-features[variable][] = apachesolr_default_environment
-features[variable][] = apachesolr_failure
-features[variable][] = apachesolr_search_default_search_page
-features[variable][] = apachesolr_search_mlt_blocks
-features[variable][] = apachesolr_service_class
-features[variable][] = apachesolr_set_nodeapi_messages
-features[variable][] = apachesolr_watchdog_successes
+features[search_api_index][] = solr_node_index
 features[variable][] = search_default_module
 features[views_view][] = wcm_solr_file
+features[views_view][] = wcm_solr_node
 features_exclude[dependencies][context] = context
 features_exclude[dependencies][entity] = entity
 features_exclude[dependencies][wcm_search] = wcm_search
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.make b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.make
index dda9a9a5f491fab3523ac231355441808b3f0bd6..06d0315a8e8eb01a7b7a7589873d65a3af017b06 100644
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.make
+++ b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.make
@@ -6,14 +6,5 @@ core = 7.x
 
 ;modules
 
-projects[apachesolr][version] = 1.8
-projects[apachesolr][subdir] = contrib
-
-projects[apachesolr_file][version] = 1.x-dev
-projects[apachesolr_file][subdir] = contrib
-
-projects[apachesolr_views][version] = 1.1-beta1
-projects[apachesolr_views][subdir] = contrib
-
 projects[search_api_attachments][version] = 1.3
 projects[search_api_attachments][subdir] = contrib
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.module b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.module
index 6784b829794fdcb6e25d691e63d2a0574a791ee6..370d5e731816e390eb1b1b6e8dc6cd9b6a1a216e 100644
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.module
+++ b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.module
@@ -30,7 +30,7 @@ function wcm_search_solr_post_schema($posted, $env = '') {
 
   if (function_exists('pantheon_apachesolr_post_schema_exec')) {
 
-    $schema = drupal_get_path('module', 'apachesolr') . '/solr-conf/solr-3.x/schema.xml';
+    $schema = drupal_get_path('module', 'search_api_solr') . '/solr-conf/3.x/schema.xml';
     $post = pantheon_apachesolr_post_schema_exec($schema);
     $result = !empty($post);
 
@@ -107,3 +107,33 @@ function wcm_search_module_implements_alter(&$implementations, $hook) {
     $implementations['wcm_search'] = $group;
   }
 }
+
+/**
+ * Implements hook_views_pre_render().
+ *
+ * Adds tabs above search views to navigate between page and file search.
+ */
+function wcm_search_views_pre_render(&$view) {
+  if (in_array($view->name, array('wcm_solr_node', 'wcm_solr_file')) && $view->current_display == 'page_1') {
+
+    $filter = empty($view->args[0]) ? '' : '/' . $view->args[0];
+
+    $links = array(
+      0 => array('title' => t('Pages'), 'href' => '/search' . $filter),
+      1 => array('title' => t('Files'), 'href' => '/search/files' . $filter),
+    );
+
+    $active = $view->name == 'panopoly_search' ? 0 : 1;
+
+    $links[$active]['attributes']['class'][] = 'active';
+
+    $tabs = array(
+      '#theme' => 'links',
+      '#links' => $links,
+      '#type' => 'ul',
+      '#attributes' => array('class' => array('tabs', 'tabs--primary', 'links--inline')),
+    );
+
+    $view->attachment_before = render($tabs);
+  }
+}
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.strongarm.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.strongarm.inc
index 1e54578b10cb3d377c012f68a662a424e1d07d74..610817c2eadb9ab18b0af5b9ff271d973f0d44c4 100644
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.strongarm.inc
+++ b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.strongarm.inc
@@ -10,80 +10,6 @@
 function wcm_search_strongarm() {
   $export = array();
 
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_cron_limit';
-  $strongarm->value = '100';
-  $export['apachesolr_cron_limit'] = $strongarm;
-
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_default_environment';
-  $strongarm->value = 'solr';
-  $export['apachesolr_default_environment'] = $strongarm;
-
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_failure';
-  $strongarm->value = 'apachesolr:show_error';
-  $export['apachesolr_failure'] = $strongarm;
-
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_search_default_search_page';
-  $strongarm->value = 'core_search';
-  $export['apachesolr_search_default_search_page'] = $strongarm;
-
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_search_mlt_blocks';
-  $strongarm->value = array(
-    'mlt-001' => array(
-      'name' => 'More like this',
-      'num_results' => '5',
-      'mlt_fl' => array(
-        'label' => 'label',
-        'taxonomy_names' => 'taxonomy_names',
-      ),
-      'mlt_env_id' => 'solr',
-      'mlt_mintf' => '1',
-      'mlt_mindf' => '1',
-      'mlt_minwl' => '3',
-      'mlt_maxwl' => '15',
-      'mlt_maxqt' => '20',
-      'mlt_type_filters' => array(),
-      'mlt_custom_filters' => '',
-      'delta' => 'mlt-001',
-    ),
-  );
-  $export['apachesolr_search_mlt_blocks'] = $strongarm;
-
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_service_class';
-  $strongarm->value = 'PantheonApacheSolrService';
-  $export['apachesolr_service_class'] = $strongarm;
-
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_set_nodeapi_messages';
-  $strongarm->value = '1';
-  $export['apachesolr_set_nodeapi_messages'] = $strongarm;
-
-  $strongarm = new stdClass();
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
-  $strongarm->api_version = 1;
-  $strongarm->name = 'apachesolr_watchdog_successes';
-  $strongarm->value = 1;
-  $export['apachesolr_watchdog_successes'] = $strongarm;
-
   $strongarm = new stdClass();
   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
   $strongarm->api_version = 1;
diff --git a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.views_default.inc b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.views_default.inc
index 4cf29968dc6743eb2da7715bc32659abe3ef6f40..63e37b13ef48859024970ccc5a7c984eafafe90c 100644
--- a/profiles/wcm_base/modules/custom/wcm_search/wcm_search.views_default.inc
+++ b/profiles/wcm_base/modules/custom/wcm_search/wcm_search.views_default.inc
@@ -32,27 +32,12 @@ function wcm_search_views_default_views() {
   $handler->display->display_options['pager']['type'] = 'full';
   $handler->display->display_options['style_plugin'] = 'default';
   $handler->display->display_options['row_plugin'] = 'fields';
-  /* Header: Global: Text area */
-  $handler->display->display_options['header']['area']['id'] = 'area';
-  $handler->display->display_options['header']['area']['table'] = 'views';
-  $handler->display->display_options['header']['area']['field'] = 'area';
-  $handler->display->display_options['header']['area']['content'] = '<ul class="tabs tabs--primary  links--inline">
-<li><a href="/search/!1">Content</a></li>
-<li><a class="active"  href="/search/files/!1">Files</a></li>
-</ul>';
-  $handler->display->display_options['header']['area']['format'] = 'filtered_html';
-  $handler->display->display_options['header']['area']['tokenize'] = TRUE;
   /* No results behavior: Global: Text area */
   $handler->display->display_options['empty']['area']['id'] = 'area';
   $handler->display->display_options['empty']['area']['table'] = 'views';
   $handler->display->display_options['empty']['area']['field'] = 'area';
   $handler->display->display_options['empty']['area']['empty'] = TRUE;
-  $handler->display->display_options['empty']['area']['content'] = '<ul class="tabs tabs--primary  links--inline">
-<li><a href="/search">Content</a></li>
-<li><a class="active"  href="/search/files">Files</a></li>
-</ul>
-
-Your search did not return any results.';
+  $handler->display->display_options['empty']['area']['content'] = 'Your search did not return any results.';
   $handler->display->display_options['empty']['area']['format'] = 'filtered_html';
   /* Field: Indexed File: URL */
   $handler->display->display_options['fields']['url']['id'] = 'url';
@@ -90,9 +75,11 @@ Your search did not return any results.';
   $handler->display->display_options['arguments']['search_api_views_fulltext']['field'] = 'search_api_views_fulltext';
   $handler->display->display_options['arguments']['search_api_views_fulltext']['default_action'] = 'empty';
   $handler->display->display_options['arguments']['search_api_views_fulltext']['title_enable'] = TRUE;
-  $handler->display->display_options['arguments']['search_api_views_fulltext']['title'] = 'Search results for: "%1"';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['title'] = 'Search results for: <em>%1</em>';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['breadcrumb_enable'] = TRUE;
   $handler->display->display_options['arguments']['search_api_views_fulltext']['breadcrumb'] = 'Files';
   $handler->display->display_options['arguments']['search_api_views_fulltext']['default_argument_type'] = 'fixed';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['argument_skip_url'] = 0;
   $handler->display->display_options['arguments']['search_api_views_fulltext']['summary']['format'] = 'default_summary';
   $handler->display->display_options['arguments']['search_api_views_fulltext']['break_phrase'] = 0;
   $handler->display->display_options['arguments']['search_api_views_fulltext']['not'] = 0;
@@ -107,5 +94,124 @@ Your search did not return any results.';
   $handler->display->display_options['menu']['context_only_inline'] = 0;
   $export['wcm_solr_file'] = $view;
 
+  $view = new view();
+  $view->name = 'wcm_solr_node';
+  $view->description = '';
+  $view->tag = 'default';
+  $view->base_table = 'search_api_index_solr_node_index';
+  $view->human_name = 'WCM Solr Node Index';
+  $view->core = 7;
+  $view->api_version = '3.0';
+  $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
+
+  /* Display: Master */
+  $handler = $view->new_display('default', 'Master', 'default');
+  $handler->display->display_options['title'] = 'Search';
+  $handler->display->display_options['use_more_always'] = FALSE;
+  $handler->display->display_options['access']['type'] = 'perm';
+  $handler->display->display_options['access']['perm'] = 'search content';
+  $handler->display->display_options['cache']['type'] = 'none';
+  $handler->display->display_options['query']['type'] = 'views_query';
+  $handler->display->display_options['query']['options']['search_api_bypass_access'] = 0;
+  $handler->display->display_options['query']['options']['entity_access'] = 0;
+  $handler->display->display_options['exposed_form']['type'] = 'basic';
+  $handler->display->display_options['pager']['type'] = 'full';
+  $handler->display->display_options['pager']['options']['items_per_page'] = '15';
+  $handler->display->display_options['pager']['options']['offset'] = '0';
+  $handler->display->display_options['pager']['options']['id'] = '0';
+  $handler->display->display_options['style_plugin'] = 'default';
+  $handler->display->display_options['style_options']['row_class'] = 'clearfix';
+  $handler->display->display_options['row_plugin'] = 'fields';
+  /* No results behavior: Global: Text area */
+  $handler->display->display_options['empty']['area']['id'] = 'area';
+  $handler->display->display_options['empty']['area']['table'] = 'views';
+  $handler->display->display_options['empty']['area']['field'] = 'area';
+  $handler->display->display_options['empty']['area']['empty'] = TRUE;
+  $handler->display->display_options['empty']['area']['content'] = ' Your search did not return any results.';
+  $handler->display->display_options['empty']['area']['format'] = 'filtered_html';
+  /* Field: Title */
+  $handler->display->display_options['fields']['title']['id'] = 'title';
+  $handler->display->display_options['fields']['title']['table'] = 'search_api_index_solr_node_index';
+  $handler->display->display_options['fields']['title']['field'] = 'title';
+  $handler->display->display_options['fields']['title']['ui_name'] = 'Title';
+  $handler->display->display_options['fields']['title']['label'] = '';
+  $handler->display->display_options['fields']['title']['element_type'] = 'h3';
+  $handler->display->display_options['fields']['title']['element_label_colon'] = FALSE;
+  $handler->display->display_options['fields']['title']['link_to_entity'] = 1;
+  /* Field: Search: Excerpt */
+  $handler->display->display_options['fields']['search_api_excerpt']['id'] = 'search_api_excerpt';
+  $handler->display->display_options['fields']['search_api_excerpt']['table'] = 'search_api_index_solr_node_index';
+  $handler->display->display_options['fields']['search_api_excerpt']['field'] = 'search_api_excerpt';
+  $handler->display->display_options['fields']['search_api_excerpt']['label'] = '';
+  $handler->display->display_options['fields']['search_api_excerpt']['element_label_colon'] = FALSE;
+  $handler->display->display_options['fields']['search_api_excerpt']['link_to_entity'] = 0;
+  /* Sort criterion: Search: Relevance */
+  $handler->display->display_options['sorts']['search_api_relevance']['id'] = 'search_api_relevance';
+  $handler->display->display_options['sorts']['search_api_relevance']['table'] = 'search_api_index_solr_node_index';
+  $handler->display->display_options['sorts']['search_api_relevance']['field'] = 'search_api_relevance';
+  $handler->display->display_options['sorts']['search_api_relevance']['order'] = 'DESC';
+  /* Contextual filter: Search: Fulltext search */
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['id'] = 'search_api_views_fulltext';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['table'] = 'search_api_index_solr_node_index';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['field'] = 'search_api_views_fulltext';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['default_action'] = 'empty';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['title_enable'] = TRUE;
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['title'] = 'Search results for: <em>%1</em>';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['breadcrumb_enable'] = TRUE;
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['breadcrumb'] = 'Search';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['default_argument_type'] = 'raw';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['default_argument_options']['index'] = '2';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['argument_skip_url'] = 0;
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['summary']['format'] = 'default_summary';
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['break_phrase'] = 0;
+  $handler->display->display_options['arguments']['search_api_views_fulltext']['not'] = 0;
+  /* Filter criterion: Indexed Node: Status */
+  $handler->display->display_options['filters']['status_1']['id'] = 'status_1';
+  $handler->display->display_options['filters']['status_1']['table'] = 'search_api_index_solr_node_index';
+  $handler->display->display_options['filters']['status_1']['field'] = 'status';
+  $handler->display->display_options['filters']['status_1']['value'] = array(
+    1 => '1',
+  );
+
+  /* Display: Solr Search Results */
+  $handler = $view->new_display('panel_pane', 'Solr Search Results', 'search_solr_results');
+  $handler->display->display_options['defaults']['hide_admin_links'] = FALSE;
+  $handler->display->display_options['pane_title'] = 'Solr Search Results';
+  $handler->display->display_options['pane_category']['name'] = 'Search';
+  $handler->display->display_options['pane_category']['weight'] = '0';
+  $handler->display->display_options['allow']['use_pager'] = 0;
+  $handler->display->display_options['allow']['items_per_page'] = 'items_per_page';
+  $handler->display->display_options['allow']['offset'] = 0;
+  $handler->display->display_options['allow']['link_to_view'] = 0;
+  $handler->display->display_options['allow']['more_link'] = 0;
+  $handler->display->display_options['allow']['path_override'] = 0;
+  $handler->display->display_options['allow']['title_override'] = 'title_override';
+  $handler->display->display_options['allow']['exposed_form'] = 'exposed_form';
+  $handler->display->display_options['allow']['fields_override'] = 'fields_override';
+  $handler->display->display_options['argument_input'] = array(
+    'search_api_views_fulltext' => array(
+      'type' => 'context',
+      'context' => 'string.html_safe',
+      'context_optional' => 0,
+      'panel' => '0',
+      'fixed' => '',
+      'label' => 'Search: Fulltext search',
+    ),
+  );
+
+  /* Display: Page */
+  $handler = $view->new_display('page', 'Page', 'page_1');
+  $handler->display->display_options['path'] = 'search';
+  $handler->display->display_options['menu']['title'] = 'Content';
+  $handler->display->display_options['menu']['weight'] = '0';
+  $handler->display->display_options['menu']['name'] = 'main-menu';
+  $handler->display->display_options['menu']['context'] = 1;
+  $handler->display->display_options['menu']['context_only_inline'] = 0;
+  $handler->display->display_options['tab_options']['type'] = 'tab';
+  $handler->display->display_options['tab_options']['title'] = 'Search';
+  $handler->display->display_options['tab_options']['weight'] = '0';
+  $handler->display->display_options['tab_options']['name'] = 'main-menu';
+  $export['wcm_solr_node'] = $view;
+
   return $export;
 }
diff --git a/profiles/wcm_base/themes/wcm_omega/.bowerrc b/profiles/wcm_base/themes/wcm_omega/.bowerrc
new file mode 100644
index 0000000000000000000000000000000000000000..77f92b3539f898efe063f4817a8ca534fc1a1481
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/.bowerrc
@@ -0,0 +1,3 @@
+{
+  "directory" : "libraries"
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/.gitignore b/profiles/wcm_base/themes/wcm_omega/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..25fe9ec878e954f2329c12c919607a425224de64
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/.gitignore
@@ -0,0 +1,9 @@
+# Ignore the node modules folder (created by 'npm install').
+node_modules
+
+# We absolutely don't want to have the .sass-cache in git.
+.sass-cache
+
+# Gulp - each developer to make their own local copy of gulpfile.js due to varying proxy values
+gulpfile.js
+
diff --git a/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.reset.css b/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.reset.css
new file mode 100644
index 0000000000000000000000000000000000000000..b77dc0d6d802d0a867f2353d6d3ba36db4a69cb9
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.reset.css
@@ -0,0 +1 @@
+a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote::after,blockquote::before,q::after,q::before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.settings.css b/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.settings.css
new file mode 100644
index 0000000000000000000000000000000000000000..7c9217970ff51c59b5983f5d761e4d74f4d17e21
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.settings.css
@@ -0,0 +1 @@
+#edit-wcm-omega .swatch-panel{display:inline-block;line-height:24px}#edit-wcm-omega .swatch-panel .label{display:inline-block;min-width:80px}#edit-wcm-omega .swatch-panel .swatches{display:inline-block}#edit-wcm-omega .swatch-panel .swatch{display:inline-block;height:16px;width:16px;margin-right:2px;border:2px solid #000;margin-bottom:-6px}#edit-wcm-omega .swatch-panel .swatch.white{background-color:#fff;border-color:#ccc}#edit-wcm-omega .swatch-panel .swatch.lt-gray{background-color:#d4d4d4;border-color:#a1a1a1}#edit-wcm-omega .swatch-panel .swatch.md-gray{background-color:#666;border-color:#333}#edit-wcm-omega .swatch-panel .swatch.dk-gray{background-color:#474747;border-color:#141414}#edit-wcm-omega .swatch-panel .swatch.black{background-color:#000;border-color:#000}#edit-wcm-omega .swatch-panel .swatch.yellow{background-color:#dcaa38;border-color:#946f1a}#edit-wcm-omega .swatch-panel .swatch.green{background-color:#9aa41d;border-color:#494d0e}#edit-wcm-omega .swatch-panel .swatch.purple{background-color:#763db6;border-color:#442369}#edit-wcm-omega .swatch-panel .swatch.blue{background-color:#028da9;border-color:#013944}#edit-wcm-omega .swatch-panel .swatch.red{background-color:#b00;border-color:#500}#edit-wcm-omega .swatch-panel .swatch.none{background-color:#747474;border-color:#414141}#edit-wcm-omega .form-item label.option{margin-left:4px}#edit-wcm-omega .form-item input.form-radio-error{outline:red solid 2px}#edit-wcm-omega .form-item input.form-radio-error+label{color:#8c2e0b;font-weight:700}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.styles.css b/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.styles.css
new file mode 100644
index 0000000000000000000000000000000000000000..1aa79401ec19e6271c7644240546d6d9d5162947
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/css/wcm-omega.styles.css
@@ -0,0 +1 @@
+@charset "UTF-8";.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-prev-hover{left:0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-next-hover{right:0}.ui-accordion-header{overflow:auto}body .panels-row.odd .ui-accordion .ui-accordion-header{background:#d4d4d4}body .panels-row.odd .ui-accordion .ui-accordion-content{border-color:#d4d4d4}.ctools-collapsible-container .ctools-toggle{background-image:url(../images/jquery-images/ui-icons_222222_256x240.png);background-position:-64px -15px}.ctools-collapsible-container .ctools-toggle-collapsed{background-position:-32px -15px;background-image:url(../images/jquery-images/ui-icons_888888_256x240.png)}.ctools-collapsible-container .ctools-toggle-collapsed:hover{background-image:url(../images/jquery-images/ui-icons_222222_256x240.png)}ul.breadcrumb{padding:1.4em 0 0;margin:0}ul.breadcrumb li{display:inline-block;margin-right:.45em;font-weight:600}ul.breadcrumb li:after{content:"|";color:#b00;font-weight:700;margin-left:.45em}ul.breadcrumb li a{text-decoration:none}ul.breadcrumb li a a,ul.breadcrumb li a a:visited{color:#666}ul.breadcrumb li a a:hover{color:#028da9}ul.breadcrumb li a a:active{color:#666}ul.breadcrumb li a a:focus{color:#dcaa38}ul.breadcrumb li a:hover{text-decoration:underline}ul.breadcrumb li:last-child{margin-right:0}ul.breadcrumb li:last-child:after{content:" "}#edit-preview,#edit-submit,#edit-submit--2,#edit-submit--3,.button-primary,.form-submit,.red-button,.webform-previous,.webform-submit,html body .button,input[type=button]{font-size:14px;padding:.7em 1.3em .4em;display:inline-block;cursor:pointer;background-color:#b00;border:0;color:#fff;text-transform:uppercase;font-family:proximanova,Helvetica,Arial,sans-serif;letter-spacing:.05em;border-radius:2px;box-shadow:0 3px 0 0 #920000;font-weight:400}#edit-preview:hover,#edit-submit--2:hover,#edit-submit--3:hover,#edit-submit:hover,.button-primary:hover,.form-submit:hover,.red-button:hover,.webform-previous:hover,.webform-submit:hover,html body .button:hover,input[type=button]:hover{text-decoration:none;background-color:#a20000}#edit-preview:active,#edit-submit--2:active,#edit-submit--3:active,#edit-submit:active,.button-primary:active,.form-submit:active,.red-button:active,.webform-previous:active,.webform-submit:active,html body .button:active,input[type=button]:active{background-color:#920000}.disabled#edit-preview,.disabled#edit-submit,.disabled#edit-submit--2,.disabled#edit-submit--3,.disabled.button-primary,.disabled.form-submit,.disabled.webform-previous,.disabled.webform-submit,.red-button.disabled,.red-button[disabled],[disabled]#edit-preview,[disabled]#edit-submit,[disabled]#edit-submit--2,[disabled]#edit-submit--3,[disabled].button-primary,[disabled].form-submit,[disabled].webform-previous,[disabled].webform-submit,html body .disabled.button,html body [disabled].button,input.disabled[type=button],input[disabled][type=button]{opacity:.6;background:false;cursor:default;box-shadow:none}#edit-preview.ext .ext,#edit-submit--2.ext .ext,#edit-submit--3.ext .ext,#edit-submit.ext .ext,.button-primary.ext .ext,.form-submit.ext .ext,.webform-previous.ext .ext,.webform-submit.ext .ext,html body .button.ext .ext,input[type=button].ext .ext{background-image:none;padding:0;width:0}#colorbox #cboxWrapper{border-radius:0;font-size:1.1em}#colorbox #cboxWrapper #cboxClose,#colorbox #cboxWrapper #cboxNext,#colorbox #cboxWrapper #cboxPrevious{background-image:none;text-indent:0;color:transparent;overflow:hidden}#colorbox #cboxWrapper #cboxClose:before,#colorbox #cboxWrapper #cboxNext:before,#colorbox #cboxWrapper #cboxPrevious:before{font-family:FontAwesome;bottom:-3px;position:absolute;color:#000}.alpha,.beta,.delta,.epsilon,.gamma,.ui-widget,.zeta,body,h1,h2,h3,h4,h5,h6,html{font-family:proximanova,Helvetica,Arial,sans-serif}#colorbox #cboxWrapper #cboxClose:before{content:"\f00d";right:0;font-size:1.2em}#colorbox #cboxWrapper #cboxPrevious:before{content:"\f053"}#colorbox #cboxWrapper #cboxNext:before{content:"\f054"}#colorbox #cboxWrapper #cboxCurrent{bottom:-3px}span.ext{margin-left:1px;margin-right:2px}input{max-width:100%}input:focus{outline:#999 solid 1px}textarea{resize:none}.webform-component label{text-transform:uppercase;font-weight:600;font-size:14px}.webform-component .description{margin-bottom:30px}.webform-component-fieldset .webform-component label{text-transform:uppercase;font-weight:400;font-size:13px}.webform-component-fieldset,.webform-component-file,.webform-component-grid{margin-bottom:40px}.webform-component-file #edit-submitted-file-upload{max-width:240px}@media (max-width:47.5em){.l-main input,.l-main select,.l-main textarea{width:100%}}form .chosen-container .chosen-choices,form .form-text{padding:4px 6px 2px;border:1px solid #bbb;background-image:none;box-shadow:none;font-size:.9em}form .chosen-container{font-size:1em}form .chosen-container .result-selected{display:none!important}form .chosen-container .chosen-results{font-size:.9em}form .chosen-container .search-field input{width:.1px!important;height:.1px!important}form .chosen-container .chosen-results li{padding:7px 6px 4px;line-height:1em}form .chosen-container .chosen-results li.highlighted{background-image:none}form .chosen-container.chosen-container-active.chosen-with-drop .chosen-single,form .chosen-container.chosen-container-multi .chosen-choices li.search-choice,form .chosen-container.chosen-container-single .chosen-single{border-radius:0;background:#eee;box-shadow:none}form .chosen-container.chosen-container .search-field:after,form .chosen-container.chosen-container-active.chosen-with-drop .chosen-choices li.search-choice+.search-field:after{content:"- Select -";color:#666;cursor:default}form .chosen-container.chosen-container-active .search-field,form .chosen-container.chosen-container-multi .chosen-choices li.search-choice+.search-field{float:none}form .chosen-container.chosen-container-single .chosen-results{margin:0;padding:0}form .chosen-container.chosen-container-single .chosen-drop{border-radius:0}form .chosen-container.chosen-container-single .chosen-single{padding:0 0 0 6px;height:27px}form .chosen-container.chosen-container-single .chosen-single div b{background-size:52px 40px!important}form .chosen-container.chosen-container-multi .chosen-choices{padding:1px 3px 0;cursor:default}form .chosen-container.chosen-container-multi .chosen-choices li.search-choice{display:inline-block;float:none;line-height:1em;margin:2px 4px 2px 0;padding:4px 20px 2px 4px}form .chosen-container.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{top:4px}form .chosen-container.chosen-container-multi .chosen-choices li.search-choice+.search-field:after{content:"+ Add";cursor:pointer}form .chosen-container.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0 0 2px;cursor:default}.l-page img{width:inherit}.image-border,.panopoly-image-featured,.panopoly-image-full,.panopoly-image-half,.panopoly-image-original,.panopoly-image-quarter,.panopoly-image-square,.panopoly-image-thumbnail{border:1px solid #666}.node__content .panopoly-image-featured,.node__content .panopoly-image-full,.node__content .panopoly-image-half,.node__content .panopoly-image-original,.node__content .panopoly-image-quarter,.node__content .panopoly-image-square,.node__content .panopoly-image-thumbnail{float:right;margin:0 0 20px 1.5em}.ui-widget table,.ui-widget td,.ui-widget th,.ui-widget tr{border:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.4em .2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:0}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center;padding:.2em 0}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em;border:0}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.align-left,table caption{text-align:left}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.pane-bundle-table table,table{width:100%}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-widget{font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:proximanova,Helvetica,Arial,sans-serif;font-size:1em}.ui-widget-content{border:0;background:#ededed;color:#2d2d2d}.ui-widget-content a{color:#2d2d2d}.ui-widget-header{border:0;background:#666;color:#fff;font-weight:700}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:0;background:#ccc;font-weight:400;color:#2d2d2d}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#2d2d2d;text-decoration:none}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:0;background:#777;font-weight:400;color:#fff}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#fff;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:url(../images/jquery-images/ui-bg_flat_65_ffffff_40x100.png) 50% 50% repeat-x #fff;font-weight:400;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.error,.error .error,.messages--error,.messages--status,.messages--warning,.ok,.warning{color:#2d2d2d}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:0}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:0}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:0}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:0}#modalBackdrop,.cke_dialog_background_cover,.ui-widget-overlay{background-image:none!important;background-color:#000!important;opacity:.5!important}.l-constrained{margin:0 auto}.l-constrained:after{content:"";display:table;clear:both}body.html{background-color:#2d2d2d}.l-page{background-color:#fff}ul.menu{padding:0}ol,ul{padding-left:3em}ul{list-style-type:square}ul ul{list-style-type:circle}ul ul ul{list-style-type:disc}ol ol{list-style-type:lower-alpha}ol ol ol{list-style-type:lower-roman}.no-list-style,ul.breadcrumb,ul.menu{list-style:none}.field--name-field-basic-text-text li,.field--name-field-ocio-body li,.ui-accordion-content li{margin-bottom:.6em}.ui-accordion-content ul{padding-left:.6em}.messages{margin:1.8em 0;padding:1.2em 1.6em;background-image:none;border:0;background-color:#dbdbdb}.messages ul{margin:0 0 0 1em;padding:0}.messages li{list-style-image:none}.messages--status,tr.ok{border-left:8px solid #d4df48}.messages--warning,tr.warning{border-left:8px solid #dcaa38}.messages--error,tr.error{border-left:8px solid #b00}table{margin-bottom:20px;font-size:14px;font-size:1.4rem;line-height:140%}table th{background:#353535;color:#fff;font-weight:600}.ui-accordion-content table th a,.ui-tabs-content table th a,table th .ui-accordion-content a,table th .ui-tabs-content a,table th a{text-decoration:none}table,table thead{border:1px solid #353535}table tbody{border:1px solid #d4d4d4}table tbody tr{border-bottom:1px solid #d4d4d4}table tbody tr.odd,table tbody tr:nth-child(odd){background:#fff}table tbody tr.even,table tbody tr:nth-child(even),table thead+tbody tr.odd,table thead+tbody tr:nth-child(odd){background:#ededed}.panels-row.odd table tbody tr.odd,.panels-row.odd table tbody tr:nth-child(odd),table thead+tbody tr.even,table thead+tbody tr:nth-child(even){background:#fff}table td,table th{padding:.5em .8em;border:0}table caption{color:#666;margin-bottom:5px}.panels-row.odd table tbody tr.even,.panels-row.odd table tbody tr:nth-child(even),.panels-row.odd table thead+tbody tr.odd,.panels-row.odd table thead+tbody tr:nth-child(odd){background:#f2f2f2}.panels-row.odd table thead+tbody tr.even,.panels-row.odd table thead+tbody tr:nth-child(even){background:#fff}.ui-accordion-content table td{border:1px solid #ededed}.tabs--primary{padding-top:2em}.tabs--primary li{font-weight:400;background:#ededed}.tabs--primary li a{text-decoration:none}.tabs--primary li .ui-accordion-content a a,.tabs--primary li .ui-tabs-content a a,.tabs--primary li a .ui-accordion-content a,.tabs--primary li a .ui-tabs-content a,.tabs--primary li a a,.ui-accordion-content .tabs--primary li a a,.ui-tabs-content .tabs--primary li a a{color:#b00}.tabs--primary li a a:visited{color:#2d2d2d}.tabs--primary li a a:hover{color:#028da9}.tabs--primary li a a:active{color:#b00}.tabs--primary li a a:focus{color:#dcaa38}.tabs--primary li a:hover{background:#d4d4d4}.tabs--primary li .active{background:#c7c7c7}body,html{color:#2d2d2d;font-weight:300}.alpha,.ui-accordion-content .ui-tabs-content a a,.ui-accordion-content a .ui-tabs-content a,.ui-accordion-content a a,.ui-tabs-content .ui-accordion-content a a,.ui-tabs-content a .ui-accordion-content a,.ui-tabs-content a a,a .ui-accordion-content a,a .ui-tabs-content a,a a,h1{color:#b00}p{margin-top:.4em}.alpha,h1{font-size:40px;font-size:4rem;margin:.8em 0 .2em}.beta,h2{font-size:32px;font-size:3.2rem;margin:.9em 0 0}.gamma,h3{font-size:26px;font-size:2.6rem;margin:1em 0 0}.delta,h4{font-size:24px;font-size:2.4rem;margin:1.2em 0 0}.epsilon,h5{font-size:20px;font-size:2rem;margin:1.4em 0 0}.zeta,h6{font-size:18px;font-size:1.8rem;margin:1.4em 0 0}.alpha,.beta,.delta,.epsilon,.gamma,.zeta,h1,h2,h3,h4,h5,h6{font-weight:400;line-height:100%}h2.block__title{margin-top:0}@media (max-width:47.5em){html{font-size:50%}.body,body{font-size:18px;font-size:1.8rem;line-height:150%}}@media (min-width:47.5em){html{font-size:57%}.body,body{font-size:17px;font-size:1.7rem;line-height:150%}}@media (min-width:60em){html{font-size:62.5%}.body,body{font-size:16px;font-size:1.6rem;line-height:150%}}@media (min-width:75em){html{font-size:66%}.body,body{font-size:15px;font-size:1.5rem;line-height:150%}}.ui-accordion-content a,.ui-tabs-content a,a{font-weight:500;text-decoration:none}a a:visited{color:#028da9}a a:focus,a a:hover{color:#d65828}.alpha a .ui-accordion-content a,.alpha a .ui-tabs-content a,.alpha a a,.alpha a:visited .ui-accordion-content a,.alpha a:visited .ui-tabs-content a,.alpha a:visited a,.beta a .ui-accordion-content a,.beta a .ui-tabs-content a,.beta a a,.beta a:visited .ui-accordion-content a,.beta a:visited .ui-tabs-content a,.beta a:visited a,.delta a .ui-accordion-content a,.delta a .ui-tabs-content a,.delta a a,.delta a:visited .ui-accordion-content a,.delta a:visited .ui-tabs-content a,.delta a:visited a,.epsilon a .ui-accordion-content a,.epsilon a .ui-tabs-content a,.epsilon a a,.epsilon a:visited .ui-accordion-content a,.epsilon a:visited .ui-tabs-content a,.epsilon a:visited a,.gamma a .ui-accordion-content a,.gamma a .ui-tabs-content a,.gamma a a,.gamma a:visited .ui-accordion-content a,.gamma a:visited .ui-tabs-content a,.gamma a:visited a,.header-links .ui-accordion-content a,.header-links .ui-tabs-content a,.header-links a,.ui-accordion-content .alpha a a,.ui-accordion-content .alpha a:visited a,.ui-accordion-content .beta a a,.ui-accordion-content .beta a:visited a,.ui-accordion-content .delta a a,.ui-accordion-content .delta a:visited a,.ui-accordion-content .epsilon a a,.ui-accordion-content .epsilon a:visited a,.ui-accordion-content .gamma a a,.ui-accordion-content .gamma a:visited a,.ui-accordion-content .header-links a,.ui-accordion-content .ui-tabs-content h1 a a,.ui-accordion-content .ui-tabs-content h2 a a,.ui-accordion-content .ui-tabs-content h3 a a,.ui-accordion-content .ui-tabs-content h4 a a,.ui-accordion-content .ui-tabs-content h5 a a,.ui-accordion-content .ui-tabs-content h6 a a,.ui-accordion-content .zeta a a,.ui-accordion-content .zeta a:visited a,.ui-accordion-content h1 .ui-tabs-content a a,.ui-accordion-content h1 a .ui-tabs-content a,.ui-accordion-content h1 a a,.ui-accordion-content h1 a:visited a,.ui-accordion-content h2 .ui-tabs-content a a,.ui-accordion-content h2 a .ui-tabs-content a,.ui-accordion-content h2 a a,.ui-accordion-content h2 a:visited a,.ui-accordion-content h3 .ui-tabs-content a a,.ui-accordion-content h3 a .ui-tabs-content a,.ui-accordion-content h3 a a,.ui-accordion-content h3 a:visited a,.ui-accordion-content h4 .ui-tabs-content a a,.ui-accordion-content h4 a .ui-tabs-content a,.ui-accordion-content h4 a a,.ui-accordion-content h4 a:visited a,.ui-accordion-content h5 .ui-tabs-content a a,.ui-accordion-content h5 a .ui-tabs-content a,.ui-accordion-content h5 a a,.ui-accordion-content h5 a:visited a,.ui-accordion-content h6 .ui-tabs-content a a,.ui-accordion-content h6 a .ui-tabs-content a,.ui-accordion-content h6 a a,.ui-accordion-content h6 a:visited a,.ui-tabs-content .alpha a a,.ui-tabs-content .alpha a:visited a,.ui-tabs-content .beta a a,.ui-tabs-content .beta a:visited a,.ui-tabs-content .delta a a,.ui-tabs-content .delta a:visited a,.ui-tabs-content .epsilon a a,.ui-tabs-content .epsilon a:visited a,.ui-tabs-content .gamma a a,.ui-tabs-content .gamma a:visited a,.ui-tabs-content .header-links a,.ui-tabs-content .ui-accordion-content h1 a a,.ui-tabs-content .ui-accordion-content h2 a a,.ui-tabs-content .ui-accordion-content h3 a a,.ui-tabs-content .ui-accordion-content h4 a a,.ui-tabs-content .ui-accordion-content h5 a a,.ui-tabs-content .ui-accordion-content h6 a a,.ui-tabs-content .zeta a a,.ui-tabs-content .zeta a:visited a,.ui-tabs-content h1 .ui-accordion-content a a,.ui-tabs-content h1 a .ui-accordion-content a,.ui-tabs-content h1 a a,.ui-tabs-content h1 a:visited a,.ui-tabs-content h2 .ui-accordion-content a a,.ui-tabs-content h2 a .ui-accordion-content a,.ui-tabs-content h2 a a,.ui-tabs-content h2 a:visited a,.ui-tabs-content h3 .ui-accordion-content a a,.ui-tabs-content h3 a .ui-accordion-content a,.ui-tabs-content h3 a a,.ui-tabs-content h3 a:visited a,.ui-tabs-content h4 .ui-accordion-content a a,.ui-tabs-content h4 a .ui-accordion-content a,.ui-tabs-content h4 a a,.ui-tabs-content h4 a:visited a,.ui-tabs-content h5 .ui-accordion-content a a,.ui-tabs-content h5 a .ui-accordion-content a,.ui-tabs-content h5 a a,.ui-tabs-content h5 a:visited a,.ui-tabs-content h6 .ui-accordion-content a a,.ui-tabs-content h6 a .ui-accordion-content a,.ui-tabs-content h6 a a,.ui-tabs-content h6 a:visited a,.zeta a .ui-accordion-content a,.zeta a .ui-tabs-content a,.zeta a a,.zeta a:visited .ui-accordion-content a,.zeta a:visited .ui-tabs-content a,.zeta a:visited a,a a:active,h1 .ui-accordion-content a .ui-tabs-content a,h1 .ui-accordion-content a a,h1 .ui-tabs-content a .ui-accordion-content a,h1 .ui-tabs-content a a,h1 a .ui-accordion-content a,h1 a .ui-tabs-content a,h1 a a,h1 a:visited .ui-accordion-content a,h1 a:visited .ui-tabs-content a,h1 a:visited a,h2 .ui-accordion-content a .ui-tabs-content a,h2 .ui-accordion-content a a,h2 .ui-tabs-content a .ui-accordion-content a,h2 .ui-tabs-content a a,h2 a .ui-accordion-content a,h2 a .ui-tabs-content a,h2 a a,h2 a:visited .ui-accordion-content a,h2 a:visited .ui-tabs-content a,h2 a:visited a,h3 .ui-accordion-content a .ui-tabs-content a,h3 .ui-accordion-content a a,h3 .ui-tabs-content a .ui-accordion-content a,h3 .ui-tabs-content a a,h3 a .ui-accordion-content a,h3 a .ui-tabs-content a,h3 a a,h3 a:visited .ui-accordion-content a,h3 a:visited .ui-tabs-content a,h3 a:visited a,h4 .ui-accordion-content a .ui-tabs-content a,h4 .ui-accordion-content a a,h4 .ui-tabs-content a .ui-accordion-content a,h4 .ui-tabs-content a a,h4 a .ui-accordion-content a,h4 a .ui-tabs-content a,h4 a a,h4 a:visited .ui-accordion-content a,h4 a:visited .ui-tabs-content a,h4 a:visited a,h5 .ui-accordion-content a .ui-tabs-content a,h5 .ui-accordion-content a a,h5 .ui-tabs-content a .ui-accordion-content a,h5 .ui-tabs-content a a,h5 a .ui-accordion-content a,h5 a .ui-tabs-content a,h5 a a,h5 a:visited .ui-accordion-content a,h5 a:visited .ui-tabs-content a,h5 a:visited a,h6 .ui-accordion-content a .ui-tabs-content a,h6 .ui-accordion-content a a,h6 .ui-tabs-content a .ui-accordion-content a,h6 .ui-tabs-content a a,h6 a .ui-accordion-content a,h6 a .ui-tabs-content a,h6 a a,h6 a:visited .ui-accordion-content a,h6 a:visited .ui-tabs-content a,h6 a:visited a{color:#b00}a:hover{text-decoration:underline}.ui-accordion-content strong a,.ui-tabs-content strong a,strong .ui-accordion-content a,strong .ui-tabs-content a,strong a{font-weight:700}.alpha a,.alpha a:visited,.beta a,.beta a:visited,.delta a,.delta a:visited,.epsilon a,.epsilon a:visited,.gamma a,.gamma a:visited,.header-links,.ui-accordion-content h1 a,.ui-accordion-content h2 a,.ui-accordion-content h3 a,.ui-accordion-content h4 a,.ui-accordion-content h5 a,.ui-accordion-content h6 a,.ui-tabs-content h1 a,.ui-tabs-content h2 a,.ui-tabs-content h3 a,.ui-tabs-content h4 a,.ui-tabs-content h5 a,.ui-tabs-content h6 a,.zeta a,.zeta a:visited,h1 .ui-accordion-content a,h1 .ui-tabs-content a,h1 a,h1 a:visited,h2 .ui-accordion-content a,h2 .ui-tabs-content a,h2 a,h2 a:visited,h3 .ui-accordion-content a,h3 .ui-tabs-content a,h3 a,h3 a:visited,h4 .ui-accordion-content a,h4 .ui-tabs-content a,h4 a,h4 a:visited,h5 .ui-accordion-content a,h5 .ui-tabs-content a,h5 a,h5 a:visited,h6 .ui-accordion-content a,h6 .ui-tabs-content a,h6 a,h6 a:visited{text-decoration:none}.alpha a .ui-accordion-content a:visited,.alpha a .ui-tabs-content a:visited,.alpha a a:visited,.alpha a:visited .ui-accordion-content a:visited,.alpha a:visited .ui-tabs-content a:visited,.alpha a:visited a:visited,.beta a .ui-accordion-content a:visited,.beta a .ui-tabs-content a:visited,.beta a a:visited,.beta a:visited .ui-accordion-content a:visited,.beta a:visited .ui-tabs-content a:visited,.beta a:visited a:visited,.delta a .ui-accordion-content a:visited,.delta a .ui-tabs-content a:visited,.delta a a:visited,.delta a:visited .ui-accordion-content a:visited,.delta a:visited .ui-tabs-content a:visited,.delta a:visited a:visited,.epsilon a .ui-accordion-content a:visited,.epsilon a .ui-tabs-content a:visited,.epsilon a a:visited,.epsilon a:visited .ui-accordion-content a:visited,.epsilon a:visited .ui-tabs-content a:visited,.epsilon a:visited a:visited,.gamma a .ui-accordion-content a:visited,.gamma a .ui-tabs-content a:visited,.gamma a a:visited,.gamma a:visited .ui-accordion-content a:visited,.gamma a:visited .ui-tabs-content a:visited,.gamma a:visited a:visited,.header-links .ui-accordion-content a:visited,.header-links .ui-tabs-content a:visited,.header-links a:visited,.ui-accordion-content .alpha a a:visited,.ui-accordion-content .alpha a:visited a:visited,.ui-accordion-content .beta a a:visited,.ui-accordion-content .beta a:visited a:visited,.ui-accordion-content .delta a a:visited,.ui-accordion-content .delta a:visited a:visited,.ui-accordion-content .epsilon a a:visited,.ui-accordion-content .epsilon a:visited a:visited,.ui-accordion-content .gamma a a:visited,.ui-accordion-content .gamma a:visited a:visited,.ui-accordion-content .header-links a:visited,.ui-accordion-content .ui-tabs-content h1 a a:visited,.ui-accordion-content .ui-tabs-content h2 a a:visited,.ui-accordion-content .ui-tabs-content h3 a a:visited,.ui-accordion-content .ui-tabs-content h4 a a:visited,.ui-accordion-content .ui-tabs-content h5 a a:visited,.ui-accordion-content .ui-tabs-content h6 a a:visited,.ui-accordion-content .zeta a a:visited,.ui-accordion-content .zeta a:visited a:visited,.ui-accordion-content h1 .ui-tabs-content a a:visited,.ui-accordion-content h1 a .ui-tabs-content a:visited,.ui-accordion-content h1 a a:visited,.ui-accordion-content h1 a:visited a:visited,.ui-accordion-content h2 .ui-tabs-content a a:visited,.ui-accordion-content h2 a .ui-tabs-content a:visited,.ui-accordion-content h2 a a:visited,.ui-accordion-content h2 a:visited a:visited,.ui-accordion-content h3 .ui-tabs-content a a:visited,.ui-accordion-content h3 a .ui-tabs-content a:visited,.ui-accordion-content h3 a a:visited,.ui-accordion-content h3 a:visited a:visited,.ui-accordion-content h4 .ui-tabs-content a a:visited,.ui-accordion-content h4 a .ui-tabs-content a:visited,.ui-accordion-content h4 a a:visited,.ui-accordion-content h4 a:visited a:visited,.ui-accordion-content h5 .ui-tabs-content a a:visited,.ui-accordion-content h5 a .ui-tabs-content a:visited,.ui-accordion-content h5 a a:visited,.ui-accordion-content h5 a:visited a:visited,.ui-accordion-content h6 .ui-tabs-content a a:visited,.ui-accordion-content h6 a .ui-tabs-content a:visited,.ui-accordion-content h6 a a:visited,.ui-accordion-content h6 a:visited a:visited,.ui-tabs-content .alpha a a:visited,.ui-tabs-content .alpha a:visited a:visited,.ui-tabs-content .beta a a:visited,.ui-tabs-content .beta a:visited a:visited,.ui-tabs-content .delta a a:visited,.ui-tabs-content .delta a:visited a:visited,.ui-tabs-content .epsilon a a:visited,.ui-tabs-content .epsilon a:visited a:visited,.ui-tabs-content .gamma a a:visited,.ui-tabs-content .gamma a:visited a:visited,.ui-tabs-content .header-links a:visited,.ui-tabs-content .ui-accordion-content h1 a a:visited,.ui-tabs-content .ui-accordion-content h2 a a:visited,.ui-tabs-content .ui-accordion-content h3 a a:visited,.ui-tabs-content .ui-accordion-content h4 a a:visited,.ui-tabs-content .ui-accordion-content h5 a a:visited,.ui-tabs-content .ui-accordion-content h6 a a:visited,.ui-tabs-content .zeta a a:visited,.ui-tabs-content .zeta a:visited a:visited,.ui-tabs-content h1 .ui-accordion-content a a:visited,.ui-tabs-content h1 a .ui-accordion-content a:visited,.ui-tabs-content h1 a a:visited,.ui-tabs-content h1 a:visited a:visited,.ui-tabs-content h2 .ui-accordion-content a a:visited,.ui-tabs-content h2 a .ui-accordion-content a:visited,.ui-tabs-content h2 a a:visited,.ui-tabs-content h2 a:visited a:visited,.ui-tabs-content h3 .ui-accordion-content a a:visited,.ui-tabs-content h3 a .ui-accordion-content a:visited,.ui-tabs-content h3 a a:visited,.ui-tabs-content h3 a:visited a:visited,.ui-tabs-content h4 .ui-accordion-content a a:visited,.ui-tabs-content h4 a .ui-accordion-content a:visited,.ui-tabs-content h4 a a:visited,.ui-tabs-content h4 a:visited a:visited,.ui-tabs-content h5 .ui-accordion-content a a:visited,.ui-tabs-content h5 a .ui-accordion-content a:visited,.ui-tabs-content h5 a a:visited,.ui-tabs-content h5 a:visited a:visited,.ui-tabs-content h6 .ui-accordion-content a a:visited,.ui-tabs-content h6 a .ui-accordion-content a:visited,.ui-tabs-content h6 a a:visited,.ui-tabs-content h6 a:visited a:visited,.zeta a .ui-accordion-content a:visited,.zeta a .ui-tabs-content a:visited,.zeta a a:visited,.zeta a:visited .ui-accordion-content a:visited,.zeta a:visited .ui-tabs-content a:visited,.zeta a:visited a:visited,h1 .ui-accordion-content a .ui-tabs-content a:visited,h1 .ui-accordion-content a a:visited,h1 .ui-tabs-content a .ui-accordion-content a:visited,h1 .ui-tabs-content a a:visited,h1 a .ui-accordion-content a:visited,h1 a .ui-tabs-content a:visited,h1 a a:visited,h1 a:visited .ui-accordion-content a:visited,h1 a:visited .ui-tabs-content a:visited,h1 a:visited a:visited,h2 .ui-accordion-content a .ui-tabs-content a:visited,h2 .ui-accordion-content a a:visited,h2 .ui-tabs-content a .ui-accordion-content a:visited,h2 .ui-tabs-content a a:visited,h2 a .ui-accordion-content a:visited,h2 a .ui-tabs-content a:visited,h2 a a:visited,h2 a:visited .ui-accordion-content a:visited,h2 a:visited .ui-tabs-content a:visited,h2 a:visited a:visited,h3 .ui-accordion-content a .ui-tabs-content a:visited,h3 .ui-accordion-content a a:visited,h3 .ui-tabs-content a .ui-accordion-content a:visited,h3 .ui-tabs-content a a:visited,h3 a .ui-accordion-content a:visited,h3 a .ui-tabs-content a:visited,h3 a a:visited,h3 a:visited .ui-accordion-content a:visited,h3 a:visited .ui-tabs-content a:visited,h3 a:visited a:visited,h4 .ui-accordion-content a .ui-tabs-content a:visited,h4 .ui-accordion-content a a:visited,h4 .ui-tabs-content a .ui-accordion-content a:visited,h4 .ui-tabs-content a a:visited,h4 a .ui-accordion-content a:visited,h4 a .ui-tabs-content a:visited,h4 a a:visited,h4 a:visited .ui-accordion-content a:visited,h4 a:visited .ui-tabs-content a:visited,h4 a:visited a:visited,h5 .ui-accordion-content a .ui-tabs-content a:visited,h5 .ui-accordion-content a a:visited,h5 .ui-tabs-content a .ui-accordion-content a:visited,h5 .ui-tabs-content a a:visited,h5 a .ui-accordion-content a:visited,h5 a .ui-tabs-content a:visited,h5 a a:visited,h5 a:visited .ui-accordion-content a:visited,h5 a:visited .ui-tabs-content a:visited,h5 a:visited a:visited,h6 .ui-accordion-content a .ui-tabs-content a:visited,h6 .ui-accordion-content a a:visited,h6 .ui-tabs-content a .ui-accordion-content a:visited,h6 .ui-tabs-content a a:visited,h6 a .ui-accordion-content a:visited,h6 a .ui-tabs-content a:visited,h6 a a:visited,h6 a:visited .ui-accordion-content a:visited,h6 a:visited .ui-tabs-content a:visited,h6 a:visited a:visited{color:#2d2d2d}.alpha a .ui-accordion-content a:hover,.alpha a .ui-tabs-content a:hover,.alpha a a:hover,.alpha a:visited .ui-accordion-content a:hover,.alpha a:visited .ui-tabs-content a:hover,.alpha a:visited a:hover,.beta a .ui-accordion-content a:hover,.beta a .ui-tabs-content a:hover,.beta a a:hover,.beta a:visited .ui-accordion-content a:hover,.beta a:visited .ui-tabs-content a:hover,.beta a:visited a:hover,.delta a .ui-accordion-content a:hover,.delta a .ui-tabs-content a:hover,.delta a a:hover,.delta a:visited .ui-accordion-content a:hover,.delta a:visited .ui-tabs-content a:hover,.delta a:visited a:hover,.epsilon a .ui-accordion-content a:hover,.epsilon a .ui-tabs-content a:hover,.epsilon a a:hover,.epsilon a:visited .ui-accordion-content a:hover,.epsilon a:visited .ui-tabs-content a:hover,.epsilon a:visited a:hover,.gamma a .ui-accordion-content a:hover,.gamma a .ui-tabs-content a:hover,.gamma a a:hover,.gamma a:visited .ui-accordion-content a:hover,.gamma a:visited .ui-tabs-content a:hover,.gamma a:visited a:hover,.header-links .ui-accordion-content a:hover,.header-links .ui-tabs-content a:hover,.header-links a:hover,.ui-accordion-content .alpha a a:hover,.ui-accordion-content .alpha a:visited a:hover,.ui-accordion-content .beta a a:hover,.ui-accordion-content .beta a:visited a:hover,.ui-accordion-content .delta a a:hover,.ui-accordion-content .delta a:visited a:hover,.ui-accordion-content .epsilon a a:hover,.ui-accordion-content .epsilon a:visited a:hover,.ui-accordion-content .gamma a a:hover,.ui-accordion-content .gamma a:visited a:hover,.ui-accordion-content .header-links a:hover,.ui-accordion-content .ui-tabs-content h1 a a:hover,.ui-accordion-content .ui-tabs-content h2 a a:hover,.ui-accordion-content .ui-tabs-content h3 a a:hover,.ui-accordion-content .ui-tabs-content h4 a a:hover,.ui-accordion-content .ui-tabs-content h5 a a:hover,.ui-accordion-content .ui-tabs-content h6 a a:hover,.ui-accordion-content .zeta a a:hover,.ui-accordion-content .zeta a:visited a:hover,.ui-accordion-content h1 .ui-tabs-content a a:hover,.ui-accordion-content h1 a .ui-tabs-content a:hover,.ui-accordion-content h1 a a:hover,.ui-accordion-content h1 a:visited a:hover,.ui-accordion-content h2 .ui-tabs-content a a:hover,.ui-accordion-content h2 a .ui-tabs-content a:hover,.ui-accordion-content h2 a a:hover,.ui-accordion-content h2 a:visited a:hover,.ui-accordion-content h3 .ui-tabs-content a a:hover,.ui-accordion-content h3 a .ui-tabs-content a:hover,.ui-accordion-content h3 a a:hover,.ui-accordion-content h3 a:visited a:hover,.ui-accordion-content h4 .ui-tabs-content a a:hover,.ui-accordion-content h4 a .ui-tabs-content a:hover,.ui-accordion-content h4 a a:hover,.ui-accordion-content h4 a:visited a:hover,.ui-accordion-content h5 .ui-tabs-content a a:hover,.ui-accordion-content h5 a .ui-tabs-content a:hover,.ui-accordion-content h5 a a:hover,.ui-accordion-content h5 a:visited a:hover,.ui-accordion-content h6 .ui-tabs-content a a:hover,.ui-accordion-content h6 a .ui-tabs-content a:hover,.ui-accordion-content h6 a a:hover,.ui-accordion-content h6 a:visited a:hover,.ui-tabs-content .alpha a a:hover,.ui-tabs-content .alpha a:visited a:hover,.ui-tabs-content .beta a a:hover,.ui-tabs-content .beta a:visited a:hover,.ui-tabs-content .delta a a:hover,.ui-tabs-content .delta a:visited a:hover,.ui-tabs-content .epsilon a a:hover,.ui-tabs-content .epsilon a:visited a:hover,.ui-tabs-content .gamma a a:hover,.ui-tabs-content .gamma a:visited a:hover,.ui-tabs-content .header-links a:hover,.ui-tabs-content .ui-accordion-content h1 a a:hover,.ui-tabs-content .ui-accordion-content h2 a a:hover,.ui-tabs-content .ui-accordion-content h3 a a:hover,.ui-tabs-content .ui-accordion-content h4 a a:hover,.ui-tabs-content .ui-accordion-content h5 a a:hover,.ui-tabs-content .ui-accordion-content h6 a a:hover,.ui-tabs-content .zeta a a:hover,.ui-tabs-content .zeta a:visited a:hover,.ui-tabs-content h1 .ui-accordion-content a a:hover,.ui-tabs-content h1 a .ui-accordion-content a:hover,.ui-tabs-content h1 a a:hover,.ui-tabs-content h1 a:visited a:hover,.ui-tabs-content h2 .ui-accordion-content a a:hover,.ui-tabs-content h2 a .ui-accordion-content a:hover,.ui-tabs-content h2 a a:hover,.ui-tabs-content h2 a:visited a:hover,.ui-tabs-content h3 .ui-accordion-content a a:hover,.ui-tabs-content h3 a .ui-accordion-content a:hover,.ui-tabs-content h3 a a:hover,.ui-tabs-content h3 a:visited a:hover,.ui-tabs-content h4 .ui-accordion-content a a:hover,.ui-tabs-content h4 a .ui-accordion-content a:hover,.ui-tabs-content h4 a a:hover,.ui-tabs-content h4 a:visited a:hover,.ui-tabs-content h5 .ui-accordion-content a a:hover,.ui-tabs-content h5 a .ui-accordion-content a:hover,.ui-tabs-content h5 a a:hover,.ui-tabs-content h5 a:visited a:hover,.ui-tabs-content h6 .ui-accordion-content a a:hover,.ui-tabs-content h6 a .ui-accordion-content a:hover,.ui-tabs-content h6 a a:hover,.ui-tabs-content h6 a:visited a:hover,.zeta a .ui-accordion-content a:hover,.zeta a .ui-tabs-content a:hover,.zeta a a:hover,.zeta a:visited .ui-accordion-content a:hover,.zeta a:visited .ui-tabs-content a:hover,.zeta a:visited a:hover,h1 .ui-accordion-content a .ui-tabs-content a:hover,h1 .ui-accordion-content a a:hover,h1 .ui-tabs-content a .ui-accordion-content a:hover,h1 .ui-tabs-content a a:hover,h1 a .ui-accordion-content a:hover,h1 a .ui-tabs-content a:hover,h1 a a:hover,h1 a:visited .ui-accordion-content a:hover,h1 a:visited .ui-tabs-content a:hover,h1 a:visited a:hover,h2 .ui-accordion-content a .ui-tabs-content a:hover,h2 .ui-accordion-content a a:hover,h2 .ui-tabs-content a .ui-accordion-content a:hover,h2 .ui-tabs-content a a:hover,h2 a .ui-accordion-content a:hover,h2 a .ui-tabs-content a:hover,h2 a a:hover,h2 a:visited .ui-accordion-content a:hover,h2 a:visited .ui-tabs-content a:hover,h2 a:visited a:hover,h3 .ui-accordion-content a .ui-tabs-content a:hover,h3 .ui-accordion-content a a:hover,h3 .ui-tabs-content a .ui-accordion-content a:hover,h3 .ui-tabs-content a a:hover,h3 a .ui-accordion-content a:hover,h3 a .ui-tabs-content a:hover,h3 a a:hover,h3 a:visited .ui-accordion-content a:hover,h3 a:visited .ui-tabs-content a:hover,h3 a:visited a:hover,h4 .ui-accordion-content a .ui-tabs-content a:hover,h4 .ui-accordion-content a a:hover,h4 .ui-tabs-content a .ui-accordion-content a:hover,h4 .ui-tabs-content a a:hover,h4 a .ui-accordion-content a:hover,h4 a .ui-tabs-content a:hover,h4 a a:hover,h4 a:visited .ui-accordion-content a:hover,h4 a:visited .ui-tabs-content a:hover,h4 a:visited a:hover,h5 .ui-accordion-content a .ui-tabs-content a:hover,h5 .ui-accordion-content a a:hover,h5 .ui-tabs-content a .ui-accordion-content a:hover,h5 .ui-tabs-content a a:hover,h5 a .ui-accordion-content a:hover,h5 a .ui-tabs-content a:hover,h5 a a:hover,h5 a:visited .ui-accordion-content a:hover,h5 a:visited .ui-tabs-content a:hover,h5 a:visited a:hover,h6 .ui-accordion-content a .ui-tabs-content a:hover,h6 .ui-accordion-content a a:hover,h6 .ui-tabs-content a .ui-accordion-content a:hover,h6 .ui-tabs-content a a:hover,h6 a .ui-accordion-content a:hover,h6 a .ui-tabs-content a:hover,h6 a a:hover,h6 a:visited .ui-accordion-content a:hover,h6 a:visited .ui-tabs-content a:hover,h6 a:visited a:hover{color:#d65828}.alpha a .ui-accordion-content a:active,.alpha a .ui-tabs-content a:active,.alpha a a:active,.alpha a:visited .ui-accordion-content a:active,.alpha a:visited .ui-tabs-content a:active,.alpha a:visited a:active,.beta a .ui-accordion-content a:active,.beta a .ui-tabs-content a:active,.beta a a:active,.beta a:visited .ui-accordion-content a:active,.beta a:visited .ui-tabs-content a:active,.beta a:visited a:active,.delta a .ui-accordion-content a:active,.delta a .ui-tabs-content a:active,.delta a a:active,.delta a:visited .ui-accordion-content a:active,.delta a:visited .ui-tabs-content a:active,.delta a:visited a:active,.epsilon a .ui-accordion-content a:active,.epsilon a .ui-tabs-content a:active,.epsilon a a:active,.epsilon a:visited .ui-accordion-content a:active,.epsilon a:visited .ui-tabs-content a:active,.epsilon a:visited a:active,.gamma a .ui-accordion-content a:active,.gamma a .ui-tabs-content a:active,.gamma a a:active,.gamma a:visited .ui-accordion-content a:active,.gamma a:visited .ui-tabs-content a:active,.gamma a:visited a:active,.header-links .ui-accordion-content a:active,.header-links .ui-tabs-content a:active,.header-links a:active,.ui-accordion-content .alpha a a:active,.ui-accordion-content .alpha a:visited a:active,.ui-accordion-content .beta a a:active,.ui-accordion-content .beta a:visited a:active,.ui-accordion-content .delta a a:active,.ui-accordion-content .delta a:visited a:active,.ui-accordion-content .epsilon a a:active,.ui-accordion-content .epsilon a:visited a:active,.ui-accordion-content .gamma a a:active,.ui-accordion-content .gamma a:visited a:active,.ui-accordion-content .header-links a:active,.ui-accordion-content .ui-tabs-content h1 a a:active,.ui-accordion-content .ui-tabs-content h2 a a:active,.ui-accordion-content .ui-tabs-content h3 a a:active,.ui-accordion-content .ui-tabs-content h4 a a:active,.ui-accordion-content .ui-tabs-content h5 a a:active,.ui-accordion-content .ui-tabs-content h6 a a:active,.ui-accordion-content .zeta a a:active,.ui-accordion-content .zeta a:visited a:active,.ui-accordion-content h1 .ui-tabs-content a a:active,.ui-accordion-content h1 a .ui-tabs-content a:active,.ui-accordion-content h1 a a:active,.ui-accordion-content h1 a:visited a:active,.ui-accordion-content h2 .ui-tabs-content a a:active,.ui-accordion-content h2 a .ui-tabs-content a:active,.ui-accordion-content h2 a a:active,.ui-accordion-content h2 a:visited a:active,.ui-accordion-content h3 .ui-tabs-content a a:active,.ui-accordion-content h3 a .ui-tabs-content a:active,.ui-accordion-content h3 a a:active,.ui-accordion-content h3 a:visited a:active,.ui-accordion-content h4 .ui-tabs-content a a:active,.ui-accordion-content h4 a .ui-tabs-content a:active,.ui-accordion-content h4 a a:active,.ui-accordion-content h4 a:visited a:active,.ui-accordion-content h5 .ui-tabs-content a a:active,.ui-accordion-content h5 a .ui-tabs-content a:active,.ui-accordion-content h5 a a:active,.ui-accordion-content h5 a:visited a:active,.ui-accordion-content h6 .ui-tabs-content a a:active,.ui-accordion-content h6 a .ui-tabs-content a:active,.ui-accordion-content h6 a a:active,.ui-accordion-content h6 a:visited a:active,.ui-tabs-content .alpha a a:active,.ui-tabs-content .alpha a:visited a:active,.ui-tabs-content .beta a a:active,.ui-tabs-content .beta a:visited a:active,.ui-tabs-content .delta a a:active,.ui-tabs-content .delta a:visited a:active,.ui-tabs-content .epsilon a a:active,.ui-tabs-content .epsilon a:visited a:active,.ui-tabs-content .gamma a a:active,.ui-tabs-content .gamma a:visited a:active,.ui-tabs-content .header-links a:active,.ui-tabs-content .ui-accordion-content h1 a a:active,.ui-tabs-content .ui-accordion-content h2 a a:active,.ui-tabs-content .ui-accordion-content h3 a a:active,.ui-tabs-content .ui-accordion-content h4 a a:active,.ui-tabs-content .ui-accordion-content h5 a a:active,.ui-tabs-content .ui-accordion-content h6 a a:active,.ui-tabs-content .zeta a a:active,.ui-tabs-content .zeta a:visited a:active,.ui-tabs-content h1 .ui-accordion-content a a:active,.ui-tabs-content h1 a .ui-accordion-content a:active,.ui-tabs-content h1 a a:active,.ui-tabs-content h1 a:visited a:active,.ui-tabs-content h2 .ui-accordion-content a a:active,.ui-tabs-content h2 a .ui-accordion-content a:active,.ui-tabs-content h2 a a:active,.ui-tabs-content h2 a:visited a:active,.ui-tabs-content h3 .ui-accordion-content a a:active,.ui-tabs-content h3 a .ui-accordion-content a:active,.ui-tabs-content h3 a a:active,.ui-tabs-content h3 a:visited a:active,.ui-tabs-content h4 .ui-accordion-content a a:active,.ui-tabs-content h4 a .ui-accordion-content a:active,.ui-tabs-content h4 a a:active,.ui-tabs-content h4 a:visited a:active,.ui-tabs-content h5 .ui-accordion-content a a:active,.ui-tabs-content h5 a .ui-accordion-content a:active,.ui-tabs-content h5 a a:active,.ui-tabs-content h5 a:visited a:active,.ui-tabs-content h6 .ui-accordion-content a a:active,.ui-tabs-content h6 a .ui-accordion-content a:active,.ui-tabs-content h6 a a:active,.ui-tabs-content h6 a:visited a:active,.zeta a .ui-accordion-content a:active,.zeta a .ui-tabs-content a:active,.zeta a a:active,.zeta a:visited .ui-accordion-content a:active,.zeta a:visited .ui-tabs-content a:active,.zeta a:visited a:active,h1 .ui-accordion-content a .ui-tabs-content a:active,h1 .ui-accordion-content a a:active,h1 .ui-tabs-content a .ui-accordion-content a:active,h1 .ui-tabs-content a a:active,h1 a .ui-accordion-content a:active,h1 a .ui-tabs-content a:active,h1 a a:active,h1 a:visited .ui-accordion-content a:active,h1 a:visited .ui-tabs-content a:active,h1 a:visited a:active,h2 .ui-accordion-content a .ui-tabs-content a:active,h2 .ui-accordion-content a a:active,h2 .ui-tabs-content a .ui-accordion-content a:active,h2 .ui-tabs-content a a:active,h2 a .ui-accordion-content a:active,h2 a .ui-tabs-content a:active,h2 a a:active,h2 a:visited .ui-accordion-content a:active,h2 a:visited .ui-tabs-content a:active,h2 a:visited a:active,h3 .ui-accordion-content a .ui-tabs-content a:active,h3 .ui-accordion-content a a:active,h3 .ui-tabs-content a .ui-accordion-content a:active,h3 .ui-tabs-content a a:active,h3 a .ui-accordion-content a:active,h3 a .ui-tabs-content a:active,h3 a a:active,h3 a:visited .ui-accordion-content a:active,h3 a:visited .ui-tabs-content a:active,h3 a:visited a:active,h4 .ui-accordion-content a .ui-tabs-content a:active,h4 .ui-accordion-content a a:active,h4 .ui-tabs-content a .ui-accordion-content a:active,h4 .ui-tabs-content a a:active,h4 a .ui-accordion-content a:active,h4 a .ui-tabs-content a:active,h4 a a:active,h4 a:visited .ui-accordion-content a:active,h4 a:visited .ui-tabs-content a:active,h4 a:visited a:active,h5 .ui-accordion-content a .ui-tabs-content a:active,h5 .ui-accordion-content a a:active,h5 .ui-tabs-content a .ui-accordion-content a:active,h5 .ui-tabs-content a a:active,h5 a .ui-accordion-content a:active,h5 a .ui-tabs-content a:active,h5 a a:active,h5 a:visited .ui-accordion-content a:active,h5 a:visited .ui-tabs-content a:active,h5 a:visited a:active,h6 .ui-accordion-content a .ui-tabs-content a:active,h6 .ui-accordion-content a a:active,h6 .ui-tabs-content a .ui-accordion-content a:active,h6 .ui-tabs-content a a:active,h6 a .ui-accordion-content a:active,h6 a .ui-tabs-content a:active,h6 a a:active,h6 a:visited .ui-accordion-content a:active,h6 a:visited .ui-tabs-content a:active,h6 a:visited a:active{color:#b00}.alpha a .ui-accordion-content a:focus,.alpha a .ui-tabs-content a:focus,.alpha a a:focus,.alpha a:visited .ui-accordion-content a:focus,.alpha a:visited .ui-tabs-content a:focus,.alpha a:visited a:focus,.beta a .ui-accordion-content a:focus,.beta a .ui-tabs-content a:focus,.beta a a:focus,.beta a:visited .ui-accordion-content a:focus,.beta a:visited .ui-tabs-content a:focus,.beta a:visited a:focus,.delta a .ui-accordion-content a:focus,.delta a .ui-tabs-content a:focus,.delta a a:focus,.delta a:visited .ui-accordion-content a:focus,.delta a:visited .ui-tabs-content a:focus,.delta a:visited a:focus,.epsilon a .ui-accordion-content a:focus,.epsilon a .ui-tabs-content a:focus,.epsilon a a:focus,.epsilon a:visited .ui-accordion-content a:focus,.epsilon a:visited .ui-tabs-content a:focus,.epsilon a:visited a:focus,.gamma a .ui-accordion-content a:focus,.gamma a .ui-tabs-content a:focus,.gamma a a:focus,.gamma a:visited .ui-accordion-content a:focus,.gamma a:visited .ui-tabs-content a:focus,.gamma a:visited a:focus,.header-links .ui-accordion-content a:focus,.header-links .ui-tabs-content a:focus,.header-links a:focus,.ui-accordion-content .alpha a a:focus,.ui-accordion-content .alpha a:visited a:focus,.ui-accordion-content .beta a a:focus,.ui-accordion-content .beta a:visited a:focus,.ui-accordion-content .delta a a:focus,.ui-accordion-content .delta a:visited a:focus,.ui-accordion-content .epsilon a a:focus,.ui-accordion-content .epsilon a:visited a:focus,.ui-accordion-content .gamma a a:focus,.ui-accordion-content .gamma a:visited a:focus,.ui-accordion-content .header-links a:focus,.ui-accordion-content .ui-tabs-content h1 a a:focus,.ui-accordion-content .ui-tabs-content h2 a a:focus,.ui-accordion-content .ui-tabs-content h3 a a:focus,.ui-accordion-content .ui-tabs-content h4 a a:focus,.ui-accordion-content .ui-tabs-content h5 a a:focus,.ui-accordion-content .ui-tabs-content h6 a a:focus,.ui-accordion-content .zeta a a:focus,.ui-accordion-content .zeta a:visited a:focus,.ui-accordion-content h1 .ui-tabs-content a a:focus,.ui-accordion-content h1 a .ui-tabs-content a:focus,.ui-accordion-content h1 a a:focus,.ui-accordion-content h1 a:visited a:focus,.ui-accordion-content h2 .ui-tabs-content a a:focus,.ui-accordion-content h2 a .ui-tabs-content a:focus,.ui-accordion-content h2 a a:focus,.ui-accordion-content h2 a:visited a:focus,.ui-accordion-content h3 .ui-tabs-content a a:focus,.ui-accordion-content h3 a .ui-tabs-content a:focus,.ui-accordion-content h3 a a:focus,.ui-accordion-content h3 a:visited a:focus,.ui-accordion-content h4 .ui-tabs-content a a:focus,.ui-accordion-content h4 a .ui-tabs-content a:focus,.ui-accordion-content h4 a a:focus,.ui-accordion-content h4 a:visited a:focus,.ui-accordion-content h5 .ui-tabs-content a a:focus,.ui-accordion-content h5 a .ui-tabs-content a:focus,.ui-accordion-content h5 a a:focus,.ui-accordion-content h5 a:visited a:focus,.ui-accordion-content h6 .ui-tabs-content a a:focus,.ui-accordion-content h6 a .ui-tabs-content a:focus,.ui-accordion-content h6 a a:focus,.ui-accordion-content h6 a:visited a:focus,.ui-tabs-content .alpha a a:focus,.ui-tabs-content .alpha a:visited a:focus,.ui-tabs-content .beta a a:focus,.ui-tabs-content .beta a:visited a:focus,.ui-tabs-content .delta a a:focus,.ui-tabs-content .delta a:visited a:focus,.ui-tabs-content .epsilon a a:focus,.ui-tabs-content .epsilon a:visited a:focus,.ui-tabs-content .gamma a a:focus,.ui-tabs-content .gamma a:visited a:focus,.ui-tabs-content .header-links a:focus,.ui-tabs-content .ui-accordion-content h1 a a:focus,.ui-tabs-content .ui-accordion-content h2 a a:focus,.ui-tabs-content .ui-accordion-content h3 a a:focus,.ui-tabs-content .ui-accordion-content h4 a a:focus,.ui-tabs-content .ui-accordion-content h5 a a:focus,.ui-tabs-content .ui-accordion-content h6 a a:focus,.ui-tabs-content .zeta a a:focus,.ui-tabs-content .zeta a:visited a:focus,.ui-tabs-content h1 .ui-accordion-content a a:focus,.ui-tabs-content h1 a .ui-accordion-content a:focus,.ui-tabs-content h1 a a:focus,.ui-tabs-content h1 a:visited a:focus,.ui-tabs-content h2 .ui-accordion-content a a:focus,.ui-tabs-content h2 a .ui-accordion-content a:focus,.ui-tabs-content h2 a a:focus,.ui-tabs-content h2 a:visited a:focus,.ui-tabs-content h3 .ui-accordion-content a a:focus,.ui-tabs-content h3 a .ui-accordion-content a:focus,.ui-tabs-content h3 a a:focus,.ui-tabs-content h3 a:visited a:focus,.ui-tabs-content h4 .ui-accordion-content a a:focus,.ui-tabs-content h4 a .ui-accordion-content a:focus,.ui-tabs-content h4 a a:focus,.ui-tabs-content h4 a:visited a:focus,.ui-tabs-content h5 .ui-accordion-content a a:focus,.ui-tabs-content h5 a .ui-accordion-content a:focus,.ui-tabs-content h5 a a:focus,.ui-tabs-content h5 a:visited a:focus,.ui-tabs-content h6 .ui-accordion-content a a:focus,.ui-tabs-content h6 a .ui-accordion-content a:focus,.ui-tabs-content h6 a a:focus,.ui-tabs-content h6 a:visited a:focus,.zeta a .ui-accordion-content a:focus,.zeta a .ui-tabs-content a:focus,.zeta a a:focus,.zeta a:visited .ui-accordion-content a:focus,.zeta a:visited .ui-tabs-content a:focus,.zeta a:visited a:focus,h1 .ui-accordion-content a .ui-tabs-content a:focus,h1 .ui-accordion-content a a:focus,h1 .ui-tabs-content a .ui-accordion-content a:focus,h1 .ui-tabs-content a a:focus,h1 a .ui-accordion-content a:focus,h1 a .ui-tabs-content a:focus,h1 a a:focus,h1 a:visited .ui-accordion-content a:focus,h1 a:visited .ui-tabs-content a:focus,h1 a:visited a:focus,h2 .ui-accordion-content a .ui-tabs-content a:focus,h2 .ui-accordion-content a a:focus,h2 .ui-tabs-content a .ui-accordion-content a:focus,h2 .ui-tabs-content a a:focus,h2 a .ui-accordion-content a:focus,h2 a .ui-tabs-content a:focus,h2 a a:focus,h2 a:visited .ui-accordion-content a:focus,h2 a:visited .ui-tabs-content a:focus,h2 a:visited a:focus,h3 .ui-accordion-content a .ui-tabs-content a:focus,h3 .ui-accordion-content a a:focus,h3 .ui-tabs-content a .ui-accordion-content a:focus,h3 .ui-tabs-content a a:focus,h3 a .ui-accordion-content a:focus,h3 a .ui-tabs-content a:focus,h3 a a:focus,h3 a:visited .ui-accordion-content a:focus,h3 a:visited .ui-tabs-content a:focus,h3 a:visited a:focus,h4 .ui-accordion-content a .ui-tabs-content a:focus,h4 .ui-accordion-content a a:focus,h4 .ui-tabs-content a .ui-accordion-content a:focus,h4 .ui-tabs-content a a:focus,h4 a .ui-accordion-content a:focus,h4 a .ui-tabs-content a:focus,h4 a a:focus,h4 a:visited .ui-accordion-content a:focus,h4 a:visited .ui-tabs-content a:focus,h4 a:visited a:focus,h5 .ui-accordion-content a .ui-tabs-content a:focus,h5 .ui-accordion-content a a:focus,h5 .ui-tabs-content a .ui-accordion-content a:focus,h5 .ui-tabs-content a a:focus,h5 a .ui-accordion-content a:focus,h5 a .ui-tabs-content a:focus,h5 a a:focus,h5 a:visited .ui-accordion-content a:focus,h5 a:visited .ui-tabs-content a:focus,h5 a:visited a:focus,h6 .ui-accordion-content a .ui-tabs-content a:focus,h6 .ui-accordion-content a a:focus,h6 .ui-tabs-content a .ui-accordion-content a:focus,h6 .ui-tabs-content a a:focus,h6 a .ui-accordion-content a:focus,h6 a .ui-tabs-content a:focus,h6 a a:focus,h6 a:visited .ui-accordion-content a:focus,h6 a:visited .ui-tabs-content a:focus,h6 a:visited a:focus{color:#d65828}.alpha a:hover,.beta a:hover,.delta a:hover,.epsilon a:hover,.gamma a:hover,.header-links:hover,.zeta a:hover,h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{text-decoration:none}.l-footer-wrapper .l-region--footer-1 a a,.l-footer-wrapper .l-region--footer-3 a a,.reverse-links .ui-accordion-content a,.reverse-links .ui-tabs-content a,.reverse-links a,.ui-accordion-content .reverse-links a,.ui-accordion-content table th a a,.ui-tabs-content .reverse-links a,.ui-tabs-content table th a a,table th .ui-accordion-content a a,table th .ui-tabs-content a a,table th a .ui-accordion-content a,table th a .ui-tabs-content a,table th a a{color:#ededed}.l-footer-wrapper .l-region--footer-1 a a:visited,.l-footer-wrapper .l-region--footer-3 a a:visited,.reverse-links a:visited,table th a a:visited{color:#fff}.l-footer-wrapper .l-region--footer-1 a a:hover,.l-footer-wrapper .l-region--footer-3 a a:hover,.reverse-links a:hover,table th a a:hover{color:#b00}.l-footer-wrapper .l-region--footer-1 a a:active,.l-footer-wrapper .l-region--footer-3 a a:active,.reverse-links a:active,table th a a:active{color:#ededed}.l-footer-wrapper .l-region--footer-1 a a:focus,.l-footer-wrapper .l-region--footer-3 a a:focus,.reverse-links a:focus,table th a a:focus{color:#d65828}.more-link,.more-link a{text-transform:uppercase;font-weight:600;text-decoration:none;margin-top:2em}.l-footer-wrapper .l-region--footer-1 a,.l-footer-wrapper .l-region--footer-3 a,.labels{font-weight:400}.fine-print,table caption{font-size:12px;font-size:1.2rem;line-height:135%}.labels{font-size:13px;font-size:1.3rem;text-transform:uppercase}.align-right{text-align:right}.align-center{text-align:center}blockquote{background:#f5f5f5;border-left:4px solid #ddd;padding:1.9em 2em;overflow:hidden}blockquote li,blockquote ol,blockquote p,blockquote ul{margin:.4em 0 0}blockquote div,blockquote h2,blockquote h3,blockquote h4,blockquote h5{margin:0 0 .4em}blockquote.pull-quote{font-size:26px;font-size:2.6rem;background:0 0;border-left:0 none;font-family:capita,Georgia,serif;font-style:italic;line-height:130%;padding:0;margin:1.5em 1.5em 1.5em 2em}blockquote.pull-quote :first-child{margin-top:.3em}blockquote.pull-quote::before{font-size:35px;font-size:3.5rem;color:rgba(0,0,0,.6);content:"\f10d";font-family:FontAwesome;font-style:normal;margin-left:-1.5em;float:left}blockquote.pull-quote cite{font-size:16px;font-size:1.6rem;font-family:proximanova,Helvetica,Arial,sans-serif;font-style:normal;display:block;padding-top:.6em}.book_printer,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text span.ext{display:none}blockquote.pull-quote cite::before{content:"―";margin-right:3px}.node-type-basic-page .field--name-field-ocio-body{margin-bottom:3em}.book-navigation{border-top:1px solid #ededed;border-bottom:1px solid #ededed;padding:.5em 0;margin:2em 0}.book-navigation__links a{color:#2d2d2d;text-transform:uppercase}.book-navigation__links a:hover,.book-navigation__links a:visited:hover{color:#b00;text-decoration:none}.book-navigation__links a:visited{color:#2d2d2d}.book-navigation__links a .fa{color:#b00}.book-navigation__links>.book-navigation__previous .fa{margin-right:10px}.book-navigation__links>.book-navigation__next .fa{margin-left:10px}.book_add_child a{color:#2d2d2d;text-transform:uppercase;min-width:180px}.book_add_child:before{content:"\f067";font-family:FontAwesome;color:#028da9;float:left;margin-right:5px}.node-type-ocio-landing-page .l-header{padding:0!important}.node-type-ocio-landing-page h1#page-title{margin-top:.8em;padding-bottom:.6em}.node-type-ocio-landing-page .l-region--hero-wrapper{position:relative;max-height:500px}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image{position:relative;top:0;z-index:9;max-height:500px;overflow:hidden}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text{position:absolute;width:100%;text-align:center;z-index:99;font-size:28px;font-size:2.8rem;line-height:120%;padding:.5em 1em}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text a:hover{text-decoration:none}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.white,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.white a{color:#fff}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.white a.translucent,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.white.translucent{background-color:rgba(20,20,20,.6)}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.white a.translucent:hover,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.white.translucent:hover{background-color:rgba(46,46,46,.6);color:#fff}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.dk-gray,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.dk-gray a{color:#2d2d2d}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.dk-gray a.translucent,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.dk-gray.translucent{background-color:rgba(220,220,220,.7)}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.dk-gray a.translucent:hover,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.dk-gray.translucent:hover{background-color:rgba(200,200,200,.7)}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.black,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.black a{color:#000}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.black a.translucent,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.black.translucent{background-color:rgba(220,220,220,.7)}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.black a.translucent:hover,.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.black.translucent:hover{background-color:rgba(200,200,200,.7)}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.center-top{top:0;padding-top:1em}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.center-top.translucent{padding-top:.5em}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.center-middle{top:22%}@media (min-width:47.5em){.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.center-middle{top:30%}}@media (min-width:60em){.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text{font-size:36px;font-size:3.6rem}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.center-middle{top:36%}}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.center-bottom{bottom:0;padding-bottom:1em}.node-type-ocio-landing-page .l-region--hero-wrapper .field--name-field-banner-image-text.center-bottom.translucent{padding-bottom:.5em}.l-content{min-height:4em}.l-content h1{margin-top:1.2em}.l-footer-wrapper{background:#2d2d2d;color:#fff}.l-footer-wrapper .l-region{margin-bottom:20px;text-align:left}.l-footer-wrapper .l-region--footer-1 p,.l-footer-wrapper .l-region--footer-3 p{font-size:13px;font-size:1.3rem;line-height:135%;margin:0}.l-footer-wrapper .l-region--footer-2{text-align:right}.l-footer-wrapper #osu-wordmark{margin-bottom:20px}.l-footer-wrapper .osu-siteinfo-name{font-weight:600}.l-footer-wrapper .osu-siteinfo-address{float:left;font-style:normal}.l-footer-wrapper .osu-siteinfo-address .pipe{margin:0 2px;color:#666}.l-footer-wrapper .osu-siteinfo-social{margin-top:0;text-align:right;padding-left:0}.l-footer-wrapper .osu-siteinfo-social li{display:inline-block;list-style-type:none}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link{color:#fff;background-color:#666;margin:0 0 1em 1em;width:2.55em;padding:.62em 0 .46em;text-align:center;display:block}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link:hover{background-color:#000}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-facebook:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-facebook:hover{background-color:#3b5998}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-twitter:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-twitter:hover{background-color:#00aced}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-youtube:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-youtube:hover{background-color:#b00}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-googleplus:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-googleplus:hover{background-color:#dd4b39}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-photos:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-photos:hover{background-color:#ff0084}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-instagram:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-instagram:hover{background-color:#517fa4}.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-linkedin:focus,.l-footer-wrapper .osu-siteinfo-social li .siteinfo-social-link.link-linkedin:hover{background-color:#007bb6}@media (max-width:47.5em){.l-page .l-footer-wrapper .l-region{text-align:center}.l-page .l-footer-wrapper .l-region p{font-size:17px;font-size:1.7rem}.l-page .l-footer-wrapper .l-region>*{float:none;text-align:center}.l-page .l-footer-wrapper .l-region ul{padding:0}.l-page .l-footer-wrapper .l-region ul li:first-child *{margin-left:0}}.l-region--hero-wrapper{background:#fff}.l-region--hero-wrapper .field--name-field-banner-image img{display:block;width:100%}.l-region--main-menu .menu .collapsed,.l-region--main-menu .menu .expanded,.l-region--main-menu .menu .leaf,.l-region--sidebar-1 .menu .collapsed,.l-region--sidebar-1 .menu .expanded,.l-region--sidebar-1 .menu .leaf{list-style-image:none;list-style-type:none}.l-region--main-menu{position:relative;display:table;width:100%}.l-region--main-menu h2.block__title{display:none}.l-region--main-menu>*{display:table-cell;vertical-align:middle;width:100%}.l-region--main-menu ul.sf-main-menu{float:left;clear:left;margin:0}.l-region--main-menu ul.sf-main-menu li{float:left;margin:0;padding:.75em 1.6em .75em 0;text-transform:uppercase}.l-region--main-menu ul.sf-main-menu li a,.l-region--main-menu ul.sf-main-menu li span{font-weight:500;text-decoration:none}.l-region--main-menu ul.sf-main-menu li a:hover{text-decoration:none}.l-region--main-menu ul.sf-main-menu ul{display:none;position:absolute;z-index:99;margin-top:.7em;margin-left:-.9em}.l-region--main-menu ul.sf-main-menu ul li{padding:0}.l-region--main-menu ul.sf-main-menu ul li a{padding:.75em .9em .65em}.l-region--main-menu ul li:hover>ul{display:block}.l-region--main-menu ul ul.menu li{float:none;position:relative}.l-region--main-menu,.l-region--main-menu-wrapper,.l-region--main-menu-wrapper.white,.l-region--main-menu.white{background-color:#fff}.l-region--main-menu ul.menu ul,.l-region--main-menu-wrapper ul.menu ul,.l-region--main-menu-wrapper.lt-gray,.l-region--main-menu-wrapper.white ul.menu ul,.l-region--main-menu.lt-gray,.l-region--main-menu.white ul.menu ul{background-color:#ededed}.l-region--main-menu .sf-menu ul:before,.l-region--main-menu-wrapper .sf-menu ul:before,.l-region--main-menu-wrapper.white .sf-menu ul:before,.l-region--main-menu.white .sf-menu ul:before{border-bottom-color:#ededed}.l-region--main-menu .ui-accordion-content ul.menu>li>a a,.l-region--main-menu .ui-tabs-content ul.menu>li>a a,.l-region--main-menu ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu ul.menu ul>li>a a,.l-region--main-menu ul.menu>li>a a,.l-region--main-menu-wrapper .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper .ui-accordion-content ul.menu>li>a a,.l-region--main-menu-wrapper .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper .ui-tabs-content ul.menu>li>a a,.l-region--main-menu-wrapper ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu-wrapper ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu-wrapper ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper ul.menu ul>li>a a,.l-region--main-menu-wrapper ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper ul.menu>li>a a,.l-region--main-menu-wrapper.white .ui-accordion-content ul.menu>li>a a,.l-region--main-menu-wrapper.white .ui-tabs-content ul.menu>li>a a,.l-region--main-menu-wrapper.white ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu-wrapper.white ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu-wrapper.white ul.menu ul>li>a a,.l-region--main-menu-wrapper.white ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.white ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.white ul.menu>li>a a,.l-region--main-menu.white .ui-accordion-content ul.menu>li>a a,.l-region--main-menu.white .ui-tabs-content ul.menu>li>a a,.l-region--main-menu.white ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu.white ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu.white ul.menu ul>li>a a,.l-region--main-menu.white ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.white ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.white ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper ul.menu>li>a a{color:#666}.l-region--main-menu .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu ul.menu ul>li>a a:hover,.l-region--main-menu ul.menu ul>li>a a:visited,.l-region--main-menu ul.menu>li>a a:hover,.l-region--main-menu ul.menu>li>a a:visited,.l-region--main-menu-wrapper .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu-wrapper ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu-wrapper ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu-wrapper ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu-wrapper ul.menu ul>li>a a:hover,.l-region--main-menu-wrapper ul.menu ul>li>a a:visited,.l-region--main-menu-wrapper ul.menu>li>a a:hover,.l-region--main-menu-wrapper ul.menu>li>a a:visited,.l-region--main-menu-wrapper.white .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.white .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.white .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.white .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.white ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu-wrapper.white ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu-wrapper.white ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu-wrapper.white ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu-wrapper.white ul.menu ul>li>a a:hover,.l-region--main-menu-wrapper.white ul.menu ul>li>a a:visited,.l-region--main-menu-wrapper.white ul.menu>li>a a:hover,.l-region--main-menu-wrapper.white ul.menu>li>a a:visited,.l-region--main-menu.white .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu.white .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu.white .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu.white .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu.white ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu.white ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu.white ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu.white ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu.white ul.menu ul>li>a a:hover,.l-region--main-menu.white ul.menu ul>li>a a:visited,.l-region--main-menu.white ul.menu>li>a a:hover,.l-region--main-menu.white ul.menu>li>a a:visited{color:#2d2d2d}.l-region--main-menu .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu ul.menu ul>li>a a:active,.l-region--main-menu ul.menu>li>a a:active,.l-region--main-menu-wrapper .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu-wrapper .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu-wrapper ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu-wrapper ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu-wrapper ul.menu ul>li>a a:active,.l-region--main-menu-wrapper ul.menu>li>a a:active,.l-region--main-menu-wrapper.white .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.white .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.white ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu-wrapper.white ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu-wrapper.white ul.menu ul>li>a a:active,.l-region--main-menu-wrapper.white ul.menu>li>a a:active,.l-region--main-menu.white .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu.white .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu.white ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu.white ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu.white ul.menu ul>li>a a:active,.l-region--main-menu.white ul.menu>li>a a:active{color:#666}.l-region--main-menu .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu ul.menu ul>li>a a:focus,.l-region--main-menu ul.menu>li>a a:focus,.l-region--main-menu-wrapper .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu-wrapper ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu-wrapper ul.menu ul>li>a a:focus,.l-region--main-menu-wrapper ul.menu>li>a a:focus,.l-region--main-menu-wrapper.white .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.white .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.white ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu-wrapper.white ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu-wrapper.white ul.menu ul>li>a a:focus,.l-region--main-menu-wrapper.white ul.menu>li>a a:focus,.l-region--main-menu.white .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu.white .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu.white ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu.white ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu.white ul.menu ul>li>a a:focus,.l-region--main-menu.white ul.menu>li>a a:focus{color:#b00}.l-region--main-menu #search-block-toggle a,.l-region--main-menu ul.menu li span,.l-region--main-menu ul.menu ul li span,.l-region--main-menu-wrapper #search-block-toggle .ui-accordion-content a,.l-region--main-menu-wrapper #search-block-toggle .ui-tabs-content a,.l-region--main-menu-wrapper #search-block-toggle a,.l-region--main-menu-wrapper ul.menu li span,.l-region--main-menu-wrapper ul.menu ul li span,.l-region--main-menu-wrapper.white #search-block-toggle a,.l-region--main-menu-wrapper.white ul.menu li span,.l-region--main-menu-wrapper.white ul.menu ul li span,.l-region--main-menu.white #search-block-toggle a,.l-region--main-menu.white ul.menu li span,.l-region--main-menu.white ul.menu ul li span,.ui-accordion-content .l-region--main-menu-wrapper #search-block-toggle a,.ui-tabs-content .l-region--main-menu-wrapper #search-block-toggle a{color:#666}.l-region--main-menu #search-block-toggle a:hover,.l-region--main-menu #search-block-toggle a:visited,.l-region--main-menu-wrapper #search-block-toggle a:hover,.l-region--main-menu-wrapper #search-block-toggle a:visited,.l-region--main-menu-wrapper.white #search-block-toggle a:hover,.l-region--main-menu-wrapper.white #search-block-toggle a:visited,.l-region--main-menu.white #search-block-toggle a:hover,.l-region--main-menu.white #search-block-toggle a:visited{color:#2d2d2d}.l-region--main-menu #search-block-toggle a:active,.l-region--main-menu-wrapper #search-block-toggle a:active,.l-region--main-menu-wrapper.white #search-block-toggle a:active,.l-region--main-menu.white #search-block-toggle a:active{color:#666}.l-region--main-menu #search-block-toggle a:focus,.l-region--main-menu-wrapper #search-block-toggle a:focus,.l-region--main-menu-wrapper.white #search-block-toggle a:focus,.l-region--main-menu.white #search-block-toggle a:focus{color:#b00}.l-region--main-menu-wrapper.lt-gray ul.menu ul,.l-region--main-menu.lt-gray ul.menu ul{background-color:#d4d4d4}.l-region--main-menu-wrapper.lt-gray .sf-menu ul:before,.l-region--main-menu.lt-gray .sf-menu ul:before{border-bottom-color:#d4d4d4}.l-region--main-menu-wrapper.lt-gray .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.lt-gray .ui-accordion-content ul.menu>li>a a,.l-region--main-menu-wrapper.lt-gray .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.lt-gray .ui-tabs-content ul.menu>li>a a,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a,.l-region--main-menu-wrapper.lt-gray ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.lt-gray ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.lt-gray ul.menu>li>a a,.l-region--main-menu.lt-gray .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.lt-gray .ui-accordion-content ul.menu>li>a a,.l-region--main-menu.lt-gray .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.lt-gray .ui-tabs-content ul.menu>li>a a,.l-region--main-menu.lt-gray ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu.lt-gray ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu.lt-gray ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu.lt-gray ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu.lt-gray ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu.lt-gray ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu.lt-gray ul.menu ul>li>a a,.l-region--main-menu.lt-gray ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.lt-gray ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.lt-gray ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.lt-gray .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.lt-gray ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.lt-gray ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.lt-gray ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.lt-gray .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.lt-gray ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu.lt-gray ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.lt-gray ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu.lt-gray ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.lt-gray ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.lt-gray ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.lt-gray ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.lt-gray ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.lt-gray .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.lt-gray ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.lt-gray ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.lt-gray ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.lt-gray .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.lt-gray ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu.lt-gray ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.lt-gray ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu.lt-gray ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.lt-gray ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.lt-gray ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.lt-gray ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.lt-gray ul.menu>li>a a{color:#666}.l-region--main-menu-wrapper.lt-gray .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.lt-gray .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a:visited,.l-region--main-menu-wrapper.lt-gray ul.menu>li>a a:visited,.l-region--main-menu.lt-gray .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu.lt-gray .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu.lt-gray ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu.lt-gray ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu.lt-gray ul.menu ul>li>a a:visited,.l-region--main-menu.lt-gray ul.menu>li>a a:visited{color:#000}.l-region--main-menu-wrapper.lt-gray .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.lt-gray .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a:hover,.l-region--main-menu-wrapper.lt-gray ul.menu>li>a a:hover,.l-region--main-menu.lt-gray .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu.lt-gray .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu.lt-gray ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu.lt-gray ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu.lt-gray ul.menu ul>li>a a:hover,.l-region--main-menu.lt-gray ul.menu>li>a a:hover{color:#2d2d2d}.l-region--main-menu-wrapper.lt-gray .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.lt-gray .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a:active,.l-region--main-menu-wrapper.lt-gray ul.menu>li>a a:active,.l-region--main-menu.lt-gray .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu.lt-gray .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu.lt-gray ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu.lt-gray ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu.lt-gray ul.menu ul>li>a a:active,.l-region--main-menu.lt-gray ul.menu>li>a a:active{color:#666}.l-region--main-menu-wrapper.lt-gray .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.lt-gray .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu-wrapper.lt-gray ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu-wrapper.lt-gray ul.menu ul>li>a a:focus,.l-region--main-menu-wrapper.lt-gray ul.menu>li>a a:focus,.l-region--main-menu.lt-gray .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu.lt-gray .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu.lt-gray ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu.lt-gray ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu.lt-gray ul.menu ul>li>a a:focus,.l-region--main-menu.lt-gray ul.menu>li>a a:focus{color:#b00}.l-region--main-menu-wrapper.lt-gray #search-block-toggle a,.l-region--main-menu-wrapper.lt-gray ul.menu li span,.l-region--main-menu-wrapper.lt-gray ul.menu ul li span,.l-region--main-menu.lt-gray #search-block-toggle a,.l-region--main-menu.lt-gray ul.menu li span,.l-region--main-menu.lt-gray ul.menu ul li span{color:#666}.l-region--main-menu-wrapper.lt-gray #search-block-toggle a:visited,.l-region--main-menu.lt-gray #search-block-toggle a:visited{color:#000}.l-region--main-menu-wrapper.lt-gray #search-block-toggle a:hover,.l-region--main-menu.lt-gray #search-block-toggle a:hover{color:#2d2d2d}.l-region--main-menu-wrapper.lt-gray #search-block-toggle a:active,.l-region--main-menu.lt-gray #search-block-toggle a:active{color:#666}.l-region--main-menu-wrapper.lt-gray #search-block-toggle a:focus,.l-region--main-menu.lt-gray #search-block-toggle a:focus{color:#b00}.l-region--main-menu-wrapper.md-gray,.l-region--main-menu.md-gray{background-color:#666}.l-region--main-menu-wrapper.md-gray ul.menu ul,.l-region--main-menu.md-gray ul.menu ul{background-color:#4d4d4d}.l-region--main-menu-wrapper.md-gray .sf-menu ul:before,.l-region--main-menu.md-gray .sf-menu ul:before{border-bottom-color:#4d4d4d}.l-region--main-menu-wrapper.md-gray .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.md-gray .ui-accordion-content ul.menu>li>a a,.l-region--main-menu-wrapper.md-gray .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.md-gray .ui-tabs-content ul.menu>li>a a,.l-region--main-menu-wrapper.md-gray ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.md-gray ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu-wrapper.md-gray ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.md-gray ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu-wrapper.md-gray ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.md-gray ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a,.l-region--main-menu-wrapper.md-gray ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.md-gray ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.md-gray ul.menu>li>a a,.l-region--main-menu.md-gray .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.md-gray .ui-accordion-content ul.menu>li>a a,.l-region--main-menu.md-gray .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.md-gray .ui-tabs-content ul.menu>li>a a,.l-region--main-menu.md-gray ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu.md-gray ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu.md-gray ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu.md-gray ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu.md-gray ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu.md-gray ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu.md-gray ul.menu ul>li>a a,.l-region--main-menu.md-gray ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.md-gray ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.md-gray ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.md-gray .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.md-gray ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.md-gray ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.md-gray ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.md-gray ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.md-gray .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.md-gray ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu.md-gray ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.md-gray ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu.md-gray ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.md-gray ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.md-gray ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.md-gray ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.md-gray ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.md-gray .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.md-gray ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.md-gray ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.md-gray ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.md-gray ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.md-gray .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.md-gray ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu.md-gray ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.md-gray ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu.md-gray ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.md-gray ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.md-gray ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.md-gray ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.md-gray ul.menu>li>a a{color:#fff}.l-region--main-menu-wrapper.md-gray .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.md-gray .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.md-gray ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu-wrapper.md-gray ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a:visited,.l-region--main-menu-wrapper.md-gray ul.menu>li>a a:visited,.l-region--main-menu.md-gray .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu.md-gray .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu.md-gray ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu.md-gray ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu.md-gray ul.menu ul>li>a a:visited,.l-region--main-menu.md-gray ul.menu>li>a a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.md-gray .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.md-gray .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.md-gray ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu-wrapper.md-gray ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a:hover,.l-region--main-menu-wrapper.md-gray ul.menu>li>a a:hover,.l-region--main-menu.md-gray .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu.md-gray .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu.md-gray ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu.md-gray ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu.md-gray ul.menu ul>li>a a:hover,.l-region--main-menu.md-gray ul.menu>li>a a:hover{color:#b00}.l-region--main-menu-wrapper.md-gray .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.md-gray .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.md-gray ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu-wrapper.md-gray ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a:active,.l-region--main-menu-wrapper.md-gray ul.menu>li>a a:active,.l-region--main-menu.md-gray .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu.md-gray .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu.md-gray ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu.md-gray ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu.md-gray ul.menu ul>li>a a:active,.l-region--main-menu.md-gray ul.menu>li>a a:active{color:#fff}.l-region--main-menu-wrapper.md-gray .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.md-gray .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.md-gray ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu-wrapper.md-gray ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu-wrapper.md-gray ul.menu ul>li>a a:focus,.l-region--main-menu-wrapper.md-gray ul.menu>li>a a:focus,.l-region--main-menu.md-gray .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu.md-gray .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu.md-gray ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu.md-gray ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu.md-gray ul.menu ul>li>a a:focus,.l-region--main-menu.md-gray ul.menu>li>a a:focus{color:#dcaa38}.l-region--main-menu-wrapper.md-gray #search-block-toggle a,.l-region--main-menu-wrapper.md-gray ul.menu li span,.l-region--main-menu-wrapper.md-gray ul.menu ul li span,.l-region--main-menu.md-gray #search-block-toggle a,.l-region--main-menu.md-gray ul.menu li span,.l-region--main-menu.md-gray ul.menu ul li span{color:#fff}.l-region--main-menu-wrapper.md-gray #search-block-toggle a:visited,.l-region--main-menu.md-gray #search-block-toggle a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.md-gray #search-block-toggle a:hover,.l-region--main-menu.md-gray #search-block-toggle a:hover{color:#b00}.l-region--main-menu-wrapper.md-gray #search-block-toggle a:active,.l-region--main-menu.md-gray #search-block-toggle a:active{color:#fff}.l-region--main-menu-wrapper.md-gray #search-block-toggle a:focus,.l-region--main-menu.md-gray #search-block-toggle a:focus{color:#dcaa38}.l-region--main-menu-wrapper.dk-gray,.l-region--main-menu.dk-gray{background-color:#2d2d2d}.l-region--main-menu-wrapper.dk-gray ul.menu ul,.l-region--main-menu.dk-gray ul.menu ul{background-color:#666}.l-region--main-menu-wrapper.dk-gray .sf-menu ul:before,.l-region--main-menu.dk-gray .sf-menu ul:before{border-bottom-color:#666}.l-region--main-menu-wrapper.dk-gray .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.dk-gray .ui-accordion-content ul.menu>li>a a,.l-region--main-menu-wrapper.dk-gray .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.dk-gray .ui-tabs-content ul.menu>li>a a,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a,.l-region--main-menu-wrapper.dk-gray ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.dk-gray ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.dk-gray ul.menu>li>a a,.l-region--main-menu.dk-gray .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.dk-gray .ui-accordion-content ul.menu>li>a a,.l-region--main-menu.dk-gray .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.dk-gray .ui-tabs-content ul.menu>li>a a,.l-region--main-menu.dk-gray ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu.dk-gray ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu.dk-gray ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu.dk-gray ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu.dk-gray ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu.dk-gray ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu.dk-gray ul.menu ul>li>a a,.l-region--main-menu.dk-gray ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.dk-gray ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.dk-gray ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.dk-gray .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.dk-gray ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.dk-gray ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.dk-gray ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.dk-gray .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.dk-gray ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu.dk-gray ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.dk-gray ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu.dk-gray ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.dk-gray ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.dk-gray ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.dk-gray ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.dk-gray ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.dk-gray .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.dk-gray ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.dk-gray ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.dk-gray ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.dk-gray .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.dk-gray ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu.dk-gray ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.dk-gray ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu.dk-gray ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.dk-gray ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.dk-gray ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.dk-gray ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.dk-gray ul.menu>li>a a{color:#fff}.l-region--main-menu-wrapper.dk-gray .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.dk-gray .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a:visited,.l-region--main-menu-wrapper.dk-gray ul.menu>li>a a:visited,.l-region--main-menu.dk-gray .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu.dk-gray .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu.dk-gray ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu.dk-gray ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu.dk-gray ul.menu ul>li>a a:visited,.l-region--main-menu.dk-gray ul.menu>li>a a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.dk-gray .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.dk-gray .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a:hover,.l-region--main-menu-wrapper.dk-gray ul.menu>li>a a:hover,.l-region--main-menu.dk-gray .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu.dk-gray .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu.dk-gray ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu.dk-gray ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu.dk-gray ul.menu ul>li>a a:hover,.l-region--main-menu.dk-gray ul.menu>li>a a:hover{color:#b00}.l-region--main-menu-wrapper.dk-gray .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.dk-gray .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a:active,.l-region--main-menu-wrapper.dk-gray ul.menu>li>a a:active,.l-region--main-menu.dk-gray .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu.dk-gray .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu.dk-gray ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu.dk-gray ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu.dk-gray ul.menu ul>li>a a:active,.l-region--main-menu.dk-gray ul.menu>li>a a:active{color:#fff}.l-region--main-menu-wrapper.dk-gray .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.dk-gray .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu-wrapper.dk-gray ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu-wrapper.dk-gray ul.menu ul>li>a a:focus,.l-region--main-menu-wrapper.dk-gray ul.menu>li>a a:focus,.l-region--main-menu.dk-gray .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu.dk-gray .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu.dk-gray ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu.dk-gray ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu.dk-gray ul.menu ul>li>a a:focus,.l-region--main-menu.dk-gray ul.menu>li>a a:focus{color:#dcaa38}.l-region--main-menu-wrapper.dk-gray #search-block-toggle a,.l-region--main-menu-wrapper.dk-gray ul.menu li span,.l-region--main-menu-wrapper.dk-gray ul.menu ul li span,.l-region--main-menu.dk-gray #search-block-toggle a,.l-region--main-menu.dk-gray ul.menu li span,.l-region--main-menu.dk-gray ul.menu ul li span{color:#fff}.l-region--main-menu-wrapper.dk-gray #search-block-toggle a:visited,.l-region--main-menu.dk-gray #search-block-toggle a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.dk-gray #search-block-toggle a:hover,.l-region--main-menu.dk-gray #search-block-toggle a:hover{color:#b00}.l-region--main-menu-wrapper.dk-gray #search-block-toggle a:active,.l-region--main-menu.dk-gray #search-block-toggle a:active{color:#fff}.l-region--main-menu-wrapper.dk-gray #search-block-toggle a:focus,.l-region--main-menu.dk-gray #search-block-toggle a:focus{color:#dcaa38}.l-region--main-menu-wrapper.black,.l-region--main-menu.black{background-color:#000}.l-region--main-menu-wrapper.black ul.menu ul,.l-region--main-menu.black ul.menu ul{background-color:#2d2d2d}.l-region--main-menu-wrapper.black .sf-menu ul:before,.l-region--main-menu.black .sf-menu ul:before{border-bottom-color:#2d2d2d}.l-region--main-menu-wrapper.black .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.black .ui-accordion-content ul.menu>li>a a,.l-region--main-menu-wrapper.black .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.black .ui-tabs-content ul.menu>li>a a,.l-region--main-menu-wrapper.black ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.black ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu-wrapper.black ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.black ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu-wrapper.black ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.black ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.black ul.menu ul>li>a a,.l-region--main-menu-wrapper.black ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.black ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.black ul.menu>li>a a,.l-region--main-menu.black .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.black .ui-accordion-content ul.menu>li>a a,.l-region--main-menu.black .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.black .ui-tabs-content ul.menu>li>a a,.l-region--main-menu.black ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu.black ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu.black ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu.black ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu.black ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu.black ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu.black ul.menu ul>li>a a,.l-region--main-menu.black ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.black ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.black ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.black .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.black ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.black ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.black ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.black ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.black ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.black .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.black ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu.black ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.black ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu.black ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.black ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.black ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.black ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.black ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.black ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.black .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.black ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.black ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.black ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.black ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.black ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.black .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.black ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu.black ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.black ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu.black ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.black ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.black ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.black ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.black ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.black ul.menu>li>a a{color:#fff}.l-region--main-menu-wrapper.black .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.black .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.black ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu-wrapper.black ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu-wrapper.black ul.menu ul>li>a a:visited,.l-region--main-menu-wrapper.black ul.menu>li>a a:visited,.l-region--main-menu.black .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu.black .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu.black ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu.black ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu.black ul.menu ul>li>a a:visited,.l-region--main-menu.black ul.menu>li>a a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.black .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.black .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.black ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu-wrapper.black ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu-wrapper.black ul.menu ul>li>a a:hover,.l-region--main-menu-wrapper.black ul.menu>li>a a:hover,.l-region--main-menu.black .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu.black .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu.black ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu.black ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu.black ul.menu ul>li>a a:hover,.l-region--main-menu.black ul.menu>li>a a:hover{color:#b00}.l-region--main-menu-wrapper.black .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.black .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.black ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu-wrapper.black ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu-wrapper.black ul.menu ul>li>a a:active,.l-region--main-menu-wrapper.black ul.menu>li>a a:active,.l-region--main-menu.black .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu.black .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu.black ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu.black ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu.black ul.menu ul>li>a a:active,.l-region--main-menu.black ul.menu>li>a a:active{color:#fff}.l-region--main-menu-wrapper.black .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.black .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.black ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu-wrapper.black ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu-wrapper.black ul.menu ul>li>a a:focus,.l-region--main-menu-wrapper.black ul.menu>li>a a:focus,.l-region--main-menu.black .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu.black .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu.black ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu.black ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu.black ul.menu ul>li>a a:focus,.l-region--main-menu.black ul.menu>li>a a:focus{color:#dcaa38}.l-region--main-menu-wrapper.black #search-block-toggle a,.l-region--main-menu-wrapper.black ul.menu li span,.l-region--main-menu-wrapper.black ul.menu ul li span,.l-region--main-menu.black #search-block-toggle a,.l-region--main-menu.black ul.menu li span,.l-region--main-menu.black ul.menu ul li span{color:#fff}.l-region--main-menu-wrapper.black #search-block-toggle a:visited,.l-region--main-menu.black #search-block-toggle a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.black #search-block-toggle a:hover,.l-region--main-menu.black #search-block-toggle a:hover{color:#b00}.l-region--main-menu-wrapper.black #search-block-toggle a:active,.l-region--main-menu.black #search-block-toggle a:active{color:#fff}.l-region--main-menu-wrapper.black #search-block-toggle a:focus,.l-region--main-menu.black #search-block-toggle a:focus{color:#dcaa38}.l-region--main-menu-wrapper.red,.l-region--main-menu.red{background-color:#b00}.l-region--main-menu-wrapper.red .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.red .ui-accordion-content ul.menu>li>a a,.l-region--main-menu-wrapper.red .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.red .ui-tabs-content ul.menu>li>a a,.l-region--main-menu-wrapper.red ul.menu>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.red ul.menu>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.red ul.menu>li>a a,.l-region--main-menu.red .ui-accordion-content ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.red .ui-accordion-content ul.menu>li>a a,.l-region--main-menu.red .ui-tabs-content ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.red .ui-tabs-content ul.menu>li>a a,.l-region--main-menu.red ul.menu>li>a .ui-accordion-content a,.l-region--main-menu.red ul.menu>li>a .ui-tabs-content a,.l-region--main-menu.red ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.red .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.red ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.red ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.red .ui-tabs-content ul.menu>li>a a,.ui-accordion-content .l-region--main-menu.red ul.menu>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.red ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.red ul.menu>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.red ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.red .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.red ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.red ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.red .ui-accordion-content ul.menu>li>a a,.ui-tabs-content .l-region--main-menu.red ul.menu>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.red ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.red ul.menu>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.red ul.menu>li>a a{color:#fff}.l-region--main-menu-wrapper.red .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.red .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu-wrapper.red ul.menu>li>a a:visited,.l-region--main-menu.red .ui-accordion-content ul.menu>li>a a:visited,.l-region--main-menu.red .ui-tabs-content ul.menu>li>a a:visited,.l-region--main-menu.red ul.menu>li>a a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.red .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.red .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu-wrapper.red ul.menu>li>a a:hover,.l-region--main-menu.red .ui-accordion-content ul.menu>li>a a:hover,.l-region--main-menu.red .ui-tabs-content ul.menu>li>a a:hover,.l-region--main-menu.red ul.menu>li>a a:hover{color:#b00}.l-region--main-menu-wrapper.red .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.red .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu-wrapper.red ul.menu>li>a a:active,.l-region--main-menu.red .ui-accordion-content ul.menu>li>a a:active,.l-region--main-menu.red .ui-tabs-content ul.menu>li>a a:active,.l-region--main-menu.red ul.menu>li>a a:active{color:#fff}.l-region--main-menu-wrapper.red .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.red .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu-wrapper.red ul.menu>li>a a:focus,.l-region--main-menu.red .ui-accordion-content ul.menu>li>a a:focus,.l-region--main-menu.red .ui-tabs-content ul.menu>li>a a:focus,.l-region--main-menu.red ul.menu>li>a a:focus{color:#dcaa38}.l-region--main-menu-wrapper.red ul.menu li span,.l-region--main-menu.red ul.menu li span{color:#fff}.l-region--main-menu-wrapper.red ul.menu ul,.l-region--main-menu.red ul.menu ul{background-color:#d4d4d4}.l-region--main-menu-wrapper.red ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.red ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu-wrapper.red ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.red ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu-wrapper.red ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu-wrapper.red ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu-wrapper.red ul.menu ul>li>a a,.l-region--main-menu.red ul.menu .ui-accordion-content ul>li>a .ui-tabs-content a,.l-region--main-menu.red ul.menu .ui-accordion-content ul>li>a a,.l-region--main-menu.red ul.menu .ui-tabs-content ul>li>a .ui-accordion-content a,.l-region--main-menu.red ul.menu .ui-tabs-content ul>li>a a,.l-region--main-menu.red ul.menu ul>li>a .ui-accordion-content a,.l-region--main-menu.red ul.menu ul>li>a .ui-tabs-content a,.l-region--main-menu.red ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.red ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu-wrapper.red ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu-wrapper.red ul.menu ul>li>a a,.ui-accordion-content .l-region--main-menu.red ul.menu .ui-tabs-content ul>li>a a,.ui-accordion-content .l-region--main-menu.red ul.menu ul>li>a .ui-tabs-content a,.ui-accordion-content .l-region--main-menu.red ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu-wrapper.red ul.menu ul>li>a a,.ui-accordion-content .ui-tabs-content .l-region--main-menu.red ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.red ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu-wrapper.red ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu-wrapper.red ul.menu ul>li>a a,.ui-tabs-content .l-region--main-menu.red ul.menu .ui-accordion-content ul>li>a a,.ui-tabs-content .l-region--main-menu.red ul.menu ul>li>a .ui-accordion-content a,.ui-tabs-content .l-region--main-menu.red ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu-wrapper.red ul.menu ul>li>a a,.ui-tabs-content .ui-accordion-content .l-region--main-menu.red ul.menu ul>li>a a{color:#666}.l-region--main-menu-wrapper.red ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu-wrapper.red ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu-wrapper.red ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu-wrapper.red ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu-wrapper.red ul.menu ul>li>a a:hover,.l-region--main-menu-wrapper.red ul.menu ul>li>a a:visited,.l-region--main-menu.red ul.menu .ui-accordion-content ul>li>a a:hover,.l-region--main-menu.red ul.menu .ui-accordion-content ul>li>a a:visited,.l-region--main-menu.red ul.menu .ui-tabs-content ul>li>a a:hover,.l-region--main-menu.red ul.menu .ui-tabs-content ul>li>a a:visited,.l-region--main-menu.red ul.menu ul>li>a a:hover,.l-region--main-menu.red ul.menu ul>li>a a:visited{color:#2d2d2d}.l-region--main-menu-wrapper.red ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu-wrapper.red ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu-wrapper.red ul.menu ul>li>a a:active,.l-region--main-menu.red ul.menu .ui-accordion-content ul>li>a a:active,.l-region--main-menu.red ul.menu .ui-tabs-content ul>li>a a:active,.l-region--main-menu.red ul.menu ul>li>a a:active{color:#666}.l-region--main-menu-wrapper.red ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu-wrapper.red ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu-wrapper.red ul.menu ul>li>a a:focus,.l-region--main-menu.red ul.menu .ui-accordion-content ul>li>a a:focus,.l-region--main-menu.red ul.menu .ui-tabs-content ul>li>a a:focus,.l-region--main-menu.red ul.menu ul>li>a a:focus{color:#2d2d2d}.l-region--main-menu-wrapper.red #search-block-toggle a,.l-region--main-menu.red #search-block-toggle a{color:#fff}.l-region--main-menu-wrapper.red #search-block-toggle a:visited,.l-region--main-menu.red #search-block-toggle a:visited{color:#d4d4d4}.l-region--main-menu-wrapper.red #search-block-toggle a:hover,.l-region--main-menu.red #search-block-toggle a:hover{color:#b00}.l-region--main-menu-wrapper.red #search-block-toggle a:active,.l-region--main-menu.red #search-block-toggle a:active{color:#fff}.l-region--main-menu-wrapper.red #search-block-toggle a:focus,.l-region--main-menu.red #search-block-toggle a:focus{color:#dcaa38}.l-region--main-menu-wrapper.red .sf-menu ul:before,.l-region--main-menu.red .sf-menu ul:before{border-bottom-color:#d4d4d4}.sf-menu ul:before{content:' ';height:0;position:absolute;width:0;border:10px solid transparent;border-bottom-color:#d4d4d4;top:-19px;left:10px;z-index:2}.l-region--main-menu.mean-container .mean-bar,.l-region--main-menu.mean-container .mean-nav{background:0 0}.l-region--main-menu.mean-container .mean-bar{z-index:499;padding:0}.l-region--main-menu.mean-container a.meanmenu-reveal{color:#fff;font-size:1.5em;padding:.9em 1em;text-indent:0;text-align:center;left:0!important;right:auto!important}.l-region--main-menu.mean-container .mean-nav{margin-top:4em}.l-region--main-menu.mean-container .mean-nav ul li{text-transform:uppercase}.l-region--main-menu.mean-container .mean-nav ul li li{display:block;float:left;width:100%;margin:0;text-align:left;font-weight:500;box-sizing:border-box;background:rgba(0,0,0,.1);color:rgba(0,0,0,.9)}.l-region--main-menu.mean-container .mean-nav ul li a,.l-region--main-menu.mean-container .mean-nav ul li span{color:#fff;text-decoration:none;padding:1em 1em .9em 1.2em;border:0;box-sizing:border-box;width:100%;display:block}.l-region--main-menu.mean-container .mean-nav ul li li a{padding-left:3em;box-sizing:border-box;width:100%;color:#222;opacity:1}.l-region--main-menu.mean-container .mean-nav ul li a.mean-expand{border:0!important;padding:.7em .9em 1.55em .8em!important;width:auto;margin:0;background-color:transparent}.l-region--main-menu.mean-container .mean-nav ul li a.mean-expand:hover{background:0 0}.l-region--main-menu.mean-container.white{background:#fff;border-bottom:1px solid #e6e6e6}.l-region--main-menu.mean-container.white .mean-nav a,.l-region--main-menu.mean-container.white .mean-nav span,.l-region--main-menu.mean-container.white a.meanmenu-reveal{color:#666}.l-region--main-menu.mean-container.white .mean-bar,.l-region--main-menu.mean-container.white .mean-nav{background:#fff}.l-region--main-menu.mean-container.white .mean-nav ul li li{background:#e6e6e6}.l-region--main-menu.mean-container.white .mean-nav ul li li a,.l-region--main-menu.mean-container.white .mean-nav ul li li span{color:#1a1a1a}.l-region--main-menu.mean-container.lt-gray{background:#ededed;border-bottom:1px solid #d4d4d4}.l-region--main-menu.mean-container.lt-gray .mean-nav a,.l-region--main-menu.mean-container.lt-gray .mean-nav span,.l-region--main-menu.mean-container.lt-gray a.meanmenu-reveal{color:#666}.l-region--main-menu.mean-container.lt-gray .mean-bar,.l-region--main-menu.mean-container.lt-gray .mean-nav{background:#ededed}.l-region--main-menu.mean-container.lt-gray .mean-nav ul li li{background:#d4d4d4}.l-region--main-menu.mean-container.lt-gray .mean-nav ul li li a,.l-region--main-menu.mean-container.lt-gray .mean-nav ul li li span{color:#1a1a1a}.l-region--main-menu.mean-container.black .mean-nav a,.l-region--main-menu.mean-container.black .mean-nav span,.l-region--main-menu.mean-container.black .mean-nav ul li li a,.l-region--main-menu.mean-container.black .mean-nav ul li li span,.l-region--main-menu.mean-container.black a.meanmenu-reveal,.l-region--main-menu.mean-container.dk-gray .mean-nav a,.l-region--main-menu.mean-container.dk-gray .mean-nav span,.l-region--main-menu.mean-container.dk-gray .mean-nav ul li li a,.l-region--main-menu.mean-container.dk-gray .mean-nav ul li li span,.l-region--main-menu.mean-container.dk-gray a.meanmenu-reveal,.l-region--main-menu.mean-container.md-gray .mean-nav a,.l-region--main-menu.mean-container.md-gray .mean-nav span,.l-region--main-menu.mean-container.md-gray .mean-nav ul li li a,.l-region--main-menu.mean-container.md-gray .mean-nav ul li li span,.l-region--main-menu.mean-container.md-gray a.meanmenu-reveal,.l-region--main-menu.mean-container.red .mean-nav a,.l-region--main-menu.mean-container.red .mean-nav span,.l-region--main-menu.mean-container.red .mean-nav ul li li a,.l-region--main-menu.mean-container.red .mean-nav ul li li span,.l-region--main-menu.mean-container.red a.meanmenu-reveal,.l-region--masthead.dk-gray #site-name .site-name-main{color:#fff}.l-region--main-menu.mean-container.md-gray{background:#666;border-bottom:1px solid #4d4d4d}.l-region--main-menu.mean-container.md-gray .mean-bar,.l-region--main-menu.mean-container.md-gray .mean-nav{background:#666}.l-region--main-menu.mean-container.md-gray .mean-nav ul li li{background:#4d4d4d}.l-region--main-menu.mean-container.dk-gray{background:#2d2d2d;border-bottom:1px solid #141414}.l-region--main-menu.mean-container.dk-gray .mean-bar,.l-region--main-menu.mean-container.dk-gray .mean-nav{background:#2d2d2d}.l-region--main-menu.mean-container.dk-gray .mean-nav ul li li{background:#535353}.l-region--main-menu.mean-container.black{background:#000;border-bottom:1px solid #000}.l-region--main-menu.mean-container.black .mean-bar,.l-region--main-menu.mean-container.black .mean-nav{background:#000}.l-region--main-menu.mean-container.black .mean-nav ul li li{background:#262626}.l-region--main-menu.mean-container.red{background:#b00;border-bottom:1px solid #800}.l-region--main-menu.mean-container.red .mean-bar,.l-region--main-menu.mean-container.red .mean-nav{background:#b00}.l-region--main-menu.mean-container.red .mean-nav ul li li{background:#800}.l-page .l-constrained .mean-container #search-block-toggle,.l-page .l-constrained .mean-container .mean-nav ul li a,.l-page .l-constrained .mean-container .mean-nav ul li span,.l-page .l-constrained .mean-container a.meanmenu-reveal{padding-left:4%;padding-right:4%}.l-page .l-constrained .mean-container .mean-nav a.mean-expand{padding-left:4%!important;padding-right:4%!important;margin-right:-2px}.l-page .l-constrained .mean-container .mean-nav ul li li a{padding-left:8%;padding-right:8%}@media (min-width:47.5em){.l-region--main-menu>*{display:table-cell!important}}@media (max-width:47.5em){.l-region--main-menu-wrapper .l-constrained,.l-region--main-menu-wrapper .l-region--main-menu{padding:0}.l-region--main-menu-wrapper .l-region--main-menu>*{display:block}}#superfish-1-toggle span{display:none}.l-region--masthead,.l-region--masthead.white{background-color:#fff;padding:20px 0}.l-region--masthead .l-constrained,.l-region--masthead.white .l-constrained{display:table;width:100%}.l-region--masthead.dk-gray{background-color:#2d2d2d}.l-region--masthead.dk-gray #site-name .site-name-prefix,.l-region--masthead.dk-gray #site-name .site-name-slogan{color:#ededed}.l-region--masthead.lt-gray{background-color:#ededed}#site-name{display:table-cell;vertical-align:middle;font-size:48px;font-size:4.8rem;padding-right:1em}#site-name .site-name-prefix{display:block;font-size:.5em;font-weight:300;color:#666}#site-name .site-name-main{color:#2d2d2d;font-weight:600;display:block;line-height:1em}#site-name a{text-decoration:none;display:block}#site-name .site-name-slogan{font-size:.5em;font-weight:400;color:#666;margin-top:20px}#site-name.site-name-2-lines{font-size:44px;font-size:4.4rem}#site-name.site-name-3-lines{font-size:32px;font-size:3.2rem}#site-name.site-name-4-lines{font-size:30px;font-size:3rem}body #site-logo{display:table-cell;vertical-align:middle;text-align:right}body #site-logo img{height:140px;width:auto;margin-right:-.5em}@media (max-width:47.5em){body #site-logo{display:none}}.l-region--osu-navbar{clear:both;margin:0;padding:0;background:url(../images/osu-navbar/lt-gray/bg-navbar_red.png) left bottom repeat-x #eaeaea;overflow:hidden}#osu_navbar *{font-family:proximanova,'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:13px;line-height:1.4;font-weight:400}#osu_navbar p{margin:0;padding:0}#osu_navbar .univ_info{float:left;padding:.9em 0 1.1em;margin-left:0}#osu_navbar .univ_links{float:right;clear:none;padding:1em 0 0;margin-top:-2px}#osu_navbar .univ_name a{height:16px;width:90px;display:block;text-indent:-9999px;background:url(../images/osu-navbar/lt-gray/osu_name.png) no-repeat;margin-left:0;overflow:hidden}#osu_navbar div.links{float:left;margin-bottom:10px}#osu_navbar div.links ul{margin:0;padding:0}#osu_navbar div.links ul li{list-style:none;float:left;margin-left:1em}#osu_navbar div.links ul li a{color:#333;text-decoration:none;background-position:0 0}#osu_navbar div.links ul li a:hover{text-decoration:underline}.osu-semantic{position:absolute;left:0;top:-500px;width:1px;height:1px;overflow:hidden}a.osu-semantic:active,a.osu-semantic:focus{position:absolute;left:0;top:0;overflow:visible}a#skip:active,a#skip:focus{position:absolute;top:0;left:25%;width:50%;text-align:center;padding:.5em 0 1.5em;display:block;color:#fff;z-index:999999999999999999;text-decoration:none;background:#666;background:rgba(0,0,0,.8);border:1px dotted #ccc;border-top:none;border-radius:0 0 6px 6px}a#skip:active:hover,a#skip:focus:hover{background:#b00;background:rgba(187,0,0,.8)}.l-region--osu-navbar.dk-gray{background:url(../images/osu-navbar/dk-gray/bg-navbar_red.png) left bottom repeat-x #333}.l-region--osu-navbar.dk-gray #osu_navbar .univ_name a{background-image:url(../images/osu-navbar/dk-gray/osu_name.png)}.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a{color:#fff}@media (max-width:47.5em){#osu_navbar div.links ul{margin-top:-2px}#osu_navbar div.links ul li{list-style:none;float:left;margin-left:.5em}#osu_navbar div.links ul li a{height:23px;width:23px;display:block;overflow:hidden;text-indent:-999px}#osu_navbar div.links ul li a:hover{text-decoration:none}.l-region--osu-navbar #osu_navbar div.links ul li a.help,.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.help{background-image:url(../images/osu-navbar/lt-gray/resp-help.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.buckeyelink,.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.buckeyelink{background-image:url(../images/osu-navbar/lt-gray/resp-buckeyelink.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.map,.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.map{background-image:url(../images/osu-navbar/lt-gray/resp-map.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.findpeople,.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.findpeople{background-image:url(../images/osu-navbar/lt-gray/resp-findpeople.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.webmail,.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.webmail{background-image:url(../images/osu-navbar/lt-gray/resp-webmail.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.search,.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.search{background-image:url(../images/osu-navbar/lt-gray/resp-search.png)}.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.help{background-image:url(../images/osu-navbar/dk-gray/resp-help.png)}.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.buckeyelink{background-image:url(../images/osu-navbar/dk-gray/resp-buckeyelink.png)}.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.map{background-image:url(../images/osu-navbar/dk-gray/resp-map.png)}.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.findpeople{background-image:url(../images/osu-navbar/dk-gray/resp-findpeople.png)}.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.webmail{background-image:url(../images/osu-navbar/dk-gray/resp-webmail.png)}.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.search{background-image:url(../images/osu-navbar/dk-gray/resp-search.png)}}@media only screen and (max-width:720px) and (-webkit-min-device-pixel-ratio:2),only screen and (max-width:720px) and (min--moz-device-pixel-ratio:2),only screen and (max-width:720px) and (-o-min-device-pixel-ratio:2 / 1),only screen and (max-width:720px) and (min-device-pixel-ratio:2){.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a{background-size:23px}.l-region--osu-navbar.lt-gray #osu_navbar .univ_name a{background-size:contain}.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.help{background-image:url(../images/osu-navbar/lt-gray/resp-help@2x.png)}.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.buckeyelink{background-image:url(../images/osu-navbar/lt-gray/resp-buckeyelink@2x.png)}.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.map{background-image:url(../images/osu-navbar/lt-gray/resp-map@2x.png)}.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.findpeople{background-image:url(../images/osu-navbar/lt-gray/resp-findpeople@2x.png)}.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.webmail{background-image:url(../images/osu-navbar/lt-gray/resp-webmail@2x.png)}.l-region--osu-navbar.lt-gray #osu_navbar div.links ul li a.search{background-image:url(../images/osu-navbar/lt-gray/resp-search@2x.png)}.l-region--osu-navbar #osu_navbar div.links ul li .ui-accordion-content a,.l-region--osu-navbar #osu_navbar div.links ul li .ui-tabs-content a,.l-region--osu-navbar #osu_navbar div.links ul li a,.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a,.ui-accordion-content .l-region--osu-navbar #osu_navbar div.links ul li a,.ui-tabs-content .l-region--osu-navbar #osu_navbar div.links ul li a{background-size:23px}.l-region--osu-navbar #osu_navbar .univ_name .ui-accordion-content a,.l-region--osu-navbar #osu_navbar .univ_name .ui-tabs-content a,.l-region--osu-navbar #osu_navbar .univ_name a,.l-region--osu-navbar.dk-gray #osu_navbar .univ_name a,.ui-accordion-content .l-region--osu-navbar #osu_navbar .univ_name a,.ui-tabs-content .l-region--osu-navbar #osu_navbar .univ_name a{background-size:contain}.l-region--osu-navbar #osu_navbar div.links ul li a.help,.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.help{background-image:url(../images/osu-navbar/dk-gray/resp-help@2x.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.buckeyelink,.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.buckeyelink{background-image:url(../images/osu-navbar/dk-gray/resp-buckeyelink@2x.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.map,.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.map{background-image:url(../images/osu-navbar/dk-gray/resp-map@2x.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.findpeople,.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.findpeople{background-image:url(../images/osu-navbar/dk-gray/resp-findpeople@2x.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.webmail,.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.webmail{background-image:url(../images/osu-navbar/dk-gray/resp-webmail@2x.png)}.l-region--osu-navbar #osu_navbar div.links ul li a.search,.l-region--osu-navbar.dk-gray #osu_navbar div.links ul li a.search{background-image:url(../images/osu-navbar/dk-gray/resp-search@2x.png)}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2){.l-region--osu-navbar #osu_navbar .univ_name a{background-size:contain}.l-region--osu-navbar.lt-gray #osu_navbar .univ_name a{background-image:url(../images/osu-navbar/lt-gray/osu_name@2x.png)}.l-region--osu-navbar #osu_navbar .univ_name a,.l-region--osu-navbar.dk-gray #osu_navbar .univ_name a{background-image:url(../images/osu-navbar/dk-gray/osu_name@2x.png)}}.l-region--pre-footer .field--name-field-pre-footer-banner-image img{display:block;width:100%}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.eot
new file mode 100755
index 0000000000000000000000000000000000000000..b9489a665c63122c1168ccabb2ed940934da4c5a
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.svg
new file mode 100755
index 0000000000000000000000000000000000000000..188871bda0afe8d27fc5514c4bc12d7fe48a1963
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.svg
@@ -0,0 +1,2135 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-boldregular" horiz-adv-x="1173" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1337" d="M27 729v158q73 14 106 39q25 18 35 44.5t16 84.5q23 226 195 348q62 44 163.5 69t211.5 25q157 0 252 -35q44 -14 64 -42.5t20 -80.5q0 -93 -15 -221h-184q-11 93 -38 122.5t-114 29.5q-133 0 -194 -58q-68 -59 -68 -202v-88h342q127 43 205 43q63 0 99 -32t36 -122 q0 -70 -3 -243.5t-3 -260.5q0 -57 3 -79.5t13 -34.5q17 -22 129 -31v-164q-176 4 -286 4q-193 0 -285 -4v164q93 9 121 37q16 16 16 106v299q0 81 -30 105q-29 20 -129 20h-228v-391q0 -110 23 -143q8 -10 17.5 -15t40.5 -10t87 -8v-164q-180 4 -289 4q-123 0 -315 -4v164 q67 6 95 13.5t40 21.5q14 19 14 104v428h-163z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1357" d="M27 729v158q73 14 106 39q26 19 37 47t14 82q9 128 52 208t122 140q61 44 147.5 69t176.5 25q120 0 215 -29q85 29 160 29q123 0 123 -158q0 -53 -1 -191.5t-1 -199.5v-641q0 -95 22 -117q19 -19 123 -28v-164q-180 4 -285 4q-201 0 -293 -4v164q99 9 123 33 q21 21 21 108v559q0 164 -4 260q-3 83 -43 115q-45 33 -144 33q-50 0 -96.5 -15.5t-73.5 -42.5q-51 -54 -51 -186v-104q119 0 252 -7v-180q-135 -6 -252 -6v-391q0 -110 23 -143q11 -15 42.5 -22.5t108.5 -10.5v-164q-180 4 -295 4q-123 0 -315 -4v164q67 6 95 13.5t40 21.5 q14 19 14 104v428h-163z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="2056" d="M27 729v158q66 13 106 39q13 10 21.5 21t14.5 26.5t9.5 34.5t5.5 47q9 83 28.5 142t48.5 100t75 77q107 86 280 86q101 0 166 -22q27 -10 47 -28t30.5 -43.5t10.5 -55.5q0 -88 -18 -207h-150q-1 25 -2 37t-3 29.5t-4.5 24.5t-7.5 17.5t-11.5 14t-16.5 8t-22 5.5t-29 1 q-42 0 -68.5 -17t-39.5 -52.5t-17 -74t-4 -98.5v-86h254q102 0 129 27q18 12 26 36t17 79q13 125 63.5 207.5t131.5 140.5q62 43 163 68.5t209 25.5q160 0 252 -35q44 -14 64 -42.5t20 -80.5q0 -99 -14 -223h-184q-12 105 -43 127q-27 27 -109 27q-126 0 -194 -58 q-68 -65 -68 -202v-88h342q127 43 207 43q63 0 98 -32t35 -122q0 -68 -3 -242.5t-3 -261.5q0 -93 18 -114q23 -23 129 -31v-164q-180 4 -288 4q-185 0 -277 -4v164q54 5 77.5 10.5t35.5 17.5q16 16 16 115v299q0 83 -31 105q-26 20 -129 20h-227v-391q0 -110 23 -143 q23 -26 155 -33v-164q-184 4 -299 4q-123 0 -315 -4v164q67 6 95 13.5t40 21.5q14 16 14 104v428h-430v-391q0 -110 23 -143q12 -14 46.5 -21.5t125.5 -11.5v-164q-180 4 -316 4q-123 0 -315 -4v164q67 6 95 13.5t40 21.5q14 19 14 104v428h-163z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="2074" d="M27 729v158q66 13 106 39q13 10 21.5 21t14.5 26.5t9.5 34.5t5.5 47q9 83 28.5 142t48.5 100t75 77q107 86 280 86q101 0 166 -22q27 -10 47 -28t30.5 -43.5t10.5 -55.5q0 -88 -18 -207h-150q-1 25 -2 37t-3 29.5t-4.5 24.5t-7.5 17.5t-11.5 14t-16.5 8t-22 5.5t-29 1 q-42 0 -68.5 -17t-39.5 -52.5t-17 -74t-4 -98.5v-86h254q102 0 129 27q19 13 27.5 38.5t15.5 76.5q11 129 53.5 209t118.5 139q61 44 147.5 69t176.5 25q120 0 215 -29q89 29 160 29q122 0 122 -158q0 -53 -1 -198t-1 -205v-629q0 -97 23 -117q19 -19 123 -28v-164 q-180 4 -285 4q-197 0 -287 -4v164q59 6 82.5 13t34.5 20q21 21 21 108v559q0 162 -4 260q-3 83 -43 115q-43 31 -144 31q-51 0 -97 -15.5t-73 -42.5q-51 -51 -51 -186v-102q119 0 252 -7v-178q-120 -8 -252 -8v-391q0 -110 23 -143q12 -14 44.5 -21.5t122.5 -11.5v-164 q-180 4 -311 4q-123 0 -315 -4v164q67 6 95 13.5t40 21.5q14 16 14 104v428h-430v-391q0 -110 23 -143q12 -14 46.5 -21.5t125.5 -11.5v-164q-180 4 -316 4q-123 0 -315 -4v164q67 6 95 13.5t40 21.5q14 19 14 104v428h-163z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="622" d="M184 147q0 71 46.5 119.5t117.5 48.5q72 0 120 -46t48 -115q0 -81 -46 -126.5t-120 -45.5t-120 46t-46 119zM190 1284q0 65 42 113.5t133 48.5q85 0 127.5 -44.5t42.5 -113.5q0 -14 -2 -37t-7 -65t-10 -81t-15.5 -116.5t-19 -139t-24.5 -179.5t-29 -209h-131 q-107 748 -107 823z" />
+<glyph unicode="&#x22;" horiz-adv-x="714" d="M66 1343q0 53 30 83t88 30q123 0 123 -113q0 -43 -13 -129t-61 -362h-102q-65 433 -65 491zM408 1343q0 54 30 83.5t90 29.5q121 0 121 -113q0 -10 -0.5 -21t-2 -27t-3.5 -29.5t-6 -40t-7 -47t-9.5 -61t-11.5 -71.5t-14.5 -89.5t-16.5 -104.5h-103q-7 46 -15.5 104 t-13.5 89.5t-11 72t-9 61.5t-6.5 47.5t-5.5 40.5t-3.5 30t-2 26.5t-0.5 19.5z" />
+<glyph unicode="#" horiz-adv-x="1167" d="M80 408v194h256l39 191h-211v198h252l76 383h122l-79 -383h225l80 383h121l-78 -383h204v-198h-245l-41 -191h200v-194h-241l-88 -435h-119l88 435h-227l-86 -435h-119l84 435h-213zM455 602h227l37 191h-223z" />
+<glyph unicode="$" horiz-adv-x="1191" d="M111 266q0 98 10 183h151q21 -122 74 -175q57 -62 209 -69v330l-123 45q-92 32 -154 75.5t-92 94t-41.5 97.5t-11.5 105q0 162 105.5 270t316.5 130v213h117v-207q185 -4 305 -62q40 -20 57 -55.5t17 -95.5q0 -49 -19 -211h-149q-15 130 -70 172q-48 33 -141 39v-324 l127 -45q154 -56 229.5 -143t75.5 -223q0 -184 -116 -288t-316 -124v-234h-117v228q-196 3 -303 51q-83 36 -112 87t-29 136zM432 1012q0 -103 119 -146l4 -2v277q-64 -13 -93.5 -47.5t-29.5 -81.5zM672 213q62 13 94.5 48t32.5 83q0 58 -28 90t-89 55l-10 5v-281z" />
+<glyph unicode="%" horiz-adv-x="1865" d="M55 930q0 211 99.5 324.5t281.5 113.5q194 0 276.5 -107t82.5 -313q0 -230 -101 -339t-268 -109q-191 0 -281 107.5t-90 322.5zM291 946q0 -154 33 -216t104 -62q133 0 133 272q0 145 -31 204.5t-100 59.5q-139 0 -139 -258zM582 25l596 1366l122 -50l-593 -1368z M1071 414q0 211 99.5 324.5t281.5 113.5q194 0 275 -107t81 -315q0 -229 -100 -337.5t-266 -108.5q-191 0 -281 107t-90 323zM1305 428q0 -152 33.5 -215t105.5 -63q131 0 131 272q0 145 -30 204.5t-99 59.5q-141 0 -141 -258z" />
+<glyph unicode="&#x26;" horiz-adv-x="1677" d="M76 379q0 144 79.5 239.5t239.5 157.5q-44 79 -66 143t-22 138q0 52 10.5 98.5t41.5 95.5t80 84t133.5 57.5t195.5 22.5q179 0 280 -76t101 -206q0 -128 -82.5 -211t-273.5 -162q118 -170 301 -318q67 86 67 154q0 50 -126 56q-6 1 -9 1v164q122 -4 274 -4q201 0 273 4 v-164q-78 -3 -115 -26q-35 -23 -82 -115q-64 -120 -127 -197q136 -92 252 -92q41 0 66 4l2 -235q-68 -10 -139 -10q-118 0 -224.5 28.5t-169.5 73.5q-187 -111 -428 -111q-239 0 -385.5 112t-146.5 294zM408 420q0 -95 71 -159t170 -64q111 0 180 39q-196 172 -327 358 q-94 -58 -94 -174zM631 1081q0 -73 69 -168q197 80 197 187q0 48 -32.5 77t-92.5 29q-69 0 -105 -33t-36 -92z" />
+<glyph unicode="'" horiz-adv-x="370" d="M66 1343q0 53 30 83t88 30q123 0 123 -113q0 -43 -13 -129t-61 -362h-102q-65 433 -65 491z" />
+<glyph unicode="(" horiz-adv-x="677" d="M76 594q0 680 512 1005l71 -98q-177 -164 -263.5 -373.5t-86.5 -533.5q0 -547 361 -901l-78 -94q-516 316 -516 995z" />
+<glyph unicode=")" horiz-adv-x="677" d="M10 1507l76 92q516 -314 516 -993t-512 -1007l-74 100q179 164 266 373.5t87 533.5q0 542 -359 901z" />
+<glyph unicode="*" horiz-adv-x="841" d="M76 1145q0 41 26 73.5t68 32.5q27 0 72.5 -29.5t148.5 -111.5q-14 34 -27.5 74t-25.5 87t-12 72q0 51 28 72t68 21q96 0 96 -90q0 -36 -16 -105t-39 -131q100 80 144 108.5t75 28.5q42 0 64 -28t22 -72t-19.5 -67t-64.5 -29q-60 -7 -203 -15q113 -79 155 -125t42 -86 q0 -37 -32 -63.5t-66 -26.5q-56 0 -82 42t-78 208q-24 -83 -44.5 -134t-41 -76t-38.5 -32.5t-44 -7.5q-30 0 -62 27.5t-32 64.5q0 36 42 84t165 129q-23 2 -56 2q-79 3 -143 13q-46 5 -68 23.5t-22 66.5z" />
+<glyph unicode="+" horiz-adv-x="1263" d="M176 551v182h369v404h176v-404h366v-182h-366v-406h-176v406h-369z" />
+<glyph unicode="," horiz-adv-x="487" d="M29 -297q188 138 188 244q0 48 -49 65q-102 33 -102 146q0 62 48.5 109.5t127.5 47.5q91 0 141.5 -59t50.5 -156q0 -138 -82.5 -260t-249.5 -237z" />
+<glyph unicode="-" horiz-adv-x="575" d="M57 412v194h457v-194h-457z" />
+<glyph unicode="." horiz-adv-x="460" d="M66 147q0 71 45.5 119.5t115.5 48.5q73 0 121.5 -46t48.5 -115q0 -81 -47 -126.5t-121 -45.5q-72 0 -117.5 46t-45.5 119z" />
+<glyph unicode="/" horiz-adv-x="698" d="M45 -133l471 1630l143 -35l-473 -1630z" />
+<glyph unicode="0" horiz-adv-x="1236" d="M72 666q0 342 146.5 524t416.5 182q148 0 251.5 -45.5t164 -135.5t87.5 -211t27 -286q0 -154 -27.5 -276.5t-76.5 -205.5t-118.5 -137.5t-149.5 -79t-175 -24.5q-282 0 -414 172.5t-132 522.5zM389 692q0 -262 57.5 -375.5t174.5 -113.5q113 0 170 122t57 355 q0 252 -53 359.5t-170 107.5q-236 0 -236 -455z" />
+<glyph unicode="1" horiz-adv-x="1236" d="M211 1221q79 40 319 127q86 26 146 26q53 0 87 -33.5t34 -109.5q0 -34 -1 -165.5t-1 -242.5v-497q0 -95 16 -121q23 -33 209 -43v-164q-168 4 -369 4q-223 0 -395 -4v164q179 9 213 43q13 13 16.5 39t3.5 82v479q0 151 -8 219q-5 51 -51 51q-27 0 -79.5 -10.5 t-90.5 -22.5z" />
+<glyph unicode="2" horiz-adv-x="1236" d="M80 0v180q366 299 505.5 463t139.5 301q0 203 -205 203q-97 0 -147 -43q-38 -33 -43 -162h-172q-21 139 -21 205q0 60 29.5 100.5t95.5 71.5q121 53 320 53q229 0 345.5 -101.5t116.5 -283.5q0 -185 -145 -367t-442 -378q42 0 149 1t135 1q88 0 127.5 10.5t57.5 40.5 q25 35 49 125h147q-4 -231 -22 -330q-15 -90 -148 -90h-872z" />
+<glyph unicode="3" horiz-adv-x="1236" d="M115 166q0 118 14 237h172q8 -111 49 -149q49 -49 203 -49q109 0 165 49t56 127q0 92 -56.5 137t-180.5 51q-47 4 -146 4v209q124 5 146 9q184 28 184 194q0 77 -41 120.5t-127 43.5q-114 0 -170 -39q-39 -31 -51 -154h-170q-15 122 -15 189q0 111 97 158q45 25 141 47 t203 22q448 0 448 -338q0 -240 -268 -329q169 -29 246.5 -108.5t77.5 -215.5q0 -197 -148 -303.5t-412 -106.5q-83 0 -171.5 12.5t-135.5 30.5q-55 23 -82.5 58.5t-27.5 93.5z" />
+<glyph unicode="4" horiz-adv-x="1236" d="M70 358v160l499 709q61 85 106 116t126 31q63 0 106 -40.5t43 -135.5q0 -46 -1 -162.5t-1 -150.5v-299h205v-226h-205v-51q0 -82 17 -106q26 -33 178 -41v-164q-168 4 -367 4q-151 0 -327 -4v164q166 11 186 41q18 30 18 110v45h-583zM324 580h329q4 404 9 489z" />
+<glyph unicode="5" horiz-adv-x="1236" d="M125 162q0 120 14 227h174q8 -108 45 -145q48 -51 174 -51q123 0 187.5 61.5t64.5 157.5q0 223 -258 223q-40 0 -104 -12q-82 -17 -105 -17q-112 0 -112 121q0 65 4 104l47 508h770v-243h-567l-23 -248q100 29 221 29q94 0 173 -23.5t140.5 -71.5t96.5 -128t35 -185 q0 -108 -31.5 -193.5t-84.5 -141.5t-128 -93.5t-158 -53.5t-178 -16q-183 0 -286 43q-61 25 -86 58.5t-25 89.5z" />
+<glyph unicode="6" horiz-adv-x="1236" d="M113 612q0 128 18.5 234t50 183.5t78 137.5t99 98t116 62.5t125.5 34.5t131 10q172 0 266 -41q50 -21 74.5 -53.5t24.5 -87.5q0 -88 -15 -211h-172q-8 60 -18.5 90t-30.5 45q-43 35 -135 35q-135 0 -214 -100.5t-85 -288.5q37 56 123 88.5t168 32.5q90 0 162.5 -25 t119.5 -66.5t78 -98.5t44.5 -118t13.5 -129q0 -100 -35 -186.5t-98.5 -150t-159 -100t-211.5 -36.5q-243 0 -380.5 166t-137.5 475zM424 537q0 -75 6 -121q30 -215 205 -215q95 0 150 59t55 172q0 213 -207 213q-59 0 -117.5 -29t-91.5 -79z" />
+<glyph unicode="7" horiz-adv-x="1236" d="M102 1214q0 125 125 125h883v-172l-492 -1151q-37 -90 -112 -90q-56 0 -97.5 28t-41.5 73q0 39 20 84l455 985h-262q-218 0 -263 -19q-49 -20 -69 -157h-131q-15 169 -15 294z" />
+<glyph unicode="8" horiz-adv-x="1236" d="M90 330q0 105 62.5 193t195.5 139q-65 38 -108.5 81t-65 88t-29.5 84.5t-8 85.5q0 73 29.5 138t87 118t154.5 84t221 31q224 0 338 -90.5t114 -237.5q0 -105 -56 -172.5t-171 -123.5q87 -45 143.5 -90t84 -93.5t37 -91.5t9.5 -100q0 -79 -34 -150.5t-98.5 -129t-170 -91 t-237.5 -33.5q-237 0 -367.5 96t-130.5 265zM379 354q0 -73 55 -120.5t158 -47.5q100 0 151.5 43t51.5 111q0 67 -60 116t-217 109q-76 -52 -107.5 -100.5t-31.5 -110.5zM451 1030q0 -59 50.5 -104t172.5 -90q119 83 119 188q0 59 -45.5 98t-122.5 39q-86 0 -130 -38 t-44 -93z" />
+<glyph unicode="9" horiz-adv-x="1236" d="M104 901q0 206 135 338.5t367 132.5q244 0 380 -164.5t136 -474.5q0 -179 -34 -314.5t-89.5 -219.5t-137 -136t-167 -72t-188.5 -20q-164 0 -273 41q-100 43 -100 146q0 117 12 219h172q12 -94 54 -133q44 -41 153 -41q132 0 205 96.5t80 288.5q-39 -55 -124 -86 t-167 -31q-91 0 -163 24t-118.5 64t-77 96t-43 116.5t-12.5 129.5zM397 913q0 -115 54 -160.5t151 -45.5q60 0 118.5 27t90.5 77q0 85 -6 131q-30 205 -207 205q-95 0 -148 -58.5t-53 -175.5z" />
+<glyph unicode=":" horiz-adv-x="503" d="M109 147q0 71 45.5 119.5t115.5 48.5q74 0 122 -46t48 -115q0 -81 -46.5 -126.5t-121.5 -45.5q-72 0 -117.5 46t-45.5 119zM109 774q0 71 45.5 118.5t115.5 47.5q75 0 122.5 -45.5t47.5 -116.5q0 -81 -46.5 -126.5t-121.5 -45.5q-72 0 -117.5 47t-45.5 121z" />
+<glyph unicode=";" horiz-adv-x="516" d="M72 -297q188 138 188 244q0 48 -49 65q-102 33 -102 146q0 62 48.5 109.5t127.5 47.5q91 0 141.5 -59t50.5 -156q0 -267 -332 -497zM109 774q0 71 45.5 118.5t115.5 47.5q75 0 122.5 -45.5t47.5 -116.5q0 -81 -46.5 -126.5t-121.5 -45.5q-72 0 -117.5 47t-45.5 121z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1261" d="M201 561v193l815 422v-211l-623 -308l623 -307v-217z" />
+<glyph unicode="=" horiz-adv-x="1261" d="M158 371v188h944v-188h-944zM158 770v186h944v-186h-944z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1261" d="M246 133v213l622 307l-622 305v218l815 -424v-193z" />
+<glyph unicode="?" horiz-adv-x="962" d="M115 1241q0 100 100 143q50 20 130 34t149 14q121 -1 209.5 -28.5t139.5 -77t75 -111.5t24 -140q0 -95 -33.5 -164.5t-117 -133.5t-230.5 -128q-23 -10 -37 -24.5t-21.5 -37t-10 -40t-5.5 -51t-6 -52.5h-141q-21 144 -21 242q0 60 30 91.5t114 68.5q170 75 170 207 q0 31 -6.5 57.5t-22.5 54t-50 43.5t-83 17q-95 0 -128 -30.5t-38 -129.5h-172q-18 97 -18 176zM250 147q0 71 46 119.5t116 48.5q73 0 120.5 -46t47.5 -115q0 -82 -45.5 -127t-120.5 -45q-72 0 -118 46t-46 119z" />
+<glyph unicode="@" horiz-adv-x="1705" d="M94 432q0 183 65 344.5t177.5 277.5t272 183.5t341.5 67.5q157 0 282 -44.5t207 -124.5t125.5 -189t43.5 -238q0 -159 -59.5 -291.5t-164.5 -222.5q-55 -46 -124 -73.5t-134 -27.5q-61 0 -95.5 19.5t-53.5 64.5q-3 9 -10 55q-128 -135 -283 -135q-111 0 -180.5 71.5 t-69.5 207.5q0 104 48 223.5t126 204.5q129 137 322 137q94 0 182 -43l37 55h151l-102 -426q-35 -140 -35 -211q0 -55 49 -55q60 0 121 74q53 59 85 152.5t32 209.5q0 120 -37 212t-105 149.5t-158.5 86t-201.5 28.5q-201 0 -357.5 -97t-240.5 -265.5t-84 -379.5 q0 -260 168.5 -422t446.5 -162q166 0 301.5 42.5t263.5 121.5l65 -114q-301 -197 -651 -197q-343 0 -554.5 201.5t-211.5 529.5zM643 406q0 -78 33.5 -110t95.5 -32q40 0 94.5 22t96.5 56q12 79 28 150l60 258q-66 32 -127 32q-103 0 -166 -73q-46 -56 -80.5 -146.5 t-34.5 -156.5z" />
+<glyph unicode="A" horiz-adv-x="1554" d="M20 -2v168q106 3 142 39q20 19 36.5 52.5t53.5 131.5l334 871q31 82 81 120.5t126 38.5q74 0 119.5 -35.5t72.5 -109.5l344 -938q23 -63 41.5 -93.5t46.5 -52.5q34 -21 117 -24v-168q-184 4 -281 4q-214 0 -422 -4v168q90 3 130 18q43 14 43 56q0 29 -27 112l-31 84h-428 l-29 -71q-30 -81 -30 -129q0 -22 12.5 -35.5t37 -20t50.5 -9t61 -4.5q17 -1 25 -1v-168q-188 4 -375 4q-78 0 -250 -4zM578 657h294q-19 58 -53.5 154.5t-58 165.5t-31.5 102q-18 -53 -151 -422z" />
+<glyph unicode="B" horiz-adv-x="1337" d="M45 -2v168q119 2 152 27q16 14 21 35.5t5 90.5v752q0 101 -18 119q-14 15 -43 21t-117 10v165h498q214 0 336 -18q154 -24 229.5 -102.5t75.5 -202.5q0 -258 -279 -324q171 -20 261.5 -108t90.5 -230q0 -228 -198 -335q-122 -68 -330 -68q-39 0 -199.5 2t-216.5 2 q-116 0 -268 -4zM537 270q0 -30 8.5 -42t32.5 -17q40 -6 98 -6q116 0 179 51.5t63 155.5q0 115 -91 166q-58 32 -243 32h-47v-340zM539 827h57q96 0 143 13q121 33 121 157q0 114 -102 148q-52 14 -160 14h-59v-332z" />
+<glyph unicode="C" horiz-adv-x="1390" d="M82 668q0 351 198.5 550t553.5 199q237 0 348 -51q108 -48 108 -139q0 -94 -26 -266h-177q-14 128 -45 167q-54 60 -221 60q-65 0 -124 -17t-112 -55.5t-91.5 -95.5t-61 -142t-22.5 -190q0 -108 25 -193.5t65.5 -139t96 -88t111 -48.5t115.5 -14q170 0 226 59 q37 40 77 164h181q-8 -218 -39 -295q-29 -68 -138 -108q-143 -54 -346 -54q-329 0 -515.5 182t-186.5 515z" />
+<glyph unicode="D" horiz-adv-x="1511" d="M45 0v166q84 3 116.5 10t45.5 23q9 14 12.5 36.5t3.5 83.5v744q0 92 -8 113q-12 26 -41 33t-129 12v163h416q308 0 461 -23.5t252 -82.5q258 -157 258 -559q0 -226 -74.5 -377t-231.5 -240q-182 -102 -548 -102h-533zM537 305q0 -48 32 -63q41 -21 121 -21 q211 0 308.5 112t97.5 363q0 335 -193 414q-102 41 -276 41h-90v-846z" />
+<glyph unicode="E" horiz-adv-x="1300" d="M45 0v166q140 11 162 33q11 12 13.5 37t2.5 92v737q0 103 -12 115q-13 17 -46.5 25t-119.5 16v163h977q74 0 111.5 -27.5t37.5 -76.5q0 -85 -22 -279h-176q-20 127 -53 150t-148 23h-235v-367h77q60 0 93 6t49 25q26 29 41 114h155q-2 -51 -2 -243q0 -164 2 -250h-149 q-16 93 -39 119q-19 19 -51 23.5t-99 4.5h-77v-305q0 -42 12.5 -63t42.5 -25q55 -8 164 -8q202 0 260 55q11 9 22 30t17.5 38.5t16 47t13.5 40.5h162q-5 -247 -39 -342q-12 -33 -64.5 -53.5t-123.5 -20.5h-975z" />
+<glyph unicode="F" horiz-adv-x="1222" d="M45 -2v168q86 3 117 10.5t45 22.5q16 19 16 129v737q0 103 -12 115q-13 17 -46.5 25t-119.5 16v163h987q75 0 107 -28.5t32 -81.5q0 -110 -20 -273h-176q-24 115 -53 136q-40 32 -148 32h-237v-399h114q60 0 93 6t49 25q25 27 41 123h145q-2 -51 -2 -252q0 -170 4 -256 h-141q-17 102 -39 127q-12 14 -36 20t-44 7t-70 1h-114v-219q0 -119 24 -143q30 -38 197 -43v-168q-176 4 -375 4q-158 0 -338 -4z" />
+<glyph unicode="G" horiz-adv-x="1482" d="M82 668q0 227 91 396.5t261 261t397 91.5q285 0 408 -63q86 -46 86 -133q0 -45 -8 -123.5t-19 -139.5h-176q-5 40 -10 67t-13 52.5t-17 41t-24.5 29t-33 20.5t-45 12t-58.5 6.5t-75 1.5q-64 0 -122 -13t-117 -47.5t-101.5 -89t-69 -144.5t-26.5 -206q0 -113 27.5 -200.5 t70 -139.5t99.5 -85.5t110 -45.5t108 -12q88 0 121 10q27 5 47 25q17 17 17 71v103q0 62 -25 78q-41 17 -156 24v168q118 -4 330 -4q131 0 279 4v-168q-80 -5 -102.5 -21.5t-22.5 -82.5v-248q0 -48 -17.5 -72.5t-58.5 -42.5q-84 -36 -205 -58t-246 -22q-156 0 -285 46 t-222.5 133t-145 220t-51.5 300z" />
+<glyph unicode="H" horiz-adv-x="1576" d="M45 -2v168q83 3 116 10.5t46 22.5q16 19 16 129v739q0 103 -14 119q-11 15 -45.5 23t-118.5 12v165q264 -6 334 -6q72 0 336 6v-165q-88 -4 -120 -12.5t-42 -24.5q-16 -22 -16 -119v-225h501v223q0 107 -14 123q-12 16 -45.5 23.5t-118.5 11.5v165q270 -6 342 -6 q66 0 330 6v-165q-87 -4 -119 -12.5t-43 -24.5q-16 -19 -16 -119v-729q0 -118 16 -137q12 -15 41 -22t121 -11v-168q-176 4 -326 4q-166 0 -346 -4v168q84 3 117.5 10t46.5 21q14 16 14 131v282h-501v-274q0 -113 16 -135q12 -14 44.5 -22.5t117.5 -12.5v-168q-176 4 -334 4 q-156 0 -336 -4z" />
+<glyph unicode="I" horiz-adv-x="759" d="M45 -2v168q83 3 116 10.5t46 22.5q16 19 16 129v739q0 103 -14 119q-11 15 -45.5 23t-118.5 12v165q165 -6 334 -6q90 0 336 6v-165q-88 -4 -120 -12.5t-42 -24.5q-16 -22 -16 -119v-729q0 -114 16 -133q14 -16 44 -24.5t118 -12.5v-168q-176 4 -334 4q-156 0 -336 -4z " />
+<glyph unicode="J" horiz-adv-x="739" d="M-10 -174q66 39 116.5 86.5t69.5 95.5q43 107 43 336v723q0 103 -14 119q-11 15 -46 23t-120 12v165q171 -6 336 -6q84 0 330 6v-165q-60 -3 -93.5 -9t-43.5 -11.5t-19 -16.5q-17 -24 -17 -119v-717q0 -138 -19.5 -235t-70.5 -179q-50 -81 -150.5 -152.5t-211.5 -113.5z " />
+<glyph unicode="K" horiz-adv-x="1488" d="M45 -2v168q83 3 115 10.5t47 22.5q16 19 16 129v739q0 102 -14 121q-11 14 -45.5 21.5t-118.5 11.5v165q264 -6 334 -6q72 0 336 6v-165q-86 -4 -118.5 -12.5t-43.5 -22.5q-16 -22 -16 -121v-729q0 -114 16 -133q14 -16 45.5 -24.5t118.5 -12.5v-168q-176 4 -336 4 q-156 0 -336 -4zM557 692q163 166 326 352q65 78 65 123q0 26 -22 38t-95 16v165q88 -4 328 -4q183 0 273 4v-165q-49 -3 -91 -19q-56 -19 -153 -127q-9 -10 -309 -330q102 -157 204 -288t174 -199q59 -56 111 -76q43 -14 100 -14v-166q-76 -10 -198 -10q-185 0 -291 98 q-155 148 -422 602z" />
+<glyph unicode="L" horiz-adv-x="1275" d="M45 0v166q141 12 162 33q11 12 13.5 37t2.5 92v739q0 102 -14 121q-11 14 -45 21.5t-119 11.5v165q165 -6 334 -6q98 0 338 6v-165q-87 -4 -120.5 -13t-43.5 -24q-16 -22 -16 -119v-750q0 -42 12.5 -63t42.5 -25q55 -8 164 -8q116 0 171 13t81 42q29 31 63 150h148 q-5 -263 -39 -350q-12 -34 -58 -54t-114 -20h-963z" />
+<glyph unicode="M" horiz-adv-x="1859" d="M43 -2v168q131 0 156 31q21 30 24 168q4 279 8 459.5t5.5 232t1.5 63.5q0 52 -15 70q-12 14 -43 21t-123 10v165q92 -4 324 -4q188 0 258 4q221 -552 285 -755q86 245 301 755q168 -4 280 -4q217 0 293 4v-165q-87 -3 -117.5 -10t-40.5 -23q-16 -18 -16 -113 q0 -16 0.5 -60t2.5 -218t5 -445q2 -116 17 -151q11 -16 44 -23.5t122 -11.5v-168q-200 4 -330 4q-112 0 -350 -4v168q144 7 165 35q17 27 17 110q0 496 4 758q-88 -247 -311 -778q-38 -92 -136 -92q-56 0 -86 23.5t-49 70.5q-224 568 -299 778q0 -124 2 -451t2 -335 q0 -67 21 -88q13 -14 45.5 -21t112.5 -10v-168q-176 4 -238 4q-134 0 -342 -4z" />
+<glyph unicode="N" horiz-adv-x="1572" d="M39 1221v165q90 -4 305 -4q159 0 231 4q467 -681 601 -897q-4 113 -7.5 300.5t-5.5 220.5q-3 88 -6.5 119.5t-13.5 50.5q-11 19 -47.5 28.5t-124.5 12.5v165q218 -4 303 -4q62 0 280 4v-165q-77 -4 -107 -11.5t-50 -23.5q-14 -12 -19 -46.5t-6 -129.5q-2 -113 -2 -514 q0 -37 1 -181t1 -188q0 -76 -34.5 -113t-116.5 -37q-98 0 -166 101q-557 838 -629 952q1 -164 4 -385.5t4 -269.5q2 -152 21 -176q14 -15 46 -22t122 -11v-168q-218 4 -291 4q-81 0 -289 -4v168q91 4 124 13t44 28q12 24 12 170q6 615 6 631q0 142 -12 166q-14 28 -65 36 q-34 7 -113 11z" />
+<glyph unicode="O" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q176 0 306 -48.5t209.5 -141.5t118 -219.5t38.5 -290.5q0 -185 -53.5 -329t-148 -233.5t-218 -135.5t-270.5 -46q-171 0 -303 52t-215 147.5t-125.5 225.5t-42.5 290zM412 715q0 -270 92 -390t264 -120t262 124t90 373q0 254 -86 370 t-262 116q-174 0 -267 -123.5t-93 -349.5z" />
+<glyph unicode="P" horiz-adv-x="1308" d="M45 -2v168q110 3 145 22q20 11 26.5 33.5t6.5 95.5v754q0 65 -4 87.5t-16 33.5q-12 12 -43.5 18.5t-114.5 10.5v163h508q258 0 369 -20q157 -28 239 -127t82 -256q0 -225 -140.5 -347t-406.5 -122q-110 0 -159 4v-184q0 -64 4 -92t16 -41q15 -17 53 -24.5t131 -8.5v-168 q-200 4 -393 4q-81 0 -303 -4zM537 737q33 -2 104 -2q136 0 208.5 49t72.5 170q0 71 -34 117.5t-95 65.5q-52 16 -187 16h-69v-416z" />
+<glyph unicode="Q" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q176 0 306 -48.5t209.5 -141.5t118 -219.5t38.5 -290.5q0 -266 -108.5 -441t-294.5 -249q46 -43 85 -71t99 -58q66 -32 159 -53t160 -21q27 0 37 2v-170q-73 -12 -166 -12q-106 0 -210.5 15t-161.5 38q-109 44 -192.5 105t-207.5 177 q-190 21 -321 117t-192.5 245.5t-61.5 346.5zM412 715q0 -270 92 -390t264 -120t262 124t90 373q0 254 -86 370t-262 116q-174 0 -267 -123.5t-93 -349.5z" />
+<glyph unicode="R" horiz-adv-x="1390" d="M45 -2v168q111 3 145 22q20 11 26.5 33.5t6.5 95.5v756q0 61 -4.5 83.5t-15.5 35.5q-19 22 -158 29v163h508q236 0 352 -22q155 -29 236.5 -126t81.5 -251q0 -152 -70 -256t-205 -151q117 -180 217 -285q66 -69 117 -98q43 -22 92 -25v-170q-24 -4 -106 -4 q-127 0 -204 32t-136 85q-130 114 -293 424q-55 3 -98 10v-215q0 -64 4 -92t16 -41q16 -18 45.5 -25t108.5 -8v-168q-196 4 -363 4q-81 0 -303 -4zM537 766q33 -2 118 -2q246 0 246 205q0 62 -29.5 106.5t-83.5 61.5q-52 16 -188 16h-63v-387z" />
+<glyph unicode="S" horiz-adv-x="1228" d="M98 262q0 96 13 207h155q23 -138 82 -201q35 -35 103.5 -54t154.5 -19q109 0 165 41t56 108q0 61 -29 96.5t-93 57.5l-265 96q-79 28 -137 65t-92 74t-54.5 82.5t-27 85t-6.5 86.5q0 93 33 169.5t99 135t173.5 91t247.5 32.5q228 0 340 -61q42 -25 59 -61.5t17 -102.5 q0 -79 -17 -236h-160q-8 55 -15.5 89.5t-21 64t-30.5 44t-47 25.5t-66 14t-92 3q-107 0 -156 -39.5t-49 -103.5q0 -53 29 -90.5t100 -63.5l260 -94q165 -60 243.5 -152t78.5 -237q0 -146 -72.5 -247t-197 -148.5t-291.5 -47.5q-94 0 -188 15t-150 41q-90 39 -121 92t-31 143 z" />
+<glyph unicode="T" horiz-adv-x="1398" d="M66 1245q0 139 135 139h999q137 0 137 -122q0 -189 -10 -336h-145q-10 104 -22.5 147t-37.5 62t-75 24.5t-183 5.5v-827q0 -112 17 -135q12 -16 47 -24.5t129 -12.5v-168q-172 4 -344 4q-179 0 -355 -4v168q93 3 128 11t49 24q16 19 16 129v835q-136 0 -188 -4.5 t-76 -21.5q-52 -34 -66 -213h-145q-10 147 -10 319z" />
+<glyph unicode="U" horiz-adv-x="1607" d="M35 1221v165q164 -4 305 -4q231 0 391 4v-165q-92 -3 -129 -11.5t-49 -25.5q-15 -18 -18 -103q-3 -138 -3 -440q0 -206 35 -299q52 -141 283 -141q217 0 287 108q36 57 47.5 138.5t11.5 201.5q0 262 -8 412q-3 65 -8 91.5t-19 37.5q-18 14 -53 20t-111 11v165 q76 -2 330 -2q20 0 115.5 1t134.5 1v-165q-150 -12 -168 -47q-14 -27 -14 -130v-438q0 -189 -27.5 -293.5t-93.5 -179.5q-68 -80 -193 -123t-280 -43q-179 0 -310.5 51.5t-191.5 145.5q-45 68 -64.5 168.5t-19.5 298.5q0 105 2 259.5t2 174.5q0 89 -14 113 q-11 20 -46.5 29.5t-123.5 13.5z" />
+<glyph unicode="V" horiz-adv-x="1556" d="M29 1221v165q180 -4 360 -4q136 0 344 4v-165q-26 -1 -42.5 -2t-39.5 -4t-37 -8.5t-28 -14t-20.5 -21.5t-6.5 -30q0 -24 31 -115q159 -454 241 -700q95 293 230 696q26 84 26 129q0 41 -32 51q-43 16 -154 19v165q188 -4 275 -4q176 0 352 4v-165q-108 -3 -142 -37 q-26 -24 -71 -144l-340 -923q-52 -144 -203 -144q-78 0 -124.5 30.5t-72.5 100.5l-344 940q-23 63 -42 95.5t-46 54.5q-32 24 -114 27z" />
+<glyph unicode="W" horiz-adv-x="2195" d="M53 1221v165q258 -4 357 -4q266 0 348 4v-165q-61 -1 -101.5 -8t-59.5 -20.5t-25.5 -27.5t-6.5 -35q0 -38 15 -106q92 -376 147 -639q53 204 244 860q39 146 184 146q79 0 113.5 -32.5t58.5 -109.5q202 -667 252 -866q52 272 139 635q19 90 19 115q0 31 -10.5 47 t-53.5 27t-129 14v165q200 -4 344 -4q121 0 273 4v-165q-93 -5 -129 -33q-21 -17 -35.5 -51.5t-34.5 -104.5l-246 -911q-22 -79 -66.5 -113.5t-123.5 -34.5q-80 0 -121.5 30t-63.5 103q-66 221 -114.5 394.5t-85 308.5t-43.5 162q-55 -234 -238 -850q-23 -78 -69 -113 t-121 -35q-78 0 -121.5 30.5t-61.5 102.5l-249 975q-20 82 -55.5 109.5t-129.5 30.5z" />
+<glyph unicode="X" horiz-adv-x="1574" d="M35 -2v168q115 4 151 33t74 82l326 452l-283 379q-4 5 -14.5 19.5t-15.5 20.5t-14 16.5t-17 16.5t-17 11q-42 22 -133 25v165q129 -4 338 -4q315 0 383 4v-165q-73 -1 -100 -16t-27 -42q0 -36 41 -92l150 -207l137 205q41 61 41 96q0 30 -26 40.5t-103 15.5v165 q80 -4 313 -4q158 0 250 4v-165q-23 -1 -42.5 -4t-33 -5.5t-28 -11.5t-21.5 -12.5t-20 -18t-17.5 -19.5t-20 -25t-20.5 -27l-289 -396l320 -434q29 -39 72 -73q19 -16 48 -21t101 -8v-168q-266 4 -346 4q-151 0 -393 -4v168q83 4 112 19.5t29 43.5q0 29 -27 66l-198 264 l-170 -248q-37 -58 -37 -84q0 -31 33.5 -44t134.5 -17v-168q-234 4 -338 4q-182 0 -303 -4z" />
+<glyph unicode="Y" horiz-adv-x="1378" d="M12 1221v165q234 -4 303 -4q141 0 349 4v-165q-81 -4 -108.5 -19t-27.5 -41q0 -35 35 -94q142 -242 187 -324q24 43 90.5 159t99.5 177q33 57 33 88q0 25 -27 39t-108 15v165q96 -4 331 -4q113 0 199 4v-165q-62 -3 -98 -31q-22 -17 -114 -161q-9 -12 -13 -19l-303 -465 v-238q0 -68 8 -92q9 -21 46.5 -33t139.5 -16v-168q-222 4 -344 4q-146 0 -350 -4v168q101 7 131.5 15t40.5 24q12 19 12 102v236l-315 518q-35 60 -55.5 87t-42.5 44q-39 25 -99 29z" />
+<glyph unicode="Z" horiz-adv-x="1376" d="M55 0v94l725 1080q-259 0 -324.5 -4.5t-99.5 -24.5q-58 -31 -84 -197h-168q-16 153 -16 314q0 122 129 122h1016v-96l-719 -1069q55 -6 213 -6q165 0 223.5 12t87.5 43q41 45 78 193h184q-4 -258 -24 -367q-15 -94 -170 -94h-1051z" />
+<glyph unicode="[" horiz-adv-x="665" d="M182 -348v1892h449v-119h-232v-1652h232v-121h-449z" />
+<glyph unicode="\" horiz-adv-x="698" d="M51 1462l139 39l476 -1630l-142 -41z" />
+<glyph unicode="]" horiz-adv-x="665" d="M37 -227h229v1650h-229v121h444v-1892h-444v121z" />
+<glyph unicode="^" horiz-adv-x="1261" d="M203 715l342 731h174l338 -729h-191l-239 512l-234 -514h-190z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-4 -164h1014v-121h-1014v121z" />
+<glyph unicode="`" horiz-adv-x="604" d="M96 1411q0 44 34.5 73t76.5 29q32 0 58.5 -20.5t64.5 -81.5l176 -289l-82 -67l-254 233q-40 40 -57 67.5t-17 55.5z" />
+<glyph unicode="a" horiz-adv-x="1095" d="M61 268q0 97 45.5 160t155.5 98t289 35q63 0 86 -4v55q0 89 -31.5 122.5t-118.5 33.5q-83 0 -122 -29q-36 -26 -41 -127h-168q-19 102 -19 174q0 101 101 144q52 21 128.5 36t143.5 15q151 0 228 -26.5t118 -71.5q64 -73 64 -230q0 -40 -1 -192t-1 -158q0 -67 18 -93 t57 -26q31 0 74 6v-172q-43 -16 -106 -26t-111 -10q-32 0 -56 4t-50.5 14.5t-46 35t-29.5 60.5q-119 -119 -285 -119q-61 0 -116.5 17t-102.5 51t-75 91.5t-28 131.5zM352 285q0 -55 35.5 -80t85.5 -25q94 0 164 41v160q-27 6 -84 6q-110 0 -155.5 -26t-45.5 -76z" />
+<glyph unicode="b" horiz-adv-x="1212" d="M10 1264v157q162 76 316 76q64 0 92 -40t28 -122q0 -293 -2 -481q145 127 326 127q98 0 170.5 -35.5t116 -101t64 -150t20.5 -188.5q0 -236 -141 -380t-404 -144q-106 0 -238.5 19t-203.5 50q2 96 2 266v734q0 101 -5 143t-20 55q-24 19 -72 19q-17 0 -49 -4zM442 233 q70 -20 162 -20q112 0 169.5 73.5t57.5 190.5q0 132 -50 204.5t-150 72.5q-101 0 -189 -52v-469z" />
+<glyph unicode="c" horiz-adv-x="1009" d="M72 453q0 247 143 387.5t373 140.5q120 0 213 -27q65 -20 95 -50t30 -87q0 -106 -17 -205h-174q-8 95 -45 125q-29 23 -104 23q-93 0 -154 -69.5t-61 -215.5q0 -272 241 -272q124 0 262 76l84 -166q-81 -67 -191.5 -104.5t-219.5 -37.5q-209 0 -342 129.5t-133 352.5z " />
+<glyph unicode="d" horiz-adv-x="1259" d="M72 440q0 116 30 211.5t90.5 169t161 114t232.5 40.5q118 0 196 -37v160q0 80 -12 121q-8 49 -80 49q-15 0 -55 -4v157q151 76 315 76q123 0 123 -151q0 -42 -2 -212t-2 -221v-628q0 -101 76 -101q33 0 74 6v-172q-109 -36 -224 -36q-80 0 -120 28.5t-54 89.5 q-119 -125 -305 -125q-205 0 -324.5 130t-119.5 335zM371 475q0 -132 64.5 -203t174.5 -71q106 0 172 57v461q-57 35 -161 35q-117 0 -183.5 -71t-66.5 -208z" />
+<glyph unicode="e" horiz-adv-x="1067" d="M72 455q0 249 141 387.5t367 138.5q108 0 189.5 -31.5t130 -88.5t72 -129.5t23.5 -160.5t-28 -120q-29 -31 -103 -31h-499v-17q0 -82 64.5 -140t178.5 -58q151 0 326 88l86 -168q-87 -71 -208.5 -112.5t-256.5 -41.5q-217 0 -350 132t-133 352zM367 600l354 8v21 q0 62 -40.5 100.5t-117.5 38.5q-81 0 -135 -40.5t-61 -127.5z" />
+<glyph unicode="f" horiz-adv-x="720" d="M27 729v158q71 14 104 39q27 19 39.5 47t15.5 80q9 132 46 216t106 138q55 42 130.5 66t152.5 24q120 0 192 -27q84 -29 84 -127q0 -85 -14 -204h-168q0 83 -20.5 111t-82.5 28q-71 0 -104 -53q-31 -50 -31 -185v-118q138 0 238 -4v-181q-120 -8 -238 -8v-391 q0 -110 23 -143q12 -14 46.5 -21.5t125.5 -11.5v-164q-180 4 -316 4q-123 0 -315 -4v164q67 6 95 13.5t40 21.5q14 19 14 104v428h-163z" />
+<glyph unicode="g" horiz-adv-x="1114" d="M0 -287q0 94 63 150t168 92q-96 45 -96 143q0 105 133 201q-200 86 -200 311q0 165 119.5 268t334.5 103q177 0 271 -59q187 0 309 -7v-180q-108 -6 -164 -6q10 -14 16.5 -46t6.5 -56q0 -179 -118 -278t-335 -99q-58 0 -96 6q-39 -23 -39 -55q0 -41 98 -56 q26 -4 142 -16.5t210 -26.5q143 -22 201.5 -94t58.5 -196q0 -173 -151 -278t-406 -105q-138 0 -242 22.5t-164.5 62.5t-90 90t-29.5 109zM272 -219q0 -20 7 -37.5t26.5 -35t50 -30t81 -20.5t116.5 -8q61 0 106 9.5t70 26.5t37 37t12 44q0 36 -31.5 57t-115.5 31 q-247 31 -279 41q-80 -56 -80 -115zM358 621q0 -89 43.5 -129.5t118.5 -40.5q73 0 116.5 42.5t43.5 122.5q0 160 -162 160q-37 0 -67 -12t-50.5 -32.5t-31.5 -49t-11 -61.5z" />
+<glyph unicode="h" horiz-adv-x="1253" d="M33 -2v164q69 7 94.5 14t36.5 19q16 19 16 108v758q0 97 -5.5 136t-22.5 52q-22 19 -70 19q-17 0 -49 -4v157q162 76 313 76q125 0 125 -162q0 -75 -2 -241.5t-2 -264.5q61 67 156 106.5t184 39.5q125 0 194 -66q72 -69 72 -274v-330q0 -82 10 -102q8 -15 36 -23.5 t104 -17.5v-164q-172 4 -267 4q-112 0 -292 -4v164q52 6 73 13t31 20q16 16 16 114v250q0 102 -25 138t-112 36q-85 0 -178 -41v-385q0 -101 16 -117q20 -20 101 -28v-164q-180 4 -258 4q-203 0 -295 -4z" />
+<glyph unicode="i" horiz-adv-x="661" d="M41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 305 76q64 0 101.5 -35t37.5 -127q0 -68 -4 -241.5t-4 -260.5q0 -92 19 -114q17 -22 129 -31v-164q-176 4 -287 4q-205 0 -297 -4zM139 1305q0 73 47 120.5t121 47.5 q85 0 125.5 -45t40.5 -119t-46 -123t-126 -49q-73 0 -117.5 49t-44.5 119z" />
+<glyph unicode="j" horiz-adv-x="616" d="M-41 -424q58 32 103 73.5t67 82.5q41 81 41 329v535q0 91 -18 117t-82 26q-18 0 -50 -4v160q152 76 304 76q63 0 97 -35t34 -127q0 -69 2 -368.5t2 -385.5q0 -142 -16 -225.5t-66 -155.5q-54 -78 -152.5 -142t-199.5 -95zM119 1305q0 73 46 120.5t120 47.5 q85 0 126.5 -45t41.5 -119t-46 -123t-126 -49q-74 0 -118 49t-44 119z" />
+<glyph unicode="k" horiz-adv-x="1234" d="M37 1264v157q165 76 313 76q65 0 95 -39.5t30 -118.5q0 -54 -1 -156t-1 -151v-725q0 -94 23 -117q10 -12 36 -17.5t86 -10.5v-164q-180 4 -284 4q-203 0 -295 -4v164q67 7 93 14t38 19q14 17 14 108v776q0 50 -1 73t-5.5 51t-15 39t-28.5 18.5t-46 7.5q-35 0 -51 -4z M489 477q261 205 261 273q0 21 -23 31.5t-94 11.5v159q109 -4 278 -4t265 4v-161q-55 0 -93 -17q-45 -14 -145 -102q-142 -130 -156 -142q98 -130 185 -227q17 -20 53 -52t57 -44q21 -14 62.5 -26t81.5 -15v-164q-67 -6 -144 -6q-186 0 -274 76q-24 20 -48 45t-50 57t-45 56 t-47.5 65t-41.5 60t-44 65t-38 57z" />
+<glyph unicode="l" horiz-adv-x="653" d="M37 1264v157q165 76 313 76q65 0 95 -39.5t30 -118.5q0 -55 -1 -193t-1 -198v-641q0 -94 23 -117q17 -19 122 -28v-164q-180 4 -284 4q-203 0 -295 -4v164q67 7 93 14t38 19q14 17 14 108v707q0 127 -6.5 176t-23.5 63q-24 19 -66 19q-35 0 -51 -4z" />
+<glyph unicode="m" horiz-adv-x="1845" d="M41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 301 76q57 0 92 -31t41 -111q62 67 154.5 106.5t181.5 39.5q192 0 238 -154q67 70 163.5 112t184.5 42q130 0 196 -66q70 -70 70 -274v-330q0 -83 12 -102q8 -15 36 -23.5 t104 -17.5v-164q-176 4 -269 4q-102 0 -282 -4v164q71 7 94 33q18 22 18 114v250q0 101 -26 137.5t-113 36.5q-74 0 -170 -41q4 -40 4 -61v-326q0 -84 10 -104q8 -15 31 -24t80 -15v-164q-172 4 -240 4q-106 0 -286 -4v164q50 6 71 13t31 20q14 14 14 114v250 q0 105 -24.5 139.5t-112.5 34.5q-75 0 -168 -41v-385q0 -98 19 -117q12 -12 31 -18t65 -10v-164q-184 4 -250 4q-209 0 -301 -4z" />
+<glyph unicode="n" horiz-adv-x="1265" d="M41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 301 76q56 0 91 -31t42 -111q61 67 156 106.5t184 39.5q131 0 197 -66q69 -69 69 -274v-330q0 -80 11 -102q9 -15 36.5 -23.5t102.5 -17.5v-164q-172 4 -266 4 q-115 0 -291 -4v164q80 9 102 31q19 19 19 116v250q0 100 -26.5 137t-113.5 37q-85 0 -178 -41v-385q0 -95 19 -117q12 -12 32.5 -18t67.5 -10v-164q-180 4 -258 4q-205 0 -297 -4z" />
+<glyph unicode="o" d="M72 471q0 234 146 372t382 138q248 0 374 -130.5t126 -358.5q0 -167 -69.5 -286.5t-184.5 -177t-262 -57.5q-251 0 -381.5 136t-130.5 364zM371 492q0 -159 55 -229t160 -70q217 0 217 280q0 151 -53 219t-164 68q-104 0 -159.5 -69t-55.5 -199z" />
+<glyph unicode="p" horiz-adv-x="1222" d="M23 -375q42 4 63.5 6t40.5 11t25.5 14t12 27.5t5.5 38v57.5v815q0 107 -29 129q-22 14 -67 14q-33 0 -51 -2v160q152 76 299 76q58 0 93 -27t40 -104q63 61 147.5 101t179.5 40q98 0 170.5 -35.5t116 -101t64 -150t20.5 -188.5q0 -236 -141 -380t-406 -144q-37 0 -147 14 v-191q0 -68 5 -97.5t19 -47.5q12 -14 46 -21.5t126 -13.5v-162q-235 5 -317 5q-75 0 -315 -5v162zM457 233q64 -20 161 -20q113 0 169.5 71t56.5 193q0 268 -201 268q-46 0 -96 -15.5t-90 -41.5v-455z" />
+<glyph unicode="q" horiz-adv-x="1239" d="M72 440q0 263 138.5 402t420.5 139q253 0 442 -66q-4 -63 -4 -262v-874v-12v-52.5t5.5 -35t12 -25t25.5 -13.5t40 -10t62 -6v-162q-235 5 -313 5q-80 0 -315 -5v162q94 6 126.5 13t43.5 22q13 15 17.5 45t4.5 100q0 25 1 138t1 123q-105 -91 -264 -91q-205 0 -324.5 130 t-119.5 335zM371 475q0 -132 64.5 -202t174.5 -70q47 0 94.5 14.5t77.5 40.5v469q-58 31 -161 31q-116 0 -183 -73t-67 -210z" />
+<glyph unicode="r" horiz-adv-x="888" d="M41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 301 76q53 0 88 -28t43 -101q42 58 110 96.5t134 38.5q135 0 135 -127q0 -56 -21 -207h-172q-9 58 -25.5 79t-49.5 21q-57 0 -107 -43v-389q0 -95 23 -121q19 -21 147 -28 v-164q-180 4 -309 4q-205 0 -297 -4z" />
+<glyph unicode="s" horiz-adv-x="972" d="M76 197q0 116 8 165h154q14 -97 63 -137q55 -49 174 -49q133 0 133 68q0 28 -15.5 43.5t-55.5 29.5l-189 70q-81 30 -132.5 61.5t-78 68.5t-36 73.5t-9.5 87.5q0 131 113.5 217t324.5 86q165 0 256 -45q70 -36 70 -125q0 -88 -16 -182h-152q-8 56 -20.5 80t-34.5 39 q-42 28 -144 28q-114 0 -114 -69q0 -26 17 -41.5t59 -30.5l190 -70q152 -55 204 -118t52 -168q0 -149 -123 -228.5t-315 -79.5q-156 0 -250 33q-76 25 -104.5 75t-28.5 118z" />
+<glyph unicode="t" horiz-adv-x="753" d="M8 729v158q46 8 109 35q40 19 55 57q8 18 14.5 36.5t9.5 31.5t9 37l10 40q23 97 129 97q55 0 83 -24.5t28 -82.5v-192q121 0 235 -7v-180q-120 -6 -235 -6v-250q0 -15 -0.5 -43t-0.5 -42.5t1 -38.5t2.5 -37t5.5 -32t9.5 -29.5t14.5 -23t20.5 -18.5t27 -10t34.5 -4 q81 0 138 14l36 -174q-60 -33 -149 -49.5t-168 -16.5q-125 0 -194.5 65.5t-69.5 217.5q0 83 3 258t3 213h-160z" />
+<glyph unicode="u" horiz-adv-x="1228" d="M10 735v160q149 76 301 76q64 0 99.5 -35.5t35.5 -128.5q0 -39 -3 -198t-3 -232q0 -97 38 -130.5t108 -33.5q103 0 180 49v332q0 91 -17 117t-81 26q-34 0 -52 -2v160q146 76 308 76q63 0 99 -36t36 -130q0 -43 -4 -240t-4 -243q0 -82 16 -110t68 -28q25 0 65 6v-167 q-114 -46 -256 -46q-60 0 -107.5 32.5t-58.5 101.5q-56 -62 -139 -99t-180 -37q-164 0 -234.5 90t-70.5 273v256q0 93 -15 118t-76 25q-6 0 -26.5 -1t-26.5 -1z" />
+<glyph unicode="v" d="M10 784v168q140 -4 346 -4q88 0 236 4v-168q-48 -5 -74 -10q-47 -9 -47 -55q0 -24 21 -82q100 -235 153 -377q28 75 148 381q22 53 22 92q0 10 -4 18.5t-13 13.5t-16.5 8.5t-23 5.5t-22 2.5t-24 1.5t-20.5 1v168q136 -4 234 -4q109 0 235 4v-168q-72 -8 -92 -26 q-30 -30 -68 -113l-266 -600q-39 -82 -145 -82q-117 0 -154 84l-260 594q-44 99 -72 119q-23 20 -94 24z" />
+<glyph unicode="w" horiz-adv-x="1685" d="M27 784v168q92 -4 276 -4q205 0 307 4v-168q-26 -2 -88 -10q-51 -6 -51 -49q0 -30 12 -76q15 -57 50 -179t49 -177q98 303 190 561q18 49 48 75.5t93 26.5q58 0 83.5 -24t45.5 -76q82 -223 189 -549q72 279 90 342q14 51 14 78q0 36 -35 45q-22 5 -106 12v168 q86 -4 270 -4q121 0 199 4v-168q-60 -6 -84 -18q-19 -7 -30.5 -29t-28.5 -73l-197 -615q-27 -86 -141 -86q-117 0 -146 86q-117 342 -178 537q-100 -305 -194 -541q-36 -82 -142 -82q-121 0 -149 84l-205 625q-23 66 -41 84q-13 14 -34 19.5t-66 8.5z" />
+<glyph unicode="x" horiz-adv-x="1228" d="M25 0v162q82 4 122 33q41 32 68 63l209 231l-195 216q-30 30 -45.5 42.5t-48 24.5t-76.5 12v168q106 -4 285 -4q191 0 297 4v-168q-44 -1 -59 -9t-15 -25q0 -22 39 -64l76 -84l70 82q30 35 30 68q0 17 -14.5 23t-60.5 9v168q90 -4 233 -4q147 0 223 4v-168 q-74 -5 -102 -28q-25 -17 -68 -64l-198 -213l219 -231q39 -44 82 -66q36 -17 106 -20v-162q-59 0 -177 1t-142 1q-184 0 -295 -2v162q51 3 69.5 13.5t18.5 29.5q-1 11 -11.5 26t-20.5 25.5t-36 36.5l-71 72l-60 -76q-28 -34 -37.5 -50.5t-9.5 -33.5q0 -38 96 -43v-162 q-100 4 -266 4q-75 0 -235 -4z" />
+<glyph unicode="y" d="M12 784v168q136 -4 344 -4q92 0 244 4v-168q-12 -2 -40 -5t-40 -5q-26 -3 -35.5 -15.5t-9.5 -35.5q0 -39 35 -115q19 -43 51 -113t59.5 -133t49.5 -116q4 13 49.5 145.5t71.5 210.5q32 92 32 131q0 16 -9 26.5t-25.5 14.5t-32 5.5t-38 2.5t-32.5 2v168q132 -4 240 -4 q109 0 235 4v-168q-28 -3 -45.5 -6.5t-32.5 -12t-23 -15t-17.5 -24t-14.5 -31t-17 -44.5q-4 -13 -7 -20l-226 -602q-74 -196 -119.5 -300t-87.5 -165q-44 -64 -109.5 -94.5t-133.5 -30.5q-242 0 -242 176q0 65 12 139h164q5 -60 20 -83t60 -23q48 0 86 59q45 69 125 287 q-43 0 -70.5 23.5t-50.5 74.5l-252 553q-44 94 -76 115q-24 16 -92 24z" />
+<glyph unicode="z" horiz-adv-x="1048" d="M37 0v102l524 676q-166 0 -217 -4q-25 -3 -42.5 -12.5t-28 -20.5t-18 -33.5t-11 -39t-8.5 -49.5q-2 -13 -3 -19h-161q-15 132 -15 217q0 133 131 133h770v-112l-524 -670q63 -2 152 -2q113 0 170 22q16 6 33.5 27.5t27.5 44.5q29 60 41 117h150q0 -125 -17 -285 q-11 -92 -135 -92h-819z" />
+<glyph unicode="{" horiz-adv-x="651" d="M25 539v125q119 10 153.5 69.5t34.5 233.5v241q0 86 21 151t68.5 117t134 79.5t208.5 27.5v-121q-70 0 -112 -13t-66.5 -48.5t-32.5 -87t-8 -139.5v-285q0 -71 -15 -120.5t-47.5 -82t-73 -51t-102.5 -33.5q58 -13 98 -30.5t73.5 -49.5t50 -84t16.5 -125v-293 q0 -151 44 -212.5t175 -61.5v-123q-223 0 -325.5 82.5t-102.5 263.5v289q0 145 -39.5 208.5t-152.5 72.5z" />
+<glyph unicode="|" horiz-adv-x="552" d="M182 -375v1950h189v-1950h-189z" />
+<glyph unicode="}" horiz-adv-x="651" d="M12 -258q135 0 178 59.5t43 229.5v284q0 136 56 196.5t178 92.5q-58 12 -97.5 29.5t-72.5 49.5t-49.5 84t-16.5 126v291q0 151 -44 213.5t-175 62.5v123q221 0 323.5 -83.5t102.5 -264.5v-289q0 -143 41 -206.5t154 -73.5v-125q-119 -10 -155 -70t-36 -231v-244 q0 -68 -12.5 -122.5t-43 -102.5t-78.5 -79.5t-123 -50t-173 -18.5v119z" />
+<glyph unicode="~" horiz-adv-x="1261" d="M119 526q76 104 151 152.5t160 48.5q50 0 96.5 -16.5t147.5 -75.5q58 -33 90 -46.5t63 -13.5q47 0 92 31.5t105 110.5l119 -127q-69 -100 -149.5 -151.5t-159.5 -51.5q-86 0 -197 66q-93 52 -129.5 68t-69.5 16q-57 0 -102.5 -33.5t-89.5 -108.5z" />
+<glyph unicode="&#xa1;" horiz-adv-x="622" d="M82 877q0 74 45.5 120.5t118.5 46.5q74 0 120 -45t46 -125q0 -72 -47 -117.5t-121 -45.5q-70 0 -116 47t-46 119zM88 -260q0 114 107 825h129q9 -65 25 -181q83 -586 83 -646q0 -70 -43.5 -114t-128.5 -44q-48 0 -83 14.5t-53.5 39t-27 51t-8.5 55.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1015" d="M104 446q0 209 110.5 340t293.5 156v217h117v-211q96 -7 168 -26q60 -19 88 -47t28 -82q0 -92 -14 -199h-166q-7 77 -26.5 102.5t-77.5 34.5v-518q121 3 239 68l76 -156q-128 -109 -315 -129v-232h-117v230q-179 12 -291.5 133t-112.5 319zM387 467q0 -187 121 -236v486 q-121 -55 -121 -250z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1282" d="M51 0v172q139 26 203.5 95t64.5 212q0 8 -1 28t-1 32h-202v168h178q-35 165 -35 239q0 199 128 312.5t390 113.5q75 0 151.5 -11.5t114.5 -27.5q93 -37 93 -162q0 -34 -5 -109.5t-10 -109.5h-157q-6 63 -15 97.5t-31 59t-56.5 32.5t-94.5 8q-102 0 -149.5 -53t-47.5 -172 q0 -31 10 -115.5t11 -101.5h307v-168h-293v-25q0 -81 -36.5 -150t-125.5 -133q225 5 287 5q114 0 172 7t76 27q31 35 57 133h146q-2 -68 -11 -176t-20 -155q-15 -72 -123 -72h-975z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1257" d="M94 266l139 142q-81 106 -81 266q0 152 79 270l-137 139l137 142l136 -138q115 80 264 80q146 0 262 -80l133 138l137 -142l-135 -139q80 -103 80 -270q0 -155 -80 -266l135 -142l-137 -141l-133 139q-112 -80 -262 -80q-157 0 -264 80l-136 -141zM344 680 q0 -133 81 -220t206 -87q119 0 199.5 87t80.5 214q0 128 -80 214.5t-200 86.5q-123 0 -205 -85t-82 -210z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1402" d="M39 1174v167q113 -2 297 -2q238 0 342 2v-167q-78 -4 -104.5 -18t-26.5 -38q0 -40 45 -108q6 -10 72.5 -120t99.5 -167q133 233 172 299q37 64 37 104q0 24 -30 35.5t-101 12.5v167q92 -2 319 -2q115 0 199 2v-167q-61 -3 -100 -31q-31 -25 -136 -189l-137 -209h197v-122 h-273l-61 -97v-26h334v-123h-334v-74q0 -54 10 -84q9 -23 45.5 -36t136.5 -17v-168q-218 4 -340 4q-148 0 -340 -4v168q98 7 127 15.5t41 27.5q15 18 15 94v74h-328v123h328v26l-62 97h-266v122h189l-170 277q-56 96 -95 125q-37 22 -102 27z" />
+<glyph unicode="&#xa6;" horiz-adv-x="552" d="M182 -244v690h189v-690h-189zM182 752v692h189v-692h-189z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1052" d="M68 602q0 96 59 175t184 126q-62 59 -87 118t-25 136q0 57 22 111t66 101.5t123 76.5t182 29q128 0 229 -37q84 -34 84 -117q0 -93 -16 -195h-154q-9 89 -41 117q-37 33 -106 33q-63 0 -97 -26t-34 -68q0 -47 31.5 -84.5t129.5 -110.5l121 -88q146 -107 199 -184t53 -180 q0 -201 -252 -299q91 -83 118.5 -143t27.5 -150q0 -68 -28.5 -129t-81.5 -109t-138 -76t-191 -28q-152 0 -241 41q-47 21 -66.5 50t-19.5 81q0 69 14 188h160q8 -86 43 -121q46 -41 123 -41q76 0 114.5 29.5t38.5 81.5q0 47 -35 91t-137 128l-188 154q-109 89 -146.5 161.5 t-37.5 157.5zM309 686q0 -49 27 -85.5t108 -106.5l101 -86q12 -10 32.5 -26t35 -28t24.5 -22q96 58 96 123q0 46 -33 92.5t-122 118.5l-99 79q-37 27 -80 64q-90 -48 -90 -123z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M-2 1264q0 54 35.5 91.5t93.5 37.5q56 0 90.5 -37.5t34.5 -91.5q0 -56 -35.5 -95t-93.5 -39q-54 0 -89.5 38t-35.5 96zM352 1264q0 54 36 91.5t93 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -95t-94.5 -39q-53 0 -89 38t-36 96z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1611" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM197 694q0 -175 81 -320.5t223 -230t314 -84.5q166 0 303.5 83 t216 227.5t78.5 318.5q0 178 -77.5 323.5t-215.5 229.5t-309 84q-173 0 -314 -83.5t-220.5 -228t-79.5 -319.5zM385 670q0 208 122 327t341 119q137 0 217 -33q68 -30 68 -82q0 -57 -19 -161h-119q-9 73 -28 96q-19 21 -46 29t-79 8q-103 0 -171.5 -71.5t-68.5 -219.5 q0 -80 21.5 -138t58.5 -88.5t77 -44.5t85 -14q80 0 127 37q28 25 47 96h123q-3 -141 -23 -180q-18 -38 -86 -61q-98 -35 -213 -35q-203 0 -318.5 109.5t-115.5 306.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="743" d="M74 741q0 94 73 141.5t242 47.5q37 0 53 -2v35q0 55 -21 76.5t-75 21.5q-40 0 -59.5 -7.5t-29 -28.5t-13.5 -64h-107q-14 46 -14 114q0 64 63 92q79 33 176 33q101 0 151 -16t75 -45q39 -42 39 -152q0 -25 -1 -120.5t-1 -100.5q0 -76 47 -76q15 0 47 4v-114 q-73 -25 -141 -25q-44 0 -73.5 14.5t-43.5 59.5q-76 -76 -180 -76q-84 0 -145.5 47.5t-61.5 140.5zM264 752q0 -33 23 -49.5t53 -16.5q45 0 102 23v108q-6 0 -25 1t-26 1q-69 0 -98 -17t-29 -50z" />
+<glyph unicode="&#xab;" horiz-adv-x="997" d="M39 459q0 49 49 94l361 326l104 -97l-262 -319l258 -336l-109 -98l-362 342q-39 39 -39 88zM451 459q0 51 47 94l358 326l107 -97l-263 -319l256 -336l-106 -98l-365 342q-34 34 -34 88z" />
+<glyph unicode="&#xac;" horiz-adv-x="1261" d="M147 549v186h906v-583h-174v397h-732z" />
+<glyph unicode="&#xad;" horiz-adv-x="575" d="M57 412v194h457v-194h-457z" />
+<glyph unicode="&#xae;" horiz-adv-x="1611" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM197 694q0 -175 81 -320.5t223 -230t314 -84.5q166 0 303.5 83 t216 227.5t78.5 318.5q0 178 -77.5 323.5t-215.5 229.5t-309 84q-173 0 -314 -83.5t-220.5 -228t-79.5 -319.5zM430 299v107q63 0 86 10q10 5 14.5 19.5t4.5 56.5v426q0 58 -13 71q-17 13 -92 15v104h307q131 0 213 -14q92 -17 141.5 -74t49.5 -148q0 -176 -162 -239 q28 -42 44 -63.5t42.5 -54t53 -55t55.5 -38.5q23 -11 55 -14v-109q-3 0 -28 -1t-38 -1q-80 0 -125.5 18.5t-83.5 51.5q-72 62 -172 245q-39 0 -53 2v-112q0 -64 10 -76q17 -20 92 -20v-107q-33 0 -121 1t-98 1q-18 0 -83 -1t-99 -1zM729 750q20 -2 72 -2q139 0 139 114 q0 69 -66 92q-26 9 -110 9h-35v-213z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M25 1122v168h548v-168h-548z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M82 1163q0 124 79.5 200.5t196.5 76.5q116 0 192.5 -72.5t76.5 -202.5q0 -124 -78.5 -197t-194.5 -73q-118 0 -195 71.5t-77 196.5zM197 1165q0 -73 42 -120.5t115 -47.5q76 0 119 47t43 119q0 77 -43 123.5t-119 46.5q-70 0 -113.5 -46.5t-43.5 -121.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1261" d="M174 0v182h911v-182h-911zM174 700v177h369v391h178v-391h364v-177h-364v-389h-178v389h-369z" />
+<glyph unicode="&#xb2;" horiz-adv-x="851" d="M70 860v135q168 129 253.5 206t122.5 132.5t37 108.5q0 23 -6.5 41.5t-20.5 33.5t-38.5 23t-57.5 8q-56 0 -88 -20q-24 -24 -26 -107h-127q-13 98 -13 146q0 38 20 64t64 46q90 35 216 35q103 0 173.5 -30.5t103 -84.5t32.5 -129q0 -56 -22.5 -109t-69.5 -106.5 t-116 -107.5t-167 -113q27 0 93 2t83 2q86 0 109 22q16 15 31 72q2 11 3 13h109q-4 -152 -16 -223q-12 -60 -99 -60h-583z" />
+<glyph unicode="&#xb3;" horiz-adv-x="851" d="M92 975q0 91 12 158h127q3 -68 31 -93q30 -30 119 -30q135 0 135 94q0 47 -33 71t-102 27q-33 2 -98 2v150q63 0 98 4q102 14 102 104q0 40 -26.5 63t-75.5 23q-50 0 -76 -9.5t-39.5 -33.5t-19.5 -71h-123q-8 62 -8 129q0 74 61 102q32 17 98.5 32t135.5 15 q89 0 150.5 -17t93.5 -48t45.5 -67t13.5 -83q0 -68 -35.5 -117.5t-130.5 -85.5q109 -18 156 -66t47 -130q0 -123 -99 -188.5t-276 -65.5q-129 0 -207 24q-76 30 -76 107z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M96 1122l176 289q40 61 66 81.5t59 20.5q42 0 75.5 -29t33.5 -73q0 -28 -16.5 -55.5t-55.5 -67.5l-256 -233z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1273" d="M57 735v160q152 76 301 76q65 0 101.5 -36t36.5 -128q0 -39 -3.5 -198t-3.5 -232q0 -97 38 -130.5t108 -33.5q103 0 180 49v332q0 92 -17.5 117.5t-82.5 25.5q-33 0 -51 -2v160q149 76 309 76q62 0 98.5 -36.5t36.5 -129.5q0 -43 -4 -240t-4 -243q0 -82 15.5 -110 t66.5 -28q26 0 67 6v-167q-114 -46 -258 -46q-59 0 -106 32.5t-58 101.5q-52 -64 -108.5 -93.5t-138.5 -29.5q-73 0 -115 37q5 -82 12.5 -179t12 -155t4.5 -76q0 -56 -39.5 -88.5t-106.5 -32.5q-85 0 -115 36.5t-30 94.5v969q0 91 -15.5 117t-74.5 26q-7 0 -28 -1t-28 -1z " />
+<glyph unicode="&#xb6;" horiz-adv-x="1138" d="M94 836q0 92 26 173.5t79.5 150.5t131.5 118.5t187.5 77.5t241.5 28h336v-170q-85 -3 -116 -9t-44 -19q-11 -13 -14.5 -42t-3.5 -100q0 -174 3 -387.5t3 -326.5q0 -211 -11 -369q-21 -372 -460 -493l-47 157q264 106 286 350q10 100 10 299v43q-25 -2 -71 -2 q-110 0 -205.5 32.5t-170.5 95t-118 163.5t-43 230z" />
+<glyph unicode="&#xb7;" horiz-adv-x="460" d="M66 506q0 72 45.5 120t115.5 48q74 0 122 -46t48 -118q0 -80 -47 -126t-121 -46q-72 0 -117.5 47.5t-45.5 120.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M98 -463q108 22 157.5 55t49.5 86q0 56 -84 103q-41 21 -41 61q0 38 51 168h127q-30 -72 -30 -96q0 -30 37 -51q78 -43 106.5 -79t28.5 -93q0 -109 -102.5 -177.5t-274.5 -93.5z" />
+<glyph unicode="&#xb9;" horiz-adv-x="851" d="M156 1618q89 40 217 76q67 20 104 20t62.5 -23.5t25.5 -76.5q0 -31 -1 -108t-1 -136v-287q0 -62 12 -77q15 -22 136 -27v-121q-110 4 -250 4q-165 0 -275 -4v121q113 4 142 29q12 12 12 77v265q0 70 -6 120q-3 33 -33 33q-41 0 -111 -18z" />
+<glyph unicode="&#xba;" horiz-adv-x="794" d="M63 874q0 151 93 238.5t245 87.5q159 0 240.5 -83.5t81.5 -229.5q0 -159 -93.5 -246.5t-238.5 -87.5q-161 0 -244.5 87.5t-83.5 233.5zM260 887q0 -96 33.5 -139t97.5 -43q68 0 100.5 41t32.5 128q0 94 -31 135.5t-98 41.5q-135 0 -135 -164z" />
+<glyph unicode="&#xbb;" horiz-adv-x="997" d="M37 127l260 317l-256 338l106 97l365 -342q37 -33 37 -88q0 -50 -49 -95l-361 -325zM444 127l263 317l-258 338l108 97l363 -342q36 -32 36 -88q0 -52 -47 -95l-360 -325z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1849" d="M121 1276q98 38 217 76q60 18 104 18q37 0 62.5 -23.5t25.5 -76.5q0 -32 -1 -108.5t-1 -133.5v-289q0 -57 13 -77t135 -25v-123q-165 6 -250 6q-109 0 -274 -6v123q115 4 141 27q12 14 12 77v265q0 72 -6 122q-3 31 -33 31q-40 0 -110 -18zM553 25l596 1366l123 -50 l-592 -1368zM950 223v109l312 418q44 61 77.5 82.5t94.5 21.5q46 0 77 -29.5t31 -95.5q0 -27 -1 -102t-1 -97v-151h135v-156h-135v-22q0 -45 12 -60q15 -21 117 -24v-119q-110 4 -252 4q-115 0 -225 -4v119q105 5 121 24q12 14 12 60v22h-375zM1130 373h195q0 187 6 270z " />
+<glyph unicode="&#xbd;" horiz-adv-x="1849" d="M94 1276q98 38 217 76q60 18 105 18q37 0 62.5 -23.5t25.5 -76.5q0 -32 -1 -108.5t-1 -133.5v-289q0 -59 12 -77q13 -20 135 -25v-123q-165 6 -250 6q-109 0 -274 -6v123q115 4 141 27q13 16 13 77v265q0 64 -7 122q-3 31 -32 31q-41 0 -111 -18zM516 25l596 1366 l123 -50l-592 -1368zM1030 0v135q246 190 330 280t84 167q0 106 -123 106q-56 0 -88 -20q-25 -25 -27 -107h-127q-12 90 -12 146q0 38 20 64t64 46q90 35 215 35q154 0 231.5 -65t77.5 -179q0 -111 -90 -214t-285 -222q27 0 93.5 2t83.5 2q56 0 81 6.5t35 26.5q13 19 27 74 h109q-4 -146 -17 -224q-11 -59 -98 -59h-584z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1849" d="M133 631q0 90 12 157h127q3 -73 35 -96.5t115 -23.5q135 0 135 92q0 49 -32.5 72t-102.5 26q-33 2 -98 2v152q63 0 98 4q102 14 102 102q0 42 -26.5 65t-75.5 23q-68 0 -100 -26q-26 -18 -35 -88h-123q-8 62 -8 129q0 74 61 102q34 16 100 30.5t134 14.5 q89 0 150.5 -16.5t93.5 -47.5t45.5 -66.5t13.5 -82.5q0 -69 -36 -119t-130 -86q110 -17 156.5 -64.5t46.5 -131.5q0 -123 -99 -188.5t-276 -65.5q-56 0 -116.5 7.5t-90.5 18.5q-35 12 -55.5 40t-20.5 65zM608 25l596 1366l123 -50l-592 -1368zM991 223v109l312 418 q44 61 77.5 82.5t94.5 21.5q46 0 77 -29.5t31 -95.5q0 -27 -1 -102t-1 -97v-151h135v-156h-135v-22q0 -45 12 -60q15 -21 117 -24v-119q-110 4 -252 4q-115 0 -225 -4v119q105 5 121 24q12 14 12 60v22h-375zM1171 373h195q0 187 6 270z" />
+<glyph unicode="&#xbf;" horiz-adv-x="964" d="M20 -49q0 142 82.5 236.5t298.5 189.5q19 8 32.5 21t20.5 26t12 34t7 36.5t4.5 43t5.5 44.5h140q20 -137 20 -240q0 -59 -38 -95.5t-105 -66.5q-168 -76 -168 -205q0 -32 6.5 -59t22.5 -55t49.5 -44t81.5 -16q95 0 127.5 30.5t37.5 129.5h172q19 -102 19 -176 q0 -54 -24.5 -88.5t-75.5 -56.5q-46 -20 -127 -33t-152 -13q-121 1 -209.5 28.5t-140 77t-75.5 111.5t-24 140zM383 874q0 80 45.5 125t120.5 45q72 0 119 -46.5t47 -118.5t-47 -120t-117 -48q-74 0 -121 45.5t-47 117.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1554" d="M20 -2v168q106 3 142 39q20 19 36.5 52.5t53.5 131.5l334 871q31 82 81 120.5t126 38.5q74 0 119.5 -35.5t72.5 -109.5l344 -938q23 -63 41.5 -93.5t46.5 -52.5q34 -21 117 -24v-168q-184 4 -281 4q-214 0 -422 -4v168q90 3 130 18q43 14 43 56q0 29 -27 112l-31 84h-428 l-29 -71q-30 -81 -30 -129q0 -22 12.5 -35.5t37 -20t50.5 -9t61 -4.5q17 -1 25 -1v-168q-188 4 -375 4q-78 0 -250 -4zM487 1778q0 43 29.5 74.5t67.5 31.5q35 0 61.5 -14.5t73.5 -65.5l246 -254l-70 -82l-311 189q-97 57 -97 121zM578 657h294q-19 58 -53.5 154.5 t-58 165.5t-31.5 102q-18 -53 -151 -422z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1554" d="M20 -2v168q106 3 142 39q20 19 36.5 52.5t53.5 131.5l334 871q31 82 81 120.5t126 38.5q74 0 119.5 -35.5t72.5 -109.5l344 -938q23 -63 41.5 -93.5t46.5 -52.5q34 -21 117 -24v-168q-184 4 -281 4q-214 0 -422 -4v168q90 3 130 18q43 14 43 56q0 29 -27 112l-31 84h-428 l-29 -71q-30 -81 -30 -129q0 -22 12.5 -35.5t37 -20t50.5 -9t61 -4.5q17 -1 25 -1v-168q-188 4 -375 4q-78 0 -250 -4zM578 657h294q-19 58 -53.5 154.5t-58 165.5t-31.5 102q-18 -53 -151 -422zM590 1548l244 254q48 51 75 65.5t62 14.5q38 0 67 -31.5t29 -74.5 q0 -30 -25 -62t-71 -59l-314 -189z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1554" d="M20 -2v168q106 3 142 39q20 19 36.5 52.5t53.5 131.5l334 871q31 82 81 120.5t126 38.5q74 0 119.5 -35.5t72.5 -109.5l344 -938q23 -63 41.5 -93.5t46.5 -52.5q34 -21 117 -24v-168q-184 4 -281 4q-214 0 -422 -4v168q90 3 130 18q43 14 43 56q0 29 -27 112l-31 84h-428 l-29 -71q-30 -81 -30 -129q0 -22 12.5 -35.5t37 -20t50.5 -9t61 -4.5q17 -1 25 -1v-168q-188 4 -375 4q-78 0 -250 -4zM455 1536l243 274q45 52 93 52q53 0 96 -52l239 -272l-77 -74l-263 183l-262 -183zM578 657h294q-19 58 -53.5 154.5t-58 165.5t-31.5 102 q-18 -53 -151 -422z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1554" d="M20 -2v168q106 3 142 39q20 19 36.5 52.5t53.5 131.5l334 871q31 82 81 120.5t126 38.5q74 0 119.5 -35.5t72.5 -109.5l344 -938q23 -63 41.5 -93.5t46.5 -52.5q34 -21 117 -24v-168q-184 4 -281 4q-214 0 -422 -4v168q90 3 130 18q43 14 43 56q0 29 -27 112l-31 84h-428 l-29 -71q-30 -81 -30 -129q0 -22 12.5 -35.5t37 -20t50.5 -9t61 -4.5q17 -1 25 -1v-168q-188 4 -375 4q-78 0 -250 -4zM434 1530q17 68 41.5 122t65.5 95t90 41q43 0 121 -33l79 -33q76 -26 99 -26q27 0 47.5 24.5t46.5 81.5l96 -28q-24 -121 -70.5 -192t-111.5 -71 q-43 0 -141 37l-76 33q-52 23 -86 23q-33 0 -56 -22.5t-53 -80.5zM578 657h294q-19 58 -53.5 154.5t-58 165.5t-31.5 102q-18 -53 -151 -422z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1554" d="M20 -2v168q106 3 142 39q20 19 36.5 52.5t53.5 131.5l334 871q31 82 81 120.5t126 38.5q74 0 119.5 -35.5t72.5 -109.5l344 -938q23 -63 41.5 -93.5t46.5 -52.5q34 -21 117 -24v-168q-184 4 -281 4q-214 0 -422 -4v168q90 3 130 18q43 14 43 56q0 29 -27 112l-31 84h-428 l-29 -71q-30 -81 -30 -129q0 -22 12.5 -35.5t37 -20t50.5 -9t61 -4.5q17 -1 25 -1v-168q-188 4 -375 4q-78 0 -250 -4zM465 1651q0 54 35.5 91.5t93.5 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -94.5t-94.5 -38.5q-54 0 -89.5 37.5t-35.5 95.5zM578 657h294 q-19 58 -53.5 154.5t-58 165.5t-31.5 102q-18 -53 -151 -422zM844 1651q0 54 35.5 91.5t93.5 37.5q54 0 89.5 -37.5t35.5 -91.5q0 -56 -36 -94.5t-93 -38.5q-54 0 -89.5 37.5t-35.5 95.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1554" d="M20 -2v168q106 3 142 39q20 19 36.5 52.5t53.5 131.5l334 871q31 82 81 120.5t126 38.5q74 0 119.5 -35.5t72.5 -109.5l344 -938q23 -63 41.5 -93.5t46.5 -52.5q34 -21 117 -24v-168q-184 4 -281 4q-214 0 -422 -4v168q90 3 130 18q43 14 43 56q0 29 -27 112l-31 84h-428 l-29 -71q-30 -81 -30 -129q0 -22 12.5 -35.5t37 -20t50.5 -9t61 -4.5q17 -1 25 -1v-168q-188 4 -375 4q-78 0 -250 -4zM578 657h294q-19 58 -53.5 154.5t-58 165.5t-31.5 102q-18 -53 -151 -422zM582 1645q0 83 57.5 138.5t140.5 55.5q86 0 140.5 -52.5t54.5 -137.5 t-57 -142t-140 -57t-139.5 54.5t-56.5 140.5zM680 1649q0 -49 27.5 -79t70.5 -30q41 0 67.5 29t26.5 80q0 48 -27.5 75t-66.5 27q-41 0 -69.5 -27.5t-28.5 -74.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2164" d="M20 -2v168q122 3 170 39q29 22 54.5 54t60.5 87l453 719q33 50 33 98q0 20 -11.5 30.5t-36.5 16.5q-31 5 -155 11v163h1296q75 0 112.5 -27.5t37.5 -76.5t-9 -139.5t-16 -139.5h-174q-15 111 -51 136q-18 12 -50.5 17t-101.5 5h-233v-352h80q39 0 62.5 2t44 9t32.5 20 q22 27 41 114h156q-3 -76 -3 -243q0 -121 3 -250h-150q-16 93 -39 119q-19 19 -50.5 23.5t-98.5 4.5h-78v-291q0 -42 12.5 -63t42.5 -25q55 -8 162 -8q114 0 173.5 14t88.5 41q6 5 11.5 12t10 14.5t9.5 18t8.5 18t8.5 20t7.5 20t7.5 20.5t7 19h159q-5 -262 -36 -342 q-27 -74 -189 -74h-973v166q101 7 133 18q9 4 16 9.5t11.5 10.5t8 15.5t5 16.5t2 21t0.5 22v26.5v28.5v108h-450l-70 -106q-41 -64 -41 -111q0 -15 9.5 -28t25.5 -17q36 -11 129 -14v-168q-204 4 -348 4q-128 0 -320 -4zM760 659h325v461q0 35 -16 35q-22 0 -43 -43 q-12 -23 -24.5 -45.5t-30.5 -54t-29.5 -51.5t-38 -64.5t-39.5 -66t-50 -82.5t-54 -89z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1390" d="M82 668q0 351 198.5 550t553.5 199q237 0 348 -51q108 -48 108 -139q0 -94 -26 -266h-177q-14 128 -45 167q-54 60 -221 60q-65 0 -124 -17t-112 -55.5t-91.5 -95.5t-61 -142t-22.5 -190q0 -108 25 -193.5t65.5 -139t96 -88t111 -48.5t115.5 -14q170 0 226 59 q37 40 77 164h181q-8 -218 -39 -295q-29 -68 -138 -108q-136 -51 -337 -54q-15 -41 -15 -63q0 -32 39 -49q82 -46 111.5 -83.5t29.5 -97.5q0 -115 -106.5 -185t-286.5 -95l-24 121q110 22 162.5 56.5t52.5 88.5q0 63 -86 107q-45 25 -45 65q0 48 41 141q-276 31 -430 210 t-154 481z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1300" d="M45 0v166q140 11 162 33q11 12 13.5 37t2.5 92v737q0 103 -12 115q-13 17 -46.5 25t-119.5 16v163h977q74 0 111.5 -27.5t37.5 -76.5q0 -85 -22 -279h-176q-20 127 -53 150t-148 23h-235v-367h77q60 0 93 6t49 25q26 29 41 114h155q-2 -51 -2 -243q0 -164 2 -250h-149 q-16 93 -39 119q-19 19 -51 23.5t-99 4.5h-77v-305q0 -42 12.5 -63t42.5 -25q55 -8 164 -8q202 0 260 55q11 9 22 30t17.5 38.5t16 47t13.5 40.5h162q-5 -247 -39 -342q-12 -33 -64.5 -53.5t-123.5 -20.5h-975zM342 1776q0 43 29 74.5t67 31.5q35 0 61.5 -14.5t73.5 -65.5 l246 -254l-69 -82l-312 189q-46 27 -71 59t-25 62z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1300" d="M45 0v166q140 11 162 33q11 12 13.5 37t2.5 92v737q0 103 -12 115q-13 17 -46.5 25t-119.5 16v163h977q74 0 111.5 -27.5t37.5 -76.5q0 -85 -22 -279h-176q-20 127 -53 150t-148 23h-235v-367h77q60 0 93 6t49 25q26 29 41 114h155q-2 -51 -2 -243q0 -164 2 -250h-149 q-16 93 -39 119q-19 19 -51 23.5t-99 4.5h-77v-305q0 -42 12.5 -63t42.5 -25q55 -8 164 -8q202 0 260 55q11 9 22 30t17.5 38.5t16 47t13.5 40.5h162q-5 -247 -39 -342q-12 -33 -64.5 -53.5t-123.5 -20.5h-975zM469 1548l244 254q48 51 75 65.5t62 14.5q38 0 67 -31.5 t29 -74.5q0 -30 -25 -62t-71 -59l-313 -189z" />
+<glyph unicode="&#xca;" horiz-adv-x="1300" d="M45 0v166q140 11 162 33q11 12 13.5 37t2.5 92v737q0 103 -12 115q-13 17 -46.5 25t-119.5 16v163h977q74 0 111.5 -27.5t37.5 -76.5q0 -85 -22 -279h-176q-20 127 -53 150t-148 23h-235v-367h77q60 0 93 6t49 25q26 29 41 114h155q-2 -51 -2 -243q0 -164 2 -250h-149 q-16 93 -39 119q-19 19 -51 23.5t-99 4.5h-77v-305q0 -42 12.5 -63t42.5 -25q55 -8 164 -8q202 0 260 55q11 9 22 30t17.5 38.5t16 47t13.5 40.5h162q-5 -247 -39 -342q-12 -33 -64.5 -53.5t-123.5 -20.5h-975zM322 1536l243 274q45 52 92 52q54 0 97 -52l239 -272l-78 -74 l-262 183l-262 -183z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1300" d="M45 0v166q140 11 162 33q11 12 13.5 37t2.5 92v737q0 103 -12 115q-13 17 -46.5 25t-119.5 16v163h977q74 0 111.5 -27.5t37.5 -76.5q0 -85 -22 -279h-176q-20 127 -53 150t-148 23h-235v-367h77q60 0 93 6t49 25q26 29 41 114h155q-2 -51 -2 -243q0 -164 2 -250h-149 q-16 93 -39 119q-19 19 -51 23.5t-99 4.5h-77v-305q0 -42 12.5 -63t42.5 -25q55 -8 164 -8q202 0 260 55q11 9 22 30t17.5 38.5t16 47t13.5 40.5h162q-5 -247 -39 -342q-12 -33 -64.5 -53.5t-123.5 -20.5h-975zM354 1653q0 54 35.5 91.5t93.5 37.5q56 0 91.5 -37.5 t35.5 -91.5q0 -56 -36.5 -94.5t-94.5 -38.5q-54 0 -89.5 37.5t-35.5 95.5zM733 1653q0 54 35.5 91.5t93.5 37.5q54 0 89.5 -37.5t35.5 -91.5q0 -56 -36 -94.5t-93 -38.5q-54 0 -89.5 37.5t-35.5 95.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="759" d="M45 -2v168q83 3 116 10.5t46 22.5q16 19 16 129v739q0 103 -14 119q-11 15 -45.5 23t-118.5 12v165q165 -6 334 -6q90 0 336 6v-165q-88 -4 -120 -12.5t-42 -24.5q-16 -22 -16 -119v-729q0 -114 16 -133q14 -16 44 -24.5t118 -12.5v-168q-176 4 -334 4q-156 0 -336 -4z M90 1776q0 43 29 74.5t67 31.5q35 0 62 -14.5t74 -65.5l245 -254l-69 -82l-312 189q-46 27 -71 59t-25 62z" />
+<glyph unicode="&#xcd;" horiz-adv-x="759" d="M45 -2v168q83 3 116 10.5t46 22.5q16 19 16 129v739q0 103 -14 119q-11 15 -45.5 23t-118.5 12v165q165 -6 334 -6q90 0 336 6v-165q-88 -4 -120 -12.5t-42 -24.5q-16 -22 -16 -119v-729q0 -114 16 -133q14 -16 44 -24.5t118 -12.5v-168q-176 4 -334 4q-156 0 -336 -4z M178 1548l244 254q48 51 75 65.5t62 14.5q38 0 67 -31.5t29 -74.5q0 -30 -25 -62t-71 -59l-313 -189z" />
+<glyph unicode="&#xce;" horiz-adv-x="759" d="M45 -2v168q83 3 116 10.5t46 22.5q16 19 16 129v739q0 103 -14 119q-11 15 -45.5 23t-118.5 12v165q165 -6 334 -6q90 0 336 6v-165q-88 -4 -120 -12.5t-42 -24.5q-16 -22 -16 -119v-729q0 -114 16 -133q14 -16 44 -24.5t118 -12.5v-168q-176 4 -334 4q-156 0 -336 -4z M49 1536l244 274q45 52 92 52q53 0 96 -52l240 -272l-78 -74l-262 183l-262 -183z" />
+<glyph unicode="&#xcf;" horiz-adv-x="759" d="M45 -2v168q83 3 116 10.5t46 22.5q16 19 16 129v739q0 103 -14 119q-11 15 -45.5 23t-118.5 12v165q165 -6 334 -6q90 0 336 6v-165q-88 -4 -120 -12.5t-42 -24.5q-16 -22 -16 -119v-729q0 -114 16 -133q14 -16 44 -24.5t118 -12.5v-168q-176 4 -334 4q-156 0 -336 -4z M70 1653q0 54 35.5 91.5t93.5 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -94.5t-94.5 -38.5q-54 0 -89.5 37.5t-35.5 95.5zM449 1653q0 54 35.5 91.5t93.5 37.5q54 0 89 -37.5t35 -91.5q0 -56 -36 -94.5t-93 -38.5q-54 0 -89 37.5t-35 95.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1511" d="M37 649v152h186v262q0 92 -8 113q-12 26 -41 33t-129 12v163h416q308 0 461 -23.5t252 -82.5q258 -157 258 -559q0 -226 -74.5 -377t-231.5 -240q-182 -102 -548 -102h-533v166q84 3 116.5 10t45.5 23q9 14 12.5 36.5t3.5 83.5v330h-186zM537 313q0 -56 32 -71 q45 -23 119 -23q212 0 310 112.5t98 364.5q0 335 -193 414q-102 41 -276 41h-90v-350h329v-152h-329v-336z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1572" d="M39 1221v165q90 -4 305 -4q159 0 231 4q467 -681 601 -897q-4 113 -7.5 300.5t-5.5 220.5q-3 88 -6.5 119.5t-13.5 50.5q-11 19 -47.5 28.5t-124.5 12.5v165q218 -4 303 -4q62 0 280 4v-165q-77 -4 -107 -11.5t-50 -23.5q-14 -12 -19 -46.5t-6 -129.5q-2 -113 -2 -514 q0 -37 1 -181t1 -188q0 -76 -34.5 -113t-116.5 -37q-98 0 -166 101q-557 838 -629 952q1 -164 4 -385.5t4 -269.5q2 -152 21 -176q14 -15 46 -22t122 -11v-168q-218 4 -291 4q-81 0 -289 -4v168q91 4 124 13t44 28q12 24 12 170q6 615 6 631q0 142 -12 166q-14 28 -65 36 q-34 7 -113 11zM483 1530q17 68 41.5 122t65.5 95t90 41q43 0 121 -33l80 -33q76 -26 98 -26q27 0 47.5 24.5t46.5 81.5l96 -28q-24 -121 -70.5 -192t-111.5 -71q-43 0 -141 37l-76 33q-52 23 -86 23q-33 0 -56 -22.5t-53 -80.5z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q176 0 306 -48.5t209.5 -141.5t118 -219.5t38.5 -290.5q0 -185 -53.5 -329t-148 -233.5t-218 -135.5t-270.5 -46q-171 0 -303 52t-215 147.5t-125.5 225.5t-42.5 290zM412 715q0 -270 92 -390t264 -120t262 124t90 373q0 254 -86 370 t-262 116q-174 0 -267 -123.5t-93 -349.5zM465 1776q0 43 29 74.5t67 31.5q35 0 61.5 -14.5t73.5 -65.5l246 -254l-70 -82l-311 189q-46 27 -71 59t-25 62z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q176 0 306 -48.5t209.5 -141.5t118 -219.5t38.5 -290.5q0 -185 -53.5 -329t-148 -233.5t-218 -135.5t-270.5 -46q-171 0 -303 52t-215 147.5t-125.5 225.5t-42.5 290zM412 715q0 -270 92 -390t264 -120t262 124t90 373q0 254 -86 370 t-262 116q-174 0 -267 -123.5t-93 -349.5zM561 1548l244 254q48 51 75 65.5t62 14.5q38 0 67 -31.5t29 -74.5q0 -30 -25 -62t-71 -59l-313 -189z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q176 0 306 -48.5t209.5 -141.5t118 -219.5t38.5 -290.5q0 -185 -53.5 -329t-148 -233.5t-218 -135.5t-270.5 -46q-171 0 -303 52t-215 147.5t-125.5 225.5t-42.5 290zM412 715q0 -270 92 -390t264 -120t262 124t90 373q0 254 -86 370 t-262 116q-174 0 -267 -123.5t-93 -349.5zM442 1536l244 274q45 52 92 52q53 0 96 -52l240 -272l-78 -74l-262 183l-262 -183z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q176 0 306 -48.5t209.5 -141.5t118 -219.5t38.5 -290.5q0 -185 -53.5 -329t-148 -233.5t-218 -135.5t-270.5 -46q-171 0 -303 52t-215 147.5t-125.5 225.5t-42.5 290zM412 715q0 -270 92 -390t264 -120t262 124t90 373q0 254 -86 370 t-262 116q-174 0 -267 -123.5t-93 -349.5zM426 1530q17 68 41.5 122t65.5 95t90 41q42 0 120 -33l80 -33q76 -26 99 -26q27 0 47.5 24.5t46.5 81.5l96 -28q-24 -121 -70.5 -192t-111.5 -71q-44 0 -142 37l-75 33q-52 23 -86 23q-33 0 -56 -22.5t-53 -80.5z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q176 0 306 -48.5t209.5 -141.5t118 -219.5t38.5 -290.5q0 -185 -53.5 -329t-148 -233.5t-218 -135.5t-270.5 -46q-171 0 -303 52t-215 147.5t-125.5 225.5t-42.5 290zM412 715q0 -270 92 -390t264 -120t262 124t90 373q0 254 -86 370 t-262 116q-174 0 -267 -123.5t-93 -349.5zM467 1653q0 54 35.5 91.5t93.5 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -94.5t-94.5 -38.5q-54 0 -89.5 37.5t-35.5 95.5zM846 1653q0 54 35.5 91.5t93.5 37.5q54 0 89.5 -37.5t35.5 -91.5q0 -56 -36 -94.5t-93 -38.5 q-54 0 -89.5 37.5t-35.5 95.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1220" d="M197 954l127 129l286 -305l283 305l123 -118l-285 -314l291 -311l-123 -129l-291 305l-284 -305l-121 121l291 315z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1536" d="M80 686q0 338 193 533.5t511 195.5q207 0 357 -72l119 164l112 -82l-115 -159q199 -176 199 -551q0 -185 -53.5 -329t-148 -233.5t-218 -135.5t-270.5 -46q-224 0 -381 88l-115 -159l-112 77l118 164q-196 187 -196 545zM412 715q0 -200 49 -316l524 725q-81 66 -213 66 q-174 0 -267 -124.5t-93 -350.5zM545 279q83 -74 223 -74q172 0 262 124t90 373q0 193 -49 306z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1607" d="M35 1221v165q164 -4 305 -4q231 0 391 4v-165q-92 -3 -129 -11.5t-49 -25.5q-15 -18 -18 -103q-3 -138 -3 -440q0 -206 35 -299q52 -141 283 -141q217 0 287 108q36 57 47.5 138.5t11.5 201.5q0 262 -8 412q-3 65 -8 91.5t-19 37.5q-18 14 -53 20t-111 11v165 q76 -2 330 -2q20 0 115.5 1t134.5 1v-165q-150 -12 -168 -47q-14 -27 -14 -130v-438q0 -189 -27.5 -293.5t-93.5 -179.5q-68 -80 -193 -123t-280 -43q-179 0 -310.5 51.5t-191.5 145.5q-45 68 -64.5 168.5t-19.5 298.5q0 105 2 259.5t2 174.5q0 89 -14 113 q-11 20 -46.5 29.5t-123.5 13.5zM532 1776q0 43 29.5 74.5t67.5 31.5q35 0 61.5 -14.5t73.5 -65.5l246 -254l-70 -82l-311 189q-97 57 -97 121z" />
+<glyph unicode="&#xda;" horiz-adv-x="1607" d="M35 1221v165q164 -4 305 -4q231 0 391 4v-165q-92 -3 -129 -11.5t-49 -25.5q-15 -18 -18 -103q-3 -138 -3 -440q0 -206 35 -299q52 -141 283 -141q217 0 287 108q36 57 47.5 138.5t11.5 201.5q0 262 -8 412q-3 65 -8 91.5t-19 37.5q-18 14 -53 20t-111 11v165 q76 -2 330 -2q20 0 115.5 1t134.5 1v-165q-150 -12 -168 -47q-14 -27 -14 -130v-438q0 -189 -27.5 -293.5t-93.5 -179.5q-68 -80 -193 -123t-280 -43q-179 0 -310.5 51.5t-191.5 145.5q-45 68 -64.5 168.5t-19.5 298.5q0 105 2 259.5t2 174.5q0 89 -14 113 q-11 20 -46.5 29.5t-123.5 13.5zM664 1548l243 254q48 51 75 65.5t62 14.5q38 0 67.5 -31.5t29.5 -74.5q0 -64 -97 -121l-313 -189z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1607" d="M35 1221v165q164 -4 305 -4q231 0 391 4v-165q-92 -3 -129 -11.5t-49 -25.5q-15 -18 -18 -103q-3 -138 -3 -440q0 -206 35 -299q52 -141 283 -141q217 0 287 108q36 57 47.5 138.5t11.5 201.5q0 262 -8 412q-3 65 -8 91.5t-19 37.5q-18 14 -53 20t-111 11v165 q76 -2 330 -2q20 0 115.5 1t134.5 1v-165q-150 -12 -168 -47q-14 -27 -14 -130v-438q0 -189 -27.5 -293.5t-93.5 -179.5q-68 -80 -193 -123t-280 -43q-179 0 -310.5 51.5t-191.5 145.5q-45 68 -64.5 168.5t-19.5 298.5q0 105 2 259.5t2 174.5q0 89 -14 113 q-11 20 -46.5 29.5t-123.5 13.5zM492 1536l243 274q45 52 92 52q54 0 97 -52l239 -272l-78 -74l-262 183l-262 -183z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1607" d="M35 1221v165q164 -4 305 -4q231 0 391 4v-165q-92 -3 -129 -11.5t-49 -25.5q-15 -18 -18 -103q-3 -138 -3 -440q0 -206 35 -299q52 -141 283 -141q217 0 287 108q36 57 47.5 138.5t11.5 201.5q0 262 -8 412q-3 65 -8 91.5t-19 37.5q-18 14 -53 20t-111 11v165 q76 -2 330 -2q20 0 115.5 1t134.5 1v-165q-150 -12 -168 -47q-14 -27 -14 -130v-438q0 -189 -27.5 -293.5t-93.5 -179.5q-68 -80 -193 -123t-280 -43q-179 0 -310.5 51.5t-191.5 145.5q-45 68 -64.5 168.5t-19.5 298.5q0 105 2 259.5t2 174.5q0 89 -14 113 q-11 20 -46.5 29.5t-123.5 13.5zM524 1653q0 54 35.5 91.5t93.5 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -94.5t-94.5 -38.5q-54 0 -89.5 37.5t-35.5 95.5zM903 1653q0 54 35.5 91.5t93.5 37.5q54 0 89.5 -37.5t35.5 -91.5q0 -56 -36 -94.5t-93 -38.5 q-54 0 -89.5 37.5t-35.5 95.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1378" d="M12 1221v165q234 -4 303 -4q141 0 349 4v-165q-81 -4 -108.5 -19t-27.5 -41q0 -35 35 -94q142 -242 187 -324q24 43 90.5 159t99.5 177q33 57 33 88q0 25 -27 39t-108 15v165q96 -4 331 -4q113 0 199 4v-165q-62 -3 -98 -31q-22 -17 -114 -161q-9 -12 -13 -19l-303 -465 v-238q0 -68 8 -92q9 -21 46.5 -33t139.5 -16v-168q-222 4 -344 4q-146 0 -350 -4v168q101 7 131.5 15t40.5 24q12 19 12 102v236l-315 518q-35 60 -55.5 87t-42.5 44q-39 25 -99 29zM561 1548l244 254q48 51 75 65.5t62 14.5q38 0 67 -31.5t29 -74.5q0 -30 -25 -62t-71 -59 l-313 -189z" />
+<glyph unicode="&#xde;" horiz-adv-x="1308" d="M45 -2v168q84 3 116.5 10.5t45.5 22.5q16 19 16 129v739q0 103 -14 119q-11 15 -45.5 23t-118.5 12v165q165 -6 334 -6q90 0 336 6v-165q-94 -4 -124 -10t-42 -21q-12 -18 -12 -60v-22h36q234 0 345 -21q157 -27 238 -118.5t81 -233.5q0 -208 -138.5 -319t-404.5 -111 q-108 0 -157 4v-24q0 -62 16 -82q33 -33 182 -37v-168q-176 4 -354 4q-156 0 -336 -4zM537 508q33 -2 104 -2q134 0 205.5 45.5t71.5 161.5q0 58 -23 96t-69.5 56.5t-97.5 25t-126 6.5h-65v-389z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1310" d="M27 729v158q39 8 62 16t45.5 24t35 42.5t16.5 66.5q14 138 49.5 216t90.5 132q67 63 165.5 92t186.5 29q199 0 294 -77t95 -207q0 -139 -117 -256q-54 -53 -75 -82t-21 -54q0 -35 41 -71q22 -20 78 -64t98 -80q90 -78 124 -147t34 -145q0 -160 -104 -255.5t-304 -95.5 q-123 0 -207 41q-29 15 -45 48.5t-16 76.5q0 113 10 182h133q19 -71 44.5 -98.5t88.5 -27.5q43 0 73 22t30 55q0 39 -17.5 69t-68.5 69q-102 77 -178 147q-90 82 -90 186q0 101 110 224q37 41 56 64.5t37 60.5t18 71q0 52 -39.5 87.5t-106.5 35.5q-61 0 -103.5 -36 t-55.5 -101q-17 -81 -17 -240v-626q0 -212 8 -283q-102 4 -157 4q-135 0 -287 -4v164q107 5 133 35q16 21 16 100v432h-163z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1095" d="M61 268q0 97 45.5 160t155.5 98t289 35q63 0 86 -4v55q0 89 -31.5 122.5t-118.5 33.5q-83 0 -122 -29q-36 -26 -41 -127h-168q-19 102 -19 174q0 101 101 144q52 21 128.5 36t143.5 15q151 0 228 -26.5t118 -71.5q64 -73 64 -230q0 -40 -1 -192t-1 -158q0 -67 18 -93 t57 -26q31 0 74 6v-172q-43 -16 -106 -26t-111 -10q-32 0 -56 4t-50.5 14.5t-46 35t-29.5 60.5q-119 -119 -285 -119q-61 0 -116.5 17t-102.5 51t-75 91.5t-28 131.5zM262 1411q0 44 34.5 73t76.5 29q32 0 58.5 -20.5t64.5 -81.5l176 -289l-82 -67l-254 233q-40 40 -57 67.5 t-17 55.5zM352 285q0 -55 35.5 -80t85.5 -25q94 0 164 41v160q-27 6 -84 6q-110 0 -155.5 -26t-45.5 -76z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1095" d="M61 268q0 97 45.5 160t155.5 98t289 35q63 0 86 -4v55q0 89 -31.5 122.5t-118.5 33.5q-83 0 -122 -29q-36 -26 -41 -127h-168q-19 102 -19 174q0 101 101 144q52 21 128.5 36t143.5 15q151 0 228 -26.5t118 -71.5q64 -73 64 -230q0 -40 -1 -192t-1 -158q0 -67 18 -93 t57 -26q31 0 74 6v-172q-43 -16 -106 -26t-111 -10q-32 0 -56 4t-50.5 14.5t-46 35t-29.5 60.5q-119 -119 -285 -119q-61 0 -116.5 17t-102.5 51t-75 91.5t-28 131.5zM352 285q0 -55 35.5 -80t85.5 -25q94 0 164 41v160q-27 6 -84 6q-110 0 -155.5 -26t-45.5 -76zM387 1122 l176 289q40 61 66 81.5t59 20.5q42 0 75.5 -29t33.5 -73q0 -28 -16.5 -55.5t-55.5 -67.5l-256 -233z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1095" d="M61 268q0 97 45.5 160t155.5 98t289 35q63 0 86 -4v55q0 89 -31.5 122.5t-118.5 33.5q-83 0 -122 -29q-36 -26 -41 -127h-168q-19 102 -19 174q0 101 101 144q52 21 128.5 36t143.5 15q151 0 228 -26.5t118 -71.5q64 -73 64 -230q0 -40 -1 -192t-1 -158q0 -67 18 -93 t57 -26q31 0 74 6v-172q-43 -16 -106 -26t-111 -10q-32 0 -56 4t-50.5 14.5t-46 35t-29.5 60.5q-119 -119 -285 -119q-61 0 -116.5 17t-102.5 51t-75 91.5t-28 131.5zM217 1102l221 319q39 56 92 56q58 0 97 -54l213 -319l-86 -68l-228 215l-225 -215zM352 285 q0 -55 35.5 -80t85.5 -25q94 0 164 41v160q-27 6 -84 6q-110 0 -155.5 -26t-45.5 -76z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1095" d="M61 268q0 97 45.5 160t155.5 98t289 35q63 0 86 -4v55q0 89 -31.5 122.5t-118.5 33.5q-83 0 -122 -29q-36 -26 -41 -127h-168q-19 102 -19 174q0 101 101 144q52 21 128.5 36t143.5 15q151 0 228 -26.5t118 -71.5q64 -73 64 -230q0 -40 -1 -192t-1 -158q0 -67 18 -93 t57 -26q31 0 74 6v-172q-43 -16 -106 -26t-111 -10q-32 0 -56 4t-50.5 14.5t-46 35t-29.5 60.5q-119 -119 -285 -119q-61 0 -116.5 17t-102.5 51t-75 91.5t-28 131.5zM213 1124q17 68 41 122t65 95t89 41q49 0 124 -32l58 -27q56 -29 96 -29q26 0 47 24.5t49 82.5l95 -29 q-22 -119 -69.5 -189.5t-113.5 -70.5q-61 0 -139 37l-57 25q-54 22 -88 22q-33 0 -54.5 -21.5t-50.5 -78.5zM352 285q0 -55 35.5 -80t85.5 -25q94 0 164 41v160q-27 6 -84 6q-110 0 -155.5 -26t-45.5 -76z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1095" d="M61 268q0 97 45.5 160t155.5 98t289 35q63 0 86 -4v55q0 89 -31.5 122.5t-118.5 33.5q-83 0 -122 -29q-36 -26 -41 -127h-168q-19 102 -19 174q0 101 101 144q52 21 128.5 36t143.5 15q151 0 228 -26.5t118 -71.5q64 -73 64 -230q0 -40 -1 -192t-1 -158q0 -67 18 -93 t57 -26q31 0 74 6v-172q-43 -16 -106 -26t-111 -10q-32 0 -56 4t-50.5 14.5t-46 35t-29.5 60.5q-119 -119 -285 -119q-61 0 -116.5 17t-102.5 51t-75 91.5t-28 131.5zM215 1264q0 54 35.5 91.5t93.5 37.5q56 0 90.5 -37.5t34.5 -91.5q0 -56 -35.5 -95t-93.5 -39 q-54 0 -89.5 38t-35.5 96zM352 285q0 -55 35.5 -80t85.5 -25q94 0 164 41v160q-27 6 -84 6q-110 0 -155.5 -26t-45.5 -76zM569 1264q0 54 36 91.5t93 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -95t-94.5 -39q-53 0 -89 38t-36 96z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1095" d="M61 268q0 97 45.5 160t155.5 98t289 35q63 0 86 -4v55q0 89 -31.5 122.5t-118.5 33.5q-83 0 -122 -29q-36 -26 -41 -127h-168q-19 102 -19 174q0 101 101 144q52 21 128.5 36t143.5 15q151 0 228 -26.5t118 -71.5q64 -73 64 -230q0 -40 -1 -192t-1 -158q0 -67 18 -93 t57 -26q31 0 74 6v-172q-43 -16 -106 -26t-111 -10q-32 0 -56 4t-50.5 14.5t-46 35t-29.5 60.5q-119 -119 -285 -119q-61 0 -116.5 17t-102.5 51t-75 91.5t-28 131.5zM338 1255q0 85 58 141t141 56q86 0 140 -53t54 -139q0 -84 -57 -140.5t-139 -56.5q-83 0 -140 53.5 t-57 138.5zM352 285q0 -55 35.5 -80t85.5 -25q94 0 164 41v160q-27 6 -84 6q-110 0 -155.5 -26t-45.5 -76zM436 1260q0 -46 28 -75.5t71 -29.5q41 0 67.5 28.5t26.5 76.5q0 50 -27.5 77t-66.5 27q-41 0 -70 -27.5t-29 -76.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1595" d="M61 281q0 100 49 163.5t161.5 97t295.5 33.5h60v39q0 84 -31 119t-109 35q-45 0 -73 -6t-48 -22.5t-29.5 -45t-12.5 -73.5h-172q-17 91 -17 165q0 102 98 144q125 51 271 51q132 0 209 -29.5t114 -91.5q35 53 116 87t173 34q106 0 186.5 -34.5t128 -95t70.5 -136 t23 -164.5q0 -86 -29 -119t-102 -33h-486v-12q0 -80 61 -131t177 -51q140 0 315 88l88 -166q-195 -156 -454 -156q-210 0 -334 127q-71 -57 -158.5 -90t-214.5 -33q-61 0 -118 18.5t-104 54t-75.5 96t-28.5 137.5zM352 289q0 -58 38 -83.5t95 -25.5q97 0 187 53 q-31 51 -35 166h-74q-118 0 -164.5 -26t-46.5 -84zM911 580l336 6v24q0 46 -15 79t-50 53t-88 20q-77 0 -127 -43.5t-56 -138.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="1009" d="M72 453q0 247 143 387.5t373 140.5q120 0 213 -27q65 -20 95 -50t30 -87q0 -106 -17 -205h-174q-8 95 -45 125q-29 23 -104 23q-93 0 -154 -69.5t-61 -215.5q0 -272 241 -272q124 0 262 76l84 -166q-72 -61 -170.5 -97.5t-199.5 -42.5q-15 -51 -15 -59q0 -30 37 -51 q78 -43 106.5 -79t28.5 -93q0 -109 -102 -177.5t-274 -93.5l-25 117q108 22 157.5 55t49.5 86q0 56 -84 103q-41 21 -41 61q0 37 39 135q-177 24 -285 150t-108 326z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1067" d="M72 455q0 249 141 387.5t367 138.5q108 0 189.5 -31.5t130 -88.5t72 -129.5t23.5 -160.5t-28 -120q-29 -31 -103 -31h-499v-17q0 -82 64.5 -140t178.5 -58q151 0 326 88l86 -168q-87 -71 -208.5 -112.5t-256.5 -41.5q-217 0 -350 132t-133 352zM317 1411q0 44 34.5 73 t76.5 29q32 0 58.5 -20.5t64.5 -81.5l176 -289l-82 -67l-254 233q-40 40 -57 67.5t-17 55.5zM367 600l354 8v21q0 62 -40.5 100.5t-117.5 38.5q-81 0 -135 -40.5t-61 -127.5z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1067" d="M72 455q0 249 141 387.5t367 138.5q108 0 189.5 -31.5t130 -88.5t72 -129.5t23.5 -160.5t-28 -120q-29 -31 -103 -31h-499v-17q0 -82 64.5 -140t178.5 -58q151 0 326 88l86 -168q-87 -71 -208.5 -112.5t-256.5 -41.5q-217 0 -350 132t-133 352zM367 600l354 8v21 q0 62 -40.5 100.5t-117.5 38.5q-81 0 -135 -40.5t-61 -127.5zM426 1122l176 289q40 61 66 81.5t59 20.5q42 0 75.5 -29t33.5 -73q0 -28 -16.5 -55.5t-55.5 -67.5l-256 -233z" />
+<glyph unicode="&#xea;" horiz-adv-x="1067" d="M72 455q0 249 141 387.5t367 138.5q108 0 189.5 -31.5t130 -88.5t72 -129.5t23.5 -160.5t-28 -120q-29 -31 -103 -31h-499v-17q0 -82 64.5 -140t178.5 -58q151 0 326 88l86 -168q-87 -71 -208.5 -112.5t-256.5 -41.5q-217 0 -350 132t-133 352zM248 1102l221 319 q39 56 92 56q57 0 96 -54l213 -319l-86 -68l-227 215l-225 -215zM367 600l354 8v21q0 62 -40.5 100.5t-117.5 38.5q-81 0 -135 -40.5t-61 -127.5z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1067" d="M72 455q0 249 141 387.5t367 138.5q108 0 189.5 -31.5t130 -88.5t72 -129.5t23.5 -160.5t-28 -120q-29 -31 -103 -31h-499v-17q0 -82 64.5 -140t178.5 -58q151 0 326 88l86 -168q-87 -71 -208.5 -112.5t-256.5 -41.5q-217 0 -350 132t-133 352zM262 1264q0 54 35.5 91.5 t93.5 37.5q56 0 90.5 -37.5t34.5 -91.5q0 -56 -35.5 -95t-93.5 -39q-54 0 -89.5 38t-35.5 96zM367 600l354 8v21q0 62 -40.5 100.5t-117.5 38.5q-81 0 -135 -40.5t-61 -127.5zM616 1264q0 54 36 91.5t93 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -95t-94.5 -39 q-53 0 -89 38t-36 96z" />
+<glyph unicode="&#xec;" horiz-adv-x="661" d="M41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 305 76q64 0 101.5 -35t37.5 -127q0 -68 -4 -241.5t-4 -260.5q0 -92 19 -114q17 -22 129 -31v-164q-176 4 -287 4q-205 0 -297 -4zM47 1411q0 44 34.5 73t76.5 29 q32 0 58.5 -20.5t64.5 -81.5l176 -289l-82 -67l-254 233q-40 40 -57 67.5t-17 55.5z" />
+<glyph unicode="&#xed;" horiz-adv-x="661" d="M41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 305 76q64 0 101.5 -35t37.5 -127q0 -68 -4 -241.5t-4 -260.5q0 -92 19 -114q17 -22 129 -31v-164q-176 4 -287 4q-205 0 -297 -4zM129 1122l176 289q40 61 66 81.5 t59 20.5q42 0 75.5 -29t33.5 -73q0 -28 -16.5 -55.5t-55.5 -67.5l-256 -233z" />
+<glyph unicode="&#xee;" horiz-adv-x="661" d="M-14 1102l221 319q39 56 92 56q57 0 96 -54l213 -319l-86 -68l-227 215l-225 -215zM41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 305 76q64 0 101.5 -35t37.5 -127q0 -68 -4 -241.5t-4 -260.5q0 -92 19 -114 q17 -22 129 -31v-164q-176 4 -287 4q-205 0 -297 -4z" />
+<glyph unicode="&#xef;" horiz-adv-x="661" d="M-8 1264q0 54 35.5 91.5t93.5 37.5q56 0 90.5 -37.5t34.5 -91.5q0 -56 -35.5 -95t-93.5 -39q-54 0 -89.5 38t-35.5 96zM41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 305 76q64 0 101.5 -35t37.5 -127q0 -68 -4 -241.5 t-4 -260.5q0 -92 19 -114q17 -22 129 -31v-164q-176 4 -287 4q-205 0 -297 -4zM346 1264q0 54 36 91.5t93 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -95t-94.5 -39q-53 0 -89 38t-36 96z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1163" d="M72 434q0 138 52.5 246.5t160 174t254.5 65.5q110 0 172 -56q-34 114 -119 219l-207 -120l-63 104l198 117q-108 116 -248 182l103 150q209 -75 354 -203l164 98l65 -106l-139 -84q137 -141 205 -315t68 -400q0 -244 -141.5 -389.5t-379.5 -145.5q-120 0 -216.5 36.5 t-157.5 100.5t-93 147t-32 179zM371 481q0 -280 221 -280q89 0 146 62t57 177q0 136 -49 207.5t-162 71.5q-95 0 -154 -64.5t-59 -173.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1265" d="M41 -2v164q69 7 95 14t38 19q16 19 16 110v289q0 92 -17 117.5t-81 25.5q-35 0 -51 -2v160q152 76 301 76q56 0 91 -31t42 -111q61 67 156 106.5t184 39.5q131 0 197 -66q69 -69 69 -274v-330q0 -80 11 -102q9 -15 36.5 -23.5t102.5 -17.5v-164q-172 4 -266 4 q-115 0 -291 -4v164q80 9 102 31q19 19 19 116v250q0 100 -26.5 137t-113.5 37q-85 0 -178 -41v-385q0 -95 19 -117q12 -12 32.5 -18t67.5 -10v-164q-180 4 -258 4q-205 0 -297 -4zM299 1124q17 68 41 122t65 95t89 41q49 0 124 -32l58 -27q56 -29 96 -29q26 0 47 24.5 t49 82.5l95 -29q-22 -119 -69.5 -189.5t-113.5 -70.5q-61 0 -139 37l-57 25q-54 22 -88 22q-33 0 -54.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#xf2;" d="M72 471q0 234 146 372t382 138q248 0 374 -130.5t126 -358.5q0 -167 -69.5 -286.5t-184.5 -177t-262 -57.5q-251 0 -381.5 136t-130.5 364zM330 1411q0 44 34 73t76 29q32 0 58.5 -20.5t64.5 -81.5l176 -289l-82 -67l-254 233q-39 39 -56 67t-17 56zM371 492 q0 -159 55 -229t160 -70q217 0 217 280q0 151 -53 219t-164 68q-104 0 -159.5 -69t-55.5 -199z" />
+<glyph unicode="&#xf3;" d="M72 471q0 234 146 372t382 138q248 0 374 -130.5t126 -358.5q0 -167 -69.5 -286.5t-184.5 -177t-262 -57.5q-251 0 -381.5 136t-130.5 364zM371 492q0 -159 55 -229t160 -70q217 0 217 280q0 151 -53 219t-164 68q-104 0 -159.5 -69t-55.5 -199zM461 1122l176 289 q40 61 66 81.5t59 20.5q42 0 75 -29t33 -73q0 -28 -16.5 -55.5t-54.5 -67.5l-256 -233z" />
+<glyph unicode="&#xf4;" d="M72 471q0 234 146 372t382 138q248 0 374 -130.5t126 -358.5q0 -167 -69.5 -286.5t-184.5 -177t-262 -57.5q-251 0 -381.5 136t-130.5 364zM283 1102l221 319q39 56 92 56q57 0 96 -54l213 -319l-86 -68l-227 215l-225 -215zM371 492q0 -159 55 -229t160 -70 q217 0 217 280q0 151 -53 219t-164 68q-104 0 -159.5 -69t-55.5 -199z" />
+<glyph unicode="&#xf5;" d="M72 471q0 234 146 372t382 138q248 0 374 -130.5t126 -358.5q0 -167 -69.5 -286.5t-184.5 -177t-262 -57.5q-251 0 -381.5 136t-130.5 364zM256 1124q17 68 41 122t65 95t89 41q49 0 124 -32l58 -27q56 -29 96 -29q26 0 47 24.5t49 82.5l95 -29q-22 -119 -69.5 -189.5 t-113.5 -70.5q-61 0 -139 37l-57 25q-54 22 -88 22q-33 0 -54.5 -21.5t-50.5 -78.5zM371 492q0 -159 55 -229t160 -70q217 0 217 280q0 151 -53 219t-164 68q-104 0 -159.5 -69t-55.5 -199z" />
+<glyph unicode="&#xf6;" d="M72 471q0 234 146 372t382 138q248 0 374 -130.5t126 -358.5q0 -167 -69.5 -286.5t-184.5 -177t-262 -57.5q-251 0 -381.5 136t-130.5 364zM287 1264q0 54 35.5 91.5t93.5 37.5q56 0 90.5 -37.5t34.5 -91.5q0 -56 -35.5 -95t-93.5 -39q-54 0 -89.5 38t-35.5 96zM371 492 q0 -159 55 -229t160 -70q217 0 217 280q0 151 -53 219t-164 68q-104 0 -159.5 -69t-55.5 -199zM641 1264q0 54 36 91.5t93 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -95t-94.5 -39q-53 0 -89 38t-36 96z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1261" d="M158 569v191h944v-191h-944zM500 322q0 60 36.5 98.5t92.5 38.5q55 0 93 -39.5t38 -100.5q0 -58 -38 -96.5t-93 -38.5q-58 0 -93.5 39.5t-35.5 98.5zM500 1008q0 57 37 97t92 40t93 -40t38 -99q0 -60 -38 -99t-93 -39q-58 0 -93.5 39.5t-35.5 100.5z" />
+<glyph unicode="&#xf8;" d="M72 471q0 234 146 372t382 138q128 0 231 -39l95 129l102 -74l-86 -118q158 -128 158 -387q0 -167 -69.5 -286.5t-184.5 -177t-262 -57.5q-144 0 -258 49l-90 -126l-105 71l88 123q-147 132 -147 383zM365 492q0 -100 22 -168l301 417q-46 19 -100 19 q-108 0 -165.5 -68.5t-57.5 -199.5zM469 219q48 -26 117 -26q223 0 223 280q0 109 -31 176z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1228" d="M10 735v160q149 76 301 76q64 0 99.5 -35.5t35.5 -128.5q0 -39 -3 -198t-3 -232q0 -97 38 -130.5t108 -33.5q103 0 180 49v332q0 91 -17 117t-81 26q-34 0 -52 -2v160q146 76 308 76q63 0 99 -36t36 -130q0 -43 -4 -240t-4 -243q0 -82 16 -110t68 -28q25 0 65 6v-167 q-114 -46 -256 -46q-60 0 -107.5 32.5t-58.5 101.5q-56 -62 -139 -99t-180 -37q-164 0 -234.5 90t-70.5 273v256q0 93 -15 118t-76 25q-6 0 -26.5 -1t-26.5 -1zM338 1411q0 44 34.5 73t76.5 29q32 0 58 -20.5t64 -81.5l177 -289l-82 -67l-254 233q-40 40 -57 67.5t-17 55.5z " />
+<glyph unicode="&#xfa;" horiz-adv-x="1228" d="M10 735v160q149 76 301 76q64 0 99.5 -35.5t35.5 -128.5q0 -39 -3 -198t-3 -232q0 -97 38 -130.5t108 -33.5q103 0 180 49v332q0 91 -17 117t-81 26q-34 0 -52 -2v160q146 76 308 76q63 0 99 -36t36 -130q0 -43 -4 -240t-4 -243q0 -82 16 -110t68 -28q25 0 65 6v-167 q-114 -46 -256 -46q-60 0 -107.5 32.5t-58.5 101.5q-56 -62 -139 -99t-180 -37q-164 0 -234.5 90t-70.5 273v256q0 93 -15 118t-76 25q-6 0 -26.5 -1t-26.5 -1zM469 1122l176 289q40 61 66 81.5t59 20.5q42 0 75.5 -29t33.5 -73q0 -28 -16.5 -55.5t-55.5 -67.5l-256 -233z " />
+<glyph unicode="&#xfb;" horiz-adv-x="1228" d="M10 735v160q149 76 301 76q64 0 99.5 -35.5t35.5 -128.5q0 -39 -3 -198t-3 -232q0 -97 38 -130.5t108 -33.5q103 0 180 49v332q0 91 -17 117t-81 26q-34 0 -52 -2v160q146 76 308 76q63 0 99 -36t36 -130q0 -43 -4 -240t-4 -243q0 -82 16 -110t68 -28q25 0 65 6v-167 q-114 -46 -256 -46q-60 0 -107.5 32.5t-58.5 101.5q-56 -62 -139 -99t-180 -37q-164 0 -234.5 90t-70.5 273v256q0 93 -15 118t-76 25q-6 0 -26.5 -1t-26.5 -1zM276 1102l222 319q39 56 92 56q57 0 96 -54l213 -319l-86 -68l-227 215l-226 -215z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1228" d="M10 735v160q149 76 301 76q64 0 99.5 -35.5t35.5 -128.5q0 -39 -3 -198t-3 -232q0 -97 38 -130.5t108 -33.5q103 0 180 49v332q0 91 -17 117t-81 26q-34 0 -52 -2v160q146 76 308 76q63 0 99 -36t36 -130q0 -43 -4 -240t-4 -243q0 -82 16 -110t68 -28q25 0 65 6v-167 q-114 -46 -256 -46q-60 0 -107.5 32.5t-58.5 101.5q-56 -62 -139 -99t-180 -37q-164 0 -234.5 90t-70.5 273v256q0 93 -15 118t-76 25q-6 0 -26.5 -1t-26.5 -1zM299 1264q0 54 35.5 91.5t93.5 37.5q56 0 90.5 -37.5t34.5 -91.5q0 -56 -35.5 -95t-93.5 -39q-54 0 -89.5 38 t-35.5 96zM653 1264q0 54 36 91.5t93 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -95t-94.5 -39q-53 0 -89 38t-36 96z" />
+<glyph unicode="&#xfd;" d="M12 784v168q136 -4 344 -4q92 0 244 4v-168q-12 -2 -40 -5t-40 -5q-26 -3 -35.5 -15.5t-9.5 -35.5q0 -39 35 -115q19 -43 51 -113t59.5 -133t49.5 -116q4 13 49.5 145.5t71.5 210.5q32 92 32 131q0 16 -9 26.5t-25.5 14.5t-32 5.5t-38 2.5t-32.5 2v168q132 -4 240 -4 q109 0 235 4v-168q-28 -3 -45.5 -6.5t-32.5 -12t-23 -15t-17.5 -24t-14.5 -31t-17 -44.5q-4 -13 -7 -20l-226 -602q-74 -196 -119.5 -300t-87.5 -165q-44 -64 -109.5 -94.5t-133.5 -30.5q-242 0 -242 176q0 65 12 139h164q5 -60 20 -83t60 -23q48 0 86 59q45 69 125 287 q-43 0 -70.5 23.5t-50.5 74.5l-252 553q-44 94 -76 115q-24 16 -92 24zM498 1122l176 289q40 61 66 81.5t59 20.5q42 0 75 -29t33 -73q0 -19 -8 -38t-22.5 -38.5t-40.5 -46.5l-256 -233z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1222" d="M6 1264v157q165 76 318 76q64 0 93 -40t29 -122q0 -91 -2.5 -262.5t-3.5 -230.5q147 139 326 139q99 0 171.5 -35.5t115.5 -101t63.5 -149.5t20.5 -189q0 -236 -140 -379t-405 -143q-54 0 -148 12v-191q0 -112 23 -145q14 -14 47 -21.5t125 -13.5v-162q-235 5 -317 5 q-74 0 -314 -5v162q41 4 62 6t40.5 10.5t26 14t12 25.5t5.5 35.5v54.5v8v1290q0 93 -5 130t-22 50q-24 19 -70 19q-15 0 -51 -4zM440 231q70 -18 162 -18q114 0 170.5 71t56.5 193q0 268 -200 268q-97 0 -189 -55v-459z" />
+<glyph unicode="&#xff;" d="M12 784v168q136 -4 344 -4q92 0 244 4v-168q-12 -2 -40 -5t-40 -5q-26 -3 -35.5 -15.5t-9.5 -35.5q0 -39 35 -115q19 -43 51 -113t59.5 -133t49.5 -116q4 13 49.5 145.5t71.5 210.5q32 92 32 131q0 16 -9 26.5t-25.5 14.5t-32 5.5t-38 2.5t-32.5 2v168q132 -4 240 -4 q109 0 235 4v-168q-28 -3 -45.5 -6.5t-32.5 -12t-23 -15t-17.5 -24t-14.5 -31t-17 -44.5q-4 -13 -7 -20l-226 -602q-74 -196 -119.5 -300t-87.5 -165q-44 -64 -109.5 -94.5t-133.5 -30.5q-242 0 -242 176q0 65 12 139h164q5 -60 20 -83t60 -23q48 0 86 59q45 69 125 287 q-43 0 -70.5 23.5t-50.5 74.5l-252 553q-44 94 -76 115q-24 16 -92 24zM319 1264q0 54 36 91.5t94 37.5q56 0 90 -37.5t34 -91.5q0 -56 -35.5 -95t-93.5 -39q-54 0 -89.5 38t-35.5 96zM674 1264q0 54 36 91.5t93 37.5q37 0 66.5 -17.5t45 -47t15.5 -64.5q0 -56 -36.5 -95 t-94.5 -39q-53 0 -89 38t-36 96z" />
+<glyph unicode="&#x152;" horiz-adv-x="2095" d="M78 674q0 152 45.5 283t133 230.5t226 156.5t314.5 57q61 0 188 -8.5t166 -8.5h666q82 0 115.5 -26.5t33.5 -77.5q0 -108 -24 -279h-177q-15 111 -51 136q-32 22 -149 22h-234v-352h78q60 0 91.5 6t47.5 25q26 29 41 114h156q-2 -51 -2 -243q0 -164 4 -250h-152 q-13 98 -44.5 122.5t-143.5 24.5h-76v-291q0 -42 12.5 -63t42.5 -25q53 -8 162 -8q51 0 87.5 1.5t67.5 7.5t50.5 10.5t38 19.5t28 24.5t22 35.5t18.5 43t20 55h160q-5 -252 -39 -342q-13 -36 -53.5 -55t-124.5 -19h-682q-43 0 -172.5 -6t-204.5 -6q-177 0 -310 50 t-214.5 142.5t-121.5 216t-40 277.5zM412 696q0 -489 403 -489q150 0 186 61q15 25 15 101v639q0 60 -6 91.5t-27.5 51.5t-55.5 25.5t-98 5.5q-87 0 -156.5 -24t-118 -67.5t-80.5 -104.5t-47 -133.5t-15 -156.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="1759" d="M72 471q0 234 142 372t374 138q260 0 356 -141q55 67 144.5 104t193.5 37q107 0 186.5 -31.5t126.5 -88.5t70 -129.5t23 -160.5q0 -87 -29 -120q-25 -31 -103 -31h-479v-17q0 -82 61 -140t173 -58q143 0 315 88l88 -166q-195 -156 -452 -156q-109 0 -197 37t-139 105 q-133 -142 -353 -142q-250 0 -375.5 135t-125.5 365zM371 492q0 -157 54.5 -228t158.5 -71q211 0 211 280q0 152 -48.5 219.5t-158.5 67.5q-105 0 -161 -69t-56 -199zM1081 600l332 8v17q0 61 -38 100t-115 39q-76 0 -124 -40.5t-55 -123.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="1378" d="M12 1221v165q234 -4 303 -4q141 0 349 4v-165q-81 -4 -108.5 -19t-27.5 -41q0 -35 35 -94q142 -242 187 -324q24 43 90.5 159t99.5 177q33 57 33 88q0 25 -27 39t-108 15v165q96 -4 331 -4q113 0 199 4v-165q-62 -3 -98 -31q-22 -17 -114 -161q-9 -12 -13 -19l-303 -465 v-238q0 -68 8 -92q9 -21 46.5 -33t139.5 -16v-168q-222 4 -344 4q-146 0 -350 -4v168q101 7 131.5 15t40.5 24q12 19 12 102v236l-315 518q-35 60 -55.5 87t-42.5 44q-39 25 -99 29zM383 1653q0 54 35.5 91.5t93.5 37.5q56 0 91.5 -37.5t35.5 -91.5q0 -56 -36.5 -94.5 t-94.5 -38.5q-54 0 -89.5 37.5t-35.5 95.5zM762 1653q0 54 35.5 91.5t93.5 37.5q54 0 89.5 -37.5t35.5 -91.5q0 -56 -36 -94.5t-93 -38.5q-54 0 -89.5 37.5t-35.5 95.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M-14 1102l221 319q39 56 92 56q57 0 96 -54l213 -319l-86 -68l-227 215l-225 -215z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-33 1124q17 68 41 122t65 95t89 41q50 0 125 -32l57 -27q56 -29 96 -29q26 0 47.5 25t49.5 82l94 -29q-23 -120 -69.5 -190t-112.5 -70q-62 0 -140 37l-57 25q-54 22 -88 22q-33 0 -54.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="942" />
+<glyph unicode="&#x2001;" horiz-adv-x="1884" />
+<glyph unicode="&#x2002;" horiz-adv-x="942" />
+<glyph unicode="&#x2003;" horiz-adv-x="1884" />
+<glyph unicode="&#x2004;" horiz-adv-x="628" />
+<glyph unicode="&#x2005;" horiz-adv-x="471" />
+<glyph unicode="&#x2006;" horiz-adv-x="314" />
+<glyph unicode="&#x2007;" horiz-adv-x="314" />
+<glyph unicode="&#x2008;" horiz-adv-x="235" />
+<glyph unicode="&#x2009;" horiz-adv-x="376" />
+<glyph unicode="&#x200a;" horiz-adv-x="104" />
+<glyph unicode="&#x2010;" horiz-adv-x="575" d="M57 412v194h457v-194h-457z" />
+<glyph unicode="&#x2011;" horiz-adv-x="575" d="M57 412v194h457v-194h-457z" />
+<glyph unicode="&#x2012;" horiz-adv-x="575" d="M57 412v194h457v-194h-457z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1163" d="M68 424v180h1028v-180h-1028z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M68 424v180h1544v-180h-1544z" />
+<glyph unicode="&#x2018;" horiz-adv-x="487" d="M59 1018q0 132 81.5 248.5t246.5 228.5l72 -98q-187 -133 -187 -232q0 -47 50 -63q49 -17 75.5 -48t26.5 -89q0 -62 -48 -107t-124 -45q-91 0 -142 56t-51 149z" />
+<glyph unicode="&#x2019;" horiz-adv-x="487" d="M27 891q186 127 186 231q0 47 -47 62q-51 21 -78 50.5t-27 88.5q0 61 49 106.5t126 45.5q90 0 140 -55.5t50 -149.5q0 -132 -81 -248.5t-245 -226.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="487" d="M27 -344q186 127 186 231q0 47 -47 62q-51 21 -78 50.5t-27 88.5q0 62 49 107t126 45q90 0 140 -56t50 -149q0 -257 -326 -477z" />
+<glyph unicode="&#x201c;" horiz-adv-x="925" d="M59 1018q0 132 81.5 248.5t246.5 228.5l72 -98q-187 -133 -187 -232q0 -47 50 -63q49 -17 75.5 -48t26.5 -89q0 -62 -48 -107t-124 -45q-91 0 -142 56t-51 149zM498 1018q0 132 81 248.5t246 228.5l70 -98q-184 -131 -184 -232q0 -47 49 -63q47 -17 73.5 -48t26.5 -89 q0 -62 -47.5 -107t-124.5 -45q-89 0 -139.5 56t-50.5 149z" />
+<glyph unicode="&#x201d;" horiz-adv-x="925" d="M27 891q186 127 186 231q0 47 -47 62q-51 21 -78 50.5t-27 88.5q0 61 49 106.5t126 45.5q91 0 140.5 -55.5t49.5 -149.5q0 -132 -81 -248.5t-245 -226.5zM465 891q186 129 186 231q0 43 -51 62q-47 17 -73.5 48.5t-26.5 90.5q0 62 48 107t126 45q89 0 138.5 -55.5 t49.5 -149.5q0 -132 -80.5 -248.5t-244.5 -226.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="925" d="M27 -344q186 127 186 231q0 47 -47 62q-51 21 -78 50.5t-27 88.5q0 62 49 107t126 45q90 0 140 -56t50 -149q0 -257 -326 -477zM465 -344q186 129 186 231q0 43 -51 62q-47 17 -73.5 48.5t-26.5 90.5q0 63 47.5 107.5t126.5 44.5q90 0 139 -56t49 -149q0 -260 -325 -477z " />
+<glyph unicode="&#x2022;" horiz-adv-x="782" d="M72 567q0 137 89 227.5t224 90.5q143 0 233.5 -89t90.5 -221q0 -151 -90 -242t-230 -91q-137 0 -227 93t-90 232z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1800" d="M135 147q0 71 46 119.5t116 48.5q73 0 121.5 -46t48.5 -115q0 -81 -47 -126.5t-121 -45.5q-72 0 -118 46t-46 119zM735 147q0 71 45 119.5t115 48.5q75 0 122.5 -46t47.5 -115q0 -81 -46.5 -126.5t-121.5 -45.5q-72 0 -117 46t-45 119zM1335 147q0 71 46 119.5t116 48.5 q73 0 120.5 -46t47.5 -115q0 -82 -45.5 -127t-120.5 -45q-72 0 -118 46t-46 119z" />
+<glyph unicode="&#x202f;" horiz-adv-x="376" />
+<glyph unicode="&#x2039;" horiz-adv-x="587" d="M39 459q0 49 49 94l361 326l104 -97l-262 -319l258 -336l-109 -98l-362 342q-39 39 -39 88z" />
+<glyph unicode="&#x203a;" horiz-adv-x="587" d="M37 127l260 317l-256 338l106 97l365 -342q37 -33 37 -88q0 -50 -49 -95l-361 -325z" />
+<glyph unicode="&#x205f;" horiz-adv-x="471" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1462" d="M121 496v120h139v27q0 65 4 98h-143v121h160q52 242 215.5 376t421.5 134q197 0 309 -51q100 -47 100 -139q0 -112 -22 -252h-162q-11 119 -41 153q-54 64 -195 64q-114 0 -196.5 -70t-116.5 -215h379v-121h-398q-2 -27 -2 -79v-46h400v-120h-385q16 -82 49 -141 t77.5 -91t91.5 -46.5t101 -14.5q149 0 203 57q34 37 68 154h165q-11 -222 -34 -283q-27 -66 -125 -108q-129 -52 -310 -52q-256 0 -412.5 135.5t-193.5 389.5h-147z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1595" d="M70 1321q0 30 14 46.5t49 16.5h469q14 0 25.5 -3t19.5 -7.5t13 -11.5t7.5 -15t2.5 -18q0 -40 -6 -151h-70q-1 8 -4 23q-3 20 -4 29t-5.5 21.5t-6 16t-10 9.5t-13 7t-20 2.5t-26 1.5h-36.5h-7h-7.5h-8.5v-360q0 -53 7 -60q12 -12 79 -16v-76q-47 2 -153 2q-125 0 -168 -2 v76q69 2 78 14q8 8 8 58v364q-104 0 -121 -12q-26 -17 -33 -98h-69q-4 74 -4 143zM717 776v76q22 0 34 0.5t22.5 4.5t14.5 8t7 16t3.5 22.5t0.5 34.5q1 77 2 137.5t2 92.5t1.5 53t0.5 30v13q0 21 -6 30q-5 7 -19 10.5t-55 4.5v75q45 -2 149 -2q92 0 127 2q97 -243 119 -311 q17 46 127 311q41 -2 135 -2q97 0 136 2v-75q-39 -1 -53 -4t-17 -9q-8 -11 -8 -51q0 -43 4 -313q0 -52 6 -64q2 -4 6 -6.5t12 -4.5t22 -3t36 -2v-76q-45 2 -154 2t-162 -2v76q62 2 74 14q8 8 8 47q0 205 2 326q-28 -79 -141 -340q-16 -41 -57 -41q-43 0 -60 43 q-109 271 -135 342q0 -53 1 -194.5t1 -145.5q0 -31 10 -39q9 -9 72 -12v-76q-41 2 -127 2q-94 0 -141 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="952" d="M0 0v952h952v-952h-952z" />
+<hkern u1="&#x20;" u2="&#x2026;" k="102" />
+<hkern u1="&#x20;" u2="&#x178;" k="39" />
+<hkern u1="&#x20;" u2="&#xdd;" k="39" />
+<hkern u1="&#x20;" u2="&#xc5;" k="45" />
+<hkern u1="&#x20;" u2="&#xc4;" k="45" />
+<hkern u1="&#x20;" u2="&#xc3;" k="45" />
+<hkern u1="&#x20;" u2="&#xc2;" k="45" />
+<hkern u1="&#x20;" u2="&#xc1;" k="45" />
+<hkern u1="&#x20;" u2="&#xc0;" k="45" />
+<hkern u1="&#x20;" u2="Y" k="39" />
+<hkern u1="&#x20;" u2="W" k="166" />
+<hkern u1="&#x20;" u2="V" k="-29" />
+<hkern u1="&#x20;" u2="A" k="45" />
+<hkern u1="&#x20;" u2="&#x2e;" k="102" />
+<hkern u1="&#x20;" u2="&#x2c;" k="102" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-45" />
+<hkern u1="&#x21;" u2="]" k="-45" />
+<hkern u1="&#x21;" u2="&#x29;" k="-45" />
+<hkern u1="&#x22;" u2="&#x31;" k="109" />
+<hkern u1="&#x26;" u2="[" k="57" />
+<hkern u1="&#x27;" u2="&#x31;" k="109" />
+<hkern u1="&#x28;" u2="y" k="-41" />
+<hkern u1="&#x28;" u2="W" k="-61" />
+<hkern u1="&#x28;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x28;" u2="&#x21;" k="16" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="127" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="127" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2d;" u2="W" k="102" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="147" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="147" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="109" />
+<hkern u1="&#x2f;" u2="&#x153;" k="121" />
+<hkern u1="&#x2f;" u2="&#x152;" k="82" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-41" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="121" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="121" />
+<hkern u1="&#x2f;" u2="&#xea;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="102" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd8;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd6;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc7;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="133" />
+<hkern u1="&#x2f;" u2="&#x7b;" k="102" />
+<hkern u1="&#x2f;" u2="q" k="121" />
+<hkern u1="&#x2f;" u2="o" k="121" />
+<hkern u1="&#x2f;" u2="l" k="-41" />
+<hkern u1="&#x2f;" u2="k" k="-41" />
+<hkern u1="&#x2f;" u2="h" k="-41" />
+<hkern u1="&#x2f;" u2="e" k="121" />
+<hkern u1="&#x2f;" u2="d" k="121" />
+<hkern u1="&#x2f;" u2="c" k="121" />
+<hkern u1="&#x2f;" u2="b" k="-41" />
+<hkern u1="&#x2f;" u2="a" k="102" />
+<hkern u1="&#x2f;" u2="V" k="-59" />
+<hkern u1="&#x2f;" u2="R" k="-18" />
+<hkern u1="&#x2f;" u2="Q" k="82" />
+<hkern u1="&#x2f;" u2="P" k="-18" />
+<hkern u1="&#x2f;" u2="O" k="82" />
+<hkern u1="&#x2f;" u2="N" k="-18" />
+<hkern u1="&#x2f;" u2="M" k="-18" />
+<hkern u1="&#x2f;" u2="L" k="-18" />
+<hkern u1="&#x2f;" u2="K" k="-18" />
+<hkern u1="&#x2f;" u2="I" k="-18" />
+<hkern u1="&#x2f;" u2="H" k="-18" />
+<hkern u1="&#x2f;" u2="G" k="82" />
+<hkern u1="&#x2f;" u2="F" k="-18" />
+<hkern u1="&#x2f;" u2="E" k="-18" />
+<hkern u1="&#x2f;" u2="D" k="-18" />
+<hkern u1="&#x2f;" u2="C" k="82" />
+<hkern u1="&#x2f;" u2="B" k="-18" />
+<hkern u1="&#x2f;" u2="A" k="133" />
+<hkern u1="&#x30;" u2="&#x153;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-70" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-70" />
+<hkern u1="&#x30;" u2="&#xea;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-70" />
+<hkern u1="&#x30;" u2="q" k="-70" />
+<hkern u1="&#x30;" u2="o" k="-70" />
+<hkern u1="&#x30;" u2="e" k="-70" />
+<hkern u1="&#x30;" u2="d" k="-70" />
+<hkern u1="&#x30;" u2="c" k="-70" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-61" />
+<hkern u1="&#x30;" u2="&#x25;" k="-100" />
+<hkern u1="&#x31;" u2="&#x2026;" k="41" />
+<hkern u1="&#x31;" u2="&#x2f;" k="41" />
+<hkern u1="&#x31;" u2="&#x2e;" k="41" />
+<hkern u1="&#x31;" u2="&#x2c;" k="41" />
+<hkern u1="&#x31;" u2="&#x27;" k="223" />
+<hkern u1="&#x31;" u2="&#x22;" k="223" />
+<hkern u1="&#x33;" g2="uniFB04" k="-61" />
+<hkern u1="&#x33;" g2="uniFB03" k="-61" />
+<hkern u1="&#x33;" g2="uniFB02" k="-61" />
+<hkern u1="&#x33;" g2="uniFB01" k="-61" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-61" />
+<hkern u1="&#x33;" u2="&#x7d;" k="41" />
+<hkern u1="&#x33;" u2="f" k="-61" />
+<hkern u1="&#x33;" u2="]" k="41" />
+<hkern u1="&#x33;" u2="&#x29;" k="41" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-131" />
+<hkern u1="&#x34;" u2="r" k="-131" />
+<hkern u1="&#x34;" u2="p" k="-131" />
+<hkern u1="&#x34;" u2="n" k="-131" />
+<hkern u1="&#x34;" u2="m" k="-131" />
+<hkern u1="&#x35;" u2="&#xe6;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe5;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe4;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe3;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe2;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe1;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe0;" k="-41" />
+<hkern u1="&#x35;" u2="a" k="-41" />
+<hkern u1="&#x36;" u2="]" k="-41" />
+<hkern u1="&#x37;" u2="&#x2026;" k="223" />
+<hkern u1="&#x37;" u2="&#xb0;" k="-61" />
+<hkern u1="&#x37;" u2="&#x2e;" k="223" />
+<hkern u1="&#x37;" u2="&#x2c;" k="244" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-82" />
+<hkern u1="&#x3a;" u2="&#x33;" k="-63" />
+<hkern u1="&#x3a;" u2="&#x31;" k="109" />
+<hkern u1="&#x3f;" u2="&#x203a;" k="-20" />
+<hkern u1="&#x3f;" u2="&#x2039;" k="41" />
+<hkern u1="&#x3f;" u2="&#xbb;" k="-20" />
+<hkern u1="&#x3f;" u2="&#xab;" k="41" />
+<hkern u1="&#x3f;" u2="&#x3b;" k="-37" />
+<hkern u1="&#x3f;" u2="&#x3a;" k="-31" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="109" />
+<hkern u1="A" u2="&#xb5;" k="20" />
+<hkern u1="A" u2="W" k="156" />
+<hkern u1="A" u2="G" k="47" />
+<hkern u1="A" u2="&#x2f;" k="-100" />
+<hkern u1="B" u2="&#xee;" k="-12" />
+<hkern u1="B" u2="&#xec;" k="-6" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="y" k="27" />
+<hkern u1="B" u2="W" k="47" />
+<hkern u1="C" u2="&#xef;" k="-16" />
+<hkern u1="C" u2="&#xee;" k="-43" />
+<hkern u1="C" u2="&#xec;" k="8" />
+<hkern u1="C" u2="y" k="66" />
+<hkern u1="C" u2="e" k="37" />
+<hkern u1="C" u2="d" k="51" />
+<hkern u1="C" u2="W" k="43" />
+<hkern u1="C" u2="C" k="41" />
+<hkern u1="D" u2="&#xef;" k="-10" />
+<hkern u1="D" u2="&#xee;" k="-41" />
+<hkern u1="D" u2="&#xec;" k="-47" />
+<hkern u1="D" u2="&#xd0;" k="-41" />
+<hkern u1="D" u2="&#xc6;" k="184" />
+<hkern u1="D" u2="&#xc5;" k="80" />
+<hkern u1="D" u2="&#xc4;" k="80" />
+<hkern u1="D" u2="&#xc3;" k="80" />
+<hkern u1="D" u2="&#xc2;" k="80" />
+<hkern u1="D" u2="&#xc1;" k="80" />
+<hkern u1="D" u2="&#xc0;" k="80" />
+<hkern u1="D" u2="W" k="72" />
+<hkern u1="D" u2="A" k="80" />
+<hkern u1="E" u2="&#xb5;" k="20" />
+<hkern u1="E" u2="y" k="61" />
+<hkern u1="E" u2="W" k="74" />
+<hkern u1="F" g2="uniFB04" k="41" />
+<hkern u1="F" g2="uniFB03" k="41" />
+<hkern u1="F" g2="uniFB02" k="41" />
+<hkern u1="F" g2="uniFB01" k="41" />
+<hkern u1="F" u2="&#x2026;" k="285" />
+<hkern u1="F" u2="&#x201d;" k="-8" />
+<hkern u1="F" u2="&#x2019;" k="-8" />
+<hkern u1="F" u2="&#x178;" k="2" />
+<hkern u1="F" u2="&#x153;" k="133" />
+<hkern u1="F" u2="&#x152;" k="20" />
+<hkern u1="F" u2="&#xff;" k="106" />
+<hkern u1="F" u2="&#xfe;" k="49" />
+<hkern u1="F" u2="&#xfd;" k="106" />
+<hkern u1="F" u2="&#xfc;" k="76" />
+<hkern u1="F" u2="&#xfb;" k="76" />
+<hkern u1="F" u2="&#xfa;" k="76" />
+<hkern u1="F" u2="&#xf9;" k="76" />
+<hkern u1="F" u2="&#xf8;" k="133" />
+<hkern u1="F" u2="&#xf6;" k="133" />
+<hkern u1="F" u2="&#xf5;" k="133" />
+<hkern u1="F" u2="&#xf4;" k="133" />
+<hkern u1="F" u2="&#xf3;" k="133" />
+<hkern u1="F" u2="&#xf2;" k="133" />
+<hkern u1="F" u2="&#xf1;" k="94" />
+<hkern u1="F" u2="&#xf0;" k="133" />
+<hkern u1="F" u2="&#xef;" k="-4" />
+<hkern u1="F" u2="&#xee;" k="-2" />
+<hkern u1="F" u2="&#xed;" k="88" />
+<hkern u1="F" u2="&#xec;" k="49" />
+<hkern u1="F" u2="&#xeb;" k="133" />
+<hkern u1="F" u2="&#xea;" k="133" />
+<hkern u1="F" u2="&#xe9;" k="133" />
+<hkern u1="F" u2="&#xe8;" k="133" />
+<hkern u1="F" u2="&#xe7;" k="133" />
+<hkern u1="F" u2="&#xe6;" k="125" />
+<hkern u1="F" u2="&#xe5;" k="125" />
+<hkern u1="F" u2="&#xe4;" k="125" />
+<hkern u1="F" u2="&#xe3;" k="125" />
+<hkern u1="F" u2="&#xe2;" k="125" />
+<hkern u1="F" u2="&#xe1;" k="125" />
+<hkern u1="F" u2="&#xe0;" k="125" />
+<hkern u1="F" u2="&#xdf;" k="41" />
+<hkern u1="F" u2="&#xde;" k="4" />
+<hkern u1="F" u2="&#xdd;" k="2" />
+<hkern u1="F" u2="&#xd8;" k="20" />
+<hkern u1="F" u2="&#xd6;" k="20" />
+<hkern u1="F" u2="&#xd5;" k="20" />
+<hkern u1="F" u2="&#xd4;" k="20" />
+<hkern u1="F" u2="&#xd3;" k="20" />
+<hkern u1="F" u2="&#xd2;" k="20" />
+<hkern u1="F" u2="&#xd1;" k="4" />
+<hkern u1="F" u2="&#xd0;" k="4" />
+<hkern u1="F" u2="&#xcf;" k="4" />
+<hkern u1="F" u2="&#xce;" k="4" />
+<hkern u1="F" u2="&#xcd;" k="4" />
+<hkern u1="F" u2="&#xcc;" k="4" />
+<hkern u1="F" u2="&#xcb;" k="4" />
+<hkern u1="F" u2="&#xca;" k="4" />
+<hkern u1="F" u2="&#xc9;" k="4" />
+<hkern u1="F" u2="&#xc8;" k="4" />
+<hkern u1="F" u2="&#xc7;" k="20" />
+<hkern u1="F" u2="&#xc6;" k="231" />
+<hkern u1="F" u2="&#xc5;" k="150" />
+<hkern u1="F" u2="&#xc4;" k="150" />
+<hkern u1="F" u2="&#xc3;" k="150" />
+<hkern u1="F" u2="&#xc2;" k="150" />
+<hkern u1="F" u2="&#xc1;" k="150" />
+<hkern u1="F" u2="&#xc0;" k="150" />
+<hkern u1="F" u2="z" k="94" />
+<hkern u1="F" u2="y" k="61" />
+<hkern u1="F" u2="x" k="96" />
+<hkern u1="F" u2="w" k="82" />
+<hkern u1="F" u2="v" k="106" />
+<hkern u1="F" u2="u" k="76" />
+<hkern u1="F" u2="t" k="20" />
+<hkern u1="F" u2="s" k="59" />
+<hkern u1="F" u2="r" k="94" />
+<hkern u1="F" u2="q" k="133" />
+<hkern u1="F" u2="p" k="94" />
+<hkern u1="F" u2="o" k="133" />
+<hkern u1="F" u2="n" k="94" />
+<hkern u1="F" u2="m" k="94" />
+<hkern u1="F" u2="l" k="49" />
+<hkern u1="F" u2="k" k="49" />
+<hkern u1="F" u2="j" k="27" />
+<hkern u1="F" u2="i" k="63" />
+<hkern u1="F" u2="h" k="49" />
+<hkern u1="F" u2="g" k="121" />
+<hkern u1="F" u2="f" k="41" />
+<hkern u1="F" u2="e" k="133" />
+<hkern u1="F" u2="d" k="133" />
+<hkern u1="F" u2="c" k="133" />
+<hkern u1="F" u2="b" k="49" />
+<hkern u1="F" u2="a" k="125" />
+<hkern u1="F" u2="Z" k="41" />
+<hkern u1="F" u2="Y" k="2" />
+<hkern u1="F" u2="X" k="43" />
+<hkern u1="F" u2="W" k="35" />
+<hkern u1="F" u2="T" k="25" />
+<hkern u1="F" u2="S" k="16" />
+<hkern u1="F" u2="R" k="4" />
+<hkern u1="F" u2="Q" k="20" />
+<hkern u1="F" u2="P" k="4" />
+<hkern u1="F" u2="O" k="20" />
+<hkern u1="F" u2="N" k="4" />
+<hkern u1="F" u2="M" k="4" />
+<hkern u1="F" u2="L" k="4" />
+<hkern u1="F" u2="K" k="4" />
+<hkern u1="F" u2="J" k="27" />
+<hkern u1="F" u2="I" k="4" />
+<hkern u1="F" u2="H" k="4" />
+<hkern u1="F" u2="G" k="20" />
+<hkern u1="F" u2="F" k="4" />
+<hkern u1="F" u2="E" k="4" />
+<hkern u1="F" u2="D" k="4" />
+<hkern u1="F" u2="C" k="20" />
+<hkern u1="F" u2="B" k="4" />
+<hkern u1="F" u2="A" k="150" />
+<hkern u1="F" u2="&#x2f;" k="121" />
+<hkern u1="F" u2="&#x2e;" k="285" />
+<hkern u1="F" u2="&#x2c;" k="285" />
+<hkern u1="G" u2="&#xee;" k="-14" />
+<hkern u1="G" u2="&#xd0;" k="-20" />
+<hkern u1="G" u2="y" k="41" />
+<hkern u1="G" u2="W" k="41" />
+<hkern u1="G" u2="M" k="25" />
+<hkern u1="H" u2="&#xef;" k="-12" />
+<hkern u1="H" u2="&#xee;" k="-18" />
+<hkern u1="H" u2="&#xec;" k="-18" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-12" />
+<hkern u1="I" u2="&#xee;" k="-18" />
+<hkern u1="I" u2="&#xec;" k="-18" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xf1;" k="43" />
+<hkern u1="J" u2="&#xef;" k="-20" />
+<hkern u1="J" u2="&#xee;" k="-20" />
+<hkern u1="J" u2="&#xec;" k="-31" />
+<hkern u1="J" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xc6;" k="82" />
+<hkern u1="J" u2="y" k="25" />
+<hkern u1="K" u2="&#xef;" k="-29" />
+<hkern u1="K" u2="&#xec;" k="-12" />
+<hkern u1="K" u2="y" k="115" />
+<hkern u1="K" u2="W" k="29" />
+<hkern u1="L" u2="&#xf8;" k="27" />
+<hkern u1="L" u2="y" k="129" />
+<hkern u1="L" u2="b" k="27" />
+<hkern u1="L" u2="W" k="240" />
+<hkern u1="L" u2="&#x20;" k="82" />
+<hkern u1="M" u2="&#xf8;" k="-6" />
+<hkern u1="M" u2="&#xef;" k="-2" />
+<hkern u1="M" u2="&#xec;" k="-33" />
+<hkern u1="M" u2="&#xdd;" k="29" />
+<hkern u1="M" u2="&#xd0;" k="-20" />
+<hkern u1="M" u2="y" k="20" />
+<hkern u1="M" u2="W" k="20" />
+<hkern u1="N" u2="&#xf8;" k="-10" />
+<hkern u1="N" u2="&#xef;" k="-57" />
+<hkern u1="N" u2="&#xee;" k="-10" />
+<hkern u1="N" u2="&#xec;" k="-35" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="&#xef;" k="-10" />
+<hkern u1="O" u2="&#xee;" k="-6" />
+<hkern u1="O" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="W" k="72" />
+<hkern u1="P" u2="&#xef;" k="-14" />
+<hkern u1="P" u2="&#xee;" k="-25" />
+<hkern u1="P" u2="&#xec;" k="-2" />
+<hkern u1="P" u2="&#xe5;" k="78" />
+<hkern u1="P" u2="c" k="61" />
+<hkern u1="P" u2="W" k="35" />
+<hkern u1="P" u2="M" k="25" />
+<hkern u1="Q" u2="&#xef;" k="-10" />
+<hkern u1="Q" u2="&#xee;" k="-6" />
+<hkern u1="Q" u2="&#xd0;" k="-20" />
+<hkern u1="Q" u2="W" k="72" />
+<hkern u1="Q" u2="N" k="-14" />
+<hkern u1="Q" u2="&#x2c;" k="-104" />
+<hkern u1="R" u2="y" k="53" />
+<hkern u1="R" u2="W" k="90" />
+<hkern u1="S" u2="&#xf8;" k="-10" />
+<hkern u1="S" u2="&#xef;" k="-10" />
+<hkern u1="S" u2="&#xee;" k="-18" />
+<hkern u1="S" u2="&#xec;" k="-20" />
+<hkern u1="S" u2="y" k="61" />
+<hkern u1="S" u2="W" k="47" />
+<hkern u1="T" u2="&#x203a;" k="94" />
+<hkern u1="T" u2="&#x2039;" k="203" />
+<hkern u1="T" u2="&#xff;" k="152" />
+<hkern u1="T" u2="&#xf6;" k="145" />
+<hkern u1="T" u2="&#xf5;" k="147" />
+<hkern u1="T" u2="&#xf4;" k="147" />
+<hkern u1="T" u2="&#xf2;" k="147" />
+<hkern u1="T" u2="&#xf1;" k="147" />
+<hkern u1="T" u2="&#xef;" k="-43" />
+<hkern u1="T" u2="&#xee;" k="-29" />
+<hkern u1="T" u2="&#xed;" k="98" />
+<hkern u1="T" u2="&#xec;" k="-2" />
+<hkern u1="T" u2="&#xeb;" k="156" />
+<hkern u1="T" u2="&#xea;" k="145" />
+<hkern u1="T" u2="&#xe8;" k="137" />
+<hkern u1="T" u2="&#xe4;" k="129" />
+<hkern u1="T" u2="&#xe3;" k="113" />
+<hkern u1="T" u2="&#xcf;" k="33" />
+<hkern u1="T" u2="&#xce;" k="37" />
+<hkern u1="T" u2="&#xcc;" k="37" />
+<hkern u1="T" u2="y" k="125" />
+<hkern u1="T" u2="]" k="-61" />
+<hkern u1="T" u2="W" k="20" />
+<hkern u1="T" u2="M" k="57" />
+<hkern u1="T" u2="&#x3f;" k="-20" />
+<hkern u1="T" u2="&#x2c;" k="203" />
+<hkern u1="U" u2="&#xf1;" k="43" />
+<hkern u1="U" u2="&#xef;" k="-18" />
+<hkern u1="U" u2="&#xee;" k="-10" />
+<hkern u1="U" u2="&#xec;" k="-37" />
+<hkern u1="U" u2="&#xd0;" k="-20" />
+<hkern u1="U" u2="y" k="25" />
+<hkern u1="V" u2="&#x203a;" k="61" />
+<hkern u1="V" u2="&#x2039;" k="86" />
+<hkern u1="V" u2="&#xf1;" k="195" />
+<hkern u1="V" u2="&#xef;" k="-33" />
+<hkern u1="V" u2="&#xee;" k="20" />
+<hkern u1="V" u2="&#xed;" k="109" />
+<hkern u1="V" u2="&#xec;" k="18" />
+<hkern u1="V" u2="&#xe4;" k="113" />
+<hkern u1="V" u2="&#xe3;" k="92" />
+<hkern u1="V" u2="&#xe0;" k="92" />
+<hkern u1="V" u2="y" k="162" />
+<hkern u1="V" u2="W" k="6" />
+<hkern u1="V" u2="M" k="23" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="102" />
+<hkern u1="W" g2="uniFB04" k="90" />
+<hkern u1="W" g2="uniFB03" k="90" />
+<hkern u1="W" g2="uniFB02" k="90" />
+<hkern u1="W" g2="uniFB01" k="90" />
+<hkern u1="W" u2="&#x203a;" k="82" />
+<hkern u1="W" u2="&#x2039;" k="84" />
+<hkern u1="W" u2="&#x2026;" k="279" />
+<hkern u1="W" u2="&#x153;" k="113" />
+<hkern u1="W" u2="&#x152;" k="47" />
+<hkern u1="W" u2="&#xff;" k="80" />
+<hkern u1="W" u2="&#xfe;" k="41" />
+<hkern u1="W" u2="&#xfd;" k="104" />
+<hkern u1="W" u2="&#xfc;" k="86" />
+<hkern u1="W" u2="&#xfb;" k="96" />
+<hkern u1="W" u2="&#xfa;" k="96" />
+<hkern u1="W" u2="&#xf9;" k="96" />
+<hkern u1="W" u2="&#xf8;" k="113" />
+<hkern u1="W" u2="&#xf6;" k="113" />
+<hkern u1="W" u2="&#xf5;" k="113" />
+<hkern u1="W" u2="&#xf4;" k="113" />
+<hkern u1="W" u2="&#xf3;" k="113" />
+<hkern u1="W" u2="&#xf2;" k="113" />
+<hkern u1="W" u2="&#xf1;" k="195" />
+<hkern u1="W" u2="&#xf0;" k="113" />
+<hkern u1="W" u2="&#xef;" k="-33" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="115" />
+<hkern u1="W" u2="&#xec;" k="2" />
+<hkern u1="W" u2="&#xeb;" k="176" />
+<hkern u1="W" u2="&#xea;" k="115" />
+<hkern u1="W" u2="&#xe9;" k="113" />
+<hkern u1="W" u2="&#xe8;" k="150" />
+<hkern u1="W" u2="&#xe7;" k="113" />
+<hkern u1="W" u2="&#xe6;" k="152" />
+<hkern u1="W" u2="&#xe5;" k="152" />
+<hkern u1="W" u2="&#xe4;" k="115" />
+<hkern u1="W" u2="&#xe3;" k="72" />
+<hkern u1="W" u2="&#xe2;" k="152" />
+<hkern u1="W" u2="&#xe1;" k="152" />
+<hkern u1="W" u2="&#xe0;" k="72" />
+<hkern u1="W" u2="&#xdf;" k="90" />
+<hkern u1="W" u2="&#xde;" k="20" />
+<hkern u1="W" u2="&#xd8;" k="47" />
+<hkern u1="W" u2="&#xd6;" k="47" />
+<hkern u1="W" u2="&#xd5;" k="47" />
+<hkern u1="W" u2="&#xd4;" k="47" />
+<hkern u1="W" u2="&#xd3;" k="47" />
+<hkern u1="W" u2="&#xd2;" k="47" />
+<hkern u1="W" u2="&#xd1;" k="20" />
+<hkern u1="W" u2="&#xd0;" k="20" />
+<hkern u1="W" u2="&#xcf;" k="20" />
+<hkern u1="W" u2="&#xce;" k="20" />
+<hkern u1="W" u2="&#xcd;" k="20" />
+<hkern u1="W" u2="&#xcc;" k="20" />
+<hkern u1="W" u2="&#xcb;" k="20" />
+<hkern u1="W" u2="&#xca;" k="20" />
+<hkern u1="W" u2="&#xc9;" k="20" />
+<hkern u1="W" u2="&#xc8;" k="20" />
+<hkern u1="W" u2="&#xc7;" k="47" />
+<hkern u1="W" u2="&#xc6;" k="215" />
+<hkern u1="W" u2="&#xc5;" k="182" />
+<hkern u1="W" u2="&#xc4;" k="182" />
+<hkern u1="W" u2="&#xc3;" k="182" />
+<hkern u1="W" u2="&#xc2;" k="182" />
+<hkern u1="W" u2="&#xc1;" k="182" />
+<hkern u1="W" u2="&#xc0;" k="182" />
+<hkern u1="W" u2="&#xbb;" k="121" />
+<hkern u1="W" u2="&#xab;" k="121" />
+<hkern u1="W" u2="z" k="123" />
+<hkern u1="W" u2="y" k="113" />
+<hkern u1="W" u2="x" k="121" />
+<hkern u1="W" u2="w" k="47" />
+<hkern u1="W" u2="v" k="80" />
+<hkern u1="W" u2="u" k="96" />
+<hkern u1="W" u2="t" k="78" />
+<hkern u1="W" u2="s" k="133" />
+<hkern u1="W" u2="r" k="104" />
+<hkern u1="W" u2="q" k="113" />
+<hkern u1="W" u2="p" k="82" />
+<hkern u1="W" u2="o" k="113" />
+<hkern u1="W" u2="n" k="82" />
+<hkern u1="W" u2="m" k="82" />
+<hkern u1="W" u2="l" k="41" />
+<hkern u1="W" u2="k" k="41" />
+<hkern u1="W" u2="j" k="51" />
+<hkern u1="W" u2="i" k="61" />
+<hkern u1="W" u2="h" k="41" />
+<hkern u1="W" u2="g" k="143" />
+<hkern u1="W" u2="f" k="90" />
+<hkern u1="W" u2="e" k="147" />
+<hkern u1="W" u2="d" k="129" />
+<hkern u1="W" u2="c" k="127" />
+<hkern u1="W" u2="b" k="43" />
+<hkern u1="W" u2="a" k="152" />
+<hkern u1="W" u2="X" k="35" />
+<hkern u1="W" u2="W" k="16" />
+<hkern u1="W" u2="R" k="20" />
+<hkern u1="W" u2="Q" k="47" />
+<hkern u1="W" u2="P" k="20" />
+<hkern u1="W" u2="O" k="47" />
+<hkern u1="W" u2="N" k="20" />
+<hkern u1="W" u2="M" k="23" />
+<hkern u1="W" u2="L" k="20" />
+<hkern u1="W" u2="K" k="20" />
+<hkern u1="W" u2="J" k="47" />
+<hkern u1="W" u2="I" k="20" />
+<hkern u1="W" u2="H" k="20" />
+<hkern u1="W" u2="G" k="47" />
+<hkern u1="W" u2="F" k="6" />
+<hkern u1="W" u2="E" k="20" />
+<hkern u1="W" u2="D" k="20" />
+<hkern u1="W" u2="C" k="47" />
+<hkern u1="W" u2="B" k="20" />
+<hkern u1="W" u2="A" k="182" />
+<hkern u1="W" u2="&#x3b;" k="141" />
+<hkern u1="W" u2="&#x3a;" k="141" />
+<hkern u1="W" u2="&#x2e;" k="279" />
+<hkern u1="W" u2="&#x2c;" k="244" />
+<hkern u1="X" u2="&#xef;" k="-2" />
+<hkern u1="X" u2="&#xee;" k="-4" />
+<hkern u1="X" u2="&#xed;" k="18" />
+<hkern u1="X" u2="&#xec;" k="-8" />
+<hkern u1="X" u2="y" k="111" />
+<hkern u1="X" u2="W" k="57" />
+<hkern u1="Y" u2="&#x203a;" k="100" />
+<hkern u1="Y" u2="&#x2039;" k="102" />
+<hkern u1="Y" u2="&#xf5;" k="205" />
+<hkern u1="Y" u2="&#xf2;" k="188" />
+<hkern u1="Y" u2="&#xef;" k="-37" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="129" />
+<hkern u1="Y" u2="&#xec;" k="-47" />
+<hkern u1="Y" u2="&#xe9;" k="184" />
+<hkern u1="Y" u2="&#xe8;" k="147" />
+<hkern u1="Y" u2="&#xe4;" k="111" />
+<hkern u1="Y" u2="&#xe3;" k="104" />
+<hkern u1="Y" u2="&#xe0;" k="106" />
+<hkern u1="Y" u2="&#xb5;" k="209" />
+<hkern u1="Y" u2="y" k="184" />
+<hkern u1="Y" u2="e" k="178" />
+<hkern u1="Y" u2="b" k="2" />
+<hkern u1="Y" u2="W" k="10" />
+<hkern u1="Y" u2="M" k="29" />
+<hkern u1="Y" u2="&#x3b;" k="121" />
+<hkern u1="Y" u2="&#x3a;" k="121" />
+<hkern u1="Y" u2="&#x2c;" k="244" />
+<hkern u1="Z" u2="&#xef;" k="-14" />
+<hkern u1="Z" u2="&#xee;" k="-6" />
+<hkern u1="Z" u2="&#xec;" k="-16" />
+<hkern u1="Z" u2="y" k="104" />
+<hkern u1="Z" u2="W" k="20" />
+<hkern u1="[" u2="&#x153;" k="-100" />
+<hkern u1="[" u2="&#xfe;" k="-61" />
+<hkern u1="[" u2="&#xf8;" k="-100" />
+<hkern u1="[" u2="&#xf6;" k="-100" />
+<hkern u1="[" u2="&#xf5;" k="-100" />
+<hkern u1="[" u2="&#xf4;" k="-100" />
+<hkern u1="[" u2="&#xf3;" k="-100" />
+<hkern u1="[" u2="&#xf2;" k="-100" />
+<hkern u1="[" u2="&#xf0;" k="-100" />
+<hkern u1="[" u2="&#xeb;" k="-100" />
+<hkern u1="[" u2="&#xea;" k="-100" />
+<hkern u1="[" u2="&#xe9;" k="-100" />
+<hkern u1="[" u2="&#xe8;" k="-100" />
+<hkern u1="[" u2="&#xe7;" k="-100" />
+<hkern u1="[" u2="y" k="-41" />
+<hkern u1="[" u2="q" k="-100" />
+<hkern u1="[" u2="o" k="-100" />
+<hkern u1="[" u2="l" k="-61" />
+<hkern u1="[" u2="k" k="-61" />
+<hkern u1="[" u2="j" k="-100" />
+<hkern u1="[" u2="h" k="-61" />
+<hkern u1="[" u2="e" k="-100" />
+<hkern u1="[" u2="d" k="-100" />
+<hkern u1="[" u2="c" k="-100" />
+<hkern u1="[" u2="b" k="-61" />
+<hkern u1="[" u2="W" k="-61" />
+<hkern u1="[" u2="J" k="-90" />
+<hkern u1="[" u2="&#x3f;" k="-55" />
+<hkern u1="[" u2="&#x21;" k="16" />
+<hkern u1="a" u2="&#x2019;" k="61" />
+<hkern u1="a" u2="&#x2018;" k="162" />
+<hkern u1="a" u2="&#xff;" k="57" />
+<hkern u1="a" u2="&#xfd;" k="57" />
+<hkern u1="a" u2="y" k="47" />
+<hkern u1="a" u2="v" k="57" />
+<hkern u1="a" u2="&#x3f;" k="61" />
+<hkern u1="a" u2="&#x3b;" k="-10" />
+<hkern u1="a" u2="&#x2f;" k="-59" />
+<hkern u1="a" u2="&#x21;" k="-6" />
+<hkern u1="b" u2="&#x2018;" k="41" />
+<hkern u1="b" u2="&#xff;" k="20" />
+<hkern u1="b" u2="&#xfd;" k="20" />
+<hkern u1="b" u2="y" k="20" />
+<hkern u1="b" u2="v" k="20" />
+<hkern u1="b" u2="&#x3f;" k="78" />
+<hkern u1="d" u2="&#xec;" k="-20" />
+<hkern u1="d" u2="y" k="49" />
+<hkern u1="e" u2="y" k="23" />
+<hkern u1="e" u2="&#x3a;" k="-12" />
+<hkern u1="f" u2="&#x2018;" k="-182" />
+<hkern u1="f" u2="&#xef;" k="-217" />
+<hkern u1="f" u2="&#xee;" k="-156" />
+<hkern u1="f" u2="&#xec;" k="-174" />
+<hkern u1="f" u2="&#xe4;" k="-27" />
+<hkern u1="f" u2="y" k="-20" />
+<hkern u1="f" u2="l" k="-113" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="]" k="-227" />
+<hkern u1="f" u2="W" k="-225" />
+<hkern u1="f" u2="M" k="-100" />
+<hkern u1="f" u2="&#x3f;" k="-201" />
+<hkern u1="f" u2="&#x3a;" k="-25" />
+<hkern u1="f" u2="&#x2f;" k="-78" />
+<hkern u1="f" u2="&#x2c;" k="20" />
+<hkern u1="f" u2="&#x2a;" k="-182" />
+<hkern u1="f" u2="&#x27;" k="-203" />
+<hkern u1="f" u2="&#x22;" k="-203" />
+<hkern u1="f" u2="&#x21;" k="-102" />
+<hkern u1="f" u2="&#x20;" k="-63" />
+<hkern u1="g" u2="&#x2026;" k="18" />
+<hkern u1="g" u2="&#x201d;" k="-74" />
+<hkern u1="g" u2="&#x201c;" k="-23" />
+<hkern u1="g" u2="&#x2019;" k="-74" />
+<hkern u1="g" u2="&#x2018;" k="-23" />
+<hkern u1="g" u2="&#x153;" k="25" />
+<hkern u1="g" u2="&#xff;" k="-6" />
+<hkern u1="g" u2="&#xfd;" k="-6" />
+<hkern u1="g" u2="&#xfc;" k="-20" />
+<hkern u1="g" u2="&#xfb;" k="-20" />
+<hkern u1="g" u2="&#xfa;" k="-20" />
+<hkern u1="g" u2="&#xf9;" k="-20" />
+<hkern u1="g" u2="&#xf8;" k="25" />
+<hkern u1="g" u2="&#xf6;" k="25" />
+<hkern u1="g" u2="&#xf5;" k="25" />
+<hkern u1="g" u2="&#xf4;" k="25" />
+<hkern u1="g" u2="&#xf3;" k="25" />
+<hkern u1="g" u2="&#xf2;" k="25" />
+<hkern u1="g" u2="&#xf1;" k="12" />
+<hkern u1="g" u2="&#xf0;" k="25" />
+<hkern u1="g" u2="&#xeb;" k="25" />
+<hkern u1="g" u2="&#xea;" k="25" />
+<hkern u1="g" u2="&#xe9;" k="25" />
+<hkern u1="g" u2="&#xe8;" k="25" />
+<hkern u1="g" u2="&#xe7;" k="25" />
+<hkern u1="g" u2="&#x7d;" k="-51" />
+<hkern u1="g" u2="y" k="-6" />
+<hkern u1="g" u2="x" k="8" />
+<hkern u1="g" u2="w" k="16" />
+<hkern u1="g" u2="v" k="-6" />
+<hkern u1="g" u2="u" k="-20" />
+<hkern u1="g" u2="t" k="-10" />
+<hkern u1="g" u2="r" k="12" />
+<hkern u1="g" u2="q" k="25" />
+<hkern u1="g" u2="p" k="12" />
+<hkern u1="g" u2="o" k="25" />
+<hkern u1="g" u2="n" k="12" />
+<hkern u1="g" u2="m" k="12" />
+<hkern u1="g" u2="j" k="-29" />
+<hkern u1="g" u2="g" k="-12" />
+<hkern u1="g" u2="e" k="25" />
+<hkern u1="g" u2="d" k="25" />
+<hkern u1="g" u2="c" k="25" />
+<hkern u1="g" u2="]" k="-92" />
+<hkern u1="g" u2="&#x2e;" k="18" />
+<hkern u1="g" u2="&#x2c;" k="-41" />
+<hkern u1="g" u2="&#x29;" k="-51" />
+<hkern u1="h" u2="&#x2019;" k="61" />
+<hkern u1="h" u2="&#x2018;" k="162" />
+<hkern u1="h" u2="y" k="37" />
+<hkern u1="h" u2="&#x3f;" k="61" />
+<hkern u1="h" u2="&#x3b;" k="-10" />
+<hkern u1="h" u2="&#x2f;" k="-59" />
+<hkern u1="h" u2="&#x21;" k="-6" />
+<hkern u1="i" u2="y" k="20" />
+<hkern u1="k" u2="&#xb5;" k="25" />
+<hkern u1="k" u2="y" k="43" />
+<hkern u1="l" u2="&#xef;" k="-10" />
+<hkern u1="l" u2="&#xee;" k="-10" />
+<hkern u1="l" u2="&#xec;" k="-35" />
+<hkern u1="l" u2="y" k="35" />
+<hkern u1="l" u2="]" k="-61" />
+<hkern u1="l" u2="&#x3f;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-41" />
+<hkern u1="l" u2="&#x21;" k="-29" />
+<hkern u1="m" u2="&#x2019;" k="61" />
+<hkern u1="m" u2="&#x2018;" k="162" />
+<hkern u1="m" u2="y" k="37" />
+<hkern u1="m" u2="w" k="25" />
+<hkern u1="m" u2="&#x3f;" k="61" />
+<hkern u1="m" u2="&#x3b;" k="-10" />
+<hkern u1="m" u2="&#x2f;" k="-59" />
+<hkern u1="m" u2="&#x21;" k="-6" />
+<hkern u1="n" u2="&#x2019;" k="61" />
+<hkern u1="n" u2="&#x2018;" k="162" />
+<hkern u1="n" u2="y" k="37" />
+<hkern u1="n" u2="&#x3f;" k="61" />
+<hkern u1="n" u2="&#x3b;" k="-10" />
+<hkern u1="n" u2="&#x2f;" k="-59" />
+<hkern u1="n" u2="&#x21;" k="-6" />
+<hkern u1="o" u2="&#x2018;" k="41" />
+<hkern u1="o" u2="y" k="23" />
+<hkern u1="o" u2="&#x3f;" k="78" />
+<hkern u1="p" u2="&#x2018;" k="41" />
+<hkern u1="p" u2="y" k="23" />
+<hkern u1="p" u2="&#x3f;" k="78" />
+<hkern u1="q" u2="&#x2026;" k="33" />
+<hkern u1="q" u2="&#x153;" k="-8" />
+<hkern u1="q" u2="&#xff;" k="29" />
+<hkern u1="q" u2="&#xfd;" k="29" />
+<hkern u1="q" u2="&#xfc;" k="23" />
+<hkern u1="q" u2="&#xfb;" k="23" />
+<hkern u1="q" u2="&#xfa;" k="23" />
+<hkern u1="q" u2="&#xf9;" k="23" />
+<hkern u1="q" u2="&#xf8;" k="-8" />
+<hkern u1="q" u2="&#xf6;" k="-8" />
+<hkern u1="q" u2="&#xf5;" k="-8" />
+<hkern u1="q" u2="&#xf4;" k="-8" />
+<hkern u1="q" u2="&#xf3;" k="-8" />
+<hkern u1="q" u2="&#xf2;" k="-8" />
+<hkern u1="q" u2="&#xf0;" k="-8" />
+<hkern u1="q" u2="&#xeb;" k="-8" />
+<hkern u1="q" u2="&#xea;" k="-8" />
+<hkern u1="q" u2="&#xe9;" k="-8" />
+<hkern u1="q" u2="&#xe8;" k="-8" />
+<hkern u1="q" u2="&#xe7;" k="-8" />
+<hkern u1="q" u2="&#x7d;" k="-61" />
+<hkern u1="q" u2="y" k="29" />
+<hkern u1="q" u2="x" k="20" />
+<hkern u1="q" u2="w" k="29" />
+<hkern u1="q" u2="v" k="29" />
+<hkern u1="q" u2="u" k="23" />
+<hkern u1="q" u2="q" k="-8" />
+<hkern u1="q" u2="o" k="-8" />
+<hkern u1="q" u2="j" k="-121" />
+<hkern u1="q" u2="g" k="-16" />
+<hkern u1="q" u2="e" k="-8" />
+<hkern u1="q" u2="d" k="-8" />
+<hkern u1="q" u2="c" k="-8" />
+<hkern u1="q" u2="]" k="-61" />
+<hkern u1="q" u2="&#x2e;" k="33" />
+<hkern u1="q" u2="&#x2c;" k="33" />
+<hkern u1="q" u2="&#x29;" k="-61" />
+<hkern u1="r" g2="uniFB02" k="25" />
+<hkern u1="r" u2="&#x2019;" k="-41" />
+<hkern u1="r" u2="y" k="-6" />
+<hkern u1="r" u2="&#x3b;" k="-18" />
+<hkern u1="r" u2="&#x2c;" k="102" />
+<hkern u1="s" u2="y" k="45" />
+<hkern u1="t" u2="y" k="20" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="u" u2="y" k="57" />
+<hkern u1="u" u2="&#x2c;" k="-20" />
+<hkern u1="v" u2="&#x2019;" k="-61" />
+<hkern u1="v" u2="&#x2c;" k="197" />
+<hkern u1="w" u2="p" k="6" />
+<hkern u1="w" u2="m" k="23" />
+<hkern u1="w" u2="&#x2c;" k="190" />
+<hkern u1="x" u2="&#x2026;" k="-20" />
+<hkern u1="x" u2="&#x153;" k="23" />
+<hkern u1="x" u2="&#xfc;" k="12" />
+<hkern u1="x" u2="&#xfb;" k="12" />
+<hkern u1="x" u2="&#xfa;" k="12" />
+<hkern u1="x" u2="&#xf9;" k="12" />
+<hkern u1="x" u2="&#xf8;" k="23" />
+<hkern u1="x" u2="&#xf6;" k="23" />
+<hkern u1="x" u2="&#xf5;" k="23" />
+<hkern u1="x" u2="&#xf4;" k="23" />
+<hkern u1="x" u2="&#xf3;" k="23" />
+<hkern u1="x" u2="&#xf2;" k="23" />
+<hkern u1="x" u2="&#xf0;" k="23" />
+<hkern u1="x" u2="&#xeb;" k="23" />
+<hkern u1="x" u2="&#xea;" k="23" />
+<hkern u1="x" u2="&#xe9;" k="23" />
+<hkern u1="x" u2="&#xe8;" k="23" />
+<hkern u1="x" u2="&#xe7;" k="23" />
+<hkern u1="x" u2="y" k="20" />
+<hkern u1="x" u2="u" k="12" />
+<hkern u1="x" u2="q" k="23" />
+<hkern u1="x" u2="o" k="23" />
+<hkern u1="x" u2="e" k="23" />
+<hkern u1="x" u2="d" k="23" />
+<hkern u1="x" u2="c" k="23" />
+<hkern u1="x" u2="&#x2e;" k="-20" />
+<hkern u1="x" u2="&#x2c;" k="-20" />
+<hkern u1="y" u2="&#x2019;" k="-61" />
+<hkern u1="y" u2="&#xe6;" k="39" />
+<hkern u1="y" u2="&#xe5;" k="39" />
+<hkern u1="y" u2="&#xe4;" k="39" />
+<hkern u1="y" u2="&#xe3;" k="39" />
+<hkern u1="y" u2="&#xe2;" k="39" />
+<hkern u1="y" u2="&#xe1;" k="39" />
+<hkern u1="y" u2="&#xe0;" k="39" />
+<hkern u1="y" u2="c" k="25" />
+<hkern u1="y" u2="a" k="39" />
+<hkern u1="y" u2="&#x2c;" k="197" />
+<hkern u1="z" u2="y" k="37" />
+<hkern u1="&#x7b;" u2="y" k="-41" />
+<hkern u1="&#x7b;" u2="W" k="-61" />
+<hkern u1="&#x7b;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x7b;" u2="&#x21;" k="16" />
+<hkern u1="&#x7c;" u2="J" k="-82" />
+<hkern u1="&#xa1;" u2="&#x178;" k="170" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="170" />
+<hkern u1="&#xa1;" u2="Y" k="170" />
+<hkern u1="&#xa1;" u2="W" k="123" />
+<hkern u1="&#xa1;" u2="V" k="147" />
+<hkern u1="&#xa1;" u2="T" k="109" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-72" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-100" />
+<hkern u1="&#xab;" u2="&#x2014;" k="-82" />
+<hkern u1="&#xab;" u2="&#x2013;" k="-82" />
+<hkern u1="&#xab;" u2="W" k="141" />
+<hkern u1="&#xab;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xab;" u2="&#x3a;" k="-23" />
+<hkern u1="&#xab;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xb5;" u2="y" k="57" />
+<hkern u1="&#xb5;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x2014;" k="-121" />
+<hkern u1="&#xbb;" u2="&#x2013;" k="-121" />
+<hkern u1="&#xbb;" u2="W" k="102" />
+<hkern u1="&#xbb;" u2="M" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xbf;" u2="T" k="127" />
+<hkern u1="&#xbf;" u2="S" k="43" />
+<hkern u1="&#xc0;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc0;" u2="W" k="156" />
+<hkern u1="&#xc0;" u2="G" k="47" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc1;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc1;" u2="W" k="156" />
+<hkern u1="&#xc1;" u2="G" k="47" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc2;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc2;" u2="W" k="156" />
+<hkern u1="&#xc2;" u2="G" k="47" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc3;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc3;" u2="W" k="156" />
+<hkern u1="&#xc3;" u2="G" k="47" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc4;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc4;" u2="W" k="156" />
+<hkern u1="&#xc4;" u2="G" k="47" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc5;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc5;" u2="W" k="156" />
+<hkern u1="&#xc5;" u2="G" k="47" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc6;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc6;" u2="y" k="61" />
+<hkern u1="&#xc6;" u2="W" k="74" />
+<hkern u1="&#xc7;" u2="&#xef;" k="-16" />
+<hkern u1="&#xc7;" u2="&#xee;" k="-43" />
+<hkern u1="&#xc7;" u2="&#xec;" k="8" />
+<hkern u1="&#xc7;" u2="y" k="66" />
+<hkern u1="&#xc7;" u2="e" k="37" />
+<hkern u1="&#xc7;" u2="d" k="51" />
+<hkern u1="&#xc7;" u2="W" k="43" />
+<hkern u1="&#xc7;" u2="C" k="41" />
+<hkern u1="&#xc8;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc8;" u2="y" k="61" />
+<hkern u1="&#xc8;" u2="W" k="74" />
+<hkern u1="&#xc9;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc9;" u2="y" k="61" />
+<hkern u1="&#xc9;" u2="W" k="74" />
+<hkern u1="&#xca;" u2="&#xb5;" k="20" />
+<hkern u1="&#xca;" u2="y" k="61" />
+<hkern u1="&#xca;" u2="W" k="74" />
+<hkern u1="&#xcb;" u2="&#xb5;" k="20" />
+<hkern u1="&#xcb;" u2="y" k="61" />
+<hkern u1="&#xcb;" u2="W" k="74" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcc;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-12" />
+<hkern u1="&#xce;" u2="&#xee;" k="-18" />
+<hkern u1="&#xce;" u2="&#xec;" k="-18" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcf;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd0;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="W" k="72" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd1;" u2="&#xee;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd2;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="W" k="72" />
+<hkern u1="&#xd3;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd3;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd3;" u2="W" k="72" />
+<hkern u1="&#xd4;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd4;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd4;" u2="W" k="72" />
+<hkern u1="&#xd5;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd5;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd5;" u2="W" k="72" />
+<hkern u1="&#xd6;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd6;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd6;" u2="W" k="72" />
+<hkern u1="&#xd8;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd8;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd8;" u2="W" k="72" />
+<hkern u1="&#xd9;" u2="&#xf1;" k="43" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-18" />
+<hkern u1="&#xd9;" u2="&#xee;" k="-10" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-37" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd9;" u2="y" k="25" />
+<hkern u1="&#xda;" u2="&#xf1;" k="43" />
+<hkern u1="&#xda;" u2="&#xef;" k="-18" />
+<hkern u1="&#xda;" u2="&#xee;" k="-10" />
+<hkern u1="&#xda;" u2="&#xec;" k="-37" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xda;" u2="y" k="25" />
+<hkern u1="&#xdb;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdb;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdb;" u2="y" k="25" />
+<hkern u1="&#xdc;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdc;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdc;" u2="y" k="25" />
+<hkern u1="&#xdd;" u2="&#x203a;" k="100" />
+<hkern u1="&#xdd;" u2="&#x2039;" k="102" />
+<hkern u1="&#xdd;" u2="&#xf5;" k="205" />
+<hkern u1="&#xdd;" u2="&#xf2;" k="188" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-37" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="129" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-47" />
+<hkern u1="&#xdd;" u2="&#xe9;" k="184" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="147" />
+<hkern u1="&#xdd;" u2="&#xe4;" k="111" />
+<hkern u1="&#xdd;" u2="&#xe3;" k="104" />
+<hkern u1="&#xdd;" u2="&#xe0;" k="106" />
+<hkern u1="&#xdd;" u2="&#xb5;" k="209" />
+<hkern u1="&#xdd;" u2="y" k="184" />
+<hkern u1="&#xdd;" u2="e" k="178" />
+<hkern u1="&#xdd;" u2="b" k="2" />
+<hkern u1="&#xdd;" u2="W" k="10" />
+<hkern u1="&#xdd;" u2="M" k="29" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="121" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="121" />
+<hkern u1="&#xdd;" u2="&#x2c;" k="244" />
+<hkern u1="&#xde;" u2="&#xef;" k="-10" />
+<hkern u1="&#xde;" u2="&#xee;" k="-6" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xde;" u2="W" k="72" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-18" />
+<hkern u1="&#xe0;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe0;" u2="y" k="37" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe0;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe1;" u2="y" k="37" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe2;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe2;" u2="y" k="37" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe2;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe3;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe3;" u2="y" k="37" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe3;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe4;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe4;" u2="y" k="37" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe4;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe5;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe5;" u2="y" k="37" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe5;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe6;" u2="y" k="23" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xe8;" u2="y" k="23" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xe9;" u2="y" k="23" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xea;" u2="y" k="23" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xeb;" u2="y" k="23" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xec;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="k" k="-20" />
+<hkern u1="&#xee;" u2="y" k="20" />
+<hkern u1="&#xee;" u2="k" k="-20" />
+<hkern u1="&#xef;" u2="y" k="20" />
+<hkern u1="&#xf1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xf1;" u2="y" k="37" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xf1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xf2;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf2;" u2="y" k="23" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf3;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf3;" u2="y" k="23" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf4;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf4;" u2="y" k="23" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf5;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf5;" u2="y" k="23" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf6;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf6;" u2="y" k="23" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf8;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf8;" u2="y" k="23" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf9;" u2="y" k="57" />
+<hkern u1="&#xf9;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfa;" u2="y" k="57" />
+<hkern u1="&#xfa;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfb;" u2="y" k="57" />
+<hkern u1="&#xfb;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfc;" u2="y" k="57" />
+<hkern u1="&#xfc;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfd;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xfd;" u2="&#x2c;" k="197" />
+<hkern u1="&#xfe;" u2="&#x2018;" k="41" />
+<hkern u1="&#xfe;" u2="y" k="23" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="78" />
+<hkern u1="&#xff;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xff;" u2="&#x2c;" k="197" />
+<hkern u1="&#x152;" u2="&#xb5;" k="20" />
+<hkern u1="&#x152;" u2="y" k="61" />
+<hkern u1="&#x152;" u2="W" k="74" />
+<hkern u1="&#x153;" u2="y" k="23" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-12" />
+<hkern u1="&#x178;" u2="&#x203a;" k="100" />
+<hkern u1="&#x178;" u2="&#x2039;" k="102" />
+<hkern u1="&#x178;" u2="&#xf5;" k="205" />
+<hkern u1="&#x178;" u2="&#xf2;" k="188" />
+<hkern u1="&#x178;" u2="&#xef;" k="-37" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="129" />
+<hkern u1="&#x178;" u2="&#xec;" k="-47" />
+<hkern u1="&#x178;" u2="&#xe9;" k="184" />
+<hkern u1="&#x178;" u2="&#xe8;" k="147" />
+<hkern u1="&#x178;" u2="&#xe4;" k="111" />
+<hkern u1="&#x178;" u2="&#xe3;" k="104" />
+<hkern u1="&#x178;" u2="&#xe0;" k="106" />
+<hkern u1="&#x178;" u2="&#xb5;" k="209" />
+<hkern u1="&#x178;" u2="y" k="184" />
+<hkern u1="&#x178;" u2="e" k="178" />
+<hkern u1="&#x178;" u2="b" k="2" />
+<hkern u1="&#x178;" u2="W" k="10" />
+<hkern u1="&#x178;" u2="M" k="29" />
+<hkern u1="&#x178;" u2="&#x3b;" k="121" />
+<hkern u1="&#x178;" u2="&#x3a;" k="121" />
+<hkern u1="&#x178;" u2="&#x2c;" k="244" />
+<hkern u1="&#x2013;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2013;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2013;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2013;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2013;" u2="W" k="102" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-100" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-61" />
+<hkern u1="&#x2014;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2014;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2014;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2014;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2014;" u2="W" k="102" />
+<hkern u1="&#x2014;" u2="&#x33;" k="145" />
+<hkern u1="&#x2018;" u2="&#xc5;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc4;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc3;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc2;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc1;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc0;" k="217" />
+<hkern u1="&#x2018;" u2="W" k="-72" />
+<hkern u1="&#x2018;" u2="V" k="-37" />
+<hkern u1="&#x2018;" u2="A" k="217" />
+<hkern u1="&#x2018;" u2="&#x2c;" k="170" />
+<hkern u1="&#x2019;" u2="s" k="43" />
+<hkern u1="&#x201a;" u2="&#x178;" k="223" />
+<hkern u1="&#x201a;" u2="&#x153;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf6;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf5;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf4;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf3;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf2;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf0;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xeb;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xea;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe9;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe7;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xdd;" k="223" />
+<hkern u1="&#x201a;" u2="q" k="-86" />
+<hkern u1="&#x201a;" u2="o" k="-86" />
+<hkern u1="&#x201a;" u2="j" k="-63" />
+<hkern u1="&#x201a;" u2="e" k="-86" />
+<hkern u1="&#x201a;" u2="d" k="-86" />
+<hkern u1="&#x201a;" u2="c" k="-86" />
+<hkern u1="&#x201a;" u2="Y" k="223" />
+<hkern u1="&#x201a;" u2="W" k="180" />
+<hkern u1="&#x201a;" u2="V" k="264" />
+<hkern u1="&#x201a;" u2="T" k="168" />
+<hkern u1="&#x201a;" u2="J" k="-104" />
+<hkern u1="&#x201c;" u2="W" k="-72" />
+<hkern u1="&#x201c;" u2="&#x2c;" k="170" />
+<hkern u1="&#x201e;" u2="W" k="262" />
+<hkern u1="&#x2039;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x153;" k="-41" />
+<hkern u1="&#x2039;" u2="&#x152;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf0;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xeb;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xea;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe9;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe6;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe5;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe4;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe3;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe2;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe1;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe0;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc1;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc0;" k="-41" />
+<hkern u1="&#x2039;" u2="s" k="-20" />
+<hkern u1="&#x2039;" u2="q" k="-41" />
+<hkern u1="&#x2039;" u2="o" k="-41" />
+<hkern u1="&#x2039;" u2="e" k="-41" />
+<hkern u1="&#x2039;" u2="d" k="-41" />
+<hkern u1="&#x2039;" u2="c" k="-41" />
+<hkern u1="&#x2039;" u2="a" k="-25" />
+<hkern u1="&#x2039;" u2="W" k="141" />
+<hkern u1="&#x2039;" u2="Q" k="-41" />
+<hkern u1="&#x2039;" u2="O" k="-41" />
+<hkern u1="&#x2039;" u2="M" k="-41" />
+<hkern u1="&#x2039;" u2="J" k="-82" />
+<hkern u1="&#x2039;" u2="G" k="-41" />
+<hkern u1="&#x2039;" u2="C" k="-41" />
+<hkern u1="&#x2039;" u2="A" k="-41" />
+<hkern u1="&#x2039;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x2039;" u2="&#x3a;" k="-23" />
+<hkern u1="&#x2039;" u2="&#x2c;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x153;" k="-27" />
+<hkern u1="&#x203a;" u2="&#x152;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xf8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf6;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf5;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf4;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf3;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf2;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf0;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xeb;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xea;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe9;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe7;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x203a;" u2="q" k="-27" />
+<hkern u1="&#x203a;" u2="o" k="-27" />
+<hkern u1="&#x203a;" u2="e" k="-27" />
+<hkern u1="&#x203a;" u2="d" k="-47" />
+<hkern u1="&#x203a;" u2="c" k="-27" />
+<hkern u1="&#x203a;" u2="W" k="102" />
+<hkern u1="&#x203a;" u2="Q" k="-41" />
+<hkern u1="&#x203a;" u2="O" k="-41" />
+<hkern u1="&#x203a;" u2="M" k="-20" />
+<hkern u1="&#x203a;" u2="G" k="-41" />
+<hkern u1="&#x203a;" u2="C" k="-41" />
+<hkern u1="&#x203a;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x3a;" k="-20" />
+<hkern g1="uniFB01" u2="y" k="20" />
+<hkern g1="uniFB02" u2="&#xef;" k="-10" />
+<hkern g1="uniFB02" u2="&#xee;" k="-10" />
+<hkern g1="uniFB02" u2="&#xec;" k="-35" />
+<hkern g1="uniFB02" u2="y" k="35" />
+<hkern g1="uniFB02" u2="]" k="-61" />
+<hkern g1="uniFB02" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB02" u2="&#x21;" k="-29" />
+<hkern g1="uniFB03" u2="y" k="20" />
+<hkern g1="uniFB04" u2="&#xef;" k="-10" />
+<hkern g1="uniFB04" u2="&#xee;" k="-10" />
+<hkern g1="uniFB04" u2="&#xec;" k="-35" />
+<hkern g1="uniFB04" u2="y" k="35" />
+<hkern g1="uniFB04" u2="]" k="-61" />
+<hkern g1="uniFB04" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB04" u2="&#x21;" k="-29" />
+<hkern g1="d" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-10" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="d" 	g2="x" 	k="2" />
+<hkern g1="d" 	g2="w" 	k="31" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-20" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-23" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="61" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="w" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-45" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-27" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="61" />
+<hkern g1="f" 	g2="T" 	k="-205" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-121" />
+<hkern g1="f" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-33" />
+<hkern g1="f" 	g2="v,y,yacute,ydieresis" 	k="-6" />
+<hkern g1="f" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-184" />
+<hkern g1="f" 	g2="w" 	k="-6" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-291" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-209" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-162" />
+<hkern g1="f" 	g2="S" 	k="-41" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-193" />
+<hkern g1="f" 	g2="V" 	k="-231" />
+<hkern g1="f" 	g2="X" 	k="-162" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-223" />
+<hkern g1="f" 	g2="Z" 	k="-82" />
+<hkern g1="f" 	g2="j" 	k="-88" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-68" />
+<hkern g1="f" 	g2="t" 	k="-20" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="w" 	k="25" />
+<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
+<hkern g1="k" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
+<hkern g1="k" 	g2="s" 	k="10" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="k" 	g2="w" 	k="43" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-18" />
+<hkern g1="k" 	g2="j" 	k="4" />
+<hkern g1="k" 	g2="t" 	k="27" />
+<hkern g1="k" 	g2="g" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-16" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteleft,quotedblleft" 	k="53" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="w" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-6" />
+<hkern g1="j" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="j" 	g2="j" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="39" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="145" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="45" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="g" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="25" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="w" 	k="31" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="33" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="80" />
+<hkern g1="r" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
+<hkern g1="r" 	g2="s" 	k="10" />
+<hkern g1="r" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-4" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="r" 	g2="x" 	k="8" />
+<hkern g1="r" 	g2="w" 	k="-23" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="102" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="r" 	g2="j" 	k="-37" />
+<hkern g1="r" 	g2="t" 	k="-20" />
+<hkern g1="r" 	g2="g" 	k="55" />
+<hkern g1="r" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="r" 	g2="z" 	k="23" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="18" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="29" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="12" />
+<hkern g1="s" 	g2="x" 	k="23" />
+<hkern g1="s" 	g2="w" 	k="25" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-47" />
+<hkern g1="t" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-8" />
+<hkern g1="t" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="t" 	g2="x" 	k="-18" />
+<hkern g1="t" 	g2="w" 	k="20" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="t" 	g2="z" 	k="-6" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="70" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="w" 	k="14" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="29" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="v,y,yacute,ydieresis" 	k="-10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="-37" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="w" 	k="-18" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="217" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="-43" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="14" />
+<hkern g1="w" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="w" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
+<hkern g1="w" 	g2="s" 	k="29" />
+<hkern g1="w" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="w" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="w" 	g2="w" 	k="-20" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="141" />
+<hkern g1="w" 	g2="quoteright,quotedblright" 	k="-49" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="z" 	k="18" />
+<hkern g1="z" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="182" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="27" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="80" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="223" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-43" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="205" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="76" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="193" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="8" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="170" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="AE" 	k="29" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-16" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-43" />
+<hkern g1="B" 	g2="T" 	k="51" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="x" 	k="4" />
+<hkern g1="B" 	g2="w" 	k="31" />
+<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
+<hkern g1="B" 	g2="V" 	k="63" />
+<hkern g1="B" 	g2="X" 	k="37" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="B" 	g2="Z" 	k="25" />
+<hkern g1="B" 	g2="g" 	k="6" />
+<hkern g1="B" 	g2="J" 	k="41" />
+<hkern g1="B" 	g2="AE" 	k="92" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="quoteleft,quotedblleft" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="comma,period,ellipsis" 	k="16" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-16" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="80" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="J" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="80" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="37" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="G" 	g2="T" 	k="61" />
+<hkern g1="G" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="G" 	g2="x" 	k="4" />
+<hkern g1="G" 	g2="w" 	k="41" />
+<hkern g1="G" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="G" 	g2="S" 	k="2" />
+<hkern g1="G" 	g2="V" 	k="43" />
+<hkern g1="G" 	g2="X" 	k="49" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="G" 	g2="Z" 	k="14" />
+<hkern g1="G" 	g2="J" 	k="2" />
+<hkern g1="G" 	g2="AE" 	k="61" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="T" 	k="16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-45" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteright,quotedblright" 	k="-33" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="V" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="J" 	k="4" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="29" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
+<hkern g1="K" 	g2="T" 	k="49" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="70" />
+<hkern g1="K" 	g2="s" 	k="25" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="109" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="43" />
+<hkern g1="K" 	g2="w" 	k="102" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
+<hkern g1="K" 	g2="S" 	k="66" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
+<hkern g1="K" 	g2="V" 	k="31" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="K" 	g2="j" 	k="25" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="82" />
+<hkern g1="K" 	g2="g" 	k="59" />
+<hkern g1="K" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="41" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="K" 	g2="AE" 	k="12" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
+<hkern g1="L" 	g2="T" 	k="221" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="L" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="L" 	g2="w" 	k="94" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="53" />
+<hkern g1="L" 	g2="S" 	k="31" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="121" />
+<hkern g1="L" 	g2="V" 	k="233" />
+<hkern g1="L" 	g2="X" 	k="53" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="227" />
+<hkern g1="L" 	g2="Z" 	k="10" />
+<hkern g1="L" 	g2="j" 	k="20" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="L" 	g2="t" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="47" />
+<hkern g1="L" 	g2="z" 	k="6" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="59" />
+<hkern g1="L" 	g2="J" 	k="39" />
+<hkern g1="L" 	g2="AE" 	k="49" />
+<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="18" />
+<hkern g1="M" 	g2="T" 	k="43" />
+<hkern g1="M" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="M" 	g2="x" 	k="20" />
+<hkern g1="M" 	g2="w" 	k="41" />
+<hkern g1="M" 	g2="V" 	k="18" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="29" />
+<hkern g1="M" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-14" />
+<hkern g1="M" 	g2="g" 	k="8" />
+<hkern g1="M" 	g2="J" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="20" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-86" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,ellipsis" 	k="-2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="S" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="31" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="-78" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="102" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
+<hkern g1="P" 	g2="T" 	k="25" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="113" />
+<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="98" />
+<hkern g1="P" 	g2="s" 	k="109" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="2" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="49" />
+<hkern g1="P" 	g2="x" 	k="45" />
+<hkern g1="P" 	g2="w" 	k="6" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="301" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="S" 	k="23" />
+<hkern g1="P" 	g2="V" 	k="41" />
+<hkern g1="P" 	g2="X" 	k="61" />
+<hkern g1="P" 	g2="Z" 	k="66" />
+<hkern g1="P" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="z" 	k="6" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
+<hkern g1="P" 	g2="J" 	k="2" />
+<hkern g1="P" 	g2="AE" 	k="227" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="207" />
+<hkern g1="R" 	g2="T" 	k="98" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="R" 	g2="x" 	k="-41" />
+<hkern g1="R" 	g2="w" 	k="53" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="R" 	g2="S" 	k="31" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
+<hkern g1="R" 	g2="V" 	k="86" />
+<hkern g1="R" 	g2="X" 	k="16" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="R" 	g2="Z" 	k="-12" />
+<hkern g1="R" 	g2="g" 	k="4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="R" 	g2="J" 	k="37" />
+<hkern g1="R" 	g2="AE" 	k="20" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="S" 	g2="T" 	k="20" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="39" />
+<hkern g1="S" 	g2="x" 	k="61" />
+<hkern g1="S" 	g2="w" 	k="33" />
+<hkern g1="S" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="20" />
+<hkern g1="S" 	g2="V" 	k="35" />
+<hkern g1="S" 	g2="X" 	k="25" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="S" 	g2="J" 	k="41" />
+<hkern g1="S" 	g2="AE" 	k="80" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="186" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="162" />
+<hkern g1="T" 	g2="s" 	k="176" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="121" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="111" />
+<hkern g1="T" 	g2="quoteleft,quotedblleft" 	k="-100" />
+<hkern g1="T" 	g2="x" 	k="92" />
+<hkern g1="T" 	g2="w" 	k="100" />
+<hkern g1="T" 	g2="parenright,bracketright,braceright" 	k="-25" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="-8" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="170" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-31" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="T" 	g2="S" 	k="51" />
+<hkern g1="T" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
+<hkern g1="T" 	g2="V" 	k="12" />
+<hkern g1="T" 	g2="X" 	k="68" />
+<hkern g1="T" 	g2="Z" 	k="35" />
+<hkern g1="T" 	g2="j" 	k="74" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="94" />
+<hkern g1="T" 	g2="t" 	k="102" />
+<hkern g1="T" 	g2="g" 	k="166" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="T" 	g2="z" 	k="141" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="76" />
+<hkern g1="T" 	g2="J" 	k="20" />
+<hkern g1="T" 	g2="AE" 	k="213" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="180" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="T" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,l,thorn" 	k="-16" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Z" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="121" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="74" />
+<hkern g1="V,W" 	g2="T" 	k="14" />
+<hkern g1="V,W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="170" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="6" />
+<hkern g1="V,W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="141" />
+<hkern g1="V,W" 	g2="s" 	k="172" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="100" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="137" />
+<hkern g1="V,W" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="V,W" 	g2="x" 	k="182" />
+<hkern g1="V,W" 	g2="w" 	k="121" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="137" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="121" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="S" 	k="35" />
+<hkern g1="V,W" 	g2="X" 	k="20" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="-12" />
+<hkern g1="V,W" 	g2="Z" 	k="20" />
+<hkern g1="V,W" 	g2="j" 	k="10" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="V,W" 	g2="t" 	k="82" />
+<hkern g1="V,W" 	g2="g" 	k="145" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="100" />
+<hkern g1="V,W" 	g2="z" 	k="106" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="72" />
+<hkern g1="V,W" 	g2="J" 	k="61" />
+<hkern g1="V,W" 	g2="AE" 	k="244" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="207" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="186" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="172" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="141" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="143" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="160" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="203" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-39" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="96" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="29" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="106" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="139" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="109" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="154" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="236" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="195" />
+<hkern g1="X" 	g2="T" 	k="45" />
+<hkern g1="X" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="-10" />
+<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="X" 	g2="s" 	k="35" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="51" />
+<hkern g1="X" 	g2="x" 	k="-16" />
+<hkern g1="X" 	g2="w" 	k="111" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="4" />
+<hkern g1="X" 	g2="S" 	k="18" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
+<hkern g1="X" 	g2="V" 	k="20" />
+<hkern g1="X" 	g2="X" 	k="-33" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="X" 	g2="j" 	k="8" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="18" />
+<hkern g1="X" 	g2="t" 	k="55" />
+<hkern g1="X" 	g2="g" 	k="25" />
+<hkern g1="X" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="88" />
+<hkern g1="X" 	g2="AE" 	k="41" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="18" />
+<hkern g1="Z" 	g2="T" 	k="23" />
+<hkern g1="Z" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="Z" 	g2="s" 	k="41" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="98" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="41" />
+<hkern g1="Z" 	g2="x" 	k="31" />
+<hkern g1="Z" 	g2="w" 	k="92" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-6" />
+<hkern g1="Z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="Z" 	g2="V" 	k="25" />
+<hkern g1="Z" 	g2="X" 	k="8" />
+<hkern g1="Z" 	g2="j" 	k="10" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
+<hkern g1="Z" 	g2="t" 	k="20" />
+<hkern g1="Z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Z" 	g2="z" 	k="37" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
+<hkern g1="Z" 	g2="J" 	k="18" />
+<hkern g1="Z" 	g2="AE" 	k="43" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="82" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-45" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="121" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotright,guilsinglright" 	g2="s" 	k="-14" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="141" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-8" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-84" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-39" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="174" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="-23" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="w" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,ellipsis" 	k="213" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-29" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-86" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-6" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-57" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="252" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="147" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="152" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="213" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="139" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="346" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="209" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-90" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-45" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-63" />
+<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="V" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-49" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-117" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..64b8d8b268f3a4f0af13c27eaf61202b981beb38
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.woff
new file mode 100755
index 0000000000000000000000000000000000000000..2c92dcff06e25b0148852d8d9a3eb1bd933e3acf
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBol.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.eot
new file mode 100755
index 0000000000000000000000000000000000000000..0007fd8dfe6e773bb9bb48a0d3dc09fbf449063b
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.svg
new file mode 100755
index 0000000000000000000000000000000000000000..a592db505a572ea9d8c361a9725b56b3412460bb
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.svg
@@ -0,0 +1,1511 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-bolditalicregular" horiz-adv-x="1239" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1323" d="M-342 -430q0 70 33 192h149q0 -71 16 -97.5t70 -26.5q56 0 94 47q39 47 64 196l147 852h-168l29 158q87 13 129 41q22 13 35 39t27 82q39 143 102 228.5t150 137.5q130 78 352 78q57 0 122.5 -10t102.5 -27q33 -14 51.5 -44.5t18.5 -72.5q0 -86 -41 -221h-180 q0 53 -5.5 85t-25.5 50q-30 23 -99 23q-107 0 -163 -53q-63 -57 -97 -232l-16 -80h334q82 39 168 39q71 0 103 -22.5t32 -97.5q0 -27 -5 -61.5t-10.5 -60.5t-15.5 -68.5t-14 -63.5l-37 -158q-33 -148 -33 -172q0 -36 16.5 -50t51.5 -14q40 0 110 19l-38 -170 q-63 -27 -141.5 -40t-133.5 -13q-180 0 -180 139q0 54 29 180l51 227q22 90 22 138q0 11 -1.5 20t-6.5 15.5t-9 11t-13.5 7.5t-14.5 4.5t-18 2t-19 0.5h-21.5h-21.5h-217l-157 -821q-31 -163 -78.5 -253t-126.5 -147q-110 -77 -275 -77q-97 0 -166 34q-30 14 -45.5 43.5 t-15.5 63.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1335" d="M-342 -430q0 70 33 192h149q0 -72 15.5 -98t70.5 -26q59 0 94 47q39 47 64 196l147 852h-168l31 158q84 13 127 41q23 13 36.5 39t27.5 80q38 145 95.5 231.5t139.5 134.5q131 80 318 80q110 0 219 -33q68 33 141 33q68 0 98.5 -28.5t30.5 -92.5q0 -53 -49 -278 l-152 -676q-30 -131 -30 -172q0 -36 15 -50t50 -14q45 0 115 19l-39 -170q-65 -28 -142.5 -40.5t-133.5 -12.5q-181 0 -181 139q0 38 29 176l149 688q27 128 27 186q0 113 -141 113q-72 0 -114.5 -15t-72.5 -48q-51 -58 -79 -201l-21 -100q115 0 227 -7l-30 -180 q-123 -6 -232 -6l-157 -817q-31 -163 -80 -254.5t-129 -149.5q-110 -77 -271 -77q-97 0 -166 34q-30 14 -45.5 43.5t-15.5 63.5z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="2021" d="M-340 -422q0 68 33 193h149q0 -73 15.5 -100t68.5 -27q26 0 53 13t44 36q38 50 63 194l145 846h-168l29 158q87 13 129 41q22 13 35 38.5t27 80.5q39 141 89 217.5t130 122.5q62 36 120.5 50.5t141.5 14.5q30 0 72.5 -7t70.5 -17q80 -31 80 -117q0 -59 -31 -205h-141 q0 98 -31 117q-17 12 -57 12q-52 0 -88 -39q-24 -27 -40.5 -77t-31.5 -142l-14 -74h238q70 0 106 11.5t56.5 40.5t37.5 92q41 146 100 232.5t142 135.5q130 78 350 78q58 0 124 -9.5t103 -27.5q33 -14 51.5 -44.5t18.5 -72.5q0 -86 -41 -221h-178q0 39 -2 68q-3 45 -31 67 q-26 23 -96 23q-110 0 -166 -53q-62 -56 -96 -232l-17 -80h334q89 39 168 39q71 0 103 -22.5t32 -97.5q0 -68 -43 -248l-39 -164q-32 -144 -32 -172q0 -36 15.5 -50t51.5 -14q41 0 111 19l-37 -170q-63 -28 -141.5 -40.5t-135.5 -12.5q-180 0 -180 139q0 50 29 176l53 231 q23 94 23 138q0 11 -2 20t-7 15.5t-9 11t-13.5 7t-15 4.5t-18.5 2.5t-19 0.5h-22h-21h-217l-148 -770q-28 -152 -75 -242t-121 -147q-115 -88 -267 -88q-87 0 -166 35q-61 30 -61 106q0 69 31 184h135q0 -69 16.5 -93.5t69.5 -24.5q60 0 94 49q41 61 64 194l137 803h-408 l-155 -819q-29 -153 -75 -242.5t-122 -146.5q-117 -88 -281 -88q-99 0 -164 33t-65 108z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="2031" d="M-340 -422q0 68 33 193h149q0 -73 15.5 -100t68.5 -27q26 0 53 13t44 36q38 50 63 194l145 846h-168l29 158q87 13 129 41q22 13 35 38.5t27 80.5q39 142 89 219t130 123q62 36 120 49.5t142 13.5q76 0 143 -24q80 -31 80 -117q0 -59 -31 -205h-141q0 98 -31 117 q-17 12 -57 12q-55 0 -88 -39q-23 -28 -40.5 -77.5t-33.5 -147.5l-10 -68h238q100 0 137 27t61 117q38 145 96 230.5t140 133.5q141 82 309 82q110 0 219 -33q64 33 141 33q68 0 97.5 -28.5t29.5 -92.5q0 -53 -49 -278l-147 -676q-33 -144 -33 -172q0 -36 15.5 -50t50.5 -14 q42 0 112 19l-37 -170q-64 -28 -142.5 -40.5t-133.5 -12.5q-180 0 -180 139q0 43 28 176l150 688q27 128 29 186q0 37 -27 72q-27 41 -117 41q-71 0 -112.5 -15t-73.5 -48q-50 -56 -80 -201l-21 -100q116 0 228 -7l-33 -180q-120 -6 -229 -6l-148 -770q-29 -156 -72 -243.5 t-118 -147.5q-106 -86 -273 -86q-87 0 -166 35q-61 30 -61 106q0 69 31 184h135q0 -69 16.5 -93.5t69.5 -24.5q60 0 94 49q41 61 64 194l137 803h-408l-155 -819q-29 -153 -75 -242.5t-122 -146.5q-117 -88 -281 -88q-99 0 -164 33t-65 108z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="622" d="M135 141q0 70 49 122t123 52q71 0 115.5 -42t44.5 -109q0 -84 -47.5 -133t-130.5 -49q-69 0 -111.5 43.5t-42.5 115.5zM279 461q36 717 53 825q23 160 190 160q74 0 114 -33t40 -86q0 -40 -12 -90q-21 -73 -256 -776h-129z" />
+<glyph unicode="&#x22;" horiz-adv-x="714" d="M209 852q15 433 29 494q21 110 133 110q104 0 104 -90q0 -24 -12 -74q-25 -92 -154 -440h-100zM551 852q15 432 27 494q12 56 44.5 83t90.5 27q56 0 81 -25.5t25 -64.5q0 -22 -16 -76q-25 -95 -152 -438h-100z" />
+<glyph unicode="#" horiz-adv-x="1167" d="M115 408l32 194h236l59 191h-229l35 198h250l112 383h123l-115 -383h226l114 383h119l-110 -383h204l-34 -198h-230l-59 -191h219l-33 -194h-243l-127 -435h-119l127 435h-226l-129 -435h-116l125 435h-211zM504 602h227l55 191h-225z" />
+<glyph unicode="$" horiz-adv-x="1179" d="M78 190q0 112 28 259h148q8 -134 74 -193q51 -51 168 -57l67 340l-114 57q-130 65 -182 143.5t-52 175.5q0 191 131.5 306.5t376.5 132.5l41 211h115l-41 -207q56 -1 106.5 -8.5t102 -24t82 -48.5t30.5 -77q0 -117 -37 -266h-151q-7 115 -49 166q-35 40 -125 49l-64 -328 l129 -63q119 -59 174.5 -132.5t55.5 -176.5q0 -110 -41 -194.5t-114 -137.5t-163.5 -82.5t-200.5 -38.5l-45 -232h-116l43 228q-187 3 -289 57q-88 50 -88 141zM528 1006q0 -84 88 -127l13 -7l53 275q-76 -12 -115 -49.5t-39 -91.5zM614 205q156 23 156 145q0 84 -102 135z " />
+<glyph unicode="%" horiz-adv-x="1871" d="M127 805q0 112 33.5 228t103.5 198q114 135 320 135q303 0 303 -287q0 -112 -34.5 -238t-104.5 -208q-113 -133 -302 -133q-148 0 -233.5 75t-85.5 230zM360 811q0 -73 24 -108t79 -35q51 0 91 44.5t60.5 111.5t30.5 131t10 118q0 68 -24.5 99.5t-75.5 31.5 q-79 0 -123 -84q-33 -61 -52.5 -148t-19.5 -161zM555 59l735 1311l121 -59l-737 -1317zM1071 289q0 112 33.5 228t103.5 198q116 137 318 137q305 0 305 -289q0 -111 -35.5 -235.5t-107.5 -208.5q-113 -133 -299 -133q-148 0 -233 74.5t-85 228.5zM1303 295 q0 -72 23.5 -107.5t78.5 -35.5q52 0 91.5 44.5t60 111.5t30.5 131t10 118q0 69 -23.5 100t-76.5 31q-79 0 -123 -84q-32 -62 -51.5 -148.5t-19.5 -160.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="1677" d="M84 358q0 88 26.5 157t79.5 119t117 85.5t154 68.5q-60 123 -60 228q0 206 131 302.5t363 96.5q166 0 261 -73t95 -187q0 -48 -13 -91t-32 -75.5t-53.5 -63.5t-64.5 -52.5t-78.5 -45.5t-82 -38.5t-87.5 -36.5q86 -160 254 -318q47 43 75 94q25 36 25 64q0 22 -10.5 32 t-34.5 15q-36 5 -86 8l33 160q114 -4 274 -4q198 0 270 4l-32 -160q-78 -3 -117 -22q-29 -20 -94 -113q-66 -97 -164 -203q115 -86 252 -86q40 0 63 4l-45 -233q-65 -10 -127 -10q-116 0 -216 30t-156 78q-214 -119 -447 -119q-216 0 -344.5 109t-128.5 276zM412 406 q0 -97 60 -155t153 -58q99 0 192 51q-171 179 -276 360q-129 -82 -129 -198zM723 1059q0 -76 45 -154q221 87 221 201q0 44 -31.5 74t-87.5 30q-66 0 -106.5 -40t-40.5 -111z" />
+<glyph unicode="'" horiz-adv-x="372" d="M209 852q15 433 29 494q21 110 133 110q104 0 104 -90q0 -26 -14 -80q-27 -95 -152 -434h-100z" />
+<glyph unicode="(" horiz-adv-x="677" d="M74 391q0 401 185.5 709.5t533.5 498.5l65 -102q-247 -160 -402 -456t-155 -654q0 -216 57.5 -397.5t153.5 -302.5l-82 -86q-169 121 -262.5 325.5t-93.5 464.5z" />
+<glyph unicode=")" horiz-adv-x="677" d="M-129 -299q246 159 400.5 456.5t154.5 653.5q0 218 -56 399.5t-151 302.5l82 86q168 -122 262 -326.5t94 -463.5q0 -401 -186 -710t-534 -498z" />
+<glyph unicode="*" horiz-adv-x="841" d="M219 1180q0 43 26 79.5t72 36.5q29 0 71 -36.5t136 -145.5q-24 123 -24 211q0 107 96 107q44 0 71 -22.5t27 -61.5q0 -35 -22 -87.5t-76 -158.5q101 55 147.5 75.5t75.5 20.5q42 0 63 -25.5t21 -62.5q0 -106 -88 -106q-79 0 -215 22q88 -90 122 -140.5t34 -88.5 q0 -37 -32 -61.5t-69 -24.5q-62 0 -82 49.5t-41 232.5q-65 -129 -107.5 -177t-84.5 -48q-34 0 -66 27.5t-32 68.5q0 18 7.5 34t30 39t74 51.5t131.5 62.5q-2 1 -28.5 7t-70.5 16.5t-77 19.5q-90 24 -90 86z" />
+<glyph unicode="+" horiz-adv-x="1220" d="M156 551l43 182h372l93 404h176l-95 -404h371l-39 -182h-370l-93 -404h-174l95 404h-379z" />
+<glyph unicode="," horiz-adv-x="487" d="M-121 -252q117 59 178.5 112.5t61.5 106.5q0 46 -41 66q-78 38 -78 127q0 66 48 110.5t126 44.5q85 0 136.5 -53.5t51.5 -142.5q0 -67 -25.5 -130t-66 -112.5t-98.5 -95t-116.5 -78.5t-125.5 -63z" />
+<glyph unicode="-" horiz-adv-x="573" d="M53 412l37 194h457l-37 -194h-457z" />
+<glyph unicode="." horiz-adv-x="460" d="M10 141q0 70 49 122t123 52q71 0 114.5 -42t43.5 -109q0 -84 -47.5 -133t-128.5 -49q-69 0 -111.5 43.5t-42.5 115.5z" />
+<glyph unicode="/" horiz-adv-x="692" d="M-45 -125l711 1632l137 -51l-713 -1632z" />
+<glyph unicode="0" d="M98 440q0 127 26 261.5t90.5 276.5t158.5 234q163 160 405 160q218 0 337.5 -111t119.5 -339q0 -195 -63.5 -411.5t-190.5 -356.5q-169 -183 -424 -183q-221 0 -340 117t-119 352zM418 446q0 -41 2.5 -72t13 -66.5t28 -58t49 -37.5t75.5 -15q112 0 186 127 q66 114 103.5 293t37.5 309q0 114 -37 170.5t-124 56.5q-112 0 -185 -113q-66 -104 -107.5 -281t-41.5 -313z" />
+<glyph unicode="1" d="M180 -2l33 164q102 5 144 15.5t63 27.5q16 11 24.5 37t18.5 84l94 477q35 175 35 225q0 27 -10.5 37t-34.5 10q-52 0 -164 -22l-37 176q63 28 352 119q76 26 160 26q41 0 66.5 -23t25.5 -75q0 -26 -6 -68q-11 -60 -78 -385l-98 -497q-12 -68 -12 -93q0 -44 47 -53 q27 -7 178 -18l-33 -164q-164 4 -387 4q-205 0 -381 -4z" />
+<glyph unicode="2" d="M6 0l33 178q135 96 198 141.5t161 118.5t140 109t104 91.5t85.5 90t52 80.5t37 86t8.5 86q0 71 -42.5 120.5t-133.5 49.5q-110 0 -157 -47q-38 -33 -72 -164h-170q5 161 18 216q23 93 103 141q20 12 45 22q54 21 142.5 37t184.5 16q202 0 307 -91t105 -239 q0 -60 -15.5 -119.5t-40 -110.5t-65.5 -104t-81 -95t-96.5 -89t-103.5 -81t-111.5 -75t-108.5 -67.5t-107 -62.5q44 0 158 1t141 1q88 0 129 11t66 42q15 17 71 123h150q-4 -17 -17.5 -82t-20.5 -97t-19.5 -77t-24.5 -72q-36 -88 -164 -88h-889z" />
+<glyph unicode="3" d="M92 166q0 99 47 246h170q0 -102 33 -152q43 -55 193 -55q108 0 179.5 48.5t71.5 149.5q0 71 -52.5 115.5t-155.5 50.5q-94 4 -146 4l37 209q120 5 147 9q95 16 153 75t58 152q0 59 -42.5 95t-118.5 36q-99 0 -148 -39q-45 -36 -78 -152h-172q3 22 9.5 93.5t9.5 93.5 q7 55 35.5 91.5t83.5 66.5q46 27 140 48t202 21q111 0 191.5 -24t125 -66.5t64.5 -92.5t20 -110q0 -146 -80.5 -233.5t-239.5 -143.5q140 -22 208.5 -95.5t68.5 -180.5q0 -96 -35 -173.5t-94 -129.5t-140 -86.5t-169 -50t-185 -15.5q-92 0 -176 13t-129 34q-47 22 -66.5 55 t-19.5 93z" />
+<glyph unicode="4" d="M68 358l26 158l641 711q77 85 126 116t120 31q54 0 92.5 -29.5t38.5 -91.5q0 -42 -12 -100q-12 -70 -113 -569h205l-43 -224h-205l-10 -51q-10 -72 -10 -76q0 -42 49 -55q14 -3 141 -16l-33 -164q-164 4 -376 4q-146 0 -322 -4l33 164q158 10 186 41q20 22 39 110l10 45 h-583zM379 578h313q82 380 107 471z" />
+<glyph unicode="5" d="M121 152q0 72 35 237h172q6 -111 39 -149q46 -52 172 -52q122 0 198 63.5t76 180.5q0 94 -54 149.5t-171 55.5q-55 0 -109 -10q-76 -17 -104 -17q-101 0 -101 90q0 40 21 129l119 510h764l-37 -239h-557l-60 -254q94 24 215 24q176 0 289 -95t113 -275q0 -133 -47.5 -235 t-134 -165.5t-202.5 -96t-257 -32.5q-190 0 -285 43q-94 45 -94 138z" />
+<glyph unicode="6" d="M147 442q0 195 56 388t172 329q184 213 508 213q151 0 256 -43q43 -20 59 -48t16 -81q0 -91 -36 -221h-164q-7 97 -49 139q-33 33 -121 33q-134 0 -211 -82q-93 -104 -135 -309q46 57 128.5 89t170.5 32q100 0 173.5 -29.5t114.5 -81.5t60.5 -113t19.5 -133 q0 -246 -151.5 -399.5t-409.5 -153.5q-214 0 -335.5 122t-121.5 349zM449 410q0 -102 47.5 -158.5t132.5 -56.5q113 0 175 73t62 187q0 96 -47.5 145t-134.5 49q-138 0 -223 -110q-12 -79 -12 -129z" />
+<glyph unicode="7" d="M209 920q8 151 31 294q20 125 145 125h885l-31 -172l-674 -1151q-19 -32 -30 -47t-36.5 -29t-60.5 -14q-56 0 -89.5 23t-33.5 69q0 38 35 97l617 985h-267q-120 0 -175.5 -5.5t-90.5 -19.5q-30 -11 -50.5 -48t-43.5 -107h-131z" />
+<glyph unicode="8" d="M98 326q0 120 83.5 212.5t248.5 145.5q-166 109 -166 291q0 79 30.5 148.5t91.5 126t163.5 89.5t236.5 33q216 0 327.5 -84.5t111.5 -218.5q0 -70 -23.5 -125.5t-68 -94t-92.5 -64t-111 -46.5q116 -70 167.5 -156t51.5 -175q0 -88 -34.5 -165t-102 -138t-180 -96.5 t-257.5 -35.5q-228 0 -352.5 96t-124.5 257zM395 346q0 -64 53 -111t142 -47q102 0 161.5 45.5t59.5 122.5q0 62 -50 115t-175 107q-99 -47 -145 -103t-46 -129zM586 1018q0 -54 41 -98.5t139 -88.5q166 97 166 197q0 54 -43.5 94.5t-116.5 40.5q-91 0 -138.5 -39.5 t-47.5 -105.5z" />
+<glyph unicode="9" d="M117 147q0 117 28 218h164q7 -87 60 -140q40 -35 137 -35q58 0 116.5 21t96.5 65q78 92 123 312q-46 -56 -127.5 -86.5t-171.5 -30.5q-100 0 -173.5 28.5t-115 79t-61 111.5t-19.5 133q0 246 150.5 397.5t408.5 151.5q215 0 336 -121.5t121 -347.5q0 -202 -49 -392 t-160 -327q-67 -84 -155.5 -133t-170.5 -64.5t-184 -15.5q-87 0 -163 14t-115 33q-42 19 -59 47.5t-17 81.5zM473 887q0 -96 46 -139t136 -43q147 0 222 104q14 74 14 131q0 102 -47.5 157.5t-134.5 55.5q-113 0 -174.5 -76t-61.5 -190z" />
+<glyph unicode=":" horiz-adv-x="503" d="M53 141q0 70 49 122t123 52q71 0 114.5 -42t43.5 -109q0 -84 -47.5 -133t-128.5 -49q-69 0 -111.5 43.5t-42.5 115.5zM172 756q0 71 48 123.5t122 52.5q72 0 117 -43t45 -109q0 -84 -48.5 -134t-129.5 -50q-69 0 -111.5 44.5t-42.5 115.5z" />
+<glyph unicode=";" horiz-adv-x="516" d="M-84 -252q117 59 178.5 112.5t61.5 106.5q0 46 -41 66q-78 38 -78 127q0 66 48 110.5t126 44.5q85 0 136.5 -53.5t51.5 -142.5q0 -67 -26 -130.5t-67 -112.5t-99 -94.5t-115.5 -78.5t-124.5 -63zM172 756q0 71 48 123.5t122 52.5q72 0 117 -43t45 -109q0 -84 -48.5 -134 t-129.5 -50q-69 0 -111.5 44.5t-42.5 115.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1220" d="M225 543l45 184l887 410l-47 -213l-678 -297l543 -299l-43 -197z" />
+<glyph unicode="=" horiz-adv-x="1220" d="M115 356l41 181h911l-39 -181h-913zM203 748l39 178h913l-43 -178h-909z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1220" d="M137 131l45 211l678 299l-536 293l43 203l698 -410l-39 -186z" />
+<glyph unicode="?" horiz-adv-x="962" d="M199 141q0 70 48.5 122t123.5 52q72 0 114.5 -41.5t42.5 -109.5q0 -84 -46.5 -133t-127.5 -49q-72 0 -113.5 43.5t-41.5 115.5zM225 1065q0 79 17 176q16 100 127 143q128 48 286 48q102 -1 179.5 -26t122 -68t66 -95.5t21.5 -114.5q0 -57 -13.5 -107t-35 -89t-58.5 -75 t-72.5 -62t-89 -53.5t-96 -46.5t-104.5 -44q-25 -10 -42.5 -25.5t-28.5 -38.5t-18 -42t-16 -52t-15 -51h-144q9 147 29 236q12 64 50.5 102t123.5 68q44 16 78 35t66.5 46t50.5 65.5t18 84.5q0 35 -11 65.5t-44 55.5t-84 25q-94 0 -131 -32t-60 -128h-172z" />
+<glyph unicode="@" horiz-adv-x="1705" d="M113 403q0 177 65.5 341t180.5 288t283.5 198.5t361.5 74.5q303 0 470.5 -155t167.5 -402q0 -161 -65 -307.5t-188 -245.5q-59 -46 -129 -73.5t-134 -27.5q-78 0 -115.5 33t-37.5 106q-131 -135 -289 -135q-105 0 -170 65.5t-65 190.5q0 118 53 239t143 212 q132 137 326 137q101 0 180 -43l43 57h149l-124 -428q-43 -155 -43 -211q0 -27 9.5 -41t35.5 -14q59 0 125 72q66 74 101.5 179.5t35.5 221.5q0 217 -134 328t-356 111q-156 0 -290 -61t-225.5 -165t-143 -244.5t-51.5 -297.5q0 -246 159 -402t424 -156q303 0 576 164 l57 -112q-310 -199 -659 -199q-329 0 -528 192.5t-199 509.5zM659 389q0 -68 31.5 -96.5t91.5 -28.5q38 0 94 22t99 56q23 103 37 150l73 258q-69 32 -127 32q-104 0 -167 -73q-57 -65 -94.5 -150.5t-37.5 -169.5z" />
+<glyph unicode="A" horiz-adv-x="1554" d="M-72 -2l31 168q98 2 137 39q26 21 50 54.5t81 129.5l506 873q47 81 101.5 119t130.5 38q148 0 172 -145l155 -938q10 -62 23.5 -93t38.5 -53q25 -21 121 -24l-33 -168q-184 4 -287 4q-183 0 -395 -4l31 168q71 3 122 14q33 7 45.5 25t12.5 53q0 53 -6 96l-13 82h-426 l-45 -71q-55 -88 -55 -129q0 -35 29 -50q40 -17 155 -20l-32 -168q-184 4 -408 4q-66 0 -242 -4zM629 657h291q-39 240 -58 424q-60 -119 -233 -424z" />
+<glyph unicode="B" horiz-adv-x="1337" d="M-33 -2l33 164q116 5 147 28q14 11 21 20t15.5 34.5t17.5 70.5l145 756q12 71 12 88q0 23 -10 35t-35 16q-43 10 -125 13l31 161h483q253 0 359 -28q235 -61 235 -264q0 -151 -87.5 -238.5t-245.5 -114.5q144 -17 222.5 -98t78.5 -199q0 -263 -244 -379 q-59 -29 -163.5 -47t-219.5 -18q-39 0 -195.5 2t-212.5 2q-106 0 -262 -4zM504 246q0 -33 35 -39q27 -6 100 -6q125 0 204 60.5t79 160.5q0 103 -66 149q-33 24 -87 33.5t-153 9.5h-45l-63 -329q-4 -20 -4 -39zM616 827h56q97 0 147 13q71 15 110.5 62t39.5 118 q0 43 -21 77.5t-59 49.5q-47 16 -150 16h-61z" />
+<glyph unicode="C" horiz-adv-x="1396" d="M121 551q0 201 72 379t221 303q213 184 573 184q210 0 326 -57q82 -40 82 -123q0 -86 -37 -276h-178q0 137 -48.5 182t-189.5 45q-105 0 -198 -42.5t-154 -125.5q-66 -88 -101.5 -207t-35.5 -233q0 -101 28 -176t76.5 -117.5t107 -63t126.5 -20.5q166 0 235 59 q50 46 104 168h175q-42 -238 -80 -297q-44 -71 -150 -110q-138 -52 -346 -52q-287 0 -447.5 156t-160.5 424z" />
+<glyph unicode="D" horiz-adv-x="1507" d="M-33 0l33 162q86 6 116 12.5t46 22.5q20 30 37 120l145 742q12 65 12 100q0 43 -34 51q-50 10 -134 13l31 161h397q300 0 449 -33t240 -102q82 -61 130 -166t48 -217q0 -119 -16.5 -221.5t-56.5 -207t-118 -191.5t-190 -146q-188 -100 -596 -100h-539zM508 276 q0 -21 12.5 -34t39 -18t45 -6t52.5 -1q129 0 225 46t153.5 129.5t85.5 192t28 242.5q0 83 -32.5 157.5t-88.5 113.5q-83 61 -283 61h-69l-160 -831q-8 -40 -8 -52z" />
+<glyph unicode="E" horiz-adv-x="1302" d="M-33 0l33 162q125 3 160 33q6 4 10 11t7 13t6 19t5 22t6 30.5t7 35.5l143 733q14 82 14 104q0 35 -41 47q-48 10 -129 13l31 161h930q75 0 110 -24t35 -76q0 -92 -45 -283h-157q0 10 -1 22.5t-3 27t-3 20.5q-5 42 -34 66q-28 22 -144 22h-229l-70 -352h78q112 0 150 31 q24 19 59 110h149q-51 -203 -92 -487h-145v10q0 28 -1 42t-5 34t-14 31.5t-27 17.5q-37 12 -111 12h-78l-55 -280q-1 -5 -3 -16.5t-3.5 -21t-1.5 -14.5q0 -45 45 -51q51 -8 178 -8q202 0 273 57q32 24 96 142h162q-12 -85 -42 -189.5t-63 -154.5q-46 -72 -203 -72h-987z" />
+<glyph unicode="F" horiz-adv-x="1220" d="M-33 -2l33 164q80 5 113.5 12.5t48.5 24.5q16 16 39 129l145 741q12 74 12 86q0 47 -43 55q-32 10 -127 13l31 161h952q134 0 134 -92q0 -108 -52 -291h-151q-6 113 -35 138q-23 20 -143 20h-246l-76 -389h115q109 0 145 31q38 38 66 123h143q-44 -196 -96 -508h-139 q0 40 -7 80q-11 48 -43 61q-44 14 -108 14h-113l-45 -219q-14 -69 -14 -112q0 -20 8.5 -34t20 -21.5t34.5 -11.5t40 -5.5t49.5 -3t50.5 -2.5l-33 -164q-172 4 -377 4q-152 0 -332 -4z" />
+<glyph unicode="G" horiz-adv-x="1482" d="M121 555q0 132 32.5 257t104.5 242t176 197q212 166 531 166q135 0 222.5 -15.5t151.5 -47.5q42 -21 59 -52t17 -81q0 -26 -5.5 -72.5t-14.5 -98.5t-19 -92h-178q-3 125 -31 164q-52 66 -217 66q-96 0 -189 -37t-161 -121q-45 -54 -77.5 -125.5t-50 -152.5t-17.5 -162 q0 -89 20.5 -158.5t53.5 -112t79 -70t92 -38t97 -10.5q81 0 123 10q39 12 55 31.5t24 64.5l19 86q6 27 6 62q0 32 -27 41q-31 12 -143 20l27 166q114 -4 323 -4q207 0 283 4l-25 -166q-50 -3 -70 -5.5t-37.5 -15.5t-22.5 -30.5t-13 -58.5l-43 -234q-16 -89 -88 -123 q-184 -80 -455 -80q-287 0 -449.5 153t-162.5 433z" />
+<glyph unicode="H" horiz-adv-x="1576" d="M-33 -2l33 164q83 4 112.5 11.5t49.5 23.5q16 16 39 129l145 743q12 71 12 90q0 40 -39 51q-38 10 -131 13l31 163q132 -6 342 -6q44 0 332 6l-31 -163q-62 -2 -97 -7.5t-46 -11t-21 -16.5q-16 -16 -36 -123l-46 -225h496l45 227q14 69 14 96q0 55 -152 59q-4 1 -6 1 h-5.5h-6.5l31 163q264 -6 350 -6q54 0 324 6l-33 -163q-62 -3 -96 -8t-44.5 -10.5t-21.5 -16.5q-18 -18 -38 -121l-144 -733q-14 -77 -14 -107q0 -44 47 -53q26 -5 123 -12l-33 -164q-172 4 -336 4q-150 0 -338 -4l33 164q82 4 113 11.5t47 21.5q23 23 43 131l55 284h-498 l-53 -276q-16 -88 -16 -105q0 -41 47 -53q40 -8 123 -14l-33 -164q-172 4 -342 4q-150 0 -330 -4z" />
+<glyph unicode="I" horiz-adv-x="770" d="M-33 -2l33 164q79 4 111 12t51 23q16 16 39 129l145 743q12 71 12 96q0 35 -36 45q-38 10 -134 13l31 163q264 -6 346 -6q56 0 332 6l-31 -163q-89 -4 -119.5 -11.5t-44.5 -23.5q-19 -22 -38 -121l-142 -733q-16 -88 -16 -107q0 -37 41 -49q33 -10 129 -16l-33 -164 q-172 4 -346 4q-150 0 -330 -4z" />
+<glyph unicode="J" horiz-adv-x="741" d="M-164 -188q117 41 190.5 104.5t106.5 161.5q45 128 80 309l131 682q14 72 14 98q0 35 -47 45q-48 8 -125 11l33 163q159 -6 342 -6q72 0 324 6l-33 -163q-80 -4 -109.5 -11t-44.5 -22q-20 -23 -39 -123l-124 -659q-33 -174 -68 -272t-92 -185q-58 -92 -192 -172 t-298 -121z" />
+<glyph unicode="K" horiz-adv-x="1517" d="M-33 -2l33 164q83 4 113 11.5t47 23.5q18 18 41 131l145 743q12 65 12 92q0 36 -41 47q-34 10 -129 13l31 163q264 -6 342 -6q56 0 326 6l-31 -163q-82 -3 -113 -11t-45 -24q-10 -10 -16.5 -33t-19.5 -88l-144 -731q-16 -85 -16 -107q0 -38 43 -51q25 -6 127 -16 l-33 -164q-172 4 -342 4q-150 0 -330 -4zM621 692q104 87 207.5 184.5t168.5 167.5q86 88 86 132q0 25 -22 33.5t-92 13.5l32 163q86 -4 334 -4q172 0 262 4l-34 -163q-45 -3 -84 -15q-68 -24 -172 -131q-41 -42 -180.5 -172t-184.5 -174q45 -98 105 -196.5t108 -163 t94 -117.5q43 -48 85.5 -66.5t115.5 -23.5l-33 -162q-86 -12 -186 -12q-180 0 -264 104q-77 95 -170 250.5t-176 347.5z" />
+<glyph unicode="L" horiz-adv-x="1275" d="M-33 0l33 162q126 5 158 33q15 15 23.5 42t19.5 89l145 743q12 65 12 94q0 33 -36 45q-41 12 -134 15l31 163q159 -6 342 -6q203 0 332 6l-31 -163q-134 -2 -160 -35q-19 -19 -40 -123l-144 -723q-10 -60 -10 -66q0 -45 45 -51q51 -6 160 -6q113 0 171.5 12.5t90.5 40.5 q37 32 94 150h145q-36 -158 -56.5 -229t-49.5 -121q-19 -33 -67 -52.5t-117 -19.5h-957z" />
+<glyph unicode="M" horiz-adv-x="1861" d="M-35 -2l33 164q133 9 154 33q25 32 55 167q159 738 160 746q8 50 8 51q0 28 -11.5 39t-39.5 16q-28 6 -121 9l33 163q90 -4 321 -4q182 0 254 4q115 -572 141 -755q157 297 437 755q160 -4 288 -4q205 0 283 4l-33 -163q-57 -2 -88.5 -7t-41.5 -10t-21 -16 q-21 -24 -39 -115q-54 -315 -117 -723q-14 -101 -14 -125q0 -39 45 -51q43 -11 123 -14l-35 -164q-196 4 -334 4q-100 0 -346 -4l35 164q128 4 161 37q18 18 39 110q8 35 138 762q-170 -321 -447 -780q-28 -46 -60 -69t-85 -23q-55 0 -82 26.5t-37 75.5q-38 192 -73 362 t-53 256t-30 154q-131 -670 -149 -778q-8 -50 -8 -68q0 -44 53 -53q27 -5 117 -12l-35 -164q-168 4 -242 4q-124 0 -336 -4z" />
+<glyph unicode="N" horiz-adv-x="1572" d="M-35 -2l35 164q84 5 115 14t49 25q16 22 45 172q45 213 127 628q20 106 20 150q0 54 -51 61q-34 6 -119 11l31 163q86 -4 301 -4q133 0 205 4q351 -746 432 -940q18 109 41 240t37 209.5t18 112.5q15 114 15 137q0 53 -45 63q-57 13 -127 15l32 163q218 -4 306 -4 q46 0 272 4l-33 -163q-87 -4 -116 -10.5t-44 -24.5q-20 -20 -51 -178q-25 -130 -79 -410t-91 -473q-15 -79 -49.5 -114.5t-114.5 -35.5q-63 0 -96.5 25t-56.5 78q-117 261 -219.5 485.5t-141.5 311.5t-71 161q-103 -546 -121 -665q-21 -117 -21 -146q0 -46 56 -53 q40 -6 114 -12l-32 -164q-212 4 -293 4q-61 0 -279 -4z" />
+<glyph unicode="O" horiz-adv-x="1521" d="M123 532q0 203 73 394t220 315q209 174 516 174q145 0 254.5 -38t177 -109t100.5 -166t33 -215q0 -186 -58 -372t-177 -314q-104 -112 -245 -170t-300 -58q-130 0 -236 33t-187 99.5t-126 175t-45 251.5zM455 547q0 -342 280 -342q92 0 159.5 34t121.5 113 q68 100 103.5 248t35.5 277q0 158 -66.5 234.5t-201.5 76.5q-171 0 -275 -131q-73 -92 -115 -237t-42 -273z" />
+<glyph unicode="P" horiz-adv-x="1310" d="M-33 -2l33 164q108 8 141 22q21 10 33.5 35t26.5 98l143 744q12 55 12 94q0 25 -11 37.5t-36 17.5q-43 10 -121 13l31 161h518q241 0 355 -28q133 -32 194.5 -121t61.5 -213q0 -252 -160.5 -380t-450.5 -128q-139 0 -184 4l-35 -182q-16 -75 -16 -105q0 -46 47 -55 q37 -8 149 -14l-32 -164q-192 4 -400 4q-77 0 -299 -4zM596 735q31 -2 119 -2q53 0 96 6.5t83 23.5t67 44.5t43 71.5t16 102q0 103 -67 139.5t-205 36.5h-72z" />
+<glyph unicode="Q" horiz-adv-x="1521" d="M123 532q0 203 73 394t220 315q209 174 516 174q145 0 254.5 -38t177 -109t100.5 -166t33 -215q0 -186 -58 -372t-177 -314q-123 -132 -295 -189q62 -65 163 -118q59 -32 150.5 -53t163.5 -21q31 0 41 2l-33 -168q-70 -12 -158 -12q-103 0 -206 17.5t-160 43.5 q-103 45 -180 107t-179 176q-207 34 -326.5 169.5t-119.5 376.5zM455 547q0 -342 280 -342q92 0 159.5 34t121.5 113q68 100 103.5 248t35.5 277q0 158 -66.5 234.5t-201.5 76.5q-171 0 -275 -131q-73 -92 -115 -237t-42 -273z" />
+<glyph unicode="R" horiz-adv-x="1394" d="M-33 -2l33 164q110 8 143 24q21 10 32.5 34t25.5 97l145 758q12 65 12 88q0 40 -51 49q-49 8 -119 11l31 161h500q228 0 346 -32q122 -34 187 -121.5t65 -204.5q0 -186 -91 -299.5t-257 -159.5q78 -171 159 -278q53 -65 113 -96q46 -20 98 -27l-36 -168q-28 -4 -111 -4 q-207 0 -311 117q-60 66 -111.5 171.5t-107.5 258.5q-52 0 -105 6l-39 -215q-16 -78 -16 -103q0 -14 4.5 -24.5t15 -17t20.5 -10.5t28 -6.5t30 -3.5t34.5 -2.5t33.5 -2.5l-35 -164q-192 4 -369 4q-75 0 -297 -4zM602 766q31 -2 119 -2q270 0 270 221q0 47 -23.5 87.5 t-62.5 55.5q-60 25 -166 25h-61z" />
+<glyph unicode="S" horiz-adv-x="1226" d="M80 207q3 103 37 272h155q9 -144 58 -203q33 -39 98 -62.5t150 -23.5q123 0 178 45t55 117q0 52 -25.5 85.5t-83.5 60.5l-233 110q-137 64 -191.5 151.5t-54.5 196.5q0 150 78 254.5t211.5 154.5t312.5 50q218 0 318 -59q61 -38 61 -113q0 -140 -39 -287h-157 q0 144 -70 203q-49 41 -172 41q-107 0 -162 -43.5t-55 -112.5q0 -98 110 -149l234 -107q128 -58 189 -142t61 -200q0 -123 -47 -215.5t-132.5 -148.5t-195.5 -83.5t-244 -27.5q-92 0 -181 17t-142 43q-67 33 -94 76t-27 100z" />
+<glyph unicode="T" horiz-adv-x="1398" d="M176 926q11 124 41 315q11 70 47.5 106.5t108.5 36.5h979q68 0 101.5 -22.5t33.5 -73.5q0 -38 -21 -151t-45 -211h-141q0 106 -7.5 149.5t-27.5 63.5q-21 19 -63.5 23.5t-177.5 4.5l-162 -831q-15 -71 -15 -107q0 -39 43 -51q27 -6 144 -16l-31 -164q-172 4 -358 4 q-160 0 -344 -4l30 164q66 4 102.5 9.5t48 11t23.5 16.5q12 10 20.5 37t20.5 92l164 839q-130 0 -182.5 -5.5t-79.5 -22.5q-62 -34 -106 -213h-146z" />
+<glyph unicode="U" horiz-adv-x="1605" d="M174 1223l33 163q160 -4 321 -4q211 0 375 4l-31 -163q-93 -3 -123 -10.5t-47 -24.5q-21 -21 -38 -105q-33 -151 -89 -444q-26 -130 -26 -217q0 -223 264 -223q216 0 303 106q33 39 58.5 101t37.5 109t31 134q34 176 74 414q8 55 8 86q0 47 -43 59q-37 12 -145 15l32 163 q74 -2 344 -2q22 0 109.5 1t126.5 1l-33 -163q-80 -5 -112 -17t-45 -30q-25 -41 -41 -129l-86 -441q-38 -197 -79 -299t-116 -174q-83 -82 -213.5 -124t-288.5 -42q-78 0 -148 10.5t-138.5 37t-118 67.5t-79.5 106.5t-30 149.5q0 111 37 293q17 86 49.5 241t38.5 195 q12 65 12 84q0 44 -43 57q-48 12 -141 15z" />
+<glyph unicode="V" horiz-adv-x="1556" d="M176 1223l31 163q184 -4 371 -4q119 0 337 4l-32 -163q-94 -3 -131 -15q-56 -16 -56 -69q0 -20 11 -111q32 -229 63 -438.5t39 -272.5q21 39 68.5 134t122 238.5t178.5 336.5q45 84 45 135q0 32 -31 43q-55 19 -143 19l32 163q184 -4 283 -4q170 0 346 4l-33 -163 q-59 -2 -89.5 -9t-51.5 -26q-41 -36 -102 -146l-516 -925q-43 -77 -95 -110.5t-131 -33.5q-155 0 -180 148l-158 930q-11 71 -23.5 104.5t-35.5 44.5q-32 20 -119 23z" />
+<glyph unicode="W" horiz-adv-x="2181" d="M186 1223l29 163q258 -4 344 -4q275 0 361 4l-33 -163q-36 -1 -54 -2t-45.5 -4t-41.5 -8.5t-30 -14.5t-23.5 -23t-10.5 -34q-4 -20 -4 -103q0 -8 9 -270t11 -373q79 177 410 856q32 69 75.5 106.5t125.5 37.5q81 0 114 -33.5t39 -106.5q58 -574 74 -864q39 98 266 633 q39 95 39 141q0 48 -88 58q-19 2 -92 4l33 163q196 -4 315 -4q143 0 299 4l-31 -163q-90 -5 -131 -31q-24 -16 -43 -49.5t-53 -108.5l-426 -913q-37 -79 -85.5 -113.5t-125.5 -34.5q-80 0 -116 30t-42 103q-15 207 -32.5 398.5t-26.5 295.5t-12 167q-76 -175 -402 -846 q-37 -78 -86.5 -113t-124.5 -35q-78 0 -116.5 31t-42.5 102l-64 977q-6 92 -47 113q-42 22 -115 27z" />
+<glyph unicode="X" horiz-adv-x="1574" d="M-39 -2l29 164q106 7 149 35q46 31 94 82l414 452l-219 383q-41 68 -63 80q-40 25 -136 29l29 163q129 -4 348 -4q285 0 357 4l-31 -163q-137 0 -137 -58q0 -30 32 -92l111 -211l178 207q58 65 58 102q0 16 -10.5 26.5t-33 15.5t-39.5 7t-47 3l33 163q80 -4 328 -4 q154 0 250 4l-29 -163q-67 -2 -119 -31q-41 -24 -102 -92l-371 -398l244 -436q32 -62 68 -79t145 -25l-29 -164q-266 4 -358 4q-115 0 -365 -4l27 164q66 5 111 16q47 13 47 51q0 24 -25 66l-151 264l-216 -250q-21 -25 -30 -36.5t-17 -27t-8 -28.5q0 -16 8.5 -25.5 t30.5 -13.5q49 -11 129 -16l-31 -164q-226 4 -352 4q-180 0 -301 -4z" />
+<glyph unicode="Y" horiz-adv-x="1378" d="M150 1223l32 163q226 -4 307 -4q118 0 336 4l-32 -163q-68 -3 -113 -17q-37 -15 -37 -53q0 -35 19 -84q98 -253 124 -326q37 51 78.5 105.5t96 123.5t81.5 103q48 61 48 96q0 52 -125 52l32 163q94 -4 351 -4q108 0 196 4l-33 -163q-61 -3 -100 -31q-10 -6 -26.5 -23 t-32 -35.5t-47 -56.5t-56.5 -67l-395 -465l-45 -221q-10 -62 -10 -88q0 -50 76 -64q28 -6 102 -10l-31 -164q-218 4 -346 4q-144 0 -348 -4l33 164q92 6 125 15t47 26q21 21 35 104l47 236l-213 522q-26 61 -43 91t-39 44q-28 20 -94 23z" />
+<glyph unicode="Z" horiz-adv-x="1376" d="M-18 0l14 94l891 1080q-232 0 -295.5 -4.5t-99.5 -24.5q-32 -16 -59.5 -60.5t-57.5 -136.5h-168q7 127 35 314q22 122 151 122h998l-17 -96l-895 -1069q53 -6 217 -6q167 0 231.5 12.5t98.5 42.5q52 48 111 193h184q-56 -281 -86 -367q-33 -94 -184 -94h-1069z" />
+<glyph unicode="[" horiz-adv-x="665" d="M12 -348l369 1892h448l-24 -119h-232l-319 -1650h231l-22 -123h-451z" />
+<glyph unicode="\" horiz-adv-x="747" d="M233 1468l138 25l241 -1632l-141 -23z" />
+<glyph unicode="]" horiz-adv-x="665" d="M-117 -348l25 121h229l320 1650h-230l23 121h448l-368 -1892h-447z" />
+<glyph unicode="^" horiz-adv-x="1234" d="M229 739l502 756h193l155 -754h-186l-107 539l-346 -541h-211z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-123 -285l25 121h1011l-24 -121h-1012z" />
+<glyph unicode="`" horiz-adv-x="604" d="M98 1417q0 44 34 74.5t77 30.5q35 0 62 -22t63 -87l168 -297l-86 -61l-246 243q-39 39 -55.5 65t-16.5 54z" />
+<glyph unicode="a" horiz-adv-x="1230" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q49 0 108 -10.5t93 -29.5l45 67h217l-133 -547q-33 -139 -33 -188q0 -32 14 -48t48 -16q60 0 116 19l-39 -170q-134 -53 -258 -53q-85 0 -124 38.5t-39 118.5q-130 -164 -322 -164q-162 0 -244 89t-82 245zM365 352 q0 -73 35 -112t102 -39q103 0 196 96q7 51 35 162l66 248q-54 32 -127 32q-111 0 -185 -71q-53 -51 -87.5 -143.5t-34.5 -172.5z" />
+<glyph unicode="b" horiz-adv-x="1175" d="M47 53q41 151 64 264l155 711q31 146 31 184q0 60 -72 60q-41 0 -86 -10l33 155q184 80 330 80q56 0 90.5 -27t34.5 -86t-21 -145q-10 -44 -28 -127.5t-36 -160.5t-38 -152q69 80 157 127t183 47q272 0 272 -301q0 -150 -46.5 -288.5t-143.5 -238.5q-151 -161 -443 -161 q-107 0 -238.5 19t-197.5 50zM381 231q64 -18 141 -18q134 0 203 106q37 55 55.5 130t18.5 135q0 75 -31 108t-98 33q-45 0 -98.5 -23t-98.5 -61z" />
+<glyph unicode="c" horiz-adv-x="983" d="M59 356q0 144 53 278.5t158 217.5q154 119 361 119q119 0 196 -25q59 -21 81 -47.5t22 -81.5q0 -83 -37 -219h-164q-6 104 -37 129q-35 27 -88 27q-78 0 -136 -56.5t-84 -135t-26 -161.5q0 -110 46 -156t133 -46q131 0 282 77l78 -159q-195 -146 -432 -146 q-188 0 -297 103t-109 282z" />
+<glyph unicode="d" horiz-adv-x="1232" d="M57 313q0 132 47.5 262t137.5 222q83 83 185 125.5t241 42.5q103 0 176 -31l30 131q23 103 23 145q0 62 -72 62q-36 0 -86 -10l33 155q183 80 330 80q69 0 97 -31.5t28 -89.5q0 -23 -5 -59t-16.5 -90.5t-20 -93.5t-26 -114t-24.5 -106l-119 -507q-25 -119 -25 -156 q0 -32 14 -48t48 -16q61 0 114 19l-37 -170q-128 -53 -258 -53q-84 0 -123.5 38.5t-39.5 120.5q-122 -166 -320 -166q-166 0 -249 91t-83 247zM365 369q0 -168 139 -168q53 0 109 27t96 71q5 35 30 158l60 254q-54 32 -148 32q-108 0 -172 -69q-50 -52 -82 -141.5 t-32 -163.5z" />
+<glyph unicode="e" horiz-adv-x="1005" d="M59 356q0 175 68 313.5t199 220t305 81.5q171 0 253.5 -69.5t82.5 -184.5q0 -53 -15 -97.5t-56 -87.5t-107.5 -72.5t-175.5 -48.5t-253 -20q-4 -12 -4 -33q0 -70 46.5 -114.5t146.5 -44.5q132 0 317 92l80 -164q-227 -156 -491 -156q-180 0 -288 100.5t-108 284.5z M381 569q334 3 334 131q0 72 -99 72q-86 0 -148 -55t-87 -148z" />
+<glyph unicode="f" horiz-adv-x="731" d="M-340 -422q0 68 33 193h149q0 -73 15.5 -100t68.5 -27q26 0 53 13t44 36q38 50 63 194l145 846h-168l29 158q87 13 129 41q23 14 37.5 40.5t24.5 78.5q32 149 86.5 240t138.5 139q118 67 276 67q113 0 191 -35q60 -28 63 -108q0 -62 -30 -219h-160q0 106 -27 129 q-18 16 -67 16q-64 0 -109 -51q-49 -55 -74 -209l-16 -100q117 0 229 -7l-32 -180q-120 -6 -230 -6l-155 -813q-29 -153 -75 -242.5t-122 -146.5q-117 -88 -281 -88q-99 0 -164 33t-65 108z" />
+<glyph unicode="g" horiz-adv-x="1091" d="M-63 -297q0 51 20.5 93t60.5 72.5t77 50.5t91 42q-39 19 -59.5 52.5t-20.5 66.5q0 126 150 219q-80 33 -122 99.5t-42 154.5q0 128 64.5 224.5t173 145t245.5 48.5q185 0 271 -58q231 0 301 -2l-39 -184q-77 -6 -145 -6q12 -24 12 -76q0 -200 -164 -307 q-134 -86 -322 -86q-51 0 -88 6q-41 -30 -41 -63q0 -22 21 -36t78 -24q151 -29 321 -57q116 -19 171 -85t55 -161q0 -106 -46 -184.5t-127 -123.5t-180 -66t-217 -21q-257 0 -378 75t-121 191zM207 -225q0 -53 62.5 -88t207.5 -35q117 0 168 29.5t51 74.5q0 38 -27 59 t-96 31q-237 40 -270 56q-96 -58 -96 -127zM377 573q0 -62 40.5 -92t102.5 -30q81 0 131.5 53.5t50.5 136.5q0 131 -139 131q-83 0 -134.5 -57t-51.5 -142z" />
+<glyph unicode="h" horiz-adv-x="1198" d="M43 0l223 1028q1 5 8.5 38.5t11 51.5t7.5 46t4 48q0 60 -72 60q-41 0 -86 -10l33 155q184 80 330 80q56 0 90.5 -27t34.5 -86q0 -35 -21 -143q-46 -216 -106 -448q71 82 164 128t190 46q107 0 156 -50t49 -149q0 -63 -29 -182l-41 -162q-31 -122 -31 -174q0 -36 15.5 -50 t50.5 -14q44 0 111 19l-37 -170q-63 -27 -141.5 -40t-133.5 -13q-180 0 -180 137q0 52 29 178l53 225q20 85 20 123q0 70 -75 70q-102 0 -201 -92l-141 -623h-285z" />
+<glyph unicode="i" horiz-adv-x="667" d="M63 729l33 154q160 80 277 80q87 0 125.5 -37t38.5 -119q0 -43 -43 -229l-39 -156q-33 -126 -33 -172q0 -36 15.5 -50t51.5 -14q41 0 111 19l-39 -170q-63 -27 -141 -40t-133 -13q-181 0 -181 139q0 54 29 176l53 231q29 130 29 144q0 34 -16.5 48.5t-50.5 14.5 q-50 0 -87 -6zM262 1290q0 77 51 131t129 54q76 0 116 -42.5t40 -109.5q0 -80 -49.5 -134t-130.5 -54q-70 0 -113 45t-43 110z" />
+<glyph unicode="j" horiz-adv-x="647" d="M-211 -401q150 44 207 127q30 45 54 124t54 213q35 155 97 463q20 95 20 146q0 34 -16 48.5t-49 14.5q-46 0 -86 -6l32 154q65 34 143 57t140 23q83 0 119.5 -37t36.5 -119q0 -32 -35 -217q-41 -216 -111 -527q-38 -183 -81.5 -285.5t-112.5 -174.5q-56 -58 -165 -107 t-206 -59zM270 1290q0 76 52 130.5t129 54.5q78 0 116.5 -42.5t38.5 -109.5q0 -80 -48.5 -134t-129.5 -54q-71 0 -114.5 45t-43.5 110z" />
+<glyph unicode="k" horiz-adv-x="1173" d="M43 0l223 1028q1 5 8.5 38.5t11 51.5t7.5 46t4 48q0 60 -72 60q-41 0 -86 -10l33 155q184 80 330 80q56 0 90.5 -27t34.5 -86q0 -71 -21 -157q-16 -63 -143.5 -631.5t-134.5 -595.5h-285zM469 516q126 191 246 307q78 76 147 110t146 34q64 0 101.5 -33t37.5 -88 q0 -50 -27 -174h-137q-6 47 -45 47q-79 0 -219 -158q70 -168 170 -301q51 -74 133 -74q38 0 104 15l-36 -170q-24 -16 -79 -32.5t-104 -16.5q-86 0 -139.5 23.5t-93.5 72.5q-56 70 -111.5 193.5t-93.5 244.5z" />
+<glyph unicode="l" horiz-adv-x="634" d="M82 121q0 48 27 176l151 688q39 166 39 221q0 66 -66 66q-19 0 -92 -10l35 155q67 32 155 56t152 24q83 0 113.5 -27.5t30.5 -95.5q0 -60 -47 -276l-152 -676q-31 -135 -31 -172q0 -36 15.5 -50t50.5 -14q42 0 112 19l-38 -170q-63 -28 -141.5 -40.5t-135.5 -12.5 q-178 0 -178 139z" />
+<glyph unicode="m" horiz-adv-x="1767" d="M66 729l32 154q67 34 150.5 58t148.5 24q127 0 127 -121q0 -22 -6 -64q74 82 171.5 134.5t184.5 52.5q92 0 139 -42.5t50 -142.5q73 86 168.5 135.5t187.5 49.5q209 0 209 -197q0 -59 -24 -170l-43 -176q-33 -130 -33 -172q0 -36 14 -51t47 -15q47 0 117 19l-39 -170 q-58 -27 -139 -40t-135 -13q-181 0 -181 137q0 54 29 180l57 236q17 70 17 106q0 74 -70 74q-92 0 -188 -80q-6 -40 -25 -127l-117 -508h-288l121 535q16 66 16 106q0 74 -68 74q-88 0 -194 -92q-8 -51 -33 -166l-107 -457h-282l104 477q33 154 33 195q0 65 -78 65 q-33 0 -73 -8z" />
+<glyph unicode="n" horiz-adv-x="1232" d="M66 729l32 154q67 33 151 57.5t148 24.5q127 0 127 -117q0 -50 -6 -68q72 82 174 134.5t197 52.5q107 0 156 -50t49 -149q0 -63 -29 -182l-41 -162q-31 -122 -31 -174q0 -36 15.5 -50t50.5 -14q42 0 112 19l-38 -170q-63 -28 -141.5 -40.5t-135.5 -12.5q-178 0 -178 137 q0 52 29 178l53 225q18 77 18 123q0 70 -73 70q-102 0 -201 -92q0 -3 -35 -166l-107 -457h-282l98 459q39 175 39 211q0 67 -76 67q-35 0 -75 -8z" />
+<glyph unicode="o" horiz-adv-x="1122" d="M59 360q0 125 38.5 245t121.5 208q149 158 406 158q92 0 169.5 -21t139.5 -64t97.5 -116.5t35.5 -169.5q0 -125 -41.5 -254t-124.5 -217q-71 -77 -178 -117.5t-229 -40.5q-92 0 -169 22t-137.5 67.5t-94.5 122t-34 177.5zM358 379q0 -189 166 -189q111 0 172 97 q32 54 50 138.5t18 156.5q0 172 -164 172q-104 0 -164 -76q-39 -54 -58.5 -136t-19.5 -163z" />
+<glyph unicode="p" horiz-adv-x="1212" d="M-41 -535l223 1008q33 153 33 197q0 37 -18.5 52t-57.5 15q-36 0 -76 -8l33 154q69 34 152.5 58t146.5 24q125 0 125 -119q0 -32 -4 -64q67 79 166.5 134t200.5 55q270 0 270 -297q0 -146 -47.5 -285.5t-144.5 -241.5q-153 -163 -441 -163q-88 0 -162 12l-116 -531h-283z M416 233q75 -20 143 -20q64 0 117.5 28t85.5 78q37 55 55.5 130t18.5 135q0 75 -31.5 108t-97.5 33q-89 0 -207 -102q-4 -34 -25 -125z" />
+<glyph unicode="q" horiz-adv-x="1208" d="M55 313q0 131 48 261.5t139 222.5q83 87 198 131.5t291 44.5q70 0 185 -19t217 -59q-35 -127 -84 -346l-244 -1084h-285l146 633q-50 -61 -127 -92t-158 -31q-165 0 -245.5 90.5t-80.5 247.5zM365 369q0 -166 139 -166q53 0 106.5 26t91.5 70l97 422q-52 24 -150 24 q-109 0 -172 -71q-49 -55 -80.5 -142.5t-31.5 -162.5z" />
+<glyph unicode="r" horiz-adv-x="913" d="M53 729l33 154q67 33 151.5 57.5t149.5 24.5q123 0 123 -117q0 -48 -4 -68q46 71 126 129t171 58q59 0 92 -26t33 -77q0 -99 -45 -227h-160q-2 45 -16.5 66.5t-51.5 21.5q-43 0 -87.5 -37.5t-71.5 -87.5q-23 -117 -45 -219l-89 -381h-282l94 438q29 134 29 230 q0 69 -74 69q-40 0 -76 -8z" />
+<glyph unicode="s" horiz-adv-x="968" d="M45 154q0 75 29 202h145q0 -94 47 -141q24 -23 68.5 -36t91.5 -13q141 0 141 74q0 25 -13 42.5t-46 34.5l-164 76q-60 28 -102 59t-64 64.5t-31.5 65.5t-9.5 69q0 70 26 126t69 91.5t103.5 59t125 33.5t137.5 10q44 0 90 -5t87.5 -15.5t66.5 -24.5q32 -19 44.5 -45 t12.5 -74q0 -53 -27 -186h-145q-3 50 -12 79t-30.5 45.5t-50.5 21.5t-79 5q-124 0 -127 -76q0 -47 61 -73l164 -72q114 -51 161.5 -111.5t47.5 -134.5q0 -76 -26.5 -134.5t-70 -95.5t-105.5 -61t-127.5 -33.5t-141.5 -9.5q-146 0 -237 37q-62 23 -85.5 58.5t-23.5 87.5z" />
+<glyph unicode="t" horiz-adv-x="737" d="M49 733l29 156q74 13 125 33q44 18 65 59q32 53 80 147q48 95 141 95t93 -78q0 -26 -41 -225q113 0 227 -7l-33 -180q-123 -6 -231 -6l-49 -242q-27 -143 -27 -192q0 -42 24 -67t68 -25q54 0 127 18l29 -176q-145 -68 -332 -68q-105 0 -165 55t-60 160q0 56 20 154 q60 299 80 389h-170z" />
+<glyph unicode="u" horiz-adv-x="1228" d="M61 725l33 154q68 35 153.5 58.5t137.5 23.5q85 0 119.5 -31t34.5 -101q0 -60 -31 -184l-55 -225q-21 -89 -21 -121q0 -72 78 -72q95 0 201 92q8 59 32 166l107 457h285l-101 -457q-45 -202 -45 -241q0 -35 15 -49.5t49 -14.5q35 0 114 19l-39 -168q-139 -56 -264 -56 q-57 0 -99 26.5t-52 78.5q-6 27 -6 59q-70 -78 -170 -121t-199 -43q-108 0 -163.5 51.5t-55.5 147.5q0 66 28 184l41 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8z" />
+<glyph unicode="v" horiz-adv-x="1155" d="M47 729l35 154q62 35 151 58.5t140 23.5q80 0 111.5 -31t31.5 -100q0 -42 -27 -185l-43 -235q-18 -99 -18 -129q0 -68 74 -68q49 0 103 27.5t91 70.5q62 71 95.5 173t33.5 163q0 53 -23 71.5t-77 18.5q-40 0 -86 -8l31 158q56 36 126.5 55t125.5 19q93 0 129 -45t36 -134 q0 -155 -69.5 -326.5t-175.5 -277.5q-214 -211 -482 -211q-109 0 -170 54t-61 149q0 67 21 182l30 166q19 104 19 154q0 34 -19 47.5t-55 13.5q-28 0 -78 -8z" />
+<glyph unicode="w" horiz-adv-x="1675" d="M47 729l35 154q67 34 152 58t135 24q86 0 118.5 -31t32.5 -100q0 -48 -26 -185l-43 -235q-19 -105 -19 -129q0 -36 16 -52t50 -16q65 0 135 70q40 37 65 82l93 538h276l-78 -477q-14 -92 -14 -145q0 -68 72 -68q84 0 172 98q63 71 95 172t32 164q0 53 -23 71.5t-76 18.5 q-32 0 -78 -8l31 158q56 36 122 55t116 19q99 0 135.5 -46.5t36.5 -136.5q0 -158 -68.5 -326t-175.5 -274q-216 -211 -475 -211q-134 0 -172 95q-17 43 -21 118q-75 -116 -166.5 -164.5t-181.5 -48.5q-101 0 -161 54.5t-60 148.5q0 67 21 182l30 166q19 104 19 154 q0 34 -19 47.5t-55 13.5q-28 0 -78 -8z" />
+<glyph unicode="x" horiz-adv-x="1140" d="M-18 113q0 88 18 180h152q3 -66 36 -66q46 0 88 49q60 71 152 218q-24 83 -59 159q-28 57 -51 74.5t-58 17.5q-48 0 -110 -32l26 159q141 89 256 89q71 0 106 -31.5t66 -104.5q13 -29 29 -76t22 -61q65 106 127 172q86 98 209 98q158 0 158 -133q0 -93 -23 -180h-155 q-5 55 -43 55q-48 0 -90 -51q-59 -68 -117 -162q61 -180 96 -247q39 -76 115 -76q50 0 121 33l-31 -164q-42 -27 -106.5 -42.5t-118.5 -15.5q-34 0 -63.5 5t-52.5 17t-41 23t-34 33t-26.5 37t-22 43.5t-17.5 45t-17.5 49.5t-16.5 48q-70 -120 -135 -200q-87 -103 -226 -103 q-82 0 -122.5 42.5t-40.5 97.5z" />
+<glyph unicode="y" horiz-adv-x="1210" d="M37 -399q0 89 31 217h159q0 -90 32.5 -125t121.5 -35q109 0 158 55q58 65 98 217q9 34 47 199q-75 -74 -157.5 -114t-188.5 -40q-109 0 -163 51t-54 148q0 46 29 184l38 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8l33 154q68 35 153.5 58.5t137.5 23.5 q85 0 119.5 -31t34.5 -101q0 -45 -31 -184l-53 -225q-21 -89 -21 -121q0 -72 74 -72q93 0 201 97l139 618h287q-74 -354 -177 -901q-62 -329 -190 -457q-138 -141 -416 -141q-315 0 -315 158z" />
+<glyph unicode="z" horiz-adv-x="1077" d="M-2 0l16 102l584 670q-146 0 -197 -4q-58 -3 -84 -45q-25 -39 -53 -133h-155q6 164 14 217q21 135 145 135h758l-20 -111l-576 -663q61 -2 150 -2q106 0 163 22q20 7 41 27.5t35 44.5q24 44 53 119h150q-21 -158 -55 -283q-22 -96 -146 -96h-823z" />
+<glyph unicode="{" horiz-adv-x="651" d="M23 563l22 125q120 10 167.5 70t80.5 233l43 232q16 88 47 150.5t87 111.5t148 73.5t222 24.5l-23 -121q-135 0 -187.5 -57t-86.5 -231l-54 -267q-26 -137 -94 -198t-196 -91q94 -22 141 -65.5t47 -132.5q0 -48 -10 -94l-62 -303q-14 -74 -14 -134q0 -76 41 -109.5 t139 -33.5l-24 -123q-189 0 -279 60.5t-90 189.5q0 36 10 98l60 312q16 78 16 127q0 73 -35.5 110t-115.5 43z" />
+<glyph unicode="|" horiz-adv-x="555" d="M12 -375l379 1950h189l-379 -1950h-189z" />
+<glyph unicode="}" horiz-adv-x="651" d="M-141 -377l20 119q71 0 115.5 12.5t76 48.5t49.5 87.5t36 140.5l51 268q27 137 95 198t196 91q-94 21 -142.5 65t-48.5 133q0 31 10 93l62 305q16 85 16 133q0 75 -41 109t-139 34l25 123q188 0 278 -61.5t90 -188.5q0 -26 -12 -100l-59 -309q-15 -76 -15 -129 q0 -73 36 -110t118 -44l-25 -125q-121 -10 -169 -70t-79 -231l-43 -233q-16 -88 -46.5 -149.5t-86.5 -111t-147.5 -74t-220.5 -24.5z" />
+<glyph unicode="~" horiz-adv-x="1204" d="M123 526q162 199 321 199q48 0 93 -16.5t143 -75.5q96 -58 149 -58q50 0 96.5 29.5t110.5 110.5l103 -123q-161 -205 -314 -205q-51 0 -94 14.5t-102 51.5q-77 49 -118 66.5t-75 17.5q-57 0 -106 -32.5t-103 -107.5z" />
+<glyph unicode="&#xa1;" horiz-adv-x="622" d="M-18 -303q0 32 14 90q34 126 254 776h131q-34 -698 -55 -825q-23 -160 -189 -160q-74 0 -114.5 33t-40.5 86zM190 860q0 83 48.5 132.5t128.5 49.5q71 0 113 -44t42 -115q0 -69 -48 -121.5t-122 -52.5q-72 0 -117 42t-45 109z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1013" d="M115 360q0 126 51.5 248.5t146.5 206.5q131 116 324 131l41 213h117l-41 -213q79 -7 135 -24q51 -15 73.5 -44t22.5 -79q0 -73 -39 -205h-158q0 89 -32 121q-14 11 -45 18l-101 -520q105 3 238 66l63 -154q-69 -51 -160.5 -84.5t-181.5 -42.5l-45 -234h-116l43 230 q-153 9 -244.5 108.5t-91.5 257.5zM406 393q0 -122 92 -164l96 500q-69 -17 -111 -70q-77 -99 -77 -266z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1282" d="M18 0l31 170q161 32 235 118t89 251h-205l33 168h178q-4 33 -4 143q0 256 151 389t430 133q150 0 242 -39q43 -19 61.5 -48t18.5 -83q0 -37 -14 -117t-27 -133h-152q0 110 -32 156q-35 43 -142 43q-104 0 -159.5 -58.5t-67.5 -187.5q-10 -127 -10 -198h309l-33 -168h-288 q-13 -100 -61 -174t-150 -136q184 4 286 4q232 0 267 35q30 32 77 135h146q-48 -253 -78 -331q-25 -72 -133 -72h-998z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1257" d="M139 266l140 140q-82 118 -82 268q0 148 82 270l-140 139l137 144l138 -140q112 80 262 80q146 0 262 -80l135 140l135 -144l-135 -139q80 -103 80 -270q0 -155 -80 -266l137 -142l-137 -141l-135 139q-112 -80 -264 -80q-154 0 -262 78l-136 -139zM391 680 q0 -132 80.5 -219.5t204.5 -87.5q121 0 200.5 87t79.5 214q0 128 -79.5 214.5t-200.5 86.5q-122 0 -203.5 -85t-81.5 -210z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1402" d="M172 1174l35 167q111 -2 293 -2q219 0 323 2l-32 -167q-79 -1 -109.5 -17t-30.5 -49q0 -36 27 -100q29 -69 117 -285q119 161 229 299q51 62 51 102q0 25 -27 37t-96 13l33 167q92 -2 295 -2q162 0 248 2l-35 -167q-60 -3 -102 -31q-20 -14 -55 -52.5t-117 -136.5 l-179 -209h199l-25 -122h-274l-82 -97l-4 -26h336l-23 -123h-336l-14 -70q-8 -44 -8 -74q0 -34 33 -48.5t145 -18.5l-33 -168q-208 4 -342 4q-140 0 -340 -4l31 168q70 4 106.5 10.5t47 12.5t22.5 20q16 16 31 96l16 72h-327l24 123h326l4 26l-41 97h-266l24 122h189 l-117 279q-22 54 -36.5 80.5t-35.5 42.5q-27 21 -98 27z" />
+<glyph unicode="&#xa6;" horiz-adv-x="555" d="M39 -244l133 690h188l-133 -690h-188zM229 752l138 692h188l-135 -692h-191z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1052" d="M8 -242q0 81 27 213h158q5 -85 45 -131q36 -41 116 -41q73 0 120.5 33.5t47.5 91.5q0 42 -29.5 87t-105.5 122l-158 164q-131 139 -131 274q0 229 308 342q-35 43 -53.5 105.5t-18.5 111.5q0 48 13 94t46 92t82.5 81t128.5 56.5t178 21.5q147 0 232 -48q53 -27 53 -86 q0 -32 -9.5 -100t-23.5 -115h-149q-9 83 -37 115.5t-105 32.5q-61 0 -101 -29.5t-40 -87.5q0 -37 24 -74t91 -98l110 -102q106 -98 146.5 -165.5t40.5 -144.5q0 -223 -303 -344q61 -64 82.5 -122.5t21.5 -126.5q0 -55 -18 -108t-57.5 -102.5t-96.5 -86.5t-142 -59.5 t-188 -22.5q-53 0 -103 8t-97 25t-76 49t-29 75zM362 664q0 -35 22 -71.5t77 -92.5l90 -94q34 -34 70 -74q68 33 97.5 67.5t29.5 83.5q0 36 -26.5 74.5t-92.5 101.5l-90 86q-37 37 -58 64q-60 -28 -89.5 -58.5t-29.5 -86.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M0 1257q0 55 37 96.5t94 41.5q53 0 86 -34t33 -85q0 -66 -36.5 -106t-96.5 -40q-54 0 -85.5 35t-31.5 92zM346 1257q0 54 38 96t93 42q54 0 87.5 -34t33.5 -85q0 -66 -37.5 -106t-97.5 -40q-54 0 -85.5 35t-31.5 92z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1611" d="M129 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t229 -151.5t152.5 -227t56.5 -278q0 -153 -55.5 -289t-151 -233t-227.5 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM242 694q0 -174 81.5 -319.5t223.5 -229.5t313 -84q167 0 304.5 82.5 t215.5 226t78 318.5q0 178 -77 323.5t-215 229.5t-310 84t-313 -83.5t-221 -228t-80 -319.5zM432 616q0 205 129 349q129 147 377 147q139 0 211 -31q55 -21 55 -84q0 -29 -8 -81t-16 -80h-117q0 64 -23 98q-17 22 -44 30.5t-78 8.5q-126 0 -199 -94q-72 -97 -72 -240 q0 -126 61 -187t150 -61q95 0 141 37q34 30 60 100h121q-25 -143 -43 -180q-23 -41 -90 -63q-97 -33 -230 -33q-183 0 -284 97.5t-101 266.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="763" d="M102 768q0 79 33.5 163.5t91.5 145.5q101 107 275 107q27 0 65.5 -7.5t61.5 -17.5l26 41h140l-84 -348q-4 -18 -11.5 -47.5t-10.5 -46t-3 -27.5q0 -41 43 -41q35 0 72 12l-23 -112q-95 -35 -166 -35q-104 0 -104 102q-82 -104 -201 -104q-104 0 -154.5 56.5t-50.5 158.5z M297 797q0 -44 22.5 -70.5t61.5 -26.5q68 0 123 62q6 37 24 102l41 154q-37 22 -80 22q-66 0 -112 -43q-34 -34 -57 -91.5t-23 -108.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="997" d="M25 449q0 58 69 112l426 318l82 -103l-330 -325l189 -328l-109 -86l-295 330q-32 36 -32 82zM444 449q0 58 70 112l422 318l86 -103l-330 -325l187 -328l-107 -86l-295 330q-33 37 -33 82z" />
+<glyph unicode="&#xac;" horiz-adv-x="1220" d="M154 551l41 186h909l-131 -583h-174l92 397h-737z" />
+<glyph unicode="&#xad;" horiz-adv-x="573" d="M53 412l37 194h457l-37 -194h-457z" />
+<glyph unicode="&#xae;" horiz-adv-x="1611" d="M129 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t229 -151.5t152.5 -227t56.5 -278q0 -153 -55.5 -289t-151 -233t-227.5 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM242 694q0 -174 81.5 -319.5t223.5 -229.5t313 -84q167 0 304.5 82.5 t215.5 226t78 318.5q0 178 -77 323.5t-215 229.5t-310 84t-313 -83.5t-221 -228t-80 -319.5zM416 301l20 105q62 0 82 10q13 7 20.5 21.5t14.5 54.5l82 434q6 37 6 49q0 35 -75 37h-20h-5l20 100h295q375 0 375 -213q0 -103 -55.5 -168t-151.5 -94q48 -91 96 -156 q34 -45 66 -61q18 -10 61 -14l-18 -105q-3 0 -31.5 -1t-42.5 -1q-80 0 -123.5 20t-73.5 52q-60 62 -124 243q-38 0 -62 4l-22 -116q-2 -14 -6.5 -34t-4.5 -26q0 -13 8 -21t26 -11t30.5 -3.5t38.5 -0.5l-23 -105q-34 0 -124.5 1t-100.5 1q-17 0 -79.5 -1t-98.5 -1zM797 752 q16 -2 71 -2q67 0 113.5 29t46.5 91q0 60 -39 80.5t-115 20.5h-34z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M8 1122l33 168h545l-33 -168h-545z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M213 1161q0 126 80.5 202.5t198.5 76.5q115 0 191.5 -72t76.5 -201q0 -124 -79.5 -198t-195.5 -74q-117 0 -194.5 71.5t-77.5 194.5zM330 1165q0 -73 41 -120.5t114 -47.5q75 0 119.5 47.5t44.5 118.5q0 77 -43.5 124.5t-118.5 47.5q-69 0 -113 -48t-44 -122z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1220" d="M68 80l45 180h911l-43 -180h-913zM215 780l39 176h371l92 390h172l-90 -390h366l-37 -176h-368l-86 -389h-176l88 389h-371z" />
+<glyph unicode="&#xb2;" horiz-adv-x="851" d="M154 862l24 133q276 188 354 253q123 101 139 177q3 15 3 29q0 96 -105 96q-62 0 -90 -22t-45 -105h-127q4 87 12 146q6 37 31 62t74 48q87 35 211 35q146 0 211 -58.5t65 -154.5q0 -129 -114 -239t-338 -226q135 0 174 2q62 2 90.5 8.5t42.5 26.5q26 33 39 72h108 q-33 -180 -53 -223q-27 -60 -108 -60h-598z" />
+<glyph unicode="&#xb3;" horiz-adv-x="851" d="M215 961q0 68 27 174h118q3 -76 31 -98.5t111 -22.5q40 0 73 8.5t57.5 32.5t24.5 61q0 80 -120 88q-31 2 -99 2l31 150q59 0 94 4q51 7 87 36t36 79q0 34 -23 54.5t-65 20.5q-74 0 -104.5 -22.5t-49.5 -89.5h-125q0 41 13 129q12 68 82 102q92 45 227 45q145 0 212 -54.5 t67 -133.5q0 -93 -51 -147.5t-148 -82.5q86 -14 130 -60.5t44 -109.5q0 -62 -24 -111.5t-63 -80.5t-94 -51t-112.5 -28.5t-122.5 -8.5q-129 0 -207 31q-57 22 -57 84z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M74 1133l221 268q39 49 68.5 67.5t58.5 18.5q42 0 74 -31t32 -76q0 -32 -22.5 -59.5t-73.5 -63.5l-285 -202z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1280" d="M23 -406q0 28 10 70l188 858q23 100 23 148q0 36 -17.5 49.5t-54.5 13.5q-32 0 -78 -8l33 154q68 35 153.5 58.5t137.5 23.5q85 0 119 -31t34 -101q0 -49 -30 -184l-58 -229q-20 -85 -20 -121q0 -72 76 -72q100 0 200 90q5 30 35 172l109 457h284l-100 -457 q-3 -15 -13.5 -61.5t-15.5 -73t-10.5 -58.5t-5.5 -48q0 -35 14.5 -49.5t48.5 -14.5q40 0 113 19l-39 -168q-136 -56 -262 -56q-74 0 -116 41.5t-42 122.5q-113 -145 -256 -145q-83 0 -108 39q-43 -343 -62 -426q-20 -111 -159 -111q-70 0 -100.5 28t-30.5 70z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1138" d="M137 760q0 149 55.5 268t154.5 196.5t234.5 118.5t297.5 41h376l-30 -170q-85 -1 -116.5 -6.5t-45.5 -19.5q-16 -13 -26 -43.5t-23 -100.5q-36 -178 -81.5 -424.5t-66.5 -353.5q-50 -269 -78 -350q-56 -170 -185.5 -279.5t-362.5 -164.5l-31 135q149 49 239.5 128 t126.5 212q36 143 72 327l8 43q-23 -2 -69 -2q-197 0 -323 120t-126 325z" />
+<glyph unicode="&#xb7;" horiz-adv-x="460" d="M74 500q0 69 48 121.5t122 52.5q71 0 115 -42.5t44 -109.5q0 -84 -47.5 -134t-128.5 -50q-70 0 -111.5 45.5t-41.5 116.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M82 -463q47 10 76 17.5t62.5 20t51.5 26t30.5 34t12.5 46.5q0 60 -65 102q-31 19 -31 51q0 41 82 176h127q-49 -71 -49 -104q0 -22 29 -43q58 -35 83 -71t25 -81q0 -69 -40.5 -123t-107.5 -87t-136.5 -52t-145.5 -27z" />
+<glyph unicode="&#xb9;" horiz-adv-x="851" d="M276 860l21 121q111 7 141 29q17 14 29 77l53 265q19 104 19 121q0 32 -35 32q-33 0 -105 -14l-20 133q79 32 227 72q78 20 119 20q72 0 72 -69q0 -29 -11 -88l-53 -265l-43 -207q-8 -41 -8 -55q0 -8 2.5 -15t8.5 -11.5t11.5 -8t16 -6t17.5 -4t20.5 -3t21 -1.5t22.5 -1 t21 -1l-22 -121q-114 4 -258 4q-157 0 -267 -4z" />
+<glyph unicode="&#xba;" horiz-adv-x="794" d="M135 811q0 79 29.5 156t87.5 131q106 100 278 100q133 0 205 -66t72 -178q0 -176 -100 -284q-50 -56 -123 -86.5t-154 -30.5q-58 0 -109.5 15.5t-94 46t-67 81.5t-24.5 115zM330 827q0 -59 29 -90.5t83 -31.5q76 0 119 59q49 73 49 176q0 57 -26.5 84t-81.5 27 q-80 0 -126 -68t-46 -156z" />
+<glyph unicode="&#xbb;" horiz-adv-x="997" d="M-12 139l329 324l-188 330l109 86l294 -332q33 -37 33 -80q0 -34 -16.5 -59.5t-52.5 -53.5l-424 -317zM406 139l329 324l-186 330l108 86l295 -332q33 -37 33 -80q0 -33 -17.5 -58.5t-54.5 -54.5l-421 -317z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1849" d="M158 514l22 123q112 4 142 27q17 17 28 77l53 265q17 90 17 120q0 33 -31 33q-47 0 -108 -14l-19 135q95 35 230 70q67 20 116 20q70 0 70 -70q0 -18 -10 -86q-3 -23 -17.5 -90t-19.5 -96l-56 -278q-10 -48 -10 -62q0 -35 41 -41q51 -8 101 -10l-25 -123q-165 6 -256 6 q-103 0 -268 -6zM526 59l738 1311l116 -59l-735 -1317zM924 225l18 109l395 418q57 60 94 82t95 22q37 0 62.5 -19.5t25.5 -60.5q0 -38 -70 -395h133l-30 -156h-134l-4 -22q-4 -16 -4 -39q0 -10 3.5 -18t11 -12.5t15 -7.5t20.5 -4t22 -1.5t24.5 -1t24.5 -0.5l-22 -119 q-110 4 -258 4q-108 0 -218 -4l21 119q102 5 121 24q14 14 24 60l4 22h-374zM1141 375h186q40 196 59 262z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1849" d="M131 514l23 123q111 4 141 27q18 18 29 77l53 265q16 85 16 120q0 33 -31 33q-47 0 -108 -14l-18 135q98 36 229 70q67 20 117 20q69 0 69 -70q0 -18 -10 -86q-3 -23 -17.5 -90t-19.5 -96l-55 -278q-10 -48 -10 -62q0 -35 41 -41q52 -8 100 -10l-25 -123q-165 6 -256 6 q-103 0 -268 -6zM489 59l738 1311l116 -59l-735 -1317zM954 2l25 133l1 1h1l1 1l1 1h1l1 1l1 1h1l1 1l1 1l1 1h1l1 1l1 1h1l1 1q269 183 349 250q117 99 129 176q2 11 2 22q0 96 -105 96q-62 0 -90 -22t-45 -105h-127q4 87 12 146q6 37 31 62t74 48q87 35 211 35 q146 0 211 -58.5t65 -154.5q0 -129 -114 -239t-338 -226q135 0 174 2q62 2 90.5 8.5t42.5 26.5q26 33 39 72h108q-33 -181 -53 -224q-27 -59 -109 -59h-598z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1849" d="M172 614q0 68 27 174h120q3 -77 30.5 -98.5t113.5 -21.5q62 0 107.5 24.5t45.5 79.5q0 80 -122 86q-29 2 -97 2l33 152q45 0 77.5 4t66.5 15t51.5 35.5t17.5 61.5q0 35 -23 56.5t-65 21.5q-70 0 -103 -25t-49 -89h-124q0 101 18 152t78 79q97 45 225 45q145 0 212 -54 t67 -134q0 -93 -51 -147t-150 -83q87 -14 130.5 -60t43.5 -108q0 -78 -35 -135t-96 -88t-131 -45t-152 -14q-114 0 -207 32q-59 22 -59 82zM584 59l737 1311l117 -59l-736 -1317zM965 225l18 109l395 418q57 60 94 82t95 22q37 0 62.5 -19.5t25.5 -60.5q0 -38 -70 -395h133 l-30 -156h-134l-4 -22q-4 -16 -4 -39q0 -10 3.5 -18t11 -12.5t15 -7.5t20.5 -4t22 -1.5t24.5 -1t24.5 -0.5l-22 -119q-110 4 -259 4q-107 0 -217 -4l21 119q102 5 121 24q14 14 24 60l4 22h-374zM1182 375h186q40 196 59 262z" />
+<glyph unicode="&#xbf;" horiz-adv-x="952" d="M0 -102q0 75 24.5 139t62.5 109.5t98.5 87t116.5 68.5t134 58q52 22 81.5 52.5t43.5 76.5q6 16 14.5 48t12.5 47h145q-10 -153 -28 -236q-12 -64 -50.5 -102t-124.5 -68q-44 -17 -78.5 -35.5t-67.5 -45.5t-51 -65.5t-18 -84.5q0 -56 34 -101t106 -45q97 0 132.5 31 t59.5 127h172q0 -89 -16 -174q-19 -102 -127 -145q-123 -46 -287 -46q-102 1 -179 26t-121.5 68t-66.5 95.5t-22 114.5zM514 860q0 84 48.5 134t129.5 50q69 0 111.5 -43.5t42.5 -115.5q0 -70 -48.5 -122t-123.5 -52q-71 0 -115.5 41.5t-44.5 107.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1554" d="M-72 -2l31 168q98 2 137 39q26 21 50 54.5t81 129.5l506 873q47 81 101.5 119t130.5 38q148 0 172 -145l155 -938q10 -62 23.5 -93t38.5 -53q25 -21 121 -24l-33 -168q-184 4 -287 4q-183 0 -395 -4l31 168q71 3 122 14q33 7 45.5 25t12.5 53q0 53 -6 96l-13 82h-426 l-45 -71q-55 -88 -55 -129q0 -35 29 -50q40 -17 155 -20l-32 -168q-184 4 -408 4q-66 0 -242 -4zM629 657h291q-39 240 -58 424q-60 -119 -233 -424zM674 1786q0 45 32.5 76.5t73.5 31.5q34 0 60.5 -17.5t72.5 -72.5l220 -258l-74 -76l-295 197q-90 59 -90 119z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1554" d="M-72 -2l31 168q98 2 137 39q26 21 50 54.5t81 129.5l506 873q47 81 101.5 119t130.5 38q148 0 172 -145l155 -938q10 -62 23.5 -93t38.5 -53q25 -21 121 -24l-33 -168q-184 4 -287 4q-183 0 -395 -4l31 168q71 3 122 14q33 7 45.5 25t12.5 53q0 53 -6 96l-13 82h-426 l-45 -71q-55 -88 -55 -129q0 -35 29 -50q40 -17 155 -20l-32 -168q-184 4 -408 4q-66 0 -242 -4zM629 657h291q-39 240 -58 424q-60 -119 -233 -424zM762 1556l272 230q46 40 73 53.5t56 13.5q42 0 71.5 -30t29.5 -76q0 -67 -107 -121l-334 -160z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1554" d="M-72 -2l31 168q98 2 137 39q26 21 50 54.5t81 129.5l506 873q47 81 101.5 119t130.5 38q148 0 172 -145l155 -938q10 -62 23.5 -93t38.5 -53q25 -21 121 -24l-33 -168q-184 4 -287 4q-183 0 -395 -4l31 168q71 3 122 14q33 7 45.5 25t12.5 53q0 53 -6 96l-13 82h-426 l-45 -71q-55 -88 -55 -129q0 -35 29 -50q40 -17 155 -20l-32 -168q-184 4 -408 4q-66 0 -242 -4zM623 1540l282 270q55 52 103 52q30 0 48.5 -12t39.5 -40l194 -274l-76 -72l-231 183l-293 -183zM629 657h291q-39 240 -58 424q-60 -119 -233 -424z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1554" d="M-72 -2l31 168q98 2 137 39q26 21 50 54.5t81 129.5l506 873q47 81 101.5 119t130.5 38q148 0 172 -145l155 -938q10 -62 23.5 -93t38.5 -53q25 -21 121 -24l-33 -168q-184 4 -287 4q-183 0 -395 -4l31 168q71 3 122 14q33 7 45.5 25t12.5 53q0 53 -6 96l-13 82h-426 l-45 -71q-55 -88 -55 -129q0 -35 29 -50q40 -17 155 -20l-32 -168q-184 4 -408 4q-66 0 -242 -4zM618 1530q93 250 222 250q34 0 112 -33l74 -31q73 -30 94 -30q32 0 55 26t56 86l92 -31q-38 -121 -91.5 -188.5t-119.5 -67.5q-64 0 -141 39l-60 29q-54 25 -80 25 q-35 0 -62.5 -24t-61.5 -83zM629 657h291q-39 240 -58 424q-60 -119 -233 -424z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1554" d="M-72 -2l31 168q98 2 137 39q26 21 50 54.5t81 129.5l506 873q47 81 101.5 119t130.5 38q148 0 172 -145l155 -938q10 -62 23.5 -93t38.5 -53q25 -21 121 -24l-33 -168q-184 4 -287 4q-183 0 -395 -4l31 168q71 3 122 14q33 7 45.5 25t12.5 53q0 53 -6 96l-13 82h-426 l-45 -71q-55 -88 -55 -129q0 -35 29 -50q40 -17 155 -20l-32 -168q-184 4 -408 4q-66 0 -242 -4zM629 657h291q-39 240 -58 424q-60 -119 -233 -424zM657 1645q0 54 37 94.5t94 40.5q54 0 87.5 -34t33.5 -85q0 -63 -37.5 -103t-97.5 -40q-53 0 -85 35.5t-32 91.5zM1038 1645 q0 55 36 95t93 40q55 0 88 -33.5t33 -85.5q0 -63 -36.5 -103t-96.5 -40q-53 0 -85 35.5t-32 91.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1554" d="M-72 -2l31 168q98 2 137 39q26 21 50 54.5t81 129.5l506 873q47 81 101.5 119t130.5 38q148 0 172 -145l155 -938q10 -62 23.5 -93t38.5 -53q25 -21 121 -24l-33 -168q-184 4 -287 4q-183 0 -395 -4l31 168q71 3 122 14q33 7 45.5 25t12.5 53q0 53 -6 96l-13 82h-426 l-45 -71q-55 -88 -55 -129q0 -35 29 -50q40 -17 155 -20l-32 -168q-184 4 -408 4q-66 0 -242 -4zM629 657h291q-39 240 -58 424q-60 -119 -233 -424zM780 1628q0 90 62 150.5t151 60.5q82 0 132.5 -48.5t50.5 -129.5q0 -89 -60 -150t-149 -61q-81 0 -134 49t-53 129z M881 1640q0 -46 24.5 -73t67.5 -27t71.5 32.5t28.5 86.5q0 43 -25.5 67.5t-62.5 24.5q-43 0 -73.5 -30t-30.5 -81z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2181" d="M-41 -2l33 168q112 3 170 39q58 38 141 141l584 721q53 64 53 104q0 20 -9.5 29t-33.5 14q-52 9 -149 9l30 161h1258q135 0 135 -96q0 -102 -45 -287h-158q0 66 -9 93.5t-30 42.5q-15 12 -45 17t-106 5h-222l-69 -352h78q111 0 149 31q27 24 58 110h149 q-49 -214 -92 -487h-143q0 73 -19 102q-17 27 -44.5 36t-92.5 9h-82l-51 -258q-11 -66 -11 -71q0 -48 44 -54q51 -8 161 -8q211 0 285 53q42 28 102 146h162q-2 -11 -14 -64.5t-19 -81t-19 -71.5t-24.5 -75t-25.5 -52q-50 -72 -201 -72h-993l33 162q43 1 65.5 3t50.5 8.5 t42.5 20t21.5 35.5q8 26 24 103l23 110h-447l-90 -108q-35 -42 -49 -67t-14 -54q0 -27 28 -35q41 -11 134 -16l-31 -164q-196 4 -365 4q-115 0 -311 -4zM825 659h318l90 455q4 24 4 33q0 14 -12 14q-9 0 -16 -7.5t-29 -35.5q-239 -310 -355 -459z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1396" d="M121 551q0 201 72 379t221 303q213 184 573 184q210 0 326 -57q82 -40 82 -123q0 -86 -37 -276h-178q0 137 -48.5 182t-189.5 45q-105 0 -198 -42.5t-154 -125.5q-66 -88 -101.5 -207t-35.5 -233q0 -101 28 -176t76.5 -117.5t107 -63t126.5 -20.5q166 0 235 59 q50 46 104 168h175q-42 -238 -80 -297q-44 -71 -150 -110q-134 -47 -313 -52q-25 -45 -25 -69t29 -45q60 -38 85.5 -75t25.5 -83q0 -58 -28 -106.5t-72 -80.5t-103.5 -57t-116 -38.5t-117.5 -20.5l-2 121q49 11 77 19t63 21t53.5 27t31.5 35t13 47q0 59 -68 109 q-33 20 -33 53q0 48 64 149q-247 23 -382.5 175t-135.5 399z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1302" d="M-33 0l33 162q125 3 160 33q6 4 10 11t7 13t6 19t5 22t6 30.5t7 35.5l143 733q14 82 14 104q0 35 -41 47q-48 10 -129 13l31 161h930q75 0 110 -24t35 -76q0 -92 -45 -283h-157q0 10 -1 22.5t-3 27t-3 20.5q-5 42 -34 66q-28 22 -144 22h-229l-70 -352h78q112 0 150 31 q24 19 59 110h149q-51 -203 -92 -487h-145v10q0 28 -1 42t-5 34t-14 31.5t-27 17.5q-37 12 -111 12h-78l-55 -280q-1 -5 -3 -16.5t-3.5 -21t-1.5 -14.5q0 -45 45 -51q51 -8 178 -8q202 0 273 57q32 24 96 142h162q-12 -85 -42 -189.5t-63 -154.5q-46 -72 -203 -72h-987z M481 1784q0 45 33 76.5t74 31.5q34 0 60.5 -17.5t72.5 -72.5l219 -258l-74 -76l-295 197q-90 59 -90 119z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1302" d="M-33 0l33 162q125 3 160 33q6 4 10 11t7 13t6 19t5 22t6 30.5t7 35.5l143 733q14 82 14 104q0 35 -41 47q-48 10 -129 13l31 161h930q75 0 110 -24t35 -76q0 -92 -45 -283h-157q0 10 -1 22.5t-3 27t-3 20.5q-5 42 -34 66q-28 22 -144 22h-229l-70 -352h78q112 0 150 31 q24 19 59 110h149q-51 -203 -92 -487h-145v10q0 28 -1 42t-5 34t-14 31.5t-27 17.5q-37 12 -111 12h-78l-55 -280q-1 -5 -3 -16.5t-3.5 -21t-1.5 -14.5q0 -45 45 -51q51 -8 178 -8q202 0 273 57q32 24 96 142h162q-12 -85 -42 -189.5t-63 -154.5q-46 -72 -203 -72h-987z M633 1556l272 230q46 40 73 53.5t56 13.5q42 0 71.5 -30t29.5 -76q0 -67 -107 -121l-334 -160z" />
+<glyph unicode="&#xca;" horiz-adv-x="1302" d="M-33 0l33 162q125 3 160 33q6 4 10 11t7 13t6 19t5 22t6 30.5t7 35.5l143 733q14 82 14 104q0 35 -41 47q-48 10 -129 13l31 161h930q75 0 110 -24t35 -76q0 -92 -45 -283h-157q0 10 -1 22.5t-3 27t-3 20.5q-5 42 -34 66q-28 22 -144 22h-229l-70 -352h78q112 0 150 31 q24 19 59 110h149q-51 -203 -92 -487h-145v10q0 28 -1 42t-5 34t-14 31.5t-27 17.5q-37 12 -111 12h-78l-55 -280q-1 -5 -3 -16.5t-3.5 -21t-1.5 -14.5q0 -45 45 -51q51 -8 178 -8q202 0 273 57q32 24 96 142h162q-12 -85 -42 -189.5t-63 -154.5q-46 -72 -203 -72h-987z M444 1540l283 270q55 52 102 52q30 0 49 -12.5t40 -39.5l194 -274l-76 -72l-231 183l-293 -183z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1302" d="M-33 0l33 162q125 3 160 33q6 4 10 11t7 13t6 19t5 22t6 30.5t7 35.5l143 733q14 82 14 104q0 35 -41 47q-48 10 -129 13l31 161h930q75 0 110 -24t35 -76q0 -92 -45 -283h-157q0 10 -1 22.5t-3 27t-3 20.5q-5 42 -34 66q-28 22 -144 22h-229l-70 -352h78q112 0 150 31 q24 19 59 110h149q-51 -203 -92 -487h-145v10q0 28 -1 42t-5 34t-14 31.5t-27 17.5q-37 12 -111 12h-78l-55 -280q-1 -5 -3 -16.5t-3.5 -21t-1.5 -14.5q0 -45 45 -51q51 -8 178 -8q202 0 273 57q32 24 96 142h162q-12 -85 -42 -189.5t-63 -154.5q-46 -72 -203 -72h-987z M479 1647q0 54 37 94.5t94 40.5q54 0 87.5 -34t33.5 -85q0 -63 -37.5 -103t-97.5 -40q-53 0 -85 35.5t-32 91.5zM860 1647q0 55 36 95t93 40q55 0 88 -33.5t33 -85.5q0 -63 -36.5 -103t-96.5 -40q-53 0 -85 35.5t-32 91.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="770" d="M-33 -2l33 164q79 4 111 12t51 23q16 16 39 129l145 743q12 71 12 96q0 35 -36 45q-38 10 -134 13l31 163q264 -6 346 -6q56 0 332 6l-31 -163q-89 -4 -119.5 -11.5t-44.5 -23.5q-19 -22 -38 -121l-142 -733q-16 -88 -16 -107q0 -37 41 -49q33 -10 129 -16l-33 -164 q-172 4 -346 4q-150 0 -330 -4zM279 1784q0 45 32.5 76.5t73.5 31.5q34 0 60.5 -17.5t72.5 -72.5l219 -258l-73 -76l-295 197q-90 59 -90 119z" />
+<glyph unicode="&#xcd;" horiz-adv-x="770" d="M-33 -2l33 164q79 4 111 12t51 23q16 16 39 129l145 743q12 71 12 96q0 35 -36 45q-38 10 -134 13l31 163q264 -6 346 -6q56 0 332 6l-31 -163q-89 -4 -119.5 -11.5t-44.5 -23.5q-19 -22 -38 -121l-142 -733q-16 -88 -16 -107q0 -37 41 -49q33 -10 129 -16l-33 -164 q-172 4 -346 4q-150 0 -330 -4zM377 1556l272 230q46 40 73 53.5t56 13.5q42 0 71.5 -30t29.5 -76q0 -67 -107 -121l-334 -160z" />
+<glyph unicode="&#xce;" horiz-adv-x="770" d="M-33 -2l33 164q79 4 111 12t51 23q16 16 39 129l145 743q12 71 12 96q0 35 -36 45q-38 10 -134 13l31 163q264 -6 346 -6q56 0 332 6l-31 -163q-89 -4 -119.5 -11.5t-44.5 -23.5q-19 -22 -38 -121l-142 -733q-16 -88 -16 -107q0 -37 41 -49q33 -10 129 -16l-33 -164 q-172 4 -346 4q-150 0 -330 -4zM233 1540l283 270q55 52 102 52q30 0 49 -12.5t40 -39.5l194 -274l-76 -72l-231 183l-293 -183z" />
+<glyph unicode="&#xcf;" horiz-adv-x="770" d="M-33 -2l33 164q79 4 111 12t51 23q16 16 39 129l145 743q12 71 12 96q0 35 -36 45q-38 10 -134 13l31 163q264 -6 346 -6q56 0 332 6l-31 -163q-89 -4 -119.5 -11.5t-44.5 -23.5q-19 -22 -38 -121l-142 -733q-16 -88 -16 -107q0 -37 41 -49q33 -10 129 -16l-33 -164 q-172 4 -346 4q-150 0 -330 -4zM276 1647q0 54 37.5 94.5t94.5 40.5q53 0 86.5 -33.5t33.5 -85.5q0 -63 -37.5 -103t-97.5 -40q-53 0 -85 35.5t-32 91.5zM657 1647q0 55 36 95t93 40q55 0 88 -33.5t33 -85.5q0 -63 -36.5 -103t-96.5 -40q-53 0 -85 35.5t-32 91.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1507" d="M-33 0l33 162q91 6 120 12t42 23q18 21 37 120l63 330h-201l31 154h201l51 258q12 65 12 100q0 43 -34 51q-50 10 -134 13l31 161h397q300 0 449 -33t240 -102q82 -61 130 -166t48 -217q0 -119 -16.5 -221.5t-56.5 -207t-118 -191.5t-190 -146q-188 -100 -596 -100h-539z M508 276q0 -21 12.5 -34t39 -18t45 -6t52.5 -1q129 0 225 46t153.5 129.5t85.5 192t28 242.5q0 83 -32.5 157.5t-88.5 113.5q-83 61 -283 61h-69l-70 -358h301l-33 -154h-296l-62 -319q-8 -40 -8 -52z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1572" d="M-35 -2l35 164q84 5 115 14t49 25q16 22 45 172q45 213 127 628q20 106 20 150q0 54 -51 61q-34 6 -119 11l31 163q86 -4 301 -4q133 0 205 4q351 -746 432 -940q18 109 41 240t37 209.5t18 112.5q15 114 15 137q0 53 -45 63q-57 13 -127 15l32 163q218 -4 306 -4 q46 0 272 4l-33 -163q-87 -4 -116 -10.5t-44 -24.5q-20 -20 -51 -178q-25 -130 -79 -410t-91 -473q-15 -79 -49.5 -114.5t-114.5 -35.5q-63 0 -96.5 25t-56.5 78q-117 261 -219.5 485.5t-141.5 311.5t-71 161q-103 -546 -121 -665q-21 -117 -21 -146q0 -46 56 -53 q40 -6 114 -12l-32 -164q-212 4 -293 4q-61 0 -279 -4zM647 1530q93 250 221 250q35 0 113 -33l74 -31q73 -30 94 -30q32 0 55 26t56 86l92 -31q-38 -121 -91.5 -188.5t-119.5 -67.5q-65 0 -142 39l-59 29q-54 25 -80 25q-35 0 -63 -24t-62 -83z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1521" d="M123 532q0 203 73 394t220 315q209 174 516 174q145 0 254.5 -38t177 -109t100.5 -166t33 -215q0 -186 -58 -372t-177 -314q-104 -112 -245 -170t-300 -58q-130 0 -236 33t-187 99.5t-126 175t-45 251.5zM455 547q0 -342 280 -342q92 0 159.5 34t121.5 113 q68 100 103.5 248t35.5 277q0 158 -66.5 234.5t-201.5 76.5q-171 0 -275 -131q-73 -92 -115 -237t-42 -273zM688 1784q0 45 33 76.5t74 31.5q34 0 60.5 -17.5t72.5 -72.5l219 -258l-74 -76l-295 197q-90 59 -90 119z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1521" d="M123 532q0 203 73 394t220 315q209 174 516 174q145 0 254.5 -38t177 -109t100.5 -166t33 -215q0 -186 -58 -372t-177 -314q-104 -112 -245 -170t-300 -58q-130 0 -236 33t-187 99.5t-126 175t-45 251.5zM455 547q0 -342 280 -342q92 0 159.5 34t121.5 113 q68 100 103.5 248t35.5 277q0 158 -66.5 234.5t-201.5 76.5q-171 0 -275 -131q-73 -92 -115 -237t-42 -273zM741 1556l273 230q46 40 73 53.5t56 13.5q42 0 71 -30t29 -76q0 -68 -106 -121l-334 -160z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1521" d="M123 532q0 203 73 394t220 315q209 174 516 174q145 0 254.5 -38t177 -109t100.5 -166t33 -215q0 -186 -58 -372t-177 -314q-104 -112 -245 -170t-300 -58q-130 0 -236 33t-187 99.5t-126 175t-45 251.5zM455 547q0 -342 280 -342q92 0 159.5 34t121.5 113 q68 100 103.5 248t35.5 277q0 158 -66.5 234.5t-201.5 76.5q-171 0 -275 -131q-73 -92 -115 -237t-42 -273zM616 1540l283 270q55 52 102 52q30 0 49 -12.5t40 -39.5l194 -274l-76 -72l-231 183l-293 -183z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1521" d="M123 532q0 203 73 394t220 315q209 174 516 174q145 0 254.5 -38t177 -109t100.5 -166t33 -215q0 -186 -58 -372t-177 -314q-104 -112 -245 -170t-300 -58q-130 0 -236 33t-187 99.5t-126 175t-45 251.5zM455 547q0 -342 280 -342q92 0 159.5 34t121.5 113 q68 100 103.5 248t35.5 277q0 158 -66.5 234.5t-201.5 76.5q-171 0 -275 -131q-73 -92 -115 -237t-42 -273zM602 1530q93 250 221 250q35 0 113 -33l74 -31q72 -30 94 -30q32 0 54.5 26t55.5 86l93 -31q-38 -121 -91.5 -188.5t-119.5 -67.5q-65 0 -142 39l-59 29 q-54 25 -80 25q-35 0 -63 -24t-62 -83z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1521" d="M123 532q0 203 73 394t220 315q209 174 516 174q145 0 254.5 -38t177 -109t100.5 -166t33 -215q0 -186 -58 -372t-177 -314q-104 -112 -245 -170t-300 -58q-130 0 -236 33t-187 99.5t-126 175t-45 251.5zM455 547q0 -342 280 -342q92 0 159.5 34t121.5 113 q68 100 103.5 248t35.5 277q0 158 -66.5 234.5t-201.5 76.5q-171 0 -275 -131q-73 -92 -115 -237t-42 -273zM647 1647q0 54 37 94.5t94 40.5q54 0 87.5 -34t33.5 -85q0 -63 -37.5 -103t-97.5 -40q-53 0 -85 35.5t-32 91.5zM1028 1647q0 55 36 95t93 40q55 0 88 -33.5 t33 -85.5q0 -63 -36.5 -103t-96.5 -40q-53 0 -85 35.5t-32 91.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1230" d="M205 360l317 289l-217 281l141 131l213 -281l314 283l102 -131l-317 -285l217 -285l-141 -124l-216 278l-319 -285z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1521" d="M121 12l121 144q-119 141 -119 376q0 203 73 394t220 315q209 174 516 174q190 0 321 -67l121 141l105 -86l-115 -135q133 -139 133 -381q0 -186 -58 -372t-177 -314q-104 -112 -245 -170t-300 -58q-223 0 -371 93l-119 -140zM455 547q0 -71 12 -127l602 710 q-64 58 -182 58q-171 0 -275 -131q-73 -92 -115 -237t-42 -273zM530 283q69 -78 205 -78q92 0 159.5 34t121.5 113q68 100 103.5 248t35.5 277q0 62 -14 127z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1605" d="M174 1223l33 163q160 -4 321 -4q211 0 375 4l-31 -163q-93 -3 -123 -10.5t-47 -24.5q-21 -21 -38 -105q-33 -151 -89 -444q-26 -130 -26 -217q0 -223 264 -223q216 0 303 106q33 39 58.5 101t37.5 109t31 134q34 176 74 414q8 55 8 86q0 47 -43 59q-37 12 -145 15l32 163 q74 -2 344 -2q22 0 109.5 1t126.5 1l-33 -163q-80 -5 -112 -17t-45 -30q-25 -41 -41 -129l-86 -441q-38 -197 -79 -299t-116 -174q-83 -82 -213.5 -124t-288.5 -42q-78 0 -148 10.5t-138.5 37t-118 67.5t-79.5 106.5t-30 149.5q0 111 37 293q17 86 49.5 241t38.5 195 q12 65 12 84q0 44 -43 57q-48 12 -141 15zM702 1784q0 45 33 76.5t74 31.5q34 0 60.5 -17.5t72.5 -72.5l219 -258l-74 -76l-294 197q-91 60 -91 119z" />
+<glyph unicode="&#xda;" horiz-adv-x="1605" d="M174 1223l33 163q160 -4 321 -4q211 0 375 4l-31 -163q-93 -3 -123 -10.5t-47 -24.5q-21 -21 -38 -105q-33 -151 -89 -444q-26 -130 -26 -217q0 -223 264 -223q216 0 303 106q33 39 58.5 101t37.5 109t31 134q34 176 74 414q8 55 8 86q0 47 -43 59q-37 12 -145 15l32 163 q74 -2 344 -2q22 0 109.5 1t126.5 1l-33 -163q-80 -5 -112 -17t-45 -30q-25 -41 -41 -129l-86 -441q-38 -197 -79 -299t-116 -174q-83 -82 -213.5 -124t-288.5 -42q-78 0 -148 10.5t-138.5 37t-118 67.5t-79.5 106.5t-30 149.5q0 111 37 293q17 86 49.5 241t38.5 195 q12 65 12 84q0 44 -43 57q-48 12 -141 15zM836 1556l272 230q46 40 73 53.5t56 13.5q42 0 71 -30t29 -76q0 -68 -106 -121l-334 -160z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1605" d="M174 1223l33 163q160 -4 321 -4q211 0 375 4l-31 -163q-93 -3 -123 -10.5t-47 -24.5q-21 -21 -38 -105q-33 -151 -89 -444q-26 -130 -26 -217q0 -223 264 -223q216 0 303 106q33 39 58.5 101t37.5 109t31 134q34 176 74 414q8 55 8 86q0 47 -43 59q-37 12 -145 15l32 163 q74 -2 344 -2q22 0 109.5 1t126.5 1l-33 -163q-80 -5 -112 -17t-45 -30q-25 -41 -41 -129l-86 -441q-38 -197 -79 -299t-116 -174q-83 -82 -213.5 -124t-288.5 -42q-78 0 -148 10.5t-138.5 37t-118 67.5t-79.5 106.5t-30 149.5q0 111 37 293q17 86 49.5 241t38.5 195 q12 65 12 84q0 44 -43 57q-48 12 -141 15zM657 1540l283 270q55 52 102 52q30 0 48.5 -12t39.5 -40l195 -274l-76 -72l-231 183l-293 -183z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1605" d="M174 1223l33 163q160 -4 321 -4q211 0 375 4l-31 -163q-93 -3 -123 -10.5t-47 -24.5q-21 -21 -38 -105q-33 -151 -89 -444q-26 -130 -26 -217q0 -223 264 -223q216 0 303 106q33 39 58.5 101t37.5 109t31 134q34 176 74 414q8 55 8 86q0 47 -43 59q-37 12 -145 15l32 163 q74 -2 344 -2q22 0 109.5 1t126.5 1l-33 -163q-80 -5 -112 -17t-45 -30q-25 -41 -41 -129l-86 -441q-38 -197 -79 -299t-116 -174q-83 -82 -213.5 -124t-288.5 -42q-78 0 -148 10.5t-138.5 37t-118 67.5t-79.5 106.5t-30 149.5q0 111 37 293q17 86 49.5 241t38.5 195 q12 65 12 84q0 44 -43 57q-48 12 -141 15zM678 1647q0 54 37 94.5t94 40.5q53 0 87 -34t34 -85q0 -63 -37.5 -103t-97.5 -40q-53 0 -85 35.5t-32 91.5zM1059 1647q0 55 36 95t93 40q55 0 88 -33.5t33 -85.5q0 -63 -36.5 -103t-96.5 -40q-53 0 -85 35.5t-32 91.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1378" d="M150 1223l32 163q226 -4 307 -4q118 0 336 4l-32 -163q-68 -3 -113 -17q-37 -15 -37 -53q0 -35 19 -84q98 -253 124 -326q37 51 78.5 105.5t96 123.5t81.5 103q48 61 48 96q0 52 -125 52l32 163q94 -4 351 -4q108 0 196 4l-33 -163q-61 -3 -100 -31q-10 -6 -26.5 -23 t-32 -35.5t-47 -56.5t-56.5 -67l-395 -465l-45 -221q-10 -62 -10 -88q0 -50 76 -64q28 -6 102 -10l-31 -164q-218 4 -346 4q-144 0 -348 -4l33 164q92 6 125 15t47 26q21 21 35 104l47 236l-213 522q-26 61 -43 91t-39 44q-28 20 -94 23zM719 1556l272 230q46 40 73 53.5 t56 13.5q42 0 71.5 -30t29.5 -76q0 -67 -107 -121l-334 -160z" />
+<glyph unicode="&#xde;" horiz-adv-x="1310" d="M-33 -2l33 168q60 2 93 7t44 10t23 16q12 10 19.5 35t21.5 94l145 741q12 67 12 90q0 44 -55 53q-37 6 -115 9l31 165q159 -6 342 -6q80 0 332 6l-31 -165q-93 -3 -123 -8.5t-43 -18.5q-17 -15 -24 -59l-6 -27q265 0 376 -21q124 -24 188 -105.5t64 -195.5 q0 -124 -46 -218t-129.5 -150.5t-193.5 -84.5t-245 -28q-121 0 -170 4l-4 -24q-4 -36 -4 -47q0 -28 10 -41.5t39 -20.5q48 -10 149 -10l-32 -168q-172 4 -371 4q-150 0 -330 -4zM549 508q33 -2 110 -2q51 0 92 5t82.5 19.5t70 39t46 66t17.5 97.5q0 49 -20 82.5t-59.5 50.5 t-85 24t-108.5 7h-67z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1316" d="M-328 -422q0 78 33 193h150q0 -75 14.5 -101t69.5 -26q59 0 94 47q38 47 63 196l148 846h-170l30 158q84 13 127 41q23 13 36.5 39.5t27.5 81.5q73 273 237 370q126 74 310 74q188 0 281.5 -75.5t93.5 -200.5q0 -50 -16 -94.5t-50.5 -85t-63 -67t-79.5 -67.5 q-74 -58 -74 -94q0 -30 24 -61q12 -15 129 -138q144 -147 144 -278q0 -115 -62.5 -199.5t-164.5 -125t-230 -40.5q-158 0 -223 52q-20 13 -31.5 40.5t-11.5 57.5q0 69 39 205h129q4 -73 37.5 -108.5t105.5 -35.5q59 0 90 26t31 64q0 64 -86 150q-34 34 -81 86t-48 53 q-68 75 -68 150q0 65 33.5 118t114.5 129q69 62 106 111.5t37 97.5q0 113 -135 113q-92 0 -141 -55q-63 -74 -86 -205l-205 -1102q-29 -155 -74 -245t-119 -148q-115 -88 -290 -88q-82 0 -164 35q-62 30 -62 106z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1230" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q49 0 108 -10.5t93 -29.5l45 67h217l-133 -547q-33 -139 -33 -188q0 -32 14 -48t48 -16q60 0 116 19l-39 -170q-134 -53 -258 -53q-85 0 -124 38.5t-39 118.5q-130 -164 -322 -164q-162 0 -244 89t-82 245zM365 352 q0 -73 35 -112t102 -39q103 0 196 96q7 51 35 162l66 248q-54 32 -127 32q-111 0 -185 -71q-53 -51 -87.5 -143.5t-34.5 -172.5zM477 1417q0 44 34 74.5t77 30.5q35 0 62 -22t63 -87l168 -297l-86 -61l-246 243q-39 39 -55.5 65t-16.5 54z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1230" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q49 0 108 -10.5t93 -29.5l45 67h217l-133 -547q-33 -139 -33 -188q0 -32 14 -48t48 -16q60 0 116 19l-39 -170q-134 -53 -258 -53q-85 0 -124 38.5t-39 118.5q-130 -164 -322 -164q-162 0 -244 89t-82 245zM365 352 q0 -73 35 -112t102 -39q103 0 196 96q7 51 35 162l66 248q-54 32 -127 32q-111 0 -185 -71q-53 -51 -87.5 -143.5t-34.5 -172.5zM586 1133l221 268q39 49 68.5 67.5t58.5 18.5q42 0 74 -31t32 -76q0 -32 -22.5 -59.5t-73.5 -63.5l-285 -202z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1230" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q49 0 108 -10.5t93 -29.5l45 67h217l-133 -547q-33 -139 -33 -188q0 -32 14 -48t48 -16q60 0 116 19l-39 -170q-134 -53 -258 -53q-85 0 -124 38.5t-39 118.5q-130 -164 -322 -164q-162 0 -244 89t-82 245zM365 352 q0 -73 35 -112t102 -39q103 0 196 96q7 51 35 162l66 248q-54 32 -127 32q-111 0 -185 -71q-53 -51 -87.5 -143.5t-34.5 -172.5zM442 1110l273 311q50 56 100 56q64 0 88 -52l158 -331l-92 -58l-183 215l-264 -215z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1230" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q49 0 108 -10.5t93 -29.5l45 67h217l-133 -547q-33 -139 -33 -188q0 -32 14 -48t48 -16q60 0 116 19l-39 -170q-134 -53 -258 -53q-85 0 -124 38.5t-39 118.5q-130 -164 -322 -164q-162 0 -244 89t-82 245zM365 352 q0 -73 35 -112t102 -39q103 0 196 96q7 51 35 162l66 248q-54 32 -127 32q-111 0 -185 -71q-53 -51 -87.5 -143.5t-34.5 -172.5zM459 1124q19 68 43.5 122t65.5 95t89 41q53 0 123 -32l56 -27q63 -29 94 -29q27 0 48.5 25t49.5 82l94 -29q-26 -120 -73 -190t-111 -70 q-57 0 -139 39l-54 23q-56 22 -88 22q-33 0 -55.5 -21t-50.5 -79z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1230" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q49 0 108 -10.5t93 -29.5l45 67h217l-133 -547q-33 -139 -33 -188q0 -32 14 -48t48 -16q60 0 116 19l-39 -170q-134 -53 -258 -53q-85 0 -124 38.5t-39 118.5q-130 -164 -322 -164q-162 0 -244 89t-82 245zM365 352 q0 -73 35 -112t102 -39q103 0 196 96q7 51 35 162l66 248q-54 32 -127 32q-111 0 -185 -71q-53 -51 -87.5 -143.5t-34.5 -172.5zM504 1257q0 55 37 96.5t94 41.5q53 0 86 -34t33 -85q0 -66 -36.5 -106t-96.5 -40q-54 0 -85.5 35t-31.5 92zM850 1257q0 54 38 96t93 42 q54 0 87.5 -34t33.5 -85q0 -66 -37.5 -106t-97.5 -40q-54 0 -85.5 35t-31.5 92z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1230" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q49 0 108 -10.5t93 -29.5l45 67h217l-133 -547q-33 -139 -33 -188q0 -32 14 -48t48 -16q60 0 116 19l-39 -170q-134 -53 -258 -53q-85 0 -124 38.5t-39 118.5q-130 -164 -322 -164q-162 0 -244 89t-82 245zM365 352 q0 -73 35 -112t102 -39q103 0 196 96q7 51 35 162l66 248q-54 32 -127 32q-111 0 -185 -71q-53 -51 -87.5 -143.5t-34.5 -172.5zM584 1243q0 90 62 149.5t151 59.5q82 0 132 -48.5t50 -129.5q0 -88 -60 -149.5t-149 -61.5q-81 0 -133.5 48.5t-52.5 131.5zM684 1253 q0 -45 25 -71.5t67 -26.5q43 0 72 32t29 85q0 43 -26 68.5t-63 25.5q-43 0 -73.5 -31t-30.5 -82z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1665" d="M57 309q0 122 54 255.5t145 228.5q162 165 434 165q52 0 109.5 -10t89.5 -30l45 83h186l-22 -108q36 37 105.5 57.5t121.5 20.5q151 -1 226 -68.5t75 -181.5q0 -55 -15 -99.5t-56 -88.5t-107.5 -73.5t-175.5 -48.5t-254 -20q-2 -12 -2 -35q0 -68 47.5 -112.5t144.5 -44.5 q133 0 318 92l78 -164q-220 -156 -490 -156q-129 0 -219 49t-127 150q-77 -88 -169 -141.5t-216 -53.5q-164 0 -245 89t-81 245zM365 346q0 -70 35.5 -107.5t101.5 -37.5q64 0 127 39t114 106q15 138 68 359q-70 34 -143 34q-107 0 -181 -71q-53 -51 -87.5 -145.5 t-34.5 -176.5zM1042 569q332 3 332 131q0 72 -100 72q-84 0 -139 -49q-74 -63 -93 -154z" />
+<glyph unicode="&#xe7;" horiz-adv-x="983" d="M59 356q0 144 53 278.5t158 217.5q154 119 361 119q119 0 196 -25q59 -21 81 -47.5t22 -81.5q0 -83 -37 -219h-164q-6 104 -37 129q-35 27 -88 27q-78 0 -136 -56.5t-84 -135t-26 -161.5q0 -110 46 -156t133 -46q131 0 282 77l78 -159q-164 -124 -369 -142 q-24 -43 -24 -69q0 -23 28 -43q58 -35 83.5 -71t25.5 -81q0 -69 -40.5 -123t-107.5 -87t-136.5 -52t-145.5 -27l-4 115q47 10 76 17.5t62.5 20t51.5 26t30.5 34t12.5 46.5q0 60 -65 102q-31 19 -31 51q0 40 59 141q-161 17 -252.5 117.5t-91.5 263.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1005" d="M59 356q0 175 68 313.5t199 220t305 81.5q171 0 253.5 -69.5t82.5 -184.5q0 -53 -15 -97.5t-56 -87.5t-107.5 -72.5t-175.5 -48.5t-253 -20q-4 -12 -4 -33q0 -70 46.5 -114.5t146.5 -44.5q132 0 317 92l80 -164q-227 -156 -491 -156q-180 0 -288 100.5t-108 284.5z M336 1417q0 44 33.5 74.5t76.5 30.5q35 0 62 -22t63 -87l168 -297l-86 -61l-245 243q-39 39 -55.5 65t-16.5 54zM381 569q334 3 334 131q0 72 -99 72q-86 0 -148 -55t-87 -148z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1005" d="M59 356q0 175 68 313.5t199 220t305 81.5q171 0 253.5 -69.5t82.5 -184.5q0 -53 -15 -97.5t-56 -87.5t-107.5 -72.5t-175.5 -48.5t-253 -20q-4 -12 -4 -33q0 -70 46.5 -114.5t146.5 -44.5q132 0 317 92l80 -164q-227 -156 -491 -156q-180 0 -288 100.5t-108 284.5z M381 569q334 3 334 131q0 72 -99 72q-86 0 -148 -55t-87 -148zM457 1133l221 268q39 49 68.5 67.5t58.5 18.5q42 0 74 -31t32 -76q0 -32 -22.5 -59.5t-73.5 -63.5l-285 -202z" />
+<glyph unicode="&#xea;" horiz-adv-x="1005" d="M59 356q0 175 68 313.5t199 220t305 81.5q171 0 253.5 -69.5t82.5 -184.5q0 -53 -15 -97.5t-56 -87.5t-107.5 -72.5t-175.5 -48.5t-253 -20q-4 -12 -4 -33q0 -70 46.5 -114.5t146.5 -44.5q132 0 317 92l80 -164q-227 -156 -491 -156q-180 0 -288 100.5t-108 284.5z M330 1110l272 311q50 56 100 56q65 0 89 -52l157 -331l-92 -58l-182 215l-264 -215zM381 569q334 3 334 131q0 72 -99 72q-86 0 -148 -55t-87 -148z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1005" d="M59 356q0 175 68 313.5t199 220t305 81.5q171 0 253.5 -69.5t82.5 -184.5q0 -53 -15 -97.5t-56 -87.5t-107.5 -72.5t-175.5 -48.5t-253 -20q-4 -12 -4 -33q0 -70 46.5 -114.5t146.5 -44.5q132 0 317 92l80 -164q-227 -156 -491 -156q-180 0 -288 100.5t-108 284.5z M381 569q334 3 334 131q0 72 -99 72q-86 0 -148 -55t-87 -148zM385 1257q0 55 37 96.5t94 41.5q53 0 86 -34t33 -85q0 -66 -36.5 -106t-96.5 -40q-54 0 -85.5 35t-31.5 92zM731 1257q0 54 38 96t93 42q54 0 87.5 -34t33.5 -85q0 -66 -37.5 -106t-97.5 -40q-54 0 -85.5 35 t-31.5 92z" />
+<glyph unicode="&#xec;" horiz-adv-x="667" d="M63 729l33 154q160 80 277 80q87 0 125.5 -37t38.5 -119q0 -43 -43 -229l-39 -156q-33 -126 -33 -172q0 -36 15.5 -50t51.5 -14q41 0 111 19l-39 -170q-63 -27 -141 -40t-133 -13q-181 0 -181 139q0 54 29 176l53 227q29 131 29 148q0 34 -16.5 48.5t-50.5 14.5 q-50 0 -87 -6zM100 1417q0 44 34 74.5t77 30.5q35 0 62 -22t63 -87l168 -297l-86 -61l-246 243q-39 39 -55.5 65t-16.5 54z" />
+<glyph unicode="&#xed;" horiz-adv-x="667" d="M63 729l33 154q160 80 277 80q87 0 125.5 -37t38.5 -119q0 -43 -43 -229l-39 -156q-33 -126 -33 -172q0 -36 15.5 -50t51.5 -14q41 0 111 19l-39 -170q-63 -27 -141 -40t-133 -13q-181 0 -181 139q0 54 29 176l53 227q29 131 29 148q0 34 -16.5 48.5t-50.5 14.5 q-50 0 -87 -6zM223 1133l221 268q39 49 68.5 67.5t58.5 18.5q42 0 74.5 -31t32.5 -76q0 -32 -22.5 -59.5t-73.5 -63.5l-285 -202z" />
+<glyph unicode="&#xee;" horiz-adv-x="667" d="M63 729l33 154q160 80 277 80q87 0 125.5 -37t38.5 -119q0 -43 -43 -229l-39 -156q-33 -126 -33 -172q0 -36 15.5 -50t51.5 -14q41 0 111 19l-39 -170q-63 -27 -141 -40t-133 -13q-181 0 -181 139q0 54 29 176l53 227q29 131 29 148q0 34 -16.5 48.5t-50.5 14.5 q-50 0 -87 -6zM84 1110l272 311q50 56 101 56q64 0 88 -52l157 -331l-92 -58l-182 215l-264 -215z" />
+<glyph unicode="&#xef;" horiz-adv-x="667" d="M63 729l33 154q160 80 277 80q87 0 125.5 -37t38.5 -119q0 -43 -43 -229l-39 -156q-33 -126 -33 -172q0 -36 15.5 -50t51.5 -14q41 0 111 19l-39 -170q-63 -27 -141 -40t-133 -13q-181 0 -181 139q0 54 29 176l53 227q29 131 29 148q0 34 -16.5 48.5t-50.5 14.5 q-50 0 -87 -6zM100 1257q0 55 37 96.5t94 41.5q53 0 86 -34t33 -85q0 -66 -36.5 -106t-96.5 -40q-54 0 -85.5 35t-31.5 92zM446 1257q0 54 38.5 96t93.5 42q54 0 87 -34t33 -85q0 -66 -37.5 -106t-97.5 -40q-54 0 -85.5 35t-31.5 92z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1124" d="M59 360q0 256 144 418q59 65 151 105.5t201 40.5q105 0 168 -47q-27 121 -88 204l-217 -120l-62 104l211 119q-83 103 -229 184l98 148q209 -82 336 -201l172 96l62 -108l-150 -84q111 -133 159 -268.5t48 -321.5q0 -136 -38.5 -273.5t-123.5 -226.5q-71 -77 -178 -117.5 t-229 -40.5q-92 0 -169 22t-137.5 67.5t-94.5 122t-34 177.5zM358 379q0 -186 166 -186q113 0 172 94q66 111 66 270q0 170 -162 170q-109 0 -166 -78q-76 -106 -76 -270z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1232" d="M66 729l32 154q67 33 151 57.5t148 24.5q127 0 127 -117q0 -50 -6 -68q72 82 174 134.5t197 52.5q107 0 156 -50t49 -149q0 -63 -29 -182l-41 -162q-31 -122 -31 -174q0 -36 15.5 -50t50.5 -14q42 0 112 19l-38 -170q-63 -28 -141.5 -40.5t-135.5 -12.5q-178 0 -178 137 q0 52 29 178l53 225q18 77 18 123q0 70 -73 70q-102 0 -201 -92q0 -3 -35 -166l-107 -457h-282l98 459q39 175 39 211q0 67 -76 67q-35 0 -75 -8zM379 1124q18 68 43 122t66.5 95t89.5 41q52 0 122 -32l56 -27q63 -29 94 -29q27 0 48.5 25t49.5 82l94 -29q-26 -120 -73 -190 t-111 -70q-57 0 -139 39l-53 23q-56 22 -88 22q-34 0 -56.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1122" d="M53 360q0 125 38.5 245t121.5 208q149 158 405 158q92 0 169.5 -21t140 -64t98 -116.5t35.5 -169.5q0 -125 -41.5 -254t-124.5 -217q-71 -77 -178.5 -117.5t-229.5 -40.5q-92 0 -168.5 22t-137 67.5t-94.5 122t-34 177.5zM352 379q0 -189 166 -189q111 0 172 97 q32 54 50 138.5t18 156.5q0 172 -164 172q-104 0 -164 -76q-39 -54 -58.5 -136t-19.5 -163zM375 1417q0 44 33.5 74.5t76.5 30.5q35 0 62 -22t63 -87l168 -297l-86 -61l-246 243q-39 39 -55 65t-16 54z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1122" d="M53 360q0 125 38.5 245t121.5 208q149 158 405 158q92 0 169.5 -21t140 -64t98 -116.5t35.5 -169.5q0 -125 -41.5 -254t-124.5 -217q-71 -77 -178.5 -117.5t-229.5 -40.5q-92 0 -168.5 22t-137 67.5t-94.5 122t-34 177.5zM352 379q0 -189 166 -189q111 0 172 97 q32 54 50 138.5t18 156.5q0 172 -164 172q-104 0 -164 -76q-39 -54 -58.5 -136t-19.5 -163zM485 1133l222 268q39 49 68.5 67.5t58.5 18.5q42 0 74 -31t32 -76q0 -32 -22.5 -59.5t-73.5 -63.5l-285 -202z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1122" d="M53 360q0 125 38.5 245t121.5 208q149 158 405 158q92 0 169.5 -21t140 -64t98 -116.5t35.5 -169.5q0 -125 -41.5 -254t-124.5 -217q-71 -77 -178.5 -117.5t-229.5 -40.5q-92 0 -168.5 22t-137 67.5t-94.5 122t-34 177.5zM350 1110l273 311q50 56 100 56q64 0 88 -52 l158 -331l-92 -58l-183 215l-264 -215zM352 379q0 -189 166 -189q111 0 172 97q32 54 50 138.5t18 156.5q0 172 -164 172q-104 0 -164 -76q-39 -54 -58.5 -136t-19.5 -163z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1122" d="M53 360q0 125 38.5 245t121.5 208q149 158 405 158q92 0 169.5 -21t140 -64t98 -116.5t35.5 -169.5q0 -125 -41.5 -254t-124.5 -217q-71 -77 -178.5 -117.5t-229.5 -40.5q-92 0 -168.5 22t-137 67.5t-94.5 122t-34 177.5zM332 1124q19 68 43.5 122t65.5 95t89 41 q53 0 123 -32l56 -27q63 -29 94 -29q27 0 48.5 25t49.5 82l94 -29q-26 -120 -73 -190t-111 -70q-57 0 -139 39l-54 23q-56 22 -88 22q-33 0 -55.5 -21t-50.5 -79zM352 379q0 -189 166 -189q111 0 172 97q32 54 50 138.5t18 156.5q0 172 -164 172q-104 0 -164 -76 q-39 -54 -58.5 -136t-19.5 -163z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1122" d="M53 360q0 125 38.5 245t121.5 208q149 158 405 158q92 0 169.5 -21t140 -64t98 -116.5t35.5 -169.5q0 -125 -41.5 -254t-124.5 -217q-71 -77 -178.5 -117.5t-229.5 -40.5q-92 0 -168.5 22t-137 67.5t-94.5 122t-34 177.5zM352 379q0 -189 166 -189q111 0 172 97 q32 54 50 138.5t18 156.5q0 172 -164 172q-104 0 -164 -76q-39 -54 -58.5 -136t-19.5 -163zM393 1257q0 55 37 96.5t94 41.5q53 0 86 -34t33 -85q0 -66 -36.5 -106t-96.5 -40q-54 0 -85.5 35t-31.5 92zM739 1257q0 54 38 96t93 42q54 0 87.5 -34t33.5 -85q0 -66 -37.5 -106 t-97.5 -40q-54 0 -85.5 35t-31.5 92z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1220" d="M168 549l39 186h907l-37 -186h-909zM444 295q2 65 40 107t96 42q52 0 79 -34t27 -95q-2 -58 -40.5 -97.5t-94.5 -39.5q-47 0 -77 33t-30 84zM596 956q0 63 40 105.5t97 42.5q53 0 80 -33t27 -92q-1 -59 -42 -98t-98 -39q-47 0 -76 31.5t-28 82.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1122" d="M51 -8l94 108q-86 95 -86 262q0 125 38.5 244t121.5 207q149 158 406 158q127 0 231 -43l105 123l94 -86l-90 -105q102 -96 102 -260q0 -125 -41.5 -254t-124.5 -217q-70 -74 -180.5 -115t-226.5 -41q-141 0 -252 54l-99 -115zM358 350l332 385q-40 19 -90 19 q-104 0 -164 -76q-40 -51 -59 -133.5t-19 -163.5v-31zM414 225q43 -32 110 -32q112 0 172 96q32 54 50 137.5t18 155.5q0 15 -4 43z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1228" d="M61 725l33 154q68 35 153.5 58.5t137.5 23.5q85 0 119.5 -31t34.5 -101q0 -60 -31 -184l-55 -225q-21 -89 -21 -121q0 -72 78 -72q95 0 201 92q8 59 32 166l107 457h285l-101 -457q-45 -202 -45 -241q0 -35 15 -49.5t49 -14.5q35 0 114 19l-39 -168q-139 -56 -264 -56 q-57 0 -99 26.5t-52 78.5q-6 27 -6 59q-70 -78 -170 -121t-199 -43q-108 0 -163.5 51.5t-55.5 147.5q0 66 28 184l41 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8zM397 1417q0 44 34 74.5t77 30.5q35 0 62 -22t63 -87l168 -297l-86 -61l-246 243 q-39 39 -55.5 65t-16.5 54z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1228" d="M61 725l33 154q68 35 153.5 58.5t137.5 23.5q85 0 119.5 -31t34.5 -101q0 -60 -31 -184l-55 -225q-21 -89 -21 -121q0 -72 78 -72q95 0 201 92q8 59 32 166l107 457h285l-101 -457q-45 -202 -45 -241q0 -35 15 -49.5t49 -14.5q35 0 114 19l-39 -168q-139 -56 -264 -56 q-57 0 -99 26.5t-52 78.5q-6 27 -6 59q-70 -78 -170 -121t-199 -43q-108 0 -163.5 51.5t-55.5 147.5q0 66 28 184l41 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8zM532 1133l222 268q39 49 68.5 67.5t58.5 18.5q42 0 74 -31t32 -76q0 -32 -22.5 -59.5 t-73.5 -63.5l-285 -202z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1228" d="M61 725l33 154q68 35 153.5 58.5t137.5 23.5q85 0 119.5 -31t34.5 -101q0 -60 -31 -184l-55 -225q-21 -89 -21 -121q0 -72 78 -72q95 0 201 92q8 59 32 166l107 457h285l-101 -457q-45 -202 -45 -241q0 -35 15 -49.5t49 -14.5q35 0 114 19l-39 -168q-139 -56 -264 -56 q-57 0 -99 26.5t-52 78.5q-6 27 -6 59q-70 -78 -170 -121t-199 -43q-108 0 -163.5 51.5t-55.5 147.5q0 66 28 184l41 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8zM387 1110l272 311q50 56 101 56q64 0 88 -52l158 -331l-93 -58l-182 215l-264 -215z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1228" d="M61 725l33 154q68 35 153.5 58.5t137.5 23.5q85 0 119.5 -31t34.5 -101q0 -60 -31 -184l-55 -225q-21 -89 -21 -121q0 -72 78 -72q95 0 201 92q8 59 32 166l107 457h285l-101 -457q-45 -202 -45 -241q0 -35 15 -49.5t49 -14.5q35 0 114 19l-39 -168q-139 -56 -264 -56 q-57 0 -99 26.5t-52 78.5q-6 27 -6 59q-70 -78 -170 -121t-199 -43q-108 0 -163.5 51.5t-55.5 147.5q0 66 28 184l41 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8zM414 1257q0 55 37 96.5t94 41.5q53 0 86 -34t33 -85q0 -66 -37 -106t-97 -40 q-54 0 -85 34.5t-31 92.5zM760 1257q0 54 38 96t93 42q54 0 87.5 -34t33.5 -85q0 -66 -37.5 -106t-97.5 -40q-54 0 -85.5 35t-31.5 92z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1210" d="M37 -399q0 89 31 217h159q0 -90 32.5 -125t121.5 -35q109 0 158 55q58 65 98 217q9 34 47 199q-75 -74 -157.5 -114t-188.5 -40q-109 0 -163 51t-54 148q0 46 29 184l38 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8l33 154q68 35 153.5 58.5t137.5 23.5 q85 0 119.5 -31t34.5 -101q0 -45 -31 -184l-53 -225q-21 -89 -21 -121q0 -72 74 -72q93 0 201 97l139 618h287q-74 -354 -177 -901q-62 -329 -190 -457q-138 -141 -416 -141q-315 0 -315 158zM532 1133l222 268q39 49 68.5 67.5t58.5 18.5q42 0 74 -31t32 -76 q0 -32 -22.5 -59.5t-73.5 -63.5l-285 -202z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1212" d="M-43 -535l350 1604q21 90 21 141q0 33 -17 47.5t-53 14.5t-86 -10l33 155q183 80 330 80q68 0 96 -32t28 -89q0 -42 -22 -141q-55 -250 -100 -424q66 69 157.5 114.5t186.5 45.5q270 0 270 -297q0 -146 -48 -285t-145 -242q-156 -163 -440 -163q-92 0 -162 12l-114 -531 h-285zM414 233q75 -20 141 -20q65 0 118.5 28t86.5 78q36 56 55 131t19 134q0 75 -30.5 108t-94.5 33q-95 0 -209 -102z" />
+<glyph unicode="&#xff;" horiz-adv-x="1210" d="M37 -399q0 89 31 217h159q0 -90 32.5 -125t121.5 -35q109 0 158 55q58 65 98 217q9 34 47 199q-75 -74 -157.5 -114t-188.5 -40q-109 0 -163 51t-54 148q0 46 29 184l38 164q23 104 23 148q0 36 -17.5 49.5t-54.5 13.5q-28 0 -78 -8l33 154q68 35 153.5 58.5t137.5 23.5 q85 0 119.5 -31t34.5 -101q0 -45 -31 -184l-53 -225q-21 -89 -21 -121q0 -72 74 -72q93 0 201 97l139 618h287q-74 -354 -177 -901q-62 -329 -190 -457q-138 -141 -416 -141q-315 0 -315 158zM422 1257q0 55 37 96.5t94 41.5q53 0 86 -34t33 -85q0 -66 -36.5 -106t-96.5 -40 q-54 0 -85.5 35t-31.5 92zM768 1257q0 54 38 96t93 42q54 0 87.5 -34t33.5 -85q0 -66 -37.5 -106t-97.5 -40q-54 0 -85.5 35t-31.5 92z" />
+<glyph unicode="&#x152;" horiz-adv-x="2111" d="M121 528q0 406 264 670q203 203 600 203q61 0 189.5 -8.5t173.5 -8.5h610q75 0 110 -24t35 -76q0 -92 -45 -283h-160q0 30 -4 70q-5 44 -36 66q-25 22 -142 22h-229l-70 -352h78q112 0 150 31q27 21 57 110h151q-47 -189 -94 -487h-143q0 12 -2 33t-2 28q0 58 -43 74 q-38 12 -111 12h-80l-55 -280q-6 -42 -6 -52q0 -45 43 -51q53 -8 178 -8q195 0 274 57q37 33 97 142h159q-10 -80 -40 -185.5t-62 -158.5q-46 -72 -203 -72h-690q-43 0 -175 -6t-206 -6q-147 0 -258.5 41.5t-179 116t-100.5 170.5t-33 212zM459 571q0 -169 79 -267.5 t246 -98.5q150 0 199 59q18 21 39 111l121 633q12 56 12 96q0 20 -6.5 34.5t-22 23.5t-29 14t-39.5 7t-41.5 2.5t-45.5 0.5q-113 0 -206 -41.5t-153 -118.5q-73 -91 -113 -214.5t-40 -240.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="1679" d="M59 362q0 125 38.5 244t121.5 207q149 158 406 158q229 0 325 -140q63 64 157.5 102t201.5 38q170 0 251.5 -69.5t81.5 -184.5q0 -54 -15 -98t-55.5 -87t-106.5 -72.5t-175 -48.5t-254 -20q-2 -12 -2 -33q0 -70 45.5 -114.5t145.5 -44.5q134 0 317 92l80 -164 q-224 -156 -492 -156q-206 0 -292 138q-130 -136 -344 -136q-92 0 -168.5 22t-137.5 67t-95 121.5t-34 178.5zM358 381q0 -188 166 -188q111 0 168 96q33 54 51.5 137.5t18.5 155.5q0 172 -162 172q-104 0 -164 -76q-40 -51 -59 -133.5t-19 -163.5zM1059 569q332 3 332 131 q0 72 -101 72q-89 0 -147.5 -56.5t-83.5 -146.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="1378" d="M150 1223l32 163q226 -4 307 -4q118 0 336 4l-32 -163q-68 -3 -113 -17q-37 -15 -37 -53q0 -35 19 -84q98 -253 124 -326q37 51 78.5 105.5t96 123.5t81.5 103q48 61 48 96q0 52 -125 52l32 163q94 -4 351 -4q108 0 196 4l-33 -163q-61 -3 -100 -31q-10 -6 -26.5 -23 t-32 -35.5t-47 -56.5t-56.5 -67l-395 -465l-45 -221q-10 -62 -10 -88q0 -50 76 -64q28 -6 102 -10l-31 -164q-218 4 -346 4q-144 0 -348 -4l33 164q92 6 125 15t47 26q21 21 35 104l47 236l-213 522q-26 61 -43 91t-39 44q-28 20 -94 23zM586 1647q0 54 37 94.5t94 40.5 q53 0 87 -34t34 -85q0 -63 -38 -103t-98 -40q-53 0 -84.5 35.5t-31.5 91.5zM967 1647q0 55 36 95t93 40q55 0 88 -33.5t33 -85.5q0 -63 -37 -103t-97 -40q-53 0 -84.5 35.5t-31.5 91.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M-10 1110l272 311q50 56 100 56q65 0 89 -52l157 -331l-92 -58l-182 215l-264 -215z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-33 1124q18 68 43 122t66.5 95t89.5 41q53 0 123 -32l55 -27q63 -29 94 -29q27 0 49.5 25t49.5 82l94 -29q-26 -120 -73.5 -190t-111.5 -70q-57 0 -139 39l-53 23q-56 22 -88 22q-34 0 -56.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="947" />
+<glyph unicode="&#x2001;" horiz-adv-x="1894" />
+<glyph unicode="&#x2002;" horiz-adv-x="947" />
+<glyph unicode="&#x2003;" horiz-adv-x="1894" />
+<glyph unicode="&#x2004;" horiz-adv-x="631" />
+<glyph unicode="&#x2005;" horiz-adv-x="473" />
+<glyph unicode="&#x2006;" horiz-adv-x="315" />
+<glyph unicode="&#x2007;" horiz-adv-x="315" />
+<glyph unicode="&#x2008;" horiz-adv-x="236" />
+<glyph unicode="&#x2009;" horiz-adv-x="378" />
+<glyph unicode="&#x200a;" horiz-adv-x="105" />
+<glyph unicode="&#x2010;" horiz-adv-x="573" d="M53 412l37 194h457l-37 -194h-457z" />
+<glyph unicode="&#x2011;" horiz-adv-x="573" d="M53 412l37 194h457l-37 -194h-457z" />
+<glyph unicode="&#x2012;" horiz-adv-x="573" d="M53 412l37 194h457l-37 -194h-457z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1165" d="M57 424l35 180h1028l-35 -180h-1028z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M57 424l35 180h1544l-34 -180h-1545z" />
+<glyph unicode="&#x2018;" horiz-adv-x="493" d="M137 1008q0 275 420 469l51 -109q-231 -116 -231 -209q0 -51 41 -69q71 -35 71 -121q0 -67 -45.5 -111.5t-124.5 -44.5q-83 0 -132.5 54t-49.5 141z" />
+<glyph unicode="&#x2019;" horiz-adv-x="493" d="M106 922q230 112 230 208q0 48 -39 68q-76 39 -76 123q0 66 47 110t125 44q82 0 132 -53.5t50 -139.5q0 -278 -417 -471z" />
+<glyph unicode="&#x201a;" horiz-adv-x="483" d="M-106 -313q112 55 170.5 109t58.5 100q0 50 -39 67q-76 39 -76 123q0 65 47.5 110.5t124.5 45.5q83 0 134 -54t51 -141q0 -277 -420 -471z" />
+<glyph unicode="&#x201c;" horiz-adv-x="923" d="M137 1008q0 275 420 469l51 -109q-231 -116 -231 -209q0 -51 41 -69q71 -35 71 -121q0 -67 -45.5 -111.5t-124.5 -44.5q-83 0 -132.5 54t-49.5 141zM567 1008q0 275 420 469l51 -109q-231 -116 -231 -209q0 -51 41 -69q74 -35 74 -121q0 -67 -46.5 -111.5t-123.5 -44.5 q-84 0 -134.5 54t-50.5 141z" />
+<glyph unicode="&#x201d;" horiz-adv-x="923" d="M106 922q230 112 230 208q0 48 -39 68q-76 39 -76 123q0 66 47 110t125 44q82 0 132 -53.5t50 -139.5q0 -278 -417 -471zM537 922q231 112 231 208q0 47 -41 68q-76 39 -76 123q0 66 47 110t125 44q83 0 133 -54t50 -139q0 -277 -418 -471z" />
+<glyph unicode="&#x201e;" horiz-adv-x="923" d="M-106 -313q112 55 170.5 109t58.5 100q0 50 -39 67q-76 39 -76 123q0 65 47.5 110.5t124.5 45.5q83 0 134 -54t51 -141q0 -277 -420 -471zM324 -313q113 55 172 109t59 100q0 49 -41 67q-74 38 -74 123q0 65 47 110.5t123 45.5q84 0 134.5 -54t50.5 -141 q0 -277 -420 -471z" />
+<glyph unicode="&#x2022;" horiz-adv-x="782" d="M88 549q0 140 91.5 238t234.5 98q138 0 223.5 -83t85.5 -212q0 -152 -91 -251t-239 -99q-134 0 -219.5 88t-85.5 221z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1800" d="M70 141q0 70 48 122t122 52q72 0 115.5 -41.5t43.5 -109.5q0 -84 -47.5 -133t-128.5 -49q-70 0 -111.5 43.5t-41.5 115.5zM668 141q0 70 48.5 122t123.5 52q70 0 113.5 -41.5t43.5 -109.5q0 -84 -47.5 -133t-128.5 -49q-69 0 -111 43.5t-42 115.5zM1268 141q0 70 49 122 t125 52q70 0 113.5 -41.5t43.5 -109.5q0 -84 -47.5 -133t-128.5 -49q-70 0 -112.5 43.5t-42.5 115.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="378" />
+<glyph unicode="&#x2039;" horiz-adv-x="577" d="M25 449q0 58 69 112l426 318l82 -103l-330 -325l189 -328l-109 -86l-295 330q-32 36 -32 82z" />
+<glyph unicode="&#x203a;" horiz-adv-x="577" d="M-12 139l329 324l-188 330l109 86l294 -332q33 -37 33 -80q0 -34 -16.5 -59.5t-52.5 -53.5l-424 -317z" />
+<glyph unicode="&#x205f;" horiz-adv-x="473" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1462" d="M178 496l23 120h135q3 57 16 125h-129l23 121h139q66 197 209 332q193 178 506 178q184 0 280 -49q82 -42 82 -139q0 -34 -15.5 -115t-29.5 -135h-162q-3 115 -28 156q-44 59 -168 59q-160 0 -264 -121q-63 -75 -97 -166h402l-25 -121h-409q-12 -61 -15 -125h402 l-23 -120h-379q13 -154 91 -224.5t188 -70.5q149 0 215 59q36 33 92 154h164q-40 -219 -70 -283q-37 -70 -141 -111q-46 -19 -137.5 -34t-190.5 -15q-248 0 -386.5 137.5t-143.5 387.5h-154z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1595" d="M221 1178q6 69 19 143q11 63 77 63h461q58 0 58 -51q0 -7 -6 -35.5t-14 -67t-11 -52.5h-68q0 49 -3 69t-13 29q-11 8 -33 10t-84 2l-69 -358q-7 -44 -7 -49q0 -29 86 -29l-16 -76q-45 2 -160 2q-121 0 -164 -2l15 76q64 2 76 14q12 9 20 58l72 364q-97 0 -117 -10 q-30 -19 -53 -100h-66zM778 776l17 76q31 0 46.5 2t25.5 15.5t12.5 23t9.5 45.5q51 244 61 299q6 41 6 45q0 14 -12 21.5t-25 8.5t-38 1l14 71q47 -2 156 -2q85 0 120 2q51 -272 58 -323q28 53 192 323q41 -2 138 -2q94 0 133 2l-15 -75q-58 -2 -69 -13q-12 -12 -21 -51 q-5 -21 -53 -313q-6 -30 -6 -49q0 -10 4.5 -16t14 -8.5t17.5 -3.5t22 -1.5t20 -1.5l-17 -76q-45 2 -157 2q-105 0 -160 -2l18 76q58 2 70 14q12 9 20 47q47 251 64 326q-9 -15 -34 -56.5t-70.5 -117t-100.5 -164.5q-23 -39 -65 -39q-49 0 -56 41q-58 277 -69 342 q-5 -29 -19.5 -106t-26 -140t-14.5 -81q-4 -20 -4 -37q0 -20 23 -23q30 -6 57 -6l-14 -76q-39 2 -131 2q-93 0 -142 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="962" d="M0 0v963h963v-963h-963z" />
+<hkern u1="&#x20;" u2="&#x201c;" k="4" />
+<hkern u1="&#x20;" u2="&#x2018;" k="4" />
+<hkern u1="&#x20;" u2="&#x178;" k="-31" />
+<hkern u1="&#x20;" u2="&#xef;" k="61" />
+<hkern u1="&#x20;" u2="&#xee;" k="61" />
+<hkern u1="&#x20;" u2="&#xed;" k="61" />
+<hkern u1="&#x20;" u2="&#xec;" k="61" />
+<hkern u1="&#x20;" u2="&#xdd;" k="-31" />
+<hkern u1="&#x20;" u2="i" k="61" />
+<hkern u1="&#x20;" u2="Y" k="-31" />
+<hkern u1="&#x21;" u2="&#x2026;" k="-51" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-51" />
+<hkern u1="&#x21;" u2="]" k="-51" />
+<hkern u1="&#x21;" u2="&#x3a;" k="-41" />
+<hkern u1="&#x21;" u2="&#x2e;" k="-51" />
+<hkern u1="&#x21;" u2="&#x2c;" k="-51" />
+<hkern u1="&#x21;" u2="&#x29;" k="-51" />
+<hkern u1="&#x22;" g2="uniFB04" k="20" />
+<hkern u1="&#x22;" g2="uniFB03" k="20" />
+<hkern u1="&#x22;" g2="uniFB02" k="20" />
+<hkern u1="&#x22;" g2="uniFB01" k="20" />
+<hkern u1="&#x22;" u2="&#xdf;" k="20" />
+<hkern u1="&#x22;" u2="f" k="20" />
+<hkern u1="&#x22;" u2="&#x31;" k="172" />
+<hkern u1="&#x24;" u2="&#x33;" k="-41" />
+<hkern u1="&#x27;" u2="&#x31;" k="152" />
+<hkern u1="&#x28;" u2="W" k="-68" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="233" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="348" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="233" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="348" />
+<hkern u1="&#x2c;" u2="&#x38;" k="18" />
+<hkern u1="&#x2d;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2d;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="266" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="266" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2014;" k="41" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="41" />
+<hkern u1="&#x2e;" u2="&#x7d;" k="16" />
+<hkern u1="&#x2e;" u2="]" k="16" />
+<hkern u1="&#x2e;" u2="&#x38;" k="23" />
+<hkern u1="&#x2e;" u2="&#x2d;" k="41" />
+<hkern u1="&#x2e;" u2="&#x29;" k="16" />
+<hkern u1="&#x2f;" g2="uniFB04" k="41" />
+<hkern u1="&#x2f;" g2="uniFB03" k="41" />
+<hkern u1="&#x2f;" g2="uniFB02" k="41" />
+<hkern u1="&#x2f;" g2="uniFB01" k="41" />
+<hkern u1="&#x2f;" u2="&#x153;" k="119" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-53" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="119" />
+<hkern u1="&#x2f;" u2="&#xef;" k="61" />
+<hkern u1="&#x2f;" u2="&#xee;" k="61" />
+<hkern u1="&#x2f;" u2="&#xed;" k="61" />
+<hkern u1="&#x2f;" u2="&#xec;" k="61" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="119" />
+<hkern u1="&#x2f;" u2="&#xea;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="100" />
+<hkern u1="&#x2f;" u2="&#xdf;" k="41" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-20" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="82" />
+<hkern u1="&#x2f;" u2="q" k="100" />
+<hkern u1="&#x2f;" u2="o" k="119" />
+<hkern u1="&#x2f;" u2="l" k="-53" />
+<hkern u1="&#x2f;" u2="k" k="-53" />
+<hkern u1="&#x2f;" u2="i" k="61" />
+<hkern u1="&#x2f;" u2="h" k="-53" />
+<hkern u1="&#x2f;" u2="f" k="41" />
+<hkern u1="&#x2f;" u2="e" k="119" />
+<hkern u1="&#x2f;" u2="d" k="119" />
+<hkern u1="&#x2f;" u2="c" k="119" />
+<hkern u1="&#x2f;" u2="b" k="-53" />
+<hkern u1="&#x2f;" u2="a" k="100" />
+<hkern u1="&#x2f;" u2="V" k="-25" />
+<hkern u1="&#x2f;" u2="R" k="-20" />
+<hkern u1="&#x2f;" u2="P" k="-20" />
+<hkern u1="&#x2f;" u2="N" k="-20" />
+<hkern u1="&#x2f;" u2="M" k="-20" />
+<hkern u1="&#x2f;" u2="L" k="-20" />
+<hkern u1="&#x2f;" u2="K" k="-20" />
+<hkern u1="&#x2f;" u2="I" k="-20" />
+<hkern u1="&#x2f;" u2="H" k="-20" />
+<hkern u1="&#x2f;" u2="F" k="-20" />
+<hkern u1="&#x2f;" u2="E" k="-20" />
+<hkern u1="&#x2f;" u2="D" k="-20" />
+<hkern u1="&#x2f;" u2="B" k="-20" />
+<hkern u1="&#x2f;" u2="A" k="82" />
+<hkern u1="&#x2f;" u2="&#x35;" k="41" />
+<hkern u1="&#x30;" u2="&#x153;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-66" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-66" />
+<hkern u1="&#x30;" u2="&#xea;" k="-66" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-66" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-66" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-66" />
+<hkern u1="&#x30;" u2="o" k="-66" />
+<hkern u1="&#x30;" u2="e" k="-66" />
+<hkern u1="&#x30;" u2="d" k="-66" />
+<hkern u1="&#x30;" u2="c" k="-66" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-102" />
+<hkern u1="&#x30;" u2="&#x25;" k="-76" />
+<hkern u1="&#x31;" u2="&#x2026;" k="123" />
+<hkern u1="&#x31;" u2="&#x2f;" k="102" />
+<hkern u1="&#x31;" u2="&#x2e;" k="123" />
+<hkern u1="&#x31;" u2="&#x2c;" k="123" />
+<hkern u1="&#x31;" u2="&#x27;" k="287" />
+<hkern u1="&#x31;" u2="&#x22;" k="287" />
+<hkern u1="&#x32;" u2="&#x2026;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2e;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2c;" k="-102" />
+<hkern u1="&#x33;" g2="uniFB04" k="-78" />
+<hkern u1="&#x33;" g2="uniFB03" k="-78" />
+<hkern u1="&#x33;" g2="uniFB02" k="-78" />
+<hkern u1="&#x33;" g2="uniFB01" k="-78" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-78" />
+<hkern u1="&#x33;" u2="f" k="-78" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-102" />
+<hkern u1="&#x34;" u2="r" k="-102" />
+<hkern u1="&#x34;" u2="p" k="-102" />
+<hkern u1="&#x34;" u2="n" k="-102" />
+<hkern u1="&#x34;" u2="m" k="-102" />
+<hkern u1="&#x35;" u2="&#x2014;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2013;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2d;" k="-102" />
+<hkern u1="&#x37;" u2="&#x2026;" k="229" />
+<hkern u1="&#x37;" u2="&#x2e;" k="229" />
+<hkern u1="&#x37;" u2="&#x2c;" k="229" />
+<hkern u1="&#x38;" u2="&#x2026;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2014;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2013;" k="-61" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-14" />
+<hkern u1="&#x38;" u2="&#x2e;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2d;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2c;" k="-61" />
+<hkern u1="&#x3a;" u2="&#x31;" k="123" />
+<hkern u1="&#x3f;" u2="&#x2026;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2e;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="61" />
+<hkern u1="&#x3f;" u2="&#x20;" k="2" />
+<hkern u1="A" u2="b" k="80" />
+<hkern u1="A" u2="W" k="154" />
+<hkern u1="A" u2="&#x2f;" k="-51" />
+<hkern u1="A" u2="&#x21;" k="82" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="W" k="104" />
+<hkern u1="C" u2="&#xee;" k="31" />
+<hkern u1="C" u2="W" k="80" />
+<hkern u1="D" u2="&#xd0;" k="-25" />
+<hkern u1="D" u2="W" k="57" />
+<hkern u1="E" u2="&#xec;" k="31" />
+<hkern u1="E" u2="W" k="66" />
+<hkern u1="F" u2="&#x2026;" k="154" />
+<hkern u1="F" u2="&#x178;" k="27" />
+<hkern u1="F" u2="&#x153;" k="80" />
+<hkern u1="F" u2="&#xff;" k="98" />
+<hkern u1="F" u2="&#xfe;" k="-14" />
+<hkern u1="F" u2="&#xfd;" k="98" />
+<hkern u1="F" u2="&#xfc;" k="100" />
+<hkern u1="F" u2="&#xfb;" k="100" />
+<hkern u1="F" u2="&#xfa;" k="100" />
+<hkern u1="F" u2="&#xf9;" k="100" />
+<hkern u1="F" u2="&#xf8;" k="80" />
+<hkern u1="F" u2="&#xf6;" k="80" />
+<hkern u1="F" u2="&#xf5;" k="80" />
+<hkern u1="F" u2="&#xf4;" k="80" />
+<hkern u1="F" u2="&#xf3;" k="80" />
+<hkern u1="F" u2="&#xf2;" k="80" />
+<hkern u1="F" u2="&#xf1;" k="70" />
+<hkern u1="F" u2="&#xf0;" k="80" />
+<hkern u1="F" u2="&#xef;" k="-25" />
+<hkern u1="F" u2="&#xee;" k="-29" />
+<hkern u1="F" u2="&#xed;" k="53" />
+<hkern u1="F" u2="&#xec;" k="-12" />
+<hkern u1="F" u2="&#xeb;" k="80" />
+<hkern u1="F" u2="&#xea;" k="80" />
+<hkern u1="F" u2="&#xe9;" k="80" />
+<hkern u1="F" u2="&#xe8;" k="80" />
+<hkern u1="F" u2="&#xe7;" k="80" />
+<hkern u1="F" u2="&#xe6;" k="102" />
+<hkern u1="F" u2="&#xe5;" k="102" />
+<hkern u1="F" u2="&#xe4;" k="102" />
+<hkern u1="F" u2="&#xe3;" k="102" />
+<hkern u1="F" u2="&#xe2;" k="102" />
+<hkern u1="F" u2="&#xe1;" k="102" />
+<hkern u1="F" u2="&#xe0;" k="102" />
+<hkern u1="F" u2="&#xdd;" k="27" />
+<hkern u1="F" u2="&#xc6;" k="225" />
+<hkern u1="F" u2="&#xc5;" k="88" />
+<hkern u1="F" u2="&#xc4;" k="88" />
+<hkern u1="F" u2="&#xc3;" k="88" />
+<hkern u1="F" u2="&#xc2;" k="88" />
+<hkern u1="F" u2="&#xc1;" k="88" />
+<hkern u1="F" u2="&#xc0;" k="88" />
+<hkern u1="F" u2="z" k="102" />
+<hkern u1="F" u2="y" k="98" />
+<hkern u1="F" u2="x" k="125" />
+<hkern u1="F" u2="w" k="94" />
+<hkern u1="F" u2="v" k="98" />
+<hkern u1="F" u2="u" k="100" />
+<hkern u1="F" u2="t" k="59" />
+<hkern u1="F" u2="s" k="102" />
+<hkern u1="F" u2="r" k="70" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="70" />
+<hkern u1="F" u2="o" k="80" />
+<hkern u1="F" u2="n" k="70" />
+<hkern u1="F" u2="m" k="70" />
+<hkern u1="F" u2="l" k="-14" />
+<hkern u1="F" u2="k" k="-14" />
+<hkern u1="F" u2="j" k="23" />
+<hkern u1="F" u2="i" k="53" />
+<hkern u1="F" u2="h" k="-14" />
+<hkern u1="F" u2="g" k="102" />
+<hkern u1="F" u2="e" k="80" />
+<hkern u1="F" u2="d" k="80" />
+<hkern u1="F" u2="c" k="80" />
+<hkern u1="F" u2="b" k="-14" />
+<hkern u1="F" u2="a" k="102" />
+<hkern u1="F" u2="Y" k="27" />
+<hkern u1="F" u2="X" k="68" />
+<hkern u1="F" u2="S" k="8" />
+<hkern u1="F" u2="J" k="20" />
+<hkern u1="F" u2="A" k="88" />
+<hkern u1="F" u2="&#x2f;" k="61" />
+<hkern u1="F" u2="&#x2e;" k="154" />
+<hkern u1="F" u2="&#x2c;" k="154" />
+<hkern u1="G" u2="&#xd0;" k="-27" />
+<hkern u1="G" u2="W" k="53" />
+<hkern u1="H" u2="&#xef;" k="-57" />
+<hkern u1="H" u2="&#xec;" k="-72" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="H" u2="&#x2f;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-57" />
+<hkern u1="I" u2="&#xec;" k="-33" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#x2f;" k="-20" />
+<hkern u1="J" u2="&#xef;" k="-96" />
+<hkern u1="J" u2="&#xec;" k="-74" />
+<hkern u1="J" u2="&#xd0;" k="-27" />
+<hkern u1="K" u2="&#xef;" k="-6" />
+<hkern u1="K" u2="&#xec;" k="-45" />
+<hkern u1="K" u2="b" k="45" />
+<hkern u1="K" u2="W" k="76" />
+<hkern u1="L" u2="W" k="248" />
+<hkern u1="M" u2="&#xef;" k="-49" />
+<hkern u1="M" u2="&#xd0;" k="-27" />
+<hkern u1="N" u2="&#xef;" k="-66" />
+<hkern u1="N" u2="&#xec;" k="-84" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="N" u2="&#x2f;" k="-20" />
+<hkern u1="O" u2="&#xd0;" k="-25" />
+<hkern u1="O" u2="W" k="57" />
+<hkern u1="P" u2="&#xd0;" k="-20" />
+<hkern u1="P" u2="W" k="66" />
+<hkern u1="Q" u2="&#xd0;" k="-35" />
+<hkern u1="Q" u2="W" k="57" />
+<hkern u1="Q" u2="J" k="-154" />
+<hkern u1="Q" u2="&#x2c;" k="-137" />
+<hkern u1="R" u2="W" k="98" />
+<hkern u1="S" u2="W" k="74" />
+<hkern u1="T" u2="&#x2019;" k="-61" />
+<hkern u1="T" u2="&#xef;" k="-39" />
+<hkern u1="T" u2="&#xee;" k="-4" />
+<hkern u1="T" u2="&#xec;" k="-12" />
+<hkern u1="T" u2="&#x3f;" k="-25" />
+<hkern u1="T" u2="&#x3b;" k="76" />
+<hkern u1="T" u2="&#x3a;" k="104" />
+<hkern u1="T" u2="&#x21;" k="-8" />
+<hkern u1="U" u2="&#xef;" k="-96" />
+<hkern u1="U" u2="&#xec;" k="-74" />
+<hkern u1="U" u2="&#xd0;" k="-27" />
+<hkern u1="V" u2="&#xf6;" k="119" />
+<hkern u1="V" u2="&#xef;" k="-90" />
+<hkern u1="V" u2="&#xee;" k="-4" />
+<hkern u1="V" u2="&#xec;" k="-78" />
+<hkern u1="V" u2="&#xe8;" k="109" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="88" />
+<hkern u1="W" u2="&#x201d;" k="-43" />
+<hkern u1="W" u2="&#x2019;" k="-49" />
+<hkern u1="W" u2="&#xff;" k="109" />
+<hkern u1="W" u2="&#xfd;" k="109" />
+<hkern u1="W" u2="&#xf6;" k="119" />
+<hkern u1="W" u2="&#xef;" k="-90" />
+<hkern u1="W" u2="&#xee;" k="-4" />
+<hkern u1="W" u2="&#xed;" k="70" />
+<hkern u1="W" u2="&#xec;" k="-78" />
+<hkern u1="W" u2="&#xe8;" k="109" />
+<hkern u1="W" u2="y" k="100" />
+<hkern u1="W" u2="x" k="176" />
+<hkern u1="W" u2="w" k="152" />
+<hkern u1="W" u2="v" k="158" />
+<hkern u1="W" u2="t" k="94" />
+<hkern u1="W" u2="s" k="168" />
+<hkern u1="W" u2="j" k="66" />
+<hkern u1="W" u2="&#x3b;" k="102" />
+<hkern u1="W" u2="&#x3a;" k="88" />
+<hkern u1="X" u2="&#xef;" k="-35" />
+<hkern u1="X" u2="&#xee;" k="78" />
+<hkern u1="X" u2="&#xec;" k="-31" />
+<hkern u1="Y" u2="&#xef;" k="-80" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="66" />
+<hkern u1="Y" u2="&#xec;" k="-109" />
+<hkern u1="Y" u2="&#xe8;" k="115" />
+<hkern u1="Y" u2="W" k="27" />
+<hkern u1="Y" u2="&#x3b;" k="133" />
+<hkern u1="Y" u2="&#x3a;" k="123" />
+<hkern u1="Y" u2="&#x30;" k="-4" />
+<hkern u1="Y" u2="&#x21;" k="61" />
+<hkern u1="Z" u2="&#xef;" k="35" />
+<hkern u1="Z" u2="&#xec;" k="12" />
+<hkern u1="Z" u2="&#xd0;" k="-20" />
+<hkern u1="Z" u2="W" k="78" />
+<hkern u1="[" u2="W" k="-68" />
+<hkern u1="a" u2="&#x3f;" k="27" />
+<hkern u1="a" u2="&#x3b;" k="-16" />
+<hkern u1="a" u2="&#x2f;" k="-63" />
+<hkern u1="c" u2="&#x2019;" k="-20" />
+<hkern u1="c" u2="k" k="39" />
+<hkern u1="e" u2="&#x3a;" k="-20" />
+<hkern u1="f" u2="&#x2019;" k="-176" />
+<hkern u1="f" u2="&#xf2;" k="-14" />
+<hkern u1="f" u2="&#xf1;" k="-2" />
+<hkern u1="f" u2="&#xef;" k="-270" />
+<hkern u1="f" u2="&#xee;" k="-199" />
+<hkern u1="f" u2="&#xed;" k="-96" />
+<hkern u1="f" u2="&#xec;" k="-233" />
+<hkern u1="f" u2="&#xe8;" k="-25" />
+<hkern u1="f" u2="b" k="-141" />
+<hkern u1="f" u2="W" k="-205" />
+<hkern u1="f" u2="&#x3f;" k="-199" />
+<hkern u1="f" u2="&#x3a;" k="-16" />
+<hkern u1="f" u2="&#x2f;" k="-20" />
+<hkern u1="f" u2="&#x2a;" k="-184" />
+<hkern u1="f" u2="&#x27;" k="-221" />
+<hkern u1="f" u2="&#x22;" k="-205" />
+<hkern u1="f" u2="&#x21;" k="-98" />
+<hkern u1="g" u2="y" k="16" />
+<hkern u1="g" u2="&#x3b;" k="-23" />
+<hkern u1="g" u2="&#x2c;" k="-109" />
+<hkern u1="h" u2="&#x3f;" k="27" />
+<hkern u1="h" u2="&#x3b;" k="-16" />
+<hkern u1="h" u2="&#x2f;" k="-63" />
+<hkern u1="i" u2="q" k="-14" />
+<hkern u1="k" u2="e" k="10" />
+<hkern u1="k" u2="&#x3a;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-47" />
+<hkern u1="m" u2="&#x3f;" k="27" />
+<hkern u1="m" u2="&#x3b;" k="-16" />
+<hkern u1="m" u2="&#x2f;" k="-63" />
+<hkern u1="n" u2="&#x3f;" k="27" />
+<hkern u1="n" u2="&#x3b;" k="-16" />
+<hkern u1="n" u2="&#x2f;" k="-63" />
+<hkern u1="q" u2="&#x2026;" k="72" />
+<hkern u1="q" u2="&#xff;" k="14" />
+<hkern u1="q" u2="&#xfd;" k="14" />
+<hkern u1="q" u2="&#xfc;" k="10" />
+<hkern u1="q" u2="&#xfb;" k="10" />
+<hkern u1="q" u2="&#xfa;" k="10" />
+<hkern u1="q" u2="&#xf9;" k="10" />
+<hkern u1="q" u2="&#xf1;" k="6" />
+<hkern u1="q" u2="&#x7d;" k="-8" />
+<hkern u1="q" u2="y" k="14" />
+<hkern u1="q" u2="x" k="35" />
+<hkern u1="q" u2="w" k="14" />
+<hkern u1="q" u2="v" k="14" />
+<hkern u1="q" u2="u" k="10" />
+<hkern u1="q" u2="r" k="6" />
+<hkern u1="q" u2="p" k="6" />
+<hkern u1="q" u2="n" k="6" />
+<hkern u1="q" u2="m" k="6" />
+<hkern u1="q" u2="j" k="-117" />
+<hkern u1="q" u2="]" k="-8" />
+<hkern u1="q" u2="&#x2e;" k="72" />
+<hkern u1="q" u2="&#x2c;" k="72" />
+<hkern u1="q" u2="&#x29;" k="-8" />
+<hkern u1="r" u2="&#x2019;" k="-27" />
+<hkern u1="r" u2="&#x3b;" k="-14" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="v" u2="&#x3b;" k="6" />
+<hkern u1="v" u2="&#x3a;" k="6" />
+<hkern u1="w" u2="&#x2019;" k="41" />
+<hkern u1="w" u2="&#x3b;" k="10" />
+<hkern u1="w" u2="&#x3a;" k="10" />
+<hkern u1="x" u2="&#x2026;" k="-61" />
+<hkern u1="x" u2="&#x153;" k="4" />
+<hkern u1="x" u2="&#xf8;" k="4" />
+<hkern u1="x" u2="&#xf6;" k="4" />
+<hkern u1="x" u2="&#xf5;" k="4" />
+<hkern u1="x" u2="&#xf4;" k="4" />
+<hkern u1="x" u2="&#xf3;" k="4" />
+<hkern u1="x" u2="&#xf2;" k="4" />
+<hkern u1="x" u2="&#xf0;" k="4" />
+<hkern u1="x" u2="&#xeb;" k="4" />
+<hkern u1="x" u2="&#xea;" k="4" />
+<hkern u1="x" u2="&#xe9;" k="4" />
+<hkern u1="x" u2="&#xe8;" k="4" />
+<hkern u1="x" u2="&#xe7;" k="4" />
+<hkern u1="x" u2="&#xe6;" k="2" />
+<hkern u1="x" u2="&#xe5;" k="2" />
+<hkern u1="x" u2="&#xe4;" k="2" />
+<hkern u1="x" u2="&#xe3;" k="2" />
+<hkern u1="x" u2="&#xe2;" k="2" />
+<hkern u1="x" u2="&#xe1;" k="2" />
+<hkern u1="x" u2="&#xe0;" k="2" />
+<hkern u1="x" u2="q" k="2" />
+<hkern u1="x" u2="o" k="4" />
+<hkern u1="x" u2="g" k="74" />
+<hkern u1="x" u2="e" k="4" />
+<hkern u1="x" u2="d" k="4" />
+<hkern u1="x" u2="c" k="4" />
+<hkern u1="x" u2="a" k="2" />
+<hkern u1="x" u2="&#x2e;" k="-61" />
+<hkern u1="x" u2="&#x2c;" k="-61" />
+<hkern u1="y" u2="&#xef;" k="16" />
+<hkern u1="y" u2="&#xee;" k="16" />
+<hkern u1="y" u2="&#xed;" k="16" />
+<hkern u1="y" u2="&#xec;" k="16" />
+<hkern u1="y" u2="i" k="16" />
+<hkern u1="y" u2="&#x3b;" k="6" />
+<hkern u1="y" u2="&#x3a;" k="6" />
+<hkern u1="&#x7b;" u2="W" k="-68" />
+<hkern u1="&#xa1;" u2="&#x178;" k="270" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="270" />
+<hkern u1="&#xa1;" u2="&#xc5;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc4;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc3;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc2;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc1;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc0;" k="61" />
+<hkern u1="&#xa1;" u2="Y" k="270" />
+<hkern u1="&#xa1;" u2="W" k="102" />
+<hkern u1="&#xa1;" u2="V" k="160" />
+<hkern u1="&#xa1;" u2="T" k="170" />
+<hkern u1="&#xa1;" u2="A" k="61" />
+<hkern u1="&#xa3;" u2="&#x35;" k="-25" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-57" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-72" />
+<hkern u1="&#xab;" u2="W" k="61" />
+<hkern u1="&#xbb;" u2="W" k="123" />
+<hkern u1="&#xbf;" u2="T" k="143" />
+<hkern u1="&#xbf;" u2="S" k="27" />
+<hkern u1="&#xc0;" u2="b" k="80" />
+<hkern u1="&#xc0;" u2="W" k="154" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc0;" u2="&#x21;" k="82" />
+<hkern u1="&#xc1;" u2="b" k="80" />
+<hkern u1="&#xc1;" u2="W" k="154" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc1;" u2="&#x21;" k="82" />
+<hkern u1="&#xc2;" u2="b" k="80" />
+<hkern u1="&#xc2;" u2="W" k="154" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc2;" u2="&#x21;" k="82" />
+<hkern u1="&#xc3;" u2="b" k="80" />
+<hkern u1="&#xc3;" u2="W" k="154" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc3;" u2="&#x21;" k="82" />
+<hkern u1="&#xc4;" u2="b" k="80" />
+<hkern u1="&#xc4;" u2="W" k="154" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc4;" u2="&#x21;" k="82" />
+<hkern u1="&#xc5;" u2="b" k="80" />
+<hkern u1="&#xc5;" u2="W" k="154" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc5;" u2="&#x21;" k="82" />
+<hkern u1="&#xc6;" u2="&#xec;" k="31" />
+<hkern u1="&#xc6;" u2="W" k="66" />
+<hkern u1="&#xc7;" u2="&#xee;" k="31" />
+<hkern u1="&#xc7;" u2="W" k="80" />
+<hkern u1="&#xc8;" u2="&#xec;" k="31" />
+<hkern u1="&#xc8;" u2="W" k="66" />
+<hkern u1="&#xc9;" u2="&#xec;" k="31" />
+<hkern u1="&#xc9;" u2="W" k="66" />
+<hkern u1="&#xca;" u2="&#xec;" k="31" />
+<hkern u1="&#xca;" u2="W" k="66" />
+<hkern u1="&#xcb;" u2="&#xec;" k="31" />
+<hkern u1="&#xcb;" u2="W" k="66" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-57" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-72" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcc;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-57" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-72" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-57" />
+<hkern u1="&#xce;" u2="&#xec;" k="-72" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-57" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-72" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd0;" u2="W" k="57" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-57" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-72" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd1;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd2;" u2="W" k="57" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd3;" u2="W" k="57" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd4;" u2="W" k="57" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd5;" u2="W" k="57" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd6;" u2="W" k="57" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd8;" u2="W" k="57" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-96" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-74" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xda;" u2="&#xef;" k="-96" />
+<hkern u1="&#xda;" u2="&#xec;" k="-74" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-96" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-96" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-80" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="66" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-109" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="115" />
+<hkern u1="&#xdd;" u2="W" k="27" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="133" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="123" />
+<hkern u1="&#xdd;" u2="&#x30;" k="-4" />
+<hkern u1="&#xdd;" u2="&#x21;" k="61" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xde;" u2="W" k="57" />
+<hkern u1="&#xdf;" u2="&#x2026;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-61" />
+<hkern u1="&#xdf;" u2="&#x2e;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2c;" k="-41" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-63" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-63" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-63" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-63" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-63" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-63" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe7;" u2="&#x2019;" k="-20" />
+<hkern u1="&#xe7;" u2="k" k="39" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xec;" u2="q" k="-14" />
+<hkern u1="&#xed;" u2="q" k="-14" />
+<hkern u1="&#xee;" u2="q" k="-14" />
+<hkern u1="&#xef;" u2="q" k="-14" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-63" />
+<hkern u1="&#xfd;" u2="&#x3b;" k="6" />
+<hkern u1="&#xfd;" u2="&#x3a;" k="6" />
+<hkern u1="&#xff;" u2="&#x3b;" k="6" />
+<hkern u1="&#xff;" u2="&#x3a;" k="6" />
+<hkern u1="&#x152;" u2="&#xec;" k="31" />
+<hkern u1="&#x152;" u2="W" k="66" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-20" />
+<hkern u1="&#x178;" u2="&#xef;" k="-80" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="66" />
+<hkern u1="&#x178;" u2="&#xec;" k="-109" />
+<hkern u1="&#x178;" u2="&#xe8;" k="115" />
+<hkern u1="&#x178;" u2="W" k="27" />
+<hkern u1="&#x178;" u2="&#x3b;" k="133" />
+<hkern u1="&#x178;" u2="&#x3a;" k="123" />
+<hkern u1="&#x178;" u2="&#x30;" k="-4" />
+<hkern u1="&#x178;" u2="&#x21;" k="61" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2014;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2014;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2018;" u2="d" k="143" />
+<hkern u1="&#x2018;" u2="c" k="143" />
+<hkern u1="&#x2018;" u2="X" k="20" />
+<hkern u1="&#x2018;" u2="W" k="-49" />
+<hkern u1="&#x2018;" u2="J" k="-31" />
+<hkern u1="&#x2019;" u2="&#x20;" k="-29" />
+<hkern u1="&#x201a;" u2="W" k="266" />
+<hkern u1="&#x201c;" u2="d" k="143" />
+<hkern u1="&#x201c;" u2="W" k="-49" />
+<hkern u1="&#x201e;" u2="W" k="266" />
+<hkern u1="&#x2039;" u2="W" k="61" />
+<hkern u1="&#x203a;" u2="W" k="123" />
+<hkern u1="&#x20ac;" u2="&#x36;" k="-59" />
+<hkern g1="uniFB01" u2="q" k="-14" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-47" />
+<hkern g1="uniFB03" u2="q" k="-14" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-47" />
+<hkern g1="d" 	g2="w" 	k="18" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-45" />
+<hkern g1="d" 	g2="quoteright,quotedblright" 	k="41" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="g" 	k="29" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,ellipsis" 	k="-27" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="z" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="t" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-104" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="8" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-61" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="m,n,p,r,ntilde" 	k="2" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-156" />
+<hkern g1="f" 	g2="x" 	k="37" />
+<hkern g1="f" 	g2="g" 	k="27" />
+<hkern g1="f" 	g2="comma,period,ellipsis" 	k="20" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-211" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-170" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-221" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-178" />
+<hkern g1="f" 	g2="z" 	k="20" />
+<hkern g1="f" 	g2="t" 	k="-10" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-88" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-102" />
+<hkern g1="f" 	g2="T" 	k="-186" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-184" />
+<hkern g1="f" 	g2="V" 	k="-207" />
+<hkern g1="f" 	g2="X" 	k="-147" />
+<hkern g1="f" 	g2="Z" 	k="-145" />
+<hkern g1="f" 	g2="j" 	k="-86" />
+<hkern g1="f" 	g2="s" 	k="4" />
+<hkern g1="f" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-8" />
+<hkern g1="g" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="g" 	g2="w" 	k="-8" />
+<hkern g1="g" 	g2="x" 	k="12" />
+<hkern g1="g" 	g2="g" 	k="-18" />
+<hkern g1="g" 	g2="comma,period,ellipsis" 	k="12" />
+<hkern g1="g" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="g" 	g2="quoteright,quotedblright" 	k="-63" />
+<hkern g1="g" 	g2="parenright,bracketright,braceright" 	k="-127" />
+<hkern g1="g" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="g" 	g2="j" 	k="-53" />
+<hkern g1="g" 	g2="s" 	k="31" />
+<hkern g1="g" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-74" />
+<hkern g1="g" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="comma,period,ellipsis" 	k="-68" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="z" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="j" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="s" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-14" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="14" />
+<hkern g1="k" 	g2="w" 	k="8" />
+<hkern g1="k" 	g2="g" 	k="23" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="k" 	g2="t" 	k="16" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="k" 	g2="j" 	k="14" />
+<hkern g1="k" 	g2="s" 	k="8" />
+<hkern g1="k" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="g" 	k="12" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteright,quotedblright" 	k="-2" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-49" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-76" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotleft,guilsinglleft" 	k="-143" />
+<hkern g1="j" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="j" 	g2="w" 	k="8" />
+<hkern g1="j" 	g2="x" 	k="25" />
+<hkern g1="j" 	g2="comma,period,ellipsis" 	k="43" />
+<hkern g1="j" 	g2="s" 	k="14" />
+<hkern g1="j" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-14" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-55" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="57" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="66" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="parenright,bracketright,braceright" 	k="-33" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-106" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotleft,guilsinglleft" 	k="-102" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="s" 	k="12" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="25" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="49" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="147" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="z" 	k="31" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-6" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="72" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="r" 	g2="w" 	k="29" />
+<hkern g1="r" 	g2="x" 	k="66" />
+<hkern g1="r" 	g2="g" 	k="92" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="211" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-41" />
+<hkern g1="r" 	g2="t" 	k="8" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="r" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
+<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="r" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="r" 	g2="j" 	k="18" />
+<hkern g1="r" 	g2="s" 	k="29" />
+<hkern g1="r" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="r" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="61" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="s" 	g2="g" 	k="23" />
+<hkern g1="s" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="s" 	g2="z" 	k="14" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-86" />
+<hkern g1="s" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="s" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="t" 	g2="g" 	k="16" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="8" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="x" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="53" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="55" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="137" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="72" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="12" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="33" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-25" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="2" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="12" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="w" 	g2="w" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="94" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="127" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="w" 	g2="s" 	k="12" />
+<hkern g1="w" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="z" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="z" 	g2="g" 	k="12" />
+<hkern g1="z" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="z" 	g2="t" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="78" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="47" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="g" 	k="68" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="238" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="244" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="213" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotright,guilsinglright" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="201" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="70" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="205" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="25" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="53" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="s" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="43" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-61" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="x" 	k="41" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="150" />
+<hkern g1="B" 	g2="z" 	k="47" />
+<hkern g1="B" 	g2="V" 	k="66" />
+<hkern g1="B" 	g2="X" 	k="25" />
+<hkern g1="B" 	g2="Z" 	k="4" />
+<hkern g1="B" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-4" />
+<hkern g1="B" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-8" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="B" 	g2="AE" 	k="84" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="98" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="59" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-20" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="88" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="61" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="39" />
+<hkern g1="C,Ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="2" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="27" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="39" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="113" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="b,h,k,l,thorn" 	k="2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="8" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="98" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="16" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="55" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="94" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="45" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="14" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="66" />
+<hkern g1="G" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="G" 	g2="g" 	k="10" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="111" />
+<hkern g1="G" 	g2="T" 	k="90" />
+<hkern g1="G" 	g2="V" 	k="102" />
+<hkern g1="G" 	g2="X" 	k="72" />
+<hkern g1="G" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="G" 	g2="S" 	k="6" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="G" 	g2="AE" 	k="123" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="b,h,k,l,thorn" 	k="-8" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="27" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-63" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-41" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="X" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="s" 	k="14" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="49" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="25" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="117" />
+<hkern g1="K" 	g2="w" 	k="121" />
+<hkern g1="K" 	g2="x" 	k="25" />
+<hkern g1="K" 	g2="g" 	k="72" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-49" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="84" />
+<hkern g1="K" 	g2="z" 	k="72" />
+<hkern g1="K" 	g2="t" 	k="111" />
+<hkern g1="K" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="172" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="90" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="K" 	g2="T" 	k="104" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="80" />
+<hkern g1="K" 	g2="V" 	k="61" />
+<hkern g1="K" 	g2="X" 	k="18" />
+<hkern g1="K" 	g2="Z" 	k="41" />
+<hkern g1="K" 	g2="s" 	k="98" />
+<hkern g1="K" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="K" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="88" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="K" 	g2="J" 	k="4" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="K" 	g2="S" 	k="135" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="2" />
+<hkern g1="K" 	g2="AE" 	k="20" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="123" />
+<hkern g1="L" 	g2="w" 	k="115" />
+<hkern g1="L" 	g2="x" 	k="47" />
+<hkern g1="L" 	g2="g" 	k="88" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-66" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="281" />
+<hkern g1="L" 	g2="z" 	k="61" />
+<hkern g1="L" 	g2="t" 	k="102" />
+<hkern g1="L" 	g2="guillemotright,guilsinglright" 	k="-20" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="96" />
+<hkern g1="L" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="86" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
+<hkern g1="L" 	g2="T" 	k="270" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="129" />
+<hkern g1="L" 	g2="V" 	k="272" />
+<hkern g1="L" 	g2="X" 	k="39" />
+<hkern g1="L" 	g2="Z" 	k="70" />
+<hkern g1="L" 	g2="s" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="L" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
+<hkern g1="L" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="98" />
+<hkern g1="L" 	g2="J" 	k="74" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="90" />
+<hkern g1="L" 	g2="S" 	k="102" />
+<hkern g1="L" 	g2="AE" 	k="12" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="M" 	g2="w" 	k="20" />
+<hkern g1="M" 	g2="x" 	k="12" />
+<hkern g1="M" 	g2="g" 	k="31" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="M" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="M" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="M" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="57" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="b,h,k,l,thorn" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="x" 	k="18" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="g" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="t" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="72" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="59" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="90" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="125" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-14" />
+<hkern g1="P" 	g2="w" 	k="-10" />
+<hkern g1="P" 	g2="x" 	k="76" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="P" 	g2="z" 	k="76" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="T" 	k="47" />
+<hkern g1="P" 	g2="V" 	k="39" />
+<hkern g1="P" 	g2="X" 	k="121" />
+<hkern g1="P" 	g2="Z" 	k="25" />
+<hkern g1="P" 	g2="s" 	k="23" />
+<hkern g1="P" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="P" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="90" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
+<hkern g1="P" 	g2="J" 	k="23" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-6" />
+<hkern g1="P" 	g2="S" 	k="12" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
+<hkern g1="P" 	g2="AE" 	k="205" />
+<hkern g1="R" 	g2="b,h,k,l,thorn" 	k="88" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="R" 	g2="w" 	k="72" />
+<hkern g1="R" 	g2="x" 	k="-8" />
+<hkern g1="R" 	g2="g" 	k="66" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-94" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="119" />
+<hkern g1="R" 	g2="z" 	k="33" />
+<hkern g1="R" 	g2="t" 	k="66" />
+<hkern g1="R" 	g2="guillemotright,guilsinglright" 	k="8" />
+<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="R" 	g2="m,n,p,r,ntilde" 	k="33" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-10" />
+<hkern g1="R" 	g2="T" 	k="104" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="111" />
+<hkern g1="R" 	g2="V" 	k="119" />
+<hkern g1="R" 	g2="X" 	k="39" />
+<hkern g1="R" 	g2="Z" 	k="23" />
+<hkern g1="R" 	g2="j" 	k="37" />
+<hkern g1="R" 	g2="s" 	k="25" />
+<hkern g1="R" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="R" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
+<hkern g1="R" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="66" />
+<hkern g1="R" 	g2="J" 	k="-4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="R" 	g2="S" 	k="61" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-10" />
+<hkern g1="R" 	g2="AE" 	k="27" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="S" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="S" 	g2="z" 	k="25" />
+<hkern g1="S" 	g2="T" 	k="33" />
+<hkern g1="S" 	g2="V" 	k="61" />
+<hkern g1="S" 	g2="X" 	k="55" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="S" 	g2="AE" 	k="61" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="39" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="T" 	g2="w" 	k="92" />
+<hkern g1="T" 	g2="x" 	k="150" />
+<hkern g1="T" 	g2="g" 	k="199" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="172" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="T" 	g2="z" 	k="123" />
+<hkern g1="T" 	g2="t" 	k="115" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="6" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="47" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="84" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="102" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="4" />
+<hkern g1="T" 	g2="X" 	k="55" />
+<hkern g1="T" 	g2="j" 	k="51" />
+<hkern g1="T" 	g2="s" 	k="164" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="129" />
+<hkern g1="T" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="139" />
+<hkern g1="T" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="190" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="92" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="162" />
+<hkern g1="T" 	g2="AE" 	k="190" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="88" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="18" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Y,Yacute,Ydieresis" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="49" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="S" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="113" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="V,W" 	g2="w" 	k="131" />
+<hkern g1="V,W" 	g2="x" 	k="156" />
+<hkern g1="V,W" 	g2="g" 	k="211" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="238" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-80" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="V,W" 	g2="z" 	k="170" />
+<hkern g1="V,W" 	g2="t" 	k="123" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="47" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="49" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="94" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="V,W" 	g2="X" 	k="25" />
+<hkern g1="V,W" 	g2="Z" 	k="41" />
+<hkern g1="V,W" 	g2="j" 	k="23" />
+<hkern g1="V,W" 	g2="s" 	k="174" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="V,W" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="121" />
+<hkern g1="V,W" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="160" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
+<hkern g1="V,W" 	g2="J" 	k="18" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V,W" 	g2="S" 	k="63" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="119" />
+<hkern g1="V,W" 	g2="AE" 	k="225" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="211" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-68" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="197" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="63" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="63" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="6" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="66" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="31" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="92" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="172" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="133" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="164" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="223" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="16" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="w" 	k="129" />
+<hkern g1="X" 	g2="x" 	k="88" />
+<hkern g1="X" 	g2="g" 	k="84" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="39" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="X" 	g2="z" 	k="51" />
+<hkern g1="X" 	g2="t" 	k="88" />
+<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="43" />
+<hkern g1="X" 	g2="guillemotleft,guilsinglleft" 	k="180" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="109" />
+<hkern g1="X" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="X" 	g2="T" 	k="74" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="8" />
+<hkern g1="X" 	g2="V" 	k="27" />
+<hkern g1="X" 	g2="j" 	k="68" />
+<hkern g1="X" 	g2="s" 	k="88" />
+<hkern g1="X" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
+<hkern g1="X" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="102" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="106" />
+<hkern g1="X" 	g2="J" 	k="18" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="X" 	g2="S" 	k="111" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="47" />
+<hkern g1="Z" 	g2="w" 	k="76" />
+<hkern g1="Z" 	g2="g" 	k="8" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-133" />
+<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="94" />
+<hkern g1="Z" 	g2="t" 	k="82" />
+<hkern g1="Z" 	g2="guillemotright,guilsinglright" 	k="-43" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="18" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="45" />
+<hkern g1="Z" 	g2="T" 	k="12" />
+<hkern g1="Z" 	g2="V" 	k="35" />
+<hkern g1="Z" 	g2="X" 	k="41" />
+<hkern g1="Z" 	g2="s" 	k="61" />
+<hkern g1="Z" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="Z" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="Z" 	g2="J" 	k="-6" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
+<hkern g1="Z" 	g2="S" 	k="35" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-31" />
+<hkern g1="Z" 	g2="AE" 	k="23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-86" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="61" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-61" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-51" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-119" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-76" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="188" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-66" />
+<hkern g1="guillemotright,guilsinglright" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="164" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="s" 	k="-70" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-98" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-76" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-61" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-96" />
+<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-53" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-45" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-66" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-61" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="14" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="143" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="270" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-6" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="352" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="246" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="190" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="354" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-98" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="82" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-115" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-68" />
+<hkern g1="hyphen,endash,emdash" 	g2="t" 	k="-41" />
+<hkern g1="hyphen,endash,emdash" 	g2="s" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="v,y,yacute,ydieresis" 	k="55" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-12" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-66" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-25" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-125" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-233" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-162" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-4" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..bfd2ce4e8d5b089d41771bf1d4cf06044e8b2abe
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.woff
new file mode 100755
index 0000000000000000000000000000000000000000..7dc755e9f14a7a52386cded6ff4e73f3a7b7c4ff
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaBolIta.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.eot
new file mode 100755
index 0000000000000000000000000000000000000000..79a73b36094a18d34b5a5d71841a46faadcd7dbc
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.svg
new file mode 100755
index 0000000000000000000000000000000000000000..b5635f7fb5bae4fe2b89384b26f7d563795a03b5
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.svg
@@ -0,0 +1,1480 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-italicregular" horiz-adv-x="1122" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1259" d="M-326 -477q0 57 29 164h94q0 -76 20.5 -110t82.5 -34q86 0 137 76q49 65 82 262l160 912h-175l19 94q101 17 141 41q23 13 33.5 35t24.5 84q21 91 45 154.5t54 105t55.5 65t66.5 51.5q109 74 309 74q42 0 102 -10t90 -23q56 -24 56 -86q0 -78 -33 -200h-109q0 59 -2 79 q-3 53 -38 78q-18 12 -55.5 19.5t-69.5 7.5q-139 0 -207 -92q-29 -40 -52 -100t-45 -181l-14 -78h371q97 39 155 39q50 0 73.5 -19.5t23.5 -80.5q0 -78 -49 -270l-52 -222q-28 -122 -28 -170q0 -36 16.5 -52.5t56.5 -16.5q69 0 136 18l-25 -102q-116 -53 -229 -53 q-138 0 -138 118q0 49 29 181l53 243q35 165 35 195q0 45 -26.5 58.5t-81.5 13.5h-342l-172 -914q-31 -165 -74.5 -252.5t-110.5 -142.5q-97 -74 -239 -74q-75 0 -129 29t-54 86z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1253" d="M-326 -477q0 57 29 164h94q0 -77 20.5 -110.5t82.5 -33.5q88 0 139 76q42 56 80 262l164 912h-177l21 94q99 16 139 41q24 14 36 36t24 74q41 169 93 250.5t128 130.5q121 78 313 78q72 0 162 -20q60 22 102 22q52 0 73.5 -20t21.5 -78q0 -47 -60 -324l-155 -719 q-29 -147 -29 -170q0 -36 17 -52.5t57 -16.5q68 0 135 18l-25 -102q-116 -53 -229 -53q-137 0 -137 118q0 40 28 176l162 760q31 146 31 207q0 121 -172 121q-99 0 -154.5 -23.5t-93.5 -72.5q-19 -27 -32 -51t-31.5 -82t-34.5 -142l-17 -78q146 0 246 -4l-20 -114 q-132 -6 -250 -6l-172 -906q-32 -169 -76 -259t-111 -144q-97 -74 -241 -74q-73 0 -127 28.5t-54 86.5z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1927" d="M-319 -449q0 72 28 164h94q0 -87 19 -118t84 -31q41 0 78.5 22.5t60.5 61.5q48 78 80 258l154 885h-175l19 94q101 17 141 41q23 14 34.5 35t23.5 73q38 152 83.5 228.5t116.5 121.5q104 70 254 70q72 0 139 -24q58 -24 58 -82q0 -60 -29 -191h-94v49q0 28 -5 47t-11 27 t-17 18q-26 21 -88 21q-99 0 -158 -86q-38 -55 -86 -277l-10 -51h332q100 0 131 23q36 23 57 108q28 120 63 197.5t68.5 114.5t85.5 73q109 74 308 74q45 0 104.5 -9.5t89.5 -23.5q53 -21 53 -86q0 -69 -32 -204h-111q2 27 2 81q0 107 -164 107q-139 0 -207 -92 q-26 -34 -46.5 -94.5t-47.5 -188.5l-16 -76h371q97 39 153 39q51 0 74.5 -19.5t23.5 -80.5t-49 -272l-51 -220q-29 -126 -29 -170q0 -36 16 -52.5t58 -16.5q66 0 133 18l-22 -102q-116 -53 -230 -53q-137 0 -137 118q0 44 29 176l53 248q35 165 35 195q0 45 -27 58.5 t-82 13.5h-342l-159 -842q-49 -254 -146 -357q-103 -112 -270 -112q-94 0 -150 31q-49 25 -49 83q0 59 29 154h88q0 -81 22.5 -110t87.5 -29q43 0 83.5 23t62.5 61q49 88 80 258l149 842h-497l-168 -887q-26 -138 -59 -221t-83 -136q-106 -112 -270 -112q-87 0 -143 31 q-49 25 -49 83z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1921" d="M-319 -449q0 72 28 164h94q0 -87 19 -118t84 -31q41 0 78.5 22.5t60.5 61.5q48 78 80 258l154 885h-175l19 94q101 17 141 41q23 13 34.5 35t23.5 75q38 152 83.5 228t116.5 123q100 67 254 67q72 0 139 -24q58 -24 58 -82q0 -60 -29 -191h-92q0 42 -2 62q-2 52 -33 79 q-26 21 -86 21q-107 0 -160 -84q-46 -70 -88 -291l-6 -39h334q96 0 127 23q39 25 57 108q27 116 64.5 195t72.5 117t85 69q121 78 311 78q72 0 162 -20q52 20 104 20q50 0 71 -19.5t21 -76.5q0 -23 -9.5 -76t-28.5 -139.5t-23 -108.5l-154 -719q-29 -126 -29 -170 q0 -36 16 -52.5t58 -16.5q66 0 133 18l-22 -102q-116 -53 -230 -53q-137 0 -137 118q0 36 29 181l162 755q30 141 30 207q0 121 -172 121q-99 0 -154 -23.5t-93 -72.5q-20 -27 -32.5 -51t-31.5 -82t-35 -142l-16 -78q146 0 246 -4l-21 -114q-132 -6 -250 -6l-159 -842 q-26 -137 -59.5 -220.5t-84.5 -138.5q-101 -110 -272 -110q-94 0 -150 31q-49 25 -49 83q0 59 29 154h88q0 -81 22.5 -110t87.5 -29q43 0 83.5 23t62.5 61q49 88 80 258l149 842h-497l-168 -887q-26 -138 -59 -221t-83 -136q-106 -112 -270 -112q-87 0 -143 31 q-49 25 -49 83z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="591" d="M145 106q0 58 38 100t98 42q56 0 91.5 -34t35.5 -89q0 -63 -38.5 -104t-101.5 -41q-54 0 -88.5 34.5t-34.5 91.5zM283 440q73 679 104 871q10 61 39 92t88 31q46 0 72 -23.5t26 -62.5q0 -24 -8 -56q-5 -24 -16.5 -68.5t-33.5 -124t-45 -162t-63.5 -225.5t-76.5 -272h-86z " />
+<glyph unicode="&#x22;" horiz-adv-x="638" d="M195 879q29 414 43 487q10 49 35.5 69.5t68.5 20.5q40 0 59 -20.5t19 -51.5q0 -25 -14 -79q-33 -124 -132 -426h-79zM504 879q29 414 43 487q9 49 34.5 69.5t69.5 20.5q39 0 58.5 -21t19.5 -51q0 -22 -16 -84q-21 -83 -131 -421h-78z" />
+<glyph unicode="#" horiz-adv-x="1142" d="M119 428l28 154h220l71 231h-221l31 156h229l117 403h96l-119 -403h256l119 403h92l-114 -403h200l-30 -156h-217l-70 -231h209l-29 -154h-225l-129 -455h-92l129 455h-254l-137 -455h-86l129 455h-203zM457 582h260l65 231h-256z" />
+<glyph unicode="$" horiz-adv-x="1089" d="M76 182q0 78 18 211h101q8 -141 63 -200q44 -53 178 -62l92 477l-98 56q-192 109 -192 292q0 176 118 277t318 117l43 215h98l-41 -211q145 -4 234 -39q65 -24 65 -90q0 -90 -39 -232h-98q-3 81 -12 119.5t-29 58.5q-36 39 -147 46l-91 -457l127 -70q187 -103 187 -284 q0 -96 -35.5 -171.5t-99 -124.5t-146 -77t-180.5 -35l-45 -234h-100l45 232q-334 13 -334 186zM420 1004q0 -59 33 -104t114 -91l80 408q-103 -10 -165 -63t-62 -150zM535 131q109 8 178 62.5t69 156.5q0 116 -129 189l-35 18z" />
+<glyph unicode="%" horiz-adv-x="1724" d="M123 791q0 111 33.5 236t101.5 210q106 129 274 129q138 0 203.5 -68.5t65.5 -203.5q0 -108 -31 -232t-92 -211q-108 -151 -285 -151q-133 0 -201.5 74.5t-68.5 216.5zM266 799q0 -187 142 -187q64 0 114.5 49t78 124t41 151.5t13.5 144.5q0 179 -135 179q-56 0 -101 -33 t-73 -83t-46.5 -114t-26 -121.5t-7.5 -109.5zM479 33l756 1345l86 -45l-756 -1347zM997 274q0 113 34 238t104 211q104 129 274 129q266 0 266 -274q0 -110 -31 -233.5t-94 -209.5q-107 -149 -282 -149q-133 0 -202 74t-69 214zM1143 285q0 -189 141 -189q51 0 93.5 33 t70 84t46.5 115t27.5 124t8.5 113q0 178 -135 178q-98 0 -158 -88q-47 -69 -70.5 -175.5t-23.5 -194.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="1554" d="M100 352q0 69 18.5 127t49.5 101t80.5 81t103 66t125.5 57q-31 58 -49 131t-18 132q0 175 110.5 271.5t300.5 96.5q143 0 228.5 -72t85.5 -186q0 -49 -14.5 -92.5t-35.5 -76.5t-58.5 -65.5t-69.5 -54.5t-84 -47.5t-87 -40t-92 -37.5q47 -95 133.5 -206t180.5 -205 q61 57 141 192q29 52 29 86q0 20 -9 29t-32 14q-44 10 -119 13l18 104q122 -4 248 -4q104 0 244 4l-21 -104q-54 -1 -81 -7.5t-46 -21.5q-26 -22 -88 -129q-87 -145 -196 -262q50 -51 132 -87t171 -36q29 0 43 2l-23 -135q-30 -6 -86 -6q-228 0 -368 133 q-200 -144 -424 -144q-102 0 -186.5 31t-139.5 83.5t-85 120.5t-30 144zM291 387q0 -117 73 -194.5t209 -77.5q149 0 285 98q-94 99 -186.5 227t-143.5 226q-110 -47 -173.5 -111.5t-63.5 -167.5zM590 1073q0 -48 15 -110t42 -111q330 116 330 287q0 64 -50 103.5t-126 39.5 q-94 0 -152.5 -55.5t-58.5 -153.5z" />
+<glyph unicode="'" horiz-adv-x="331" d="M195 879q29 414 43 487q10 49 35.5 69.5t68.5 20.5q40 0 59 -20.5t19 -51.5q0 -30 -19 -98q-7 -22 -25 -83.5t-44 -145t-58 -178.5h-79z" />
+<glyph unicode="(" horiz-adv-x="636" d="M86 381q0 382 179 688t515 522l51 -73q-124 -88 -228.5 -205.5t-186 -260.5t-128 -316.5t-46.5 -356.5q0 -206 63 -390.5t164 -322.5l-61 -57q-151 126 -236.5 325.5t-85.5 446.5z" />
+<glyph unicode=")" horiz-adv-x="636" d="M-170 -319q124 88 228.5 205t186 260t127.5 316.5t46 356.5q0 208 -62 393t-163 322l63 57q149 -126 234 -327t85 -447q0 -382 -179 -688t-515 -520z" />
+<glyph unicode="*" horiz-adv-x="829" d="M225 1192q0 31 22.5 57.5t55.5 26.5q29 0 68.5 -28t156.5 -132q-18 133 -18 203q0 65 21.5 86.5t60.5 21.5q29 0 53.5 -14t24.5 -47q0 -75 -82 -262q109 50 155.5 68t75.5 18q36 0 55 -20t19 -54q0 -43 -20 -64.5t-70 -21.5q-96 0 -213 4q94 -104 126 -151t32 -80 q0 -36 -25.5 -56t-58.5 -20q-52 0 -73.5 49t-58.5 230q-76 -137 -115 -182.5t-77 -45.5q-25 0 -51.5 21.5t-26.5 56.5t46 78t188 121q-123 31 -178 50t-74 37.5t-19 49.5z" />
+<glyph unicode="+" horiz-adv-x="1191" d="M135 569l33 133h405l99 435h135l-100 -435h403l-33 -133h-401l-101 -434h-131l99 434h-408z" />
+<glyph unicode="," horiz-adv-x="448" d="M-115 -270q246 113 246 237q0 41 -41 58q-67 31 -67 104q0 52 37 86.5t96 34.5q67 0 110 -44.5t43 -121.5q0 -76 -33 -145t-90 -122.5t-124 -94t-144 -70.5z" />
+<glyph unicode="-" horiz-adv-x="546" d="M53 430l29 143h426l-29 -143h-426z" />
+<glyph unicode="." horiz-adv-x="438" d="M23 106q0 58 38 100t99 42q56 0 90.5 -34t34.5 -89q0 -63 -38 -104t-100 -41q-55 0 -89.5 35t-34.5 91z" />
+<glyph unicode="/" horiz-adv-x="671" d="M-49 -129l713 1632l104 -43l-713 -1632z" />
+<glyph unicode="0" d="M96 420q0 195 58.5 411.5t179.5 360.5q149 180 383 180q195 0 291 -110.5t96 -319.5q0 -184 -55 -402.5t-166 -367.5q-153 -201 -396 -201q-199 0 -295 116.5t-96 332.5zM283 436q0 -50 4 -90.5t18 -85.5t37.5 -75t66 -50t99.5 -20q88 0 160.5 62.5t117.5 155.5t76 208 t43.5 214t12.5 179q0 51 -5.5 92t-20.5 80.5t-39.5 66t-65 42.5t-95.5 16q-141 0 -237 -137q-81 -118 -126.5 -304.5t-45.5 -353.5z" />
+<glyph unicode="1" d="M188 -2l21 106q157 5 197 33q11 9 18.5 26.5t11.5 33t10 49.5l115 577q47 262 47 293q0 25 -8.5 35t-30.5 10q-62 0 -174 -35l-26 103q97 48 307 125q58 20 100 20q55 0 55 -61q0 -21 -4 -49q-51 -243 -90 -441l-114 -575q-9 -44 -9 -82q0 -43 50 -49q29 -5 167 -13 l-20 -106q-164 4 -332 4q-115 0 -291 -4z" />
+<glyph unicode="2" d="M-20 0l20 111q347 251 463 345q227 186 309 332q62 113 62 232q0 91 -53.5 151t-168.5 60q-142 0 -204 -66q-42 -48 -70 -159h-98q0 102 10 170q9 52 35.5 83.5t83.5 59.5q116 53 295 53q176 0 271 -85.5t95 -227.5q0 -64 -16.5 -128.5t-42.5 -120.5t-68.5 -114.5 t-85.5 -106.5t-102 -100.5t-109 -92t-117 -86t-115 -78t-112 -72.5q47 0 179.5 1t160.5 1q102 0 152 8.5t75 32.5q33 31 80 127h95q-41 -187 -66 -252q-30 -78 -143 -78h-815z" />
+<glyph unicode="3" d="M78 131q0 75 35 207h102q3 -111 33 -156q44 -67 205 -67q94 0 169.5 28t125 94t49.5 162q0 91 -69 154t-208 72q-94 4 -147 4l22 129q13 1 44 1.5t54.5 1.5t47.5 5q59 10 111 31.5t95 55t68 84.5t25 112q0 76 -48.5 129t-156.5 53q-131 0 -191 -53q-39 -34 -73 -156h-101 q3 81 11 156q6 49 29 78.5t79 58.5q108 57 285 57q94 0 164 -23.5t110 -65t59 -91.5t19 -109q0 -156 -93 -244.5t-263 -131.5q150 -13 231.5 -91.5t81.5 -197.5q0 -110 -43.5 -196.5t-118.5 -140.5t-172 -82t-209 -28q-183 0 -282 43q-44 20 -62 47t-18 70z" />
+<glyph unicode="4" d="M66 362l16 99l725 829q40 46 69 65t70 19q34 0 56 -19t22 -59q0 -25 -14 -104q-2 -11 -15 -72t-43.5 -214t-77.5 -392h205l-28 -149h-205l-21 -105q-14 -72 -14 -90q0 -24 11.5 -36.5t37.5 -18.5q38 -8 141 -15l-20 -102q-164 4 -311 4q-82 0 -258 -4l20 102 q150 8 178 39q20 23 41 123l23 100h-608zM281 508h419q89 433 138 639z" />
+<glyph unicode="5" d="M74 127q0 55 32 203h105q3 -114 31 -154q54 -65 200 -65q162 0 266.5 86.5t104.5 242.5q0 110 -70 187.5t-208 77.5q-57 0 -125 -19q-62 -16 -91 -16q-63 0 -63 61q0 23 18 100l127 508h678l-24 -161h-557l-90 -353q98 25 210 25q167 0 276.5 -97t109.5 -264 q0 -241 -154.5 -379.5t-419.5 -138.5q-186 0 -274 43q-82 37 -82 113z" />
+<glyph unicode="6" d="M135 414q0 203 67.5 418t194.5 356q168 184 453 184q104 0 199 -31q75 -26 75 -98q0 -34 -10.5 -94t-26.5 -109h-94q-7 111 -39 152q-34 37 -137 37q-174 0 -278 -109q-125 -131 -187 -413q54 69 149 110t197 41q165 0 258 -95t93 -245q0 -149 -59 -271.5t-177.5 -199 t-277.5 -76.5q-183 0 -291.5 115t-108.5 328zM313 395q0 -124 61.5 -203t176.5 -79q149 0 232 102.5t83 257.5q0 111 -62 174.5t-175 63.5q-175 0 -295 -152q-21 -103 -21 -164z" />
+<glyph unicode="7" d="M188 993q9 140 23 238q9 51 39 79.5t100 28.5h805l-18 -104l-715 -1235q-16 -28 -32.5 -41.5t-47.5 -13.5q-80 0 -80 57q0 28 19 61l667 1115h-319q-203 0 -248 -13q-35 -8 -55 -45.5t-45 -126.5h-93z" />
+<glyph unicode="8" d="M92 317q0 137 92 231t265 157q-92 64 -132.5 144.5t-40.5 160.5q0 162 120.5 262t324.5 100q174 0 276.5 -80t102.5 -215q0 -71 -24 -129t-71.5 -101.5t-100 -74.5t-126.5 -63q230 -137 230 -336q0 -182 -135 -291t-357 -109q-194 0 -309 94t-115 250zM270 334 q0 -98 68.5 -159.5t187.5 -61.5q125 0 206 56t81 171q0 85 -63 157.5t-203 137.5q-72 -33 -118 -60.5t-84.5 -63t-56.5 -79t-18 -98.5zM465 1036q0 -78 47.5 -141t159.5 -123q252 123 252 277q0 79 -56 131.5t-159 52.5q-109 0 -176.5 -50.5t-67.5 -146.5z" />
+<glyph unicode="9" d="M82 109q0 95 29 196h96q4 -64 16 -96t33 -53q38 -41 150 -41q178 0 282 116q108 117 172 408q-52 -67 -144 -107t-194 -40q-168 0 -264 94.5t-96 247.5q0 111 33.5 208t96.5 171t161.5 116.5t220.5 42.5q185 0 292 -112t107 -326q0 -212 -56.5 -420.5t-178.5 -349.5 q-168 -193 -455 -193q-58 0 -122.5 11t-102.5 26q-40 18 -58 40.5t-18 60.5zM344 881q0 -118 61.5 -179t176.5 -61q183 0 297 147q20 78 20 162q0 126 -62.5 204.5t-179.5 78.5q-148 0 -230.5 -100t-82.5 -252z" />
+<glyph unicode=":" horiz-adv-x="479" d="M66 106q0 58 38 100t99 42q56 0 90.5 -34t34.5 -89q0 -63 -38 -104t-100 -41q-54 0 -89 35t-35 91zM190 756q0 57 38 99t98 42q56 0 91.5 -33.5t35.5 -87.5q0 -64 -38 -104.5t-102 -40.5q-55 0 -89 34.5t-34 90.5z" />
+<glyph unicode=";" horiz-adv-x="483" d="M-74 -270q246 113 246 237q0 41 -41 58q-68 31 -68 104q0 52 37.5 86.5t96.5 34.5q67 0 110 -44.5t43 -121.5q0 -76 -33 -145t-90.5 -122.5t-124 -94t-143.5 -70.5zM190 756q0 57 38 99t98 42q56 0 91.5 -33.5t35.5 -87.5q0 -64 -38 -104.5t-102 -40.5q-55 0 -89 34.5 t-34 90.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1189" d="M205 555l37 147l884 414l-36 -168l-732 -330l580 -325l-37 -150z" />
+<glyph unicode="=" horiz-adv-x="1189" d="M115 387l32 137h908l-27 -137h-913zM199 752l28 135h912l-31 -135h-909z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1189" d="M141 143l37 166l729 332l-575 324l35 151l690 -409l-31 -148z" />
+<glyph unicode="?" horiz-adv-x="868" d="M209 106q0 58 37.5 100t97.5 42q57 0 93 -34t36 -89q0 -63 -38 -104t-101 -41q-56 0 -90.5 34.5t-34.5 91.5zM238 1112q0 92 10 156q14 87 123 123q110 36 233 36q162 -1 247 -77.5t85 -200.5q0 -72 -20.5 -133t-53.5 -106t-86.5 -87t-106 -72t-126.5 -65 q-23 -12 -41 -28.5t-28 -32t-19.5 -42t-13.5 -43.5t-12 -53.5t-13 -56.5h-101q8 129 23 213q10 56 45.5 91.5t103.5 66.5q57 28 97 54.5t78.5 64t58.5 86.5t20 108q0 70 -41 124t-129 54q-120 0 -163 -30q-39 -29 -66 -150h-104z" />
+<glyph unicode="@" horiz-adv-x="1624" d="M82 395q0 172 64 333.5t176 286t276.5 200t353.5 75.5q132 0 239 -33t175.5 -86t114.5 -124.5t65 -143.5t19 -147q0 -345 -260 -557q-52 -42 -121.5 -72.5t-118.5 -30.5q-74 0 -98.5 35t-24.5 115q-147 -150 -305 -150q-115 0 -173 67.5t-58 194.5q0 126 60.5 255 t162.5 218q72 65 142 92t165 27q99 0 180 -47l33 66h108l-122 -422q-54 -182 -54 -268q0 -52 45 -52q24 0 64 20.5t74 51.5q82 74 129 189.5t47 254.5q0 206 -136 324.5t-358 118.5q-156 0 -293.5 -63.5t-233.5 -171.5t-151 -253t-55 -305q0 -168 78.5 -297.5t216 -198.5 t311.5 -69q344 0 619 211l55 -84q-147 -120 -322.5 -182t-363.5 -62q-325 0 -525 186.5t-200 497.5zM551 369q0 -150 137 -150q57 0 131 37t129 86q14 60 45 170l82 283q-81 43 -170 43q-54 0 -97 -18.5t-87 -59.5q-76 -71 -123 -176t-47 -215z" />
+<glyph unicode="A" horiz-adv-x="1456" d="M-76 -2l23 108q95 5 137 35q23 17 44 47t73 117l598 1024q28 47 58.5 68.5t72.5 21.5q41 0 65 -20t31 -66l170 -1061q9 -62 19.5 -91t29.5 -48q23 -23 135 -27l-22 -108q-144 4 -273 4q-126 0 -286 -4l22 108q82 4 129 15q36 7 50 25t14 51q0 49 -8 96l-31 194h-502 l-111 -182q-57 -95 -57 -137q0 -25 19 -39q28 -17 170 -23l-23 -108q-136 4 -313 4q-90 0 -234 -4zM539 623h417q-34 214 -86 585q-70 -130 -331 -585z" />
+<glyph unicode="B" horiz-adv-x="1277" d="M-10 -2l22 106q128 8 152 23q24 13 34 33t23 88l168 878q14 69 14 97q0 34 -43 43q-46 11 -133 16l19 102h383q217 0 338 -22q123 -24 185 -90.5t62 -163.5q0 -302 -331 -373q146 -17 222.5 -94.5t76.5 -198.5q0 -147 -79 -248.5t-212.5 -148.5t-312.5 -47 q-39 0 -158.5 2t-175.5 2q-98 0 -254 -4zM391 176q0 -20 9.5 -30.5t33.5 -16.5q31 -6 150 -6q77 0 145 17.5t123.5 52t88 92.5t32.5 133q0 66 -25 116t-65 74q-45 26 -114.5 37.5t-193.5 11.5h-94l-84 -426q-6 -27 -6 -55zM508 791h94q150 0 201 14q98 28 155.5 91.5 t57.5 162.5q0 133 -117 170q-79 22 -207 22h-96z" />
+<glyph unicode="C" horiz-adv-x="1361" d="M129 547q0 175 59.5 337.5t178.5 291.5q226 241 608 241q184 0 307 -49q78 -33 78 -119q0 -68 -33 -225h-104q0 131 -39 182q-52 64 -242 64q-137 0 -255.5 -53t-201.5 -158q-78 -97 -119.5 -228t-41.5 -264q0 -225 119 -337.5t317 -112.5q179 0 274 71q57 43 117 168 h106q-26 -152 -67 -225q-47 -82 -141 -113q-155 -47 -324 -47q-276 0 -436 154t-160 422z" />
+<glyph unicode="D" horiz-adv-x="1484" d="M-10 0l22 104q92 8 124.5 14t47.5 21q12 12 18.5 33.5t18.5 87.5l168 862q14 75 14 101q0 35 -45 45q-41 8 -131 14l19 102h344q300 0 441.5 -31t232.5 -100q81 -61 126.5 -166.5t45.5 -224.5q0 -515 -346 -737q-100 -65 -245 -95t-356 -30h-499zM393 201q0 -49 51 -58 q43 -8 162 -8q125 0 229 34t178 95.5t125.5 148t76 190t24.5 222.5q0 116 -43 210.5t-117 138.5q-117 73 -364 73h-121l-195 -1001q-6 -30 -6 -45z" />
+<glyph unicode="E" horiz-adv-x="1228" d="M-10 0l22 106q139 3 170 31q12 11 18.5 32t17.5 78q3 15 5 23l166 852q14 72 14 101q0 34 -43 45q-39 8 -133 12l19 104h844q118 0 118 -79q0 -96 -37 -256h-98q0 42 -4 96q-5 49 -35 74q-24 15 -69 21.5t-156 6.5h-213l-90 -465h145q83 0 119 6.5t57 26.5q30 28 60 125 h98q-37 -153 -84 -440h-94q2 20 2 55q0 80 -53 92q-39 8 -131 8h-144l-82 -417q-1 -5 -3.5 -21t-2.5 -22q0 -46 43 -52q53 -8 203 -8q234 0 305 60q51 43 113 170h100q-14 -89 -39 -175.5t-51 -130.5q-35 -59 -176 -59h-901z" />
+<glyph unicode="F" horiz-adv-x="1173" d="M-10 -2l22 106q90 6 124.5 13.5t47.5 21.5q11 11 18.5 36t20.5 95l166 854q14 72 14 95q0 39 -45 47q-45 11 -131 14l19 104h864q67 0 92 -21.5t25 -66.5q0 -76 -39 -247h-98q0 136 -39 168q-22 16 -67.5 23t-158.5 7h-229l-96 -489h174q81 0 116.5 7.5t57.5 27.5 q35 32 63 127h97q-47 -202 -86 -451h-93v61q0 25 -4.5 42t-17.5 28t-24 17t-38 8.5t-43.5 3t-54.5 0.5h-170l-69 -350q-15 -67 -15 -107q0 -45 45 -53q33 -8 164 -15l-20 -106q-172 4 -316 4q-96 0 -276 -4z" />
+<glyph unicode="G" horiz-adv-x="1456" d="M129 555q0 200 76 382t219 302q213 178 524 178q214 0 344 -51q84 -32 84 -115q0 -71 -35 -229h-108q0 136 -33 178q-63 70 -278 70q-114 0 -217.5 -42.5t-182.5 -123.5q-93 -98 -145.5 -232.5t-52.5 -283.5q0 -127 35 -220.5t99 -147t144 -78.5t178 -25q175 0 252 51 q23 20 37 86l29 149q8 54 8 72q0 19 -8.5 29t-30.5 16q-28 7 -139 15l18 108q114 -4 262 -4q172 0 244 4l-20 -108q-57 -2 -84.5 -7.5t-40.5 -19.5q-16 -19 -31 -102l-49 -254q-16 -90 -86 -115q-185 -68 -412 -68q-278 0 -439 150.5t-161 435.5z" />
+<glyph unicode="H" horiz-adv-x="1544" d="M-10 -2l22 106q85 6 120.5 13.5t51.5 21.5q11 9 18.5 34t20.5 95l166 856q14 82 14 97q0 38 -45 47q-46 8 -131 14l19 104q126 -6 272 -6q11 0 293 6l-23 -104q-93 -7 -130 -15.5t-50 -21.5q-18 -21 -37 -121l-63 -329h647l68 329q14 66 14 99t-47 45q-40 10 -131 14 l20 104q252 -6 275 -6q18 0 288 6l-20 -104q-93 -7 -130 -15.5t-50 -21.5q-22 -25 -39 -119l-164 -856q-16 -94 -16 -104q0 -22 12 -32t39 -15q53 -9 133 -15l-21 -106q-172 4 -290 4q-91 0 -275 -4l25 106q145 10 170 35q11 9 19.5 35t21.5 94l73 387h-649l-75 -385 q-17 -84 -17 -104q0 -22 12.5 -32t38.5 -15q62 -10 135 -15l-22 -106q-172 4 -293 4q-90 0 -270 -4z" />
+<glyph unicode="I" horiz-adv-x="716" d="M-10 -2l22 106q144 10 172 35q11 9 18.5 34t20.5 95l166 856q14 82 14 99q0 20 -10.5 30t-34.5 15q-46 8 -131 14l19 104q252 -6 276 -6q15 0 291 6l-20 -104q-93 -7 -130.5 -15.5t-50.5 -21.5q-22 -25 -39 -119l-163 -856q-17 -84 -17 -104q0 -37 47 -47q61 -10 138 -15 l-23 -106q-172 4 -295 4q-90 0 -270 -4z" />
+<glyph unicode="J" horiz-adv-x="663" d="M-164 -219q233 85 309 264q52 120 86 307l148 772q14 72 14 101q0 37 -47 43q-59 9 -131 14l21 104q222 -6 274 -6q19 0 283 6l-23 -104q-90 -7 -123 -14t-47 -21q-23 -26 -39 -121l-143 -764q-29 -152 -56.5 -240.5t-70.5 -160.5q-53 -88 -162 -164.5t-258 -120.5z" />
+<glyph unicode="K" horiz-adv-x="1384" d="M-10 -2l22 106q140 9 170 33q20 20 41 129l166 860q14 75 14 97q0 35 -38 43q-44 11 -138 16l19 104q252 -6 272 -6q15 0 291 6l-23 -104q-152 -9 -178 -39q-17 -17 -35 -113l-167 -858q-17 -90 -17 -104q0 -23 13 -33.5t38 -15.5q69 -10 135 -15l-22 -106q-172 4 -293 4 q-90 0 -270 -4zM524 705q182 149 469 419q82 79 82 117q0 20 -27 28t-106 13l21 104q88 -4 282 -4q140 0 230 4l-21 -104q-53 -4 -92 -18q-63 -25 -172 -129q-40 -39 -236.5 -210.5t-232.5 -205.5q73 -134 186.5 -295.5t179.5 -226.5q45 -45 107 -72q65 -22 111 -25 l-21 -100q-41 -8 -115 -8q-144 0 -225 84q-80 83 -212 280t-208 349z" />
+<glyph unicode="L" horiz-adv-x="1218" d="M-10 0l22 104q140 5 168 31q14 13 23 41t20 90l166 858q14 75 14 97t-12 32t-37 15q-51 11 -127 14l19 104q222 -6 274 -6q160 0 295 6l-22 -104q-158 -7 -183 -39q-19 -22 -37 -119l-172 -868q-8 -48 -8 -61q0 -46 43 -52q55 -6 189 -6q139 0 203.5 12.5t95.5 40.5 q51 45 114 181h92q-49 -227 -96 -312q-30 -59 -166 -59h-878z" />
+<glyph unicode="M" horiz-adv-x="1808" d="M-12 -2l22 108q133 6 158 31q18 15 31.5 52.5t31.5 119.5q68 315 112.5 521t57.5 267.5t15 71.5q6 35 6 52q0 24 -11.5 34t-37.5 15q-29 7 -131 10l24 106q90 -4 246 -4q133 0 176 4q160 -683 209 -929q142 254 573 929q114 -4 211 -4q137 0 205 4l-24 -110 q-138 -5 -166 -33q-23 -29 -39 -115q-27 -146 -144 -829q-14 -84 -14 -129q0 -24 15 -35t42 -16q56 -8 123 -13l-20 -108q-184 4 -283 4q-44 0 -286 -4l20 108q145 7 174 39q15 15 33 103q3 16 38 208t76 419t54 294q-27 -46 -68.5 -114t-91.5 -147.5t-165.5 -264.5 t-239.5 -385q-19 -30 -37.5 -42.5t-48.5 -12.5q-61 0 -74 59q-90 382 -146 626.5t-65 282.5q-22 -112 -67 -337.5t-80.5 -401.5t-39.5 -199q-8 -40 -8 -59q0 -27 13.5 -39.5t44.5 -17.5q54 -8 125 -11l-25 -108q-168 4 -242 4q-70 0 -282 -4z" />
+<glyph unicode="N" horiz-adv-x="1515" d="M-10 -2l22 108q83 4 120.5 13.5t53.5 27.5q11 13 19.5 46.5t25.5 121.5q142 712 150 750q20 95 20 147q0 48 -57 56q-37 7 -127 12l23 106q86 -4 217 -4q94 0 168 4q465 -988 512 -1101q17 96 52 291t58.5 327t28.5 166q18 120 18 141q0 44 -39 52q-72 16 -137 18l21 106 q218 -4 274 -4q22 0 248 4l-23 -106q-86 -4 -116.5 -11.5t-46.5 -23.5q-13 -12 -24.5 -47.5t-31.5 -130.5q-88 -444 -190 -993q-8 -46 -31.5 -69t-69.5 -23q-62 0 -88 63q-120 260 -221.5 480t-145 314t-80 172.5t-63.5 139.5q-32 -166 -92 -495.5t-61 -336.5 q-23 -118 -23 -149q0 -42 56 -49q73 -11 131 -15l-23 -108q-208 4 -276 4q-34 0 -252 -4z" />
+<glyph unicode="O" horiz-adv-x="1447" d="M131 532q0 179 56.5 358t168.5 302q201 223 521 223q264 0 395 -139t131 -381q0 -197 -52.5 -381t-170.5 -321q-92 -105 -224.5 -162.5t-273.5 -57.5q-261 0 -406 141t-145 418zM322 543q0 -426 370 -426q216 0 342 168q86 115 128 277t42 327q0 189 -91 286t-265 97 q-114 0 -208 -49t-157 -136q-77 -105 -119 -253t-42 -291z" />
+<glyph unicode="P" horiz-adv-x="1198" d="M-10 -2l22 106q131 9 164 29q15 9 24.5 35t22.5 98l166 858q14 72 14 95t-12 32.5t-39 14.5q-32 8 -125 14l19 104h393q227 0 350 -24q132 -26 193 -109t61 -196q0 -105 -30 -189.5t-84.5 -142.5t-132.5 -96.5t-171 -56t-204 -17.5q-117 0 -160 2l-55 -283 q-17 -94 -17 -104q0 -39 43 -47q55 -11 162 -17l-23 -106q-176 4 -321 4q-68 0 -260 -4zM487 686q31 -2 115 -2q70 0 127 6.5t119 28.5t103.5 58.5t68.5 100.5t27 150q0 82 -35 129t-103 72q-71 22 -209 22h-106z" />
+<glyph unicode="Q" horiz-adv-x="1447" d="M131 532q0 179 56.5 358t168.5 302q201 223 521 223q264 0 395 -139t131 -381q0 -197 -52.5 -381t-170.5 -321q-127 -145 -322 -197q96 -103 225 -166q62 -30 153.5 -46.5t170.5 -16.5q43 0 57 2l-20 -107q-59 -10 -150 -10q-204 0 -323 53q-93 41 -169.5 100t-185.5 170 q-231 18 -358 158t-127 399zM322 543q0 -426 370 -426q216 0 342 168q86 115 128 277t42 327q0 189 -91 286t-265 97q-114 0 -208 -49t-157 -136q-77 -105 -119 -253t-42 -291z" />
+<glyph unicode="R" horiz-adv-x="1339" d="M-10 -2l22 106q141 11 166 31q14 9 23 34.5t22 96.5l168 869q12 71 12 86q0 21 -11 31t-38 16q-39 7 -127 14l19 102h387q236 0 340 -26q123 -31 184.5 -111t61.5 -188q0 -185 -103 -295t-282 -152q78 -177 125.5 -264.5t99.5 -140.5q51 -53 89 -72.5t114 -28.5l-23 -108 q-14 -2 -86 -2q-148 0 -235 90q-67 69 -127 185t-140 321q-52 0 -184 4l-61 -328q-17 -90 -17 -102q0 -36 51 -47q29 -7 133 -15l-22 -106q-180 4 -303 4q-66 0 -258 -4zM494 727q62 -4 114 -4q414 0 414 313q0 63 -33 114t-88 73q-67 24 -209 24h-96z" />
+<glyph unicode="S" horiz-adv-x="1144" d="M66 182q0 93 24 219h100q3 -133 60 -202q30 -38 99 -62t167 -24q158 0 233.5 66.5t75.5 166.5q0 132 -157 215l-230 121q-202 106 -202 313q0 195 141 307.5t401 112.5q165 0 256 -43q74 -36 74 -104q0 -86 -33 -234h-98q0 99 -22.5 146.5t-63.5 66.5q-57 29 -172 29 q-148 0 -222.5 -68t-74.5 -168q0 -61 37 -111.5t133 -101.5l217 -114q209 -110 209 -305q0 -110 -40 -194.5t-113.5 -137t-171 -79t-216.5 -26.5q-75 0 -144.5 11.5t-131 35.5t-98.5 66.5t-37 97.5z" />
+<glyph unicode="T" horiz-adv-x="1331" d="M199 1024q13 142 34 248q10 57 38 84.5t96 27.5h925q67 0 94 -20.5t27 -67.5q0 -31 -15 -114.5t-34 -157.5h-92q0 169 -31 197q-23 19 -75 23.5t-253 4.5l-190 -973q-14 -71 -14 -110q0 -36 41 -47q39 -9 143 -15l-19 -106q-160 4 -282 4q-117 0 -289 -4l21 106 q96 7 129.5 15.5t48.5 23.5q11 11 18.5 36.5t20.5 92.5l190 977q-197 0 -253.5 -5t-86.5 -23q-48 -28 -98 -197h-94z" />
+<glyph unicode="U" horiz-adv-x="1550" d="M205 1282l22 104q160 -4 287 -4q117 0 281 4l-21 -104q-97 -6 -127 -13t-47 -24q-19 -22 -39 -108q-38 -178 -102 -502q-35 -186 -35 -260q0 -258 315 -258q110 0 201.5 34t140.5 95q51 61 82.5 155.5t63.5 251.5q25 114 86 469q10 56 10 90q0 27 -9 37.5t-34 16.5 q-20 4 -141 16l20 104q74 -2 277 -2q20 0 110.5 1t130.5 1l-20 -104q-91 -4 -126.5 -15t-45.5 -30q-19 -32 -39 -131l-96 -492q-38 -200 -79 -307t-112 -178q-163 -160 -471 -160q-70 0 -133 10.5t-123 36.5t-103.5 65.5t-69.5 101t-26 139.5q0 117 41 305q11 54 51 243.5 t52 255.5q12 68 12 88q0 21 -8 33t-31 19q-40 13 -145 16z" />
+<glyph unicode="V" horiz-adv-x="1460" d="M172 1282l18 104q148 -4 297 -4q109 0 273 4l-23 -104q-64 -2 -133 -14q-31 -6 -45 -19.5t-14 -40.5q0 -42 12 -112q114 -715 143 -912q121 234 492 906q53 93 53 141q0 30 -41 37q-44 10 -143 14l20 104q140 -4 273 -4q130 0 266 4l-21 -104q-102 -5 -141 -31 q-20 -14 -39 -42t-63 -107l-592 -1053q-26 -45 -55 -63.5t-72 -18.5q-84 0 -98 84l-183 1069q-11 69 -21.5 99t-31.5 41q-26 18 -131 22z" />
+<glyph unicode="W" horiz-adv-x="2019" d="M174 1282l21 104q258 -4 272 -4q190 0 272 4l-20 -104q-27 -1 -39.5 -1t-34.5 -1.5t-32 -3.5t-26.5 -5.5t-24 -8.5t-17.5 -12.5t-14.5 -17.5t-7.5 -23t-3 -29q0 -12 1 -51.5t1 -47.5q6 -169 11 -317.5t8 -232.5t5.5 -169.5t4.5 -136.5q52 114 92.5 199.5t150.5 309 t285 569.5q22 43 47.5 65.5t67.5 22.5q43 0 65.5 -19.5t26.5 -64.5q80 -844 94 -1086q82 202 369 869q41 108 41 135q0 37 -47 45q-40 9 -144 12l21 104q196 -4 281 -4q87 0 243 4l-20 -104q-29 -2 -52 -6.5t-39.5 -9t-30.5 -16t-23 -20t-20 -27.5t-16.5 -31t-18.5 -39 q-7 -16 -11 -25l-471 -1051q-43 -90 -125 -90q-44 0 -66 18.5t-26 67.5q-85 949 -92 1080q-132 -294 -527 -1076q-46 -90 -125 -90q-44 0 -66.5 18.5t-25.5 67.5l-55 1069q-4 59 -12 90.5t-29 42.5q-35 21 -119 27z" />
+<glyph unicode="X" horiz-adv-x="1449" d="M-51 -2l20 106q108 4 150 31q42 28 102 94l443 490l-244 450q-22 42 -36.5 62.5t-31.5 28.5q-30 18 -131 22l25 104q125 -4 297 -4q210 0 280 4l-22 -104q-99 -10 -119 -14q-53 -9 -53 -47q0 -24 26 -78l166 -324l266 301q62 68 62 107q0 17 -8.5 26.5t-36.5 16.5 q-37 9 -115 12l25 104q66 -4 293 -4q153 0 235 4l-24 -104q-81 -2 -127 -31q-10 -6 -23 -18t-22.5 -21.5t-30.5 -32t-31 -32.5l-405 -428l262 -496q34 -63 65 -90q29 -24 152 -29l-21 -106q-266 4 -301 4q-22 0 -276 -4l18 106q64 2 121 15q47 13 47 49q0 19 -22 65 l-199 377l-305 -352q-64 -73 -64 -104q0 -16 9 -25.5t34 -13.5q41 -8 133 -11l-20 -106q-222 4 -307 4q-131 0 -256 -4z" />
+<glyph unicode="Y" horiz-adv-x="1275" d="M158 1282l20 104q230 -4 258 -4q61 0 269 4l-25 -104q-105 -3 -133 -12q-39 -10 -39 -51q0 -39 24 -97q110 -285 164 -430q310 398 342 438q58 72 58 109q0 15 -11.5 24.5t-36.5 13t-42.5 4.5t-49.5 1h-8l23 104q94 -4 278 -4q101 0 191 4l-23 -104q-53 -2 -98 -31 q-6 -3 -12.5 -9t-15 -14.5t-15.5 -16.5t-18 -21t-18.5 -21.5t-20 -24.5t-19.5 -24l-455 -555l-63 -315q-12 -62 -12 -88q0 -35 37 -43q39 -9 145 -15l-18 -106q-218 4 -281 4q-93 0 -281 -4l21 106q96 4 126 12t46 25q19 22 35 103l61 319l-223 553q-4 11 -10.5 26.5t-10 24 t-8 20t-7.5 17.5t-7 14.5t-7 13t-7 9.5t-7.5 8t-7.5 6q-34 24 -108 27z" />
+<glyph unicode="Z" horiz-adv-x="1263" d="M-6 0l10 66l1038 1177q-352 0 -438 -3t-119 -15q-34 -14 -57 -51.5t-53 -133.5h-113q18 174 35 244q23 100 154 100h899l-13 -63l-1044 -1178q74 -4 291 -4q196 0 269 10t110 35q64 49 127 191h112q-53 -219 -84 -293q-35 -82 -145 -82h-979z" />
+<glyph unicode="[" horiz-adv-x="614" d="M23 -348l368 1894h393l-18 -96h-244l-327 -1700h241l-18 -98h-395z" />
+<glyph unicode="\" horiz-adv-x="739" d="M242 1473l108 20l242 -1634l-113 -19z" />
+<glyph unicode="]" horiz-adv-x="614" d="M-127 -348l18 98h242l330 1698h-244l21 98h395l-369 -1894h-393z" />
+<glyph unicode="^" d="M215 760l485 710h144l157 -710h-135l-125 551l-370 -551h-156z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-117 -281l23 117h1012l-21 -117h-1014z" />
+<glyph unicode="`" horiz-adv-x="604" d="M115 1421q0 35 26.5 57.5t59.5 22.5q27 0 49 -18t53 -70l184 -297l-63 -45l-242 244q-37 37 -52 59t-15 47z" />
+<glyph unicode="a" horiz-adv-x="1161" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q45 0 102.5 -13.5t98.5 -37.5l37 74h131l-127 -502q-49 -192 -49 -285q0 -69 82 -69q58 0 125 18l-25 -102q-112 -53 -217 -53q-78 0 -105.5 41.5t-27.5 128.5q-151 -177 -342 -177q-148 0 -221.5 82.5t-73.5 233.5z M262 309q0 -96 40.5 -143t127.5 -47q144 0 295 147q17 102 41 197l82 307q-76 45 -180 45q-126 0 -232 -92q-74 -65 -124 -183t-50 -231z" />
+<glyph unicode="b" horiz-adv-x="1126" d="M98 45q29 111 60 264l157 740q37 161 37 231q0 40 -18.5 55t-61.5 15q-40 0 -86 -11l21 99q124 59 235 59q107 0 107 -98q0 -44 -17 -123q-55 -275 -106 -473q70 72 160 116t184 44q144 0 210.5 -81t66.5 -223q0 -313 -168 -505q-150 -179 -424 -179q-217 0 -357 70z M289 152q65 -33 198 -33q166 0 273 139q52 69 78 163t26 185q0 98 -41.5 148.5t-138.5 50.5q-64 0 -140.5 -32t-140.5 -81z" />
+<glyph unicode="c" horiz-adv-x="954" d="M86 344q0 147 54 281t161 221q143 117 340 117q99 0 166 -25q48 -18 66 -44t18 -69q0 -29 -9.5 -84.5t-21.5 -95.5h-98q-3 115 -35 143q-40 37 -117 37q-125 0 -211 -86q-62 -62 -100.5 -162t-38.5 -198q0 -260 232 -260q143 0 307 110l59 -100q-197 -158 -418 -158 q-165 0 -259.5 100.5t-94.5 272.5z" />
+<glyph unicode="d" horiz-adv-x="1183" d="M84 305q0 140 57 280.5t158 231.5q156 141 395 141q113 0 189 -43l30 134q39 184 39 229q0 39 -18.5 55.5t-61.5 16.5q-21 0 -84 -11l19 99q130 59 237 59q52 0 78.5 -23.5t26.5 -76.5q0 -10 -1 -21.5t-3.5 -28.5t-5 -31t-7.5 -38.5t-8 -40.5t-10 -48t-11 -49t-13 -56 t-13 -58l-139 -612q-33 -141 -33 -226q0 -69 78 -69q58 0 125 18l-23 -102q-109 -53 -221 -53q-114 0 -127 102q-4 32 -4 70q-144 -179 -340 -179q-159 0 -234 88.5t-75 241.5zM262 338q0 -219 189 -219q76 0 153 43.5t135 105.5q7 43 45 207l70 297q-79 49 -192 49 q-152 0 -242 -94q-66 -69 -112 -180t-46 -209z" />
+<glyph unicode="e" horiz-adv-x="931" d="M86 332q0 275 149 453t381 178q141 0 210 -65t69 -159q0 -325 -633 -325q-4 -23 -4 -68q0 -98 56.5 -162.5t172.5 -64.5q83 0 156.5 25.5t175.5 88.5l58 -100q-101 -78 -207 -120t-242 -42q-145 0 -243.5 92.5t-98.5 268.5zM279 530q233 6 342.5 58t109.5 137 q0 55 -30.5 80.5t-100.5 25.5q-109 0 -198.5 -80t-122.5 -221z" />
+<glyph unicode="f" horiz-adv-x="684" d="M-319 -449q0 72 28 164h94q0 -87 19 -118t84 -31q41 0 78.5 22.5t60.5 61.5q48 78 80 258l154 885h-175l19 94q101 17 141 41q24 14 36 36t22 74q37 172 83 254.5t117 132.5q103 72 262 72q75 0 144 -27q53 -23 53 -79q0 -61 -31 -201h-98q0 125 -33 151q-26 21 -86 21 q-105 0 -158 -86q-44 -70 -83 -283l-15 -78q144 0 246 -4l-23 -114q-132 -6 -247 -6l-168 -885q-26 -138 -59 -221t-83 -136q-106 -112 -270 -112q-87 0 -143 31q-49 25 -49 83z" />
+<glyph unicode="g" horiz-adv-x="1058" d="M-31 -293q0 101 103 182q55 44 166 97q-84 36 -84 112q0 109 145 199q-149 73 -149 248q0 201 149 325q115 93 285 93q140 0 217 -50q232 0 289 -2l-23 -118q-74 -5 -172 -5q13 -18 23 -55t10 -67q0 -180 -117 -291q-122 -119 -317 -119q-66 0 -101 6q-80 -54 -80 -102 q0 -54 99 -76q74 -16 317 -66q213 -46 213 -227q0 -172 -140.5 -263t-369.5 -91q-227 0 -345 75.5t-118 194.5zM133 -260q0 -73 81 -120.5t245 -47.5q146 0 224.5 50t78.5 126q0 57 -42 86.5t-147 50.5q-215 44 -243 54q-76 -30 -136.5 -83t-60.5 -116zM313 561 q0 -90 56.5 -134t142.5 -44q59 0 111.5 22t83.5 64q57 75 57 176q0 95 -49.5 143t-141.5 48q-116 0 -188 -79t-72 -196z" />
+<glyph unicode="h" horiz-adv-x="1138" d="M90 0l225 1049q37 161 37 231q0 40 -18.5 55t-61.5 15q-40 0 -86 -11l21 99q124 59 235 59q107 0 107 -98q0 -18 -17 -123q-58 -290 -112 -496q73 83 169 130.5t195 47.5q94 0 145.5 -43t51.5 -131q0 -67 -27 -178l-59 -244q-29 -111 -29 -174q0 -36 17 -52.5t57 -16.5 q68 0 131 18l-20 -102q-116 -53 -232 -53q-133 0 -133 116q0 67 27 178l71 306q17 73 17 118q0 101 -113 101q-137 0 -285 -131l-153 -670h-160z" />
+<glyph unicode="i" horiz-adv-x="616" d="M111 797l18 94q120 63 215 63q58 0 88.5 -25.5t30.5 -88.5q0 -52 -49 -260l-58 -222q-30 -131 -30 -170q0 -36 16.5 -52.5t58.5 -16.5q67 0 134 18l-23 -102q-116 -53 -231 -53q-138 0 -138 118q0 58 29 174l61 250q41 160 41 211q0 38 -17 53t-58 15q-53 0 -88 -6z M285 1315q0 62 38.5 102.5t94.5 40.5q53 0 81.5 -32t28.5 -85q0 -60 -37 -100.5t-94 -40.5q-51 0 -81.5 32t-30.5 83z" />
+<glyph unicode="j" horiz-adv-x="579" d="M-207 -457q166 47 225 148q49 80 109 317q30 123 113 510q32 151 32 213q0 41 -17 56.5t-60 15.5q-51 0 -86 -6l18 94q56 30 116.5 46.5t102.5 16.5q57 0 87 -26t30 -88q0 -33 -29 -187q-18 -97 -42.5 -208.5t-55 -245.5t-43.5 -195q-34 -149 -67 -236t-79 -147 q-47 -62 -138.5 -114.5t-194.5 -69.5zM291 1315q0 62 38.5 102.5t94.5 40.5q53 0 82 -32.5t29 -84.5q0 -60 -37 -100.5t-92 -40.5q-53 0 -84 31.5t-31 83.5z" />
+<glyph unicode="k" horiz-adv-x="1056" d="M90 0l225 1049q37 161 37 231q0 40 -18.5 55t-61.5 15q-40 0 -86 -11l21 99q124 59 235 59q107 0 107 -98q0 -46 -17 -129q-34 -152 -141 -637.5t-141 -632.5h-160zM395 518q135 180 260 301q146 139 279 139q54 0 84.5 -24t30.5 -70q0 -43 -27 -139h-86 q-3 36 -16.5 49.5t-40.5 13.5q-32 0 -73 -19t-75 -50q-107 -94 -176 -178q96 -201 217 -344q24 -30 61.5 -54t79.5 -24q54 0 115 14l-27 -104q-21 -13 -65 -26t-80 -13q-68 0 -115 19.5t-86 64.5q-115 131 -260 444z" />
+<glyph unicode="l" horiz-adv-x="583" d="M121 100q0 58 26 176l166 760q39 182 39 240q0 41 -15.5 57.5t-57.5 16.5q-28 0 -91 -11l19 99q55 28 119.5 43.5t109.5 15.5q56 0 84.5 -22.5t28.5 -79.5q0 -55 -57 -318l-160 -719q-29 -126 -29 -170q0 -36 17 -52.5t57 -16.5q68 0 135 18l-25 -102q-116 -53 -231 -53 q-135 0 -135 118z" />
+<glyph unicode="m" horiz-adv-x="1693" d="M100 797l21 94q114 63 213 63q106 0 106 -116q0 -30 -4 -66q72 85 169 135.5t196 50.5q181 0 184 -180q71 84 167 132t196 48q90 0 139 -43.5t49 -130.5q0 -71 -25 -174l-59 -248q-29 -126 -29 -174q0 -36 16.5 -52.5t55.5 -16.5q70 0 133 18l-22 -102q-111 -53 -230 -53 q-135 0 -135 116q0 55 27 178l73 310q17 66 17 114q0 56 -27 78.5t-80 22.5q-127 0 -274 -127q-4 -32 -19 -96l-137 -578h-164l138 586q14 68 14 114q0 56 -25 78.5t-79 22.5q-124 0 -279 -131q-7 -51 -33 -174l-117 -496h-161l112 506q37 171 37 221q0 42 -21 60t-65 18 q-38 0 -78 -8z" />
+<glyph unicode="n" horiz-adv-x="1163" d="M100 797l21 94q117 63 213 63q106 0 106 -114q0 -36 -4 -68q71 84 172.5 135t202.5 51q92 0 143.5 -43t51.5 -131q0 -75 -25 -178l-59 -244q-31 -118 -31 -174q0 -36 17.5 -52.5t56.5 -16.5q70 0 133 18l-23 -102q-114 -53 -231 -53q-131 0 -131 116q0 69 24 178l72 306 q16 69 16 118q0 56 -28.5 78.5t-83.5 22.5q-136 0 -287 -131q-6 -44 -33 -174l-117 -496h-161l110 498q39 176 39 227q0 43 -20 61.5t-64 18.5q-40 0 -80 -8z" />
+<glyph unicode="o" horiz-adv-x="1067" d="M86 358q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q181 0 281 -94t100 -265q0 -131 -37.5 -258t-117.5 -219q-65 -74 -161.5 -115t-195.5 -41q-181 0 -286 97.5t-105 289.5zM260 373q0 -260 238 -260q136 0 215 106q51 68 76.5 168t25.5 201q0 120 -56.5 177.5 t-170.5 57.5q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184z" />
+<glyph unicode="p" horiz-adv-x="1150" d="M-4 -535l231 1047q35 162 35 213q0 43 -20 61.5t-64 18.5q-40 0 -80 -8l21 94q120 63 213 63q106 0 106 -116q0 -40 -4 -60q65 73 166 126.5t201 53.5q266 0 266 -294q0 -136 -40.5 -270t-125.5 -236q-152 -178 -424 -178q-105 0 -201 22l-116 -537h-164zM311 156 q67 -33 199 -33q166 0 272 141q48 64 75.5 160.5t27.5 181.5q0 102 -36.5 150.5t-131.5 48.5q-74 0 -153.5 -36t-139.5 -89q-6 -60 -31 -174z" />
+<glyph unicode="q" horiz-adv-x="1161" d="M82 305q0 140 57 281.5t158 232.5q162 146 414 146q64 0 159 -18t174 -58q-29 -104 -86 -361l-235 -1063h-164l150 660q-65 -73 -149.5 -111.5t-172.5 -38.5q-157 0 -231 88.5t-74 241.5zM262 338q0 -108 44.5 -160.5t142.5 -52.5q76 0 151.5 39.5t132.5 97.5l117 526 q-66 35 -197 35q-137 0 -235 -94q-66 -66 -111 -178.5t-45 -212.5z" />
+<glyph unicode="r" horiz-adv-x="839" d="M90 797l21 94q117 63 213 63q104 0 104 -114q0 -48 -4 -68q50 71 129 128.5t166 57.5q115 0 115 -88q0 -76 -35 -174h-92q-5 48 -24 69t-58 21q-98 0 -205 -129q-19 -122 -43 -223l-101 -434h-161l106 475q31 148 31 250q0 42 -19.5 61t-62.5 19q-40 0 -80 -8z" />
+<glyph unicode="s" horiz-adv-x="921" d="M76 141q2 73 20 172h92q1 -45 9 -76t16 -44t23 -29q47 -53 176 -53q96 0 149 30.5t53 85.5q0 40 -21 69.5t-73 57.5l-170 95q-162 90 -162 227q0 61 21.5 110t58 81.5t87.5 54.5t107.5 31.5t119.5 9.5q130 0 209 -39q53 -27 53 -97q0 -66 -23 -168h-92q-8 111 -45 138 q-46 32 -141 32q-83 0 -136 -28.5t-53 -91.5q0 -38 26 -68.5t87 -62.5l158 -84q159 -81 159 -224q0 -66 -22 -117.5t-59 -85t-89 -55.5t-109 -31.5t-122 -9.5q-137 0 -233 49q-43 22 -58.5 51t-15.5 70z" />
+<glyph unicode="t" horiz-adv-x="684" d="M98 793l19 94q90 20 121 33q40 15 65 61q2 4 76 160q25 51 80 51q53 0 53 -43q0 -17 -49 -234q148 0 246 -4l-21 -114q-129 -6 -252 -6l-69 -351q-29 -141 -29 -215q0 -104 100 -104q56 0 158 31l29 -109q-133 -68 -273 -68q-89 0 -141.5 46.5t-52.5 140.5q0 50 14 125 q12 67 102 506h-176z" />
+<glyph unicode="u" horiz-adv-x="1198" d="M117 795l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -44 -35 -191l-73 -305q-17 -70 -17 -116q0 -103 113 -103q134 0 287 133q11 83 32 172l115 496h164l-109 -496q-41 -184 -41 -245q0 -76 78 -76q17 0 64.5 6.5t62.5 11.5l-22 -100 q-113 -55 -224 -55q-51 0 -89 27.5t-38 84.5q0 44 2 64q-72 -85 -169 -133t-199 -48q-92 0 -148.5 46t-56.5 133q0 81 23 176l63 252q23 100 23 149q0 42 -17.5 57t-60.5 15q-40 0 -86 -8z" />
+<glyph unicode="v" horiz-adv-x="1124" d="M94 797l19 94q55 31 118 47t103 16q57 0 83.5 -23.5t26.5 -82.5q0 -53 -24 -189l-60 -313q-14 -75 -14 -121q0 -51 21.5 -74.5t68.5 -23.5q67 0 138.5 38.5t125.5 100.5q74 86 121 212t47 218q0 62 -24 86.5t-84 24.5q-48 0 -82 -6l18 96q99 57 195 57q78 0 107.5 -47.5 t29.5 -136.5q0 -135 -65.5 -300.5t-163.5 -279.5q-95 -110 -213 -163.5t-217 -53.5q-91 0 -144 46.5t-53 134.5q0 51 21 170l45 256q20 105 20 153q0 41 -18.5 56.5t-61.5 15.5q-44 0 -84 -8z" />
+<glyph unicode="w" horiz-adv-x="1632" d="M94 797l19 94q57 30 119.5 46.5t101.5 16.5q57 0 84.5 -23.5t27.5 -82.5q0 -42 -26 -189l-58 -313q-16 -86 -16 -121q0 -53 17 -75.5t67 -22.5q53 0 110 40t105 101q54 67 92 150l84 481h162l-84 -498q-18 -108 -18 -176q0 -51 21.5 -74.5t68.5 -23.5q117 0 239 139 q74 85 120 210.5t46 219.5q0 61 -23.5 86t-82.5 25q-50 0 -80 -6l18 96q96 57 191 57q80 0 109.5 -47.5t29.5 -136.5q0 -137 -64 -300.5t-163 -276.5q-98 -111 -208.5 -165.5t-203.5 -54.5q-87 0 -130.5 45.5t-43.5 143.5q0 57 4 80q-76 -131 -179.5 -200t-187.5 -69 q-90 0 -140 46.5t-50 134.5q0 71 18 170l48 256q20 110 20 153q0 41 -18.5 56.5t-61.5 15.5q-44 0 -84 -8z" />
+<glyph unicode="x" horiz-adv-x="1105" d="M-2 78q0 77 16 143h95q3 -80 59 -80q53 0 108 64q73 88 203 278q-44 128 -86 230q-25 61 -46 77.5t-60 16.5q-18 0 -53 -9t-56 -18l17 97q112 75 198 75q55 0 83 -26t54 -95q15 -37 27 -73.5t26 -78.5l23 -69q91 138 128 183q128 157 253 157q59 0 91 -24.5t32 -69.5 q0 -59 -14 -141h-99q-5 63 -55 63q-55 0 -111 -61q-66 -69 -182 -244q92 -238 117 -291q19 -41 43 -55t63 -14q77 0 134 32l-21 -102q-84 -63 -201 -63q-123 0 -172 124q-53 133 -84 242q-130 -202 -196 -274q-87 -99 -207 -99q-64 0 -95.5 31.5t-31.5 73.5z" />
+<glyph unicode="y" horiz-adv-x="1196" d="M80 -430q0 80 26 182h99q0 -41 2 -59q3 -50 31 -78q47 -43 141 -43q71 0 127 26.5t86 77.5q24 41 47 104.5t32.5 100t28.5 113.5q6 29 20.5 86t18.5 74q-164 -179 -368 -179q-92 0 -143.5 45.5t-51.5 133.5q0 62 25 178l57 250q23 100 23 149q0 42 -17.5 57t-60.5 15 q-40 0 -86 -8l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -19 -35 -191l-67 -305q-17 -70 -17 -116q0 -57 24 -80t79 -23q131 0 297 148l139 653h166q-37 -178 -99 -497t-90 -455q-33 -166 -73 -262.5t-97 -153.5q-127 -127 -352 -127q-152 0 -223 49 q-47 29 -47 82z" />
+<glyph unicode="z" horiz-adv-x="1038" d="M14 0l9 61l688 760q-263 0 -320 -6q-32 -3 -50 -11t-32 -28q-22 -30 -49 -133h-100q1 11 4 79t8 103q9 54 32 81.5t81 27.5h688l-10 -68l-684 -749q72 -4 184 -4q186 0 248 20q49 18 76 62.5t51 123.5h98q-14 -128 -39 -231q-10 -42 -38.5 -65t-90.5 -23h-754z" />
+<glyph unicode="{" horiz-adv-x="624" d="M31 578l14 90q120 10 167.5 73.5t80.5 239.5l43 233q14 74 32.5 126t52 100.5t82 77.5t122.5 46t172 17l-19 -96q-71 0 -116.5 -12t-81 -45.5t-57 -88t-38.5 -143.5l-57 -291q-29 -147 -79.5 -205.5t-166.5 -83.5q77 -19 111.5 -59t34.5 -113q0 -50 -15 -127l-61 -319 q-14 -66 -14 -119q0 -86 45 -122t151 -36l-18 -94q-172 0 -250 57.5t-78 180.5q0 47 12 112l62 310q16 82 16 133q0 75 -34.5 113t-112.5 45z" />
+<glyph unicode="|" horiz-adv-x="534" d="M25 -375l381 1950h133l-381 -1950h-133z" />
+<glyph unicode="}" horiz-adv-x="624" d="M-137 -373l16 94q139 0 199.5 58.5t93.5 230.5l59 293q29 146 79.5 205t164.5 84q-76 19 -110.5 58.5t-34.5 113.5q0 53 14 127l62 319q14 66 14 119q0 84 -45 120t-150 36l19 96q170 0 247.5 -57.5t77.5 -177.5q0 -50 -12 -115l-59 -311q-19 -97 -19 -134q0 -74 35 -112 t115 -45l-17 -88q-62 -5 -102 -22.5t-68 -56.5t-44.5 -92t-32.5 -143l-43 -233q-14 -74 -32 -126t-51.5 -100.5t-82 -77.5t-122 -46t-171.5 -17z" />
+<glyph unicode="~" horiz-adv-x="1183" d="M131 547q80 105 153.5 150.5t153.5 45.5q48 0 93.5 -16.5t136.5 -75.5q94 -63 155 -63q52 0 101 31.5t112 113.5l82 -90q-148 -201 -299 -201q-90 0 -203 72q-75 51 -116 68.5t-76 17.5q-55 0 -102 -32t-107 -111z" />
+<glyph unicode="&#xa1;" horiz-adv-x="591" d="M10 -324q0 24 8 56q5 24 16 68t33.5 125t45 160.5t63.5 227t76 271.5h88q-73 -679 -104 -871q-11 -61 -40.5 -92t-89.5 -31q-46 0 -71 24t-25 62zM213 899q0 63 38 104t99 41q56 0 90.5 -34t34.5 -92q0 -57 -37.5 -99.5t-97.5 -42.5q-56 0 -91.5 34t-35.5 89z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1026" d="M145 348q0 150 57 277t166.5 210.5t252.5 100.5l41 209h100l-41 -205q86 -3 156 -22q84 -23 84 -105q0 -26 -11 -79t-24 -93h-99q0 98 -28 133q-27 27 -103 31l-131 -674q135 3 281 98l47 -96q-73 -58 -166.5 -95t-187.5 -44l-45 -230h-99l43 230q-135 13 -214 109 t-79 245zM324 369q0 -189 143 -228l127 660q-88 -15 -150.5 -81.5t-91 -156.5t-28.5 -194z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1204" d="M4 0l23 123q169 31 251.5 141t98.5 287h-201l27 121h180q0 17 -2 89.5t-2 98.5q0 242 132.5 377t389.5 135q114 0 199 -29q44 -17 62 -44t18 -74q0 -61 -33 -195h-96q0 119 -37 162q-41 41 -158 41q-284 0 -293 -332q-2 -59 -2 -229h322l-27 -121h-303q-12 -125 -66 -224 t-176 -171q184 4 375 4q70 0 107.5 1t75 8t53.5 15t36 30.5t30.5 44.5t29.5 67h92q-28 -180 -57 -254q-25 -72 -133 -72h-916z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1171" d="M123 246l137 135q-90 112 -90 278q0 158 88 273l-135 139l94 100l137 -139q55 42 126 65t143 23q149 0 268 -88l131 139l96 -100l-131 -139q86 -114 86 -273q0 -152 -86 -272l135 -141l-98 -101l-133 140q-118 -84 -273 -84q-160 0 -266 82l-135 -138zM303 664 q0 -147 90.5 -242.5t229.5 -95.5q136 0 224.5 95t88.5 238q0 139 -89.5 234.5t-223.5 95.5q-138 0 -229 -92.5t-91 -232.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1304" d="M174 1233l23 108q113 -2 237 -2q158 0 264 2l-20 -108q-72 -2 -107 -9t-44 -17t-9 -31q0 -37 43 -158q11 -29 60.5 -154t74.5 -196q107 149 285 374q88 112 88 148q0 24 -28 33t-115 10l20 108q88 -2 256 -2q123 0 209 2l-20 -108q-57 -2 -99 -27q-26 -16 -135 -148 q-21 -26 -33 -40l-229 -279h250l-21 -96h-307l-80 -100l-8 -49h367l-19 -97h-366l-31 -153q-8 -39 -8 -74q0 -22 8.5 -32.5t49 -19.5t124.5 -12l-20 -108q-208 4 -279 4q-89 0 -281 -4l21 108q104 8 133.5 16.5t42.5 27.5q20 23 31 88l30 159h-344l21 97h342l10 47l-41 102 h-282l18 96h225l-131 340q-18 47 -24 62.5t-16.5 34.5t-22.5 30q-25 20 -113 27z" />
+<glyph unicode="&#xa6;" horiz-adv-x="534" d="M51 -244l135 690h131l-133 -690h-133zM244 752l135 692h133l-135 -692h-133z" />
+<glyph unicode="&#xa7;" horiz-adv-x="970" d="M14 -254q0 42 23 178h100q0 -65 12 -97.5t37 -59.5q17 -18 54.5 -29.5t74.5 -11.5q56 0 105 18.5t83 60.5t34 99q0 51 -32.5 114t-109.5 152l-149 172q-125 147 -125 268q0 119 75.5 198t217.5 136q-36 48 -54 104.5t-18 106.5q0 139 106.5 229.5t286.5 90.5 q33 0 71 -4.5t73 -13t57 -19.5q45 -23 45 -82q0 -21 -10.5 -79.5t-22.5 -98.5h-94q-3 100 -32 135t-115 35q-91 0 -147 -41t-56 -129q0 -100 119 -224l116 -123q105 -111 136.5 -173.5t31.5 -135.5q0 -206 -295 -336q99 -123 99 -237q0 -148 -112.5 -248t-305.5 -100 q-72 0 -137 15.5t-95 37.5q-47 37 -47 92zM285 653q0 -80 86 -178l92 -106q47 -52 92 -111q40 20 70.5 40t59 47t43.5 61t15 73q0 30 -9 58t-33.5 65t-67.5 82l-96 100q-49 53 -72 84q-91 -40 -135.5 -90t-44.5 -125z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M39 1266q0 44 29 76t75 32q42 0 68.5 -27t26.5 -67q0 -48 -30 -81.5t-79 -33.5q-40 0 -65 28.5t-25 72.5zM358 1266q0 44 30 76t73 32t68.5 -26.5t25.5 -67.5q0 -48 -28 -81.5t-76 -33.5q-41 0 -67 28.5t-26 72.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M113 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t228.5 -151.5t152 -227t56.5 -278q0 -153 -55.5 -289t-150.5 -233t-227 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM211 694q0 -177 83 -325t228.5 -234t321.5 -86q171 0 311 84.5t219.5 231 t79.5 323.5q0 181 -78 328t-219 232t-317 85q-177 0 -321.5 -84.5t-226 -231t-81.5 -323.5zM414 608q0 107 35.5 205t103.5 170q136 145 367 145q148 0 213 -28q29 -11 40 -29t11 -47q0 -22 -8 -71.5t-17 -78.5h-84q-3 90 -22 109q-35 41 -152 41q-104 0 -181.5 -55.5 t-115 -145.5t-37.5 -200q0 -131 71 -200t179 -69q116 0 166 43q36 36 61 103h89q-16 -105 -35 -152q-19 -43 -94 -67q-97 -33 -222 -33q-171 0 -269.5 97.5t-98.5 262.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="716" d="M90 760q0 84 41.5 178t108.5 156q106 92 254 92q69 0 129 -31l22 45h94l-82 -321q-34 -131 -34 -183q0 -43 55 -43q39 0 82 15l-12 -78q-93 -35 -154 -35q-49 0 -69.5 26t-20.5 85q-104 -113 -219 -113q-195 0 -195 207zM217 774q0 -51 27 -84t73 -33q50 0 100.5 26.5 t88.5 66.5q6 29 31 120l51 187q-55 30 -115 30q-78 0 -135 -49q-48 -40 -84.5 -116t-36.5 -148z" />
+<glyph unicode="&#xab;" horiz-adv-x="921" d="M57 453q0 43 56 90l399 311l57 -70l-340 -329l205 -338l-78 -60l-276 332q-23 27 -23 64zM418 453q0 45 57 90l397 311l60 -70l-340 -329l205 -338l-78 -60l-277 332q-24 32 -24 64z" />
+<glyph unicode="&#xac;" horiz-adv-x="1191" d="M141 573l31 142h907l-127 -557h-131l97 415h-777z" />
+<glyph unicode="&#xad;" horiz-adv-x="546" d="M53 430l29 143h426l-29 -143h-426z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M113 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t228.5 -151.5t152 -227t56.5 -278q0 -153 -55.5 -289t-150.5 -233t-227 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM211 694q0 -177 83 -325t228.5 -234t321.5 -86q171 0 311 84.5t219.5 231 t79.5 323.5q0 181 -78 328t-219 232t-317 85q-177 0 -321.5 -84.5t-226 -231t-81.5 -323.5zM412 303l16 82q75 3 94 16q10 7 16 20.5t13 53.5l92 486q6 40 6 53q0 12 -8.5 19t-26.5 10t-31 3.5t-37 0.5h-7l14 77h260q159 0 221 -18q154 -40 154 -182q0 -108 -63 -171.5 t-171 -90.5q21 -42 37.5 -73t32.5 -56.5t30.5 -44.5t30.5 -37q31 -33 62 -52q24 -11 70 -14l-15 -80q-10 -2 -59 -2q-106 0 -168 62q-40 37 -75 101.5t-83 178.5q-76 0 -94 2l-33 -166q-6 -44 -6 -57q0 -8 3.5 -14.5t10.5 -10t14 -6.5t19.5 -4t20 -1.5l22.5 -1.5t21 -1 l-17 -82q-114 4 -200 4q-44 0 -166 -4zM739 743q18 -2 72 -2q43 0 80 7t72.5 23.5t56 49.5t20.5 80q0 80 -67 103q-49 18 -129 18h-51z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M27 1141l24 131h514l-24 -131h-514z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M215 1157q0 125 81.5 202t197.5 77q113 0 185.5 -67.5t72.5 -192.5q0 -127 -78 -203t-197 -76q-113 0 -187.5 69.5t-74.5 190.5zM313 1165q0 -79 44 -129.5t124 -50.5q81 0 128.5 51t47.5 127q0 85 -43 135t-127 50q-75 0 -124.5 -52t-49.5 -131z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1191" d="M47 37l35 137h909l-33 -137h-911zM193 733l28 133h391l93 408h133l-95 -408h390l-31 -133h-385l-96 -409h-132l93 409h-389z" />
+<glyph unicode="&#xb2;" horiz-adv-x="778" d="M129 862l12 88q30 21 97 65t106 71t97.5 70t93.5 77t70.5 76t52 83.5t16.5 82.5q0 55 -31.5 91t-99.5 36q-87 0 -127 -31q-28 -28 -45 -103h-78q5 107 8 119q6 32 25 51.5t61 40.5q76 35 188 35q127 0 188.5 -58t61.5 -153q0 -54 -19 -106.5t-55.5 -100t-80 -90 t-101.5 -84t-110 -74t-115 -67.5q164 0 205 2q66 0 98.5 5.5t48.5 21.5q26 26 45 77h74q-4 -14 -13 -55.5t-16.5 -69.5t-15.5 -49q-20 -51 -96 -51h-545z" />
+<glyph unicode="&#xb3;" horiz-adv-x="778" d="M190 946q0 61 25 141h78q3 -80 33.5 -104.5t119.5 -24.5q41 0 76.5 8t66 24.5t48.5 47.5t18 72q0 51 -41.5 86t-124.5 39q-31 4 -94 4l19 98q89 5 94 6q76 12 127 50t51 106q0 46 -28.5 75.5t-88.5 29.5q-83 0 -125 -31q-29 -23 -49 -94h-80q0 83 16.5 127.5t69.5 70.5 q76 37 189 37q122 0 183 -53.5t61 -130.5q0 -183 -226 -230q93 -10 143 -58t50 -118q0 -73 -30 -128t-83 -87t-117.5 -47.5t-140.5 -15.5q-115 0 -188 31q-52 24 -52 69z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M100 1126l217 275q35 44 58 61t47 17q31 0 56.5 -23t25.5 -57q0 -27 -18.5 -50t-61.5 -59l-268 -219z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1234" d="M45 -430q0 12 10 57l219 955q25 109 25 149q0 42 -18 57t-62 15t-84 -8l19 96q56 30 119 45.5t102 15.5q59 0 88 -23.5t29 -80.5q0 -32 -33 -189l-74 -307q-16 -69 -16 -119q0 -55 28 -77.5t82 -22.5q136 0 287 131q18 103 35 174l117 496h161l-110 -496 q-39 -185 -39 -245q0 -39 18 -57.5t60 -18.5q15 0 62.5 6.5t64.5 11.5l-25 -100q-113 -55 -221 -55q-50 0 -87 28.5t-40 85.5q0 42 2 62q-66 -82 -151.5 -126t-178.5 -44q-92 0 -129 47q-12 -68 -29.5 -173.5t-29.5 -174t-17 -91.5q-9 -46 -33.5 -68t-70.5 -22 q-41 0 -60.5 18.5t-19.5 47.5z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1118" d="M160 795q0 139 51.5 251.5t143.5 186t218 112.5t275 39h369l-19 -108q-87 -3 -118.5 -9t-45.5 -20q-16 -13 -25 -41.5t-22 -101.5q-29 -151 -80.5 -429.5t-77.5 -408.5q-3 -12 -16 -76.5t-22.5 -110t-21.5 -96.5t-19 -71q-57 -170 -171.5 -272t-338.5 -156l-25 98 q175 57 263 140.5t124 218.5q34 118 84 374l8 43q-23 -2 -69 -2q-202 0 -333.5 119.5t-131.5 319.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="438" d="M86 496q0 57 37.5 99t97.5 42q57 0 92 -34.5t35 -90.5q0 -63 -37.5 -104t-99.5 -41q-56 0 -90.5 35.5t-34.5 93.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M104 -471q118 24 178 58t60 94q0 58 -76 102q-30 18 -30 53q0 45 73 174h84q-45 -74 -45 -104t27 -43q66 -34 90 -68.5t24 -87.5q0 -74 -55.5 -132.5t-138 -90t-182.5 -41.5z" />
+<glyph unicode="&#xb9;" horiz-adv-x="778" d="M276 860l15 82q110 8 131 25q15 12 27 69l65 332q25 125 25 160t-29 35q-21 0 -104 -17l-17 80q104 46 195 72q54 18 78 18q49 0 49 -47q0 -23 -9 -63q-4 -24 -13 -66.5t-20.5 -96.5t-15.5 -75l-61 -319q-8 -39 -8 -62q0 -40 119 -44q12 -1 18 -1l-14 -82q-114 4 -224 4 q-97 0 -207 -4z" />
+<glyph unicode="&#xba;" horiz-adv-x="811" d="M162 807q0 85 31.5 167.5t95.5 137.5q96 84 241 84q120 0 190.5 -61t70.5 -177q0 -177 -101 -292q-101 -113 -256 -113q-115 0 -193.5 67.5t-78.5 186.5zM287 821q0 -73 42 -117.5t117 -44.5q103 0 160.5 87t57.5 202q0 73 -40 109.5t-114 36.5q-103 0 -163 -82.5 t-60 -190.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="921" d="M-6 129l340 330l-205 338l78 57l276 -332q25 -29 25 -61q0 -45 -57 -90l-400 -314zM354 129l340 330l-205 338l80 57l275 -332q24 -28 24 -61q0 -45 -57 -90l-397 -314z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1716" d="M188 514l15 84q109 5 131 23q17 15 26 69l66 332q25 129 25 160q0 35 -27 35q-35 0 -109 -17l-14 80q73 35 193 74q53 16 81 16q48 0 48 -47q0 -5 -9 -61q-5 -27 -23 -114t-24 -122l-63 -321q-1 -9 -4 -24t-4.5 -24.5t-1.5 -13.5q0 -10 4 -18t13 -12.5t18.5 -7.5t24 -4 t25 -1.5t28 -1t26.5 -0.5l-17 -84q-165 6 -223 6q-40 0 -205 -6zM455 33l757 1345l84 -45l-753 -1347zM856 225l12 74l451 487q36 39 59.5 54.5t57.5 15.5q24 0 39.5 -14t15.5 -43q0 -33 -86 -463h133l-22 -111h-134l-10 -55q-8 -46 -8 -49q0 -29 29 -33q36 -7 92 -10 l-15 -78q-106 4 -213 4q-68 0 -178 -4l13 78q93 5 116 24q3 3 5.5 6t4.5 6t3.5 7.5t3 7.5t3 9.5t2 9.5t2.5 11.5t3 12.5l12 53h-391zM1014 332h252q67 311 80 360z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1716" d="M168 514l14 84q109 5 131 23q18 16 27 69l66 332q24 123 24 160q0 35 -27 35q-34 0 -108 -17l-14 80q75 36 192 74q53 16 82 16q47 0 47 -47q0 -11 -8 -61q-5 -27 -23 -114t-24 -122l-64 -321q-1 -9 -4 -24t-4.5 -24.5t-1.5 -13.5q0 -10 4 -18t13 -12.5t18.5 -7t24 -4 t25 -2t28 -1t26.5 -0.5l-16 -84q-165 6 -223 6q-40 0 -205 -6zM430 33l758 1345l84 -45l-754 -1347zM903 2l12 88q30 21 85 57t91.5 60.5t87.5 61.5t85.5 65.5t72 65.5t60 69.5t37 70.5t14.5 74q0 55 -31.5 91t-99.5 36q-89 0 -127 -30q-28 -28 -45 -103h-78q0 8 1 38.5 t2.5 49t4.5 31.5q4 22 14 37.5t27 28t45 26.5q76 35 189 35q127 0 188 -58t61 -153q0 -64 -29 -128t-73.5 -115.5t-112 -104.5t-128.5 -92t-138 -82q164 0 205 2q66 0 98.5 5.5t48.5 21.5q27 27 46 77h73q-4 -14 -13 -55.5t-16.5 -69.5t-15.5 -49q-20 -51 -96 -51h-545z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1716" d="M158 600q0 61 22 141h80q3 -81 33.5 -105t120.5 -24q87 0 148 36.5t61 115.5q0 51 -41.5 87t-124.5 40q-29 2 -97 2l21 100q93 6 96 6q74 10 125 48t51 106q0 46 -28.5 75t-87.5 29q-83 0 -123 -30q-33 -27 -52 -92h-79q0 87 15.5 128t70.5 68q80 37 188 37 q123 0 183.5 -52.5t60.5 -129.5q0 -182 -226 -232q92 -9 142.5 -57t50.5 -117q0 -74 -30 -129t-82.5 -87.5t-117 -48t-141.5 -15.5q-118 0 -188 32q-51 22 -51 68zM508 33l758 1345l84 -45l-754 -1347zM891 225l12 74l451 487q36 40 59 55t57 15q24 0 40 -14t16 -43 q0 -33 -86 -463h133l-23 -111h-133l-10 -55q-8 -46 -8 -49q0 -29 28 -33q36 -7 93 -10l-15 -78q-106 4 -213 4q-68 0 -178 -4l12 78q94 5 117 24q3 3 5.5 6t4.5 6t3.5 7.5t3 7.5t3 9.5t2 9.5t2.5 11.5t3 12.5l12 53h-391zM1049 332h251q67 311 80 360z" />
+<glyph unicode="&#xbf;" horiz-adv-x="827" d="M-31 -123q0 84 27 153.5t80 123t112.5 92.5t141.5 78q56 27 86 55.5t43 75.5q3 10 14.5 59.5t20.5 81.5h98q-9 -146 -21 -213q-8 -55 -44 -89.5t-107 -68.5q-118 -55 -186 -128t-68 -187q0 -31 9 -60t27.5 -56t53.5 -43.5t82 -16.5q117 0 162 33q38 24 65 145h107 q0 -74 -13 -154q-9 -48 -38.5 -76.5t-83.5 -46.5q-110 -36 -234 -36q-161 1 -247.5 78t-86.5 200zM436 899q0 64 37.5 104.5t101.5 40.5q55 0 89 -34t34 -90q0 -58 -38 -100t-99 -42q-54 0 -89.5 33.5t-35.5 87.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1456" d="M-76 -2l23 108q95 5 137 35q23 17 44 47t73 117l598 1024q28 47 58.5 68.5t72.5 21.5q41 0 65 -20t31 -66l170 -1061q9 -62 19.5 -91t29.5 -48q23 -23 135 -27l-22 -108q-144 4 -273 4q-126 0 -286 -4l22 108q82 4 129 15q36 7 50 25t14 51q0 49 -8 96l-31 194h-502 l-111 -182q-57 -95 -57 -137q0 -25 19 -39q28 -17 170 -23l-23 -108q-136 4 -313 4q-90 0 -234 -4zM539 623h417q-34 214 -86 585q-70 -130 -331 -585zM672 1786q0 36 25.5 60t58.5 24q24 0 46 -17.5t60 -64.5l209 -260l-55 -55l-268 206q-76 60 -76 107z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1456" d="M-76 -2l23 108q95 5 137 35q23 17 44 47t73 117l598 1024q28 47 58.5 68.5t72.5 21.5q41 0 65 -20t31 -66l170 -1061q9 -62 19.5 -91t29.5 -48q23 -23 135 -27l-22 -108q-144 4 -273 4q-126 0 -286 -4l22 108q82 4 129 15q36 7 50 25t14 51q0 49 -8 96l-31 194h-502 l-111 -182q-57 -95 -57 -137q0 -25 19 -39q28 -17 170 -23l-23 -108q-136 4 -313 4q-90 0 -234 -4zM539 623h417q-34 214 -86 585q-70 -130 -331 -585zM745 1536l263 229q40 36 63.5 49t48.5 13q32 0 52 -24t20 -60q0 -52 -94 -105l-305 -168z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1456" d="M-76 -2l23 108q95 5 137 35q23 17 44 47t73 117l598 1024q28 47 58.5 68.5t72.5 21.5q41 0 65 -20t31 -66l170 -1061q9 -62 19.5 -91t29.5 -48q23 -23 135 -27l-22 -108q-144 4 -273 4q-126 0 -286 -4l22 108q82 4 129 15q36 7 50 25t14 51q0 49 -8 96l-31 194h-502 l-111 -182q-57 -95 -57 -137q0 -25 19 -39q28 -17 170 -23l-23 -108q-136 4 -313 4q-90 0 -234 -4zM539 623h417q-34 214 -86 585q-70 -130 -331 -585zM606 1524l279 270q40 43 82 43q23 0 38.5 -9.5t32.5 -35.5l179 -276l-58 -52l-215 203l-289 -203z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1456" d="M-76 -2l23 108q95 5 137 35q23 17 44 47t73 117l598 1024q28 47 58.5 68.5t72.5 21.5q41 0 65 -20t31 -66l170 -1061q9 -62 19.5 -91t29.5 -48q23 -23 135 -27l-22 -108q-144 4 -273 4q-126 0 -286 -4l22 108q82 4 129 15q36 7 50 25t14 51q0 49 -8 96l-31 194h-502 l-111 -182q-57 -95 -57 -137q0 -25 19 -39q28 -17 170 -23l-23 -108q-136 4 -313 4q-90 0 -234 -4zM539 623h417q-34 214 -86 585q-70 -130 -331 -585zM612 1526q36 96 89 157.5t118 61.5q14 0 29.5 -3.5t26 -7.5t29 -11.5t26.5 -10.5l59 -26q59 -25 90 -25t56 26t55 82 l74 -24q-80 -225 -193 -225q-49 0 -131 39l-53 22q-54 25 -84 25q-35 0 -62.5 -25.5t-58.5 -83.5z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1456" d="M-76 -2l23 108q95 5 137 35q23 17 44 47t73 117l598 1024q28 47 58.5 68.5t72.5 21.5q41 0 65 -20t31 -66l170 -1061q9 -62 19.5 -91t29.5 -48q23 -23 135 -27l-22 -108q-144 4 -273 4q-126 0 -286 -4l22 108q82 4 129 15q36 7 50 25t14 51q0 49 -8 96l-31 194h-502 l-111 -182q-57 -95 -57 -137q0 -25 19 -39q28 -17 170 -23l-23 -108q-136 4 -313 4q-90 0 -234 -4zM539 623h417q-34 214 -86 585q-70 -130 -331 -585zM664 1622q0 44 28.5 75.5t73.5 31.5q42 0 68 -26.5t26 -66.5q0 -49 -28.5 -82.5t-77.5 -33.5q-40 0 -65 29t-25 73z M1018 1622q0 44 29.5 75.5t74.5 31.5q43 0 69 -26t26 -67q0 -49 -29 -82.5t-78 -33.5q-41 0 -66.5 28.5t-25.5 73.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1456" d="M-76 -2l23 108q95 5 137 35q23 17 44 47t73 117l598 1024q28 47 58.5 68.5t72.5 21.5q41 0 65 -20t31 -66l170 -1061q9 -62 19.5 -91t29.5 -48q23 -23 135 -27l-22 -108q-144 4 -273 4q-126 0 -286 -4l22 108q82 4 129 15q36 7 50 25t14 51q0 49 -8 96l-31 194h-502 l-111 -182q-57 -95 -57 -137q0 -25 19 -39q28 -17 170 -23l-23 -108q-136 4 -313 4q-90 0 -234 -4zM539 623h417q-34 214 -86 585q-70 -130 -331 -585zM756 1620q0 90 59.5 148.5t145.5 58.5q76 0 126 -46.5t50 -123.5q0 -87 -57.5 -147t-149.5 -60q-73 0 -123.5 47 t-50.5 123zM840 1628q0 -45 27 -73.5t69 -28.5q52 0 83.5 33.5t31.5 95.5q0 45 -28.5 70.5t-70.5 25.5q-49 0 -80.5 -32.5t-31.5 -90.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2097" d="M-18 -2l20 108q119 6 158 35q36 26 68 60t79 90l701 833q29 34 46 64.5t17 46.5t-10 24.5t-35 12.5q-44 6 -141 10l18 102h1055q63 0 89 -21t26 -60q0 -100 -37 -254h-99q0 89 -8 121t-28 47q-24 16 -69.5 23t-162.5 7h-207l-92 -465h148q83 0 119 6.5t57 26.5 q29 27 59 125h98q-50 -200 -86 -440h-92q0 21 -6 69q-4 25 -10.5 39.5t-15.5 25t-30 14.5t-44.5 5.5t-67.5 1.5h-153l-76 -387q-10 -60 -10 -71q0 -26 8.5 -38.5t31.5 -15.5q53 -8 191 -8q141 0 210 15.5t105 42.5q51 41 117 172h98q-38 -219 -90 -306q-35 -59 -172 -59 h-903l21 104q105 7 145 19q33 9 43 43q11 36 29 125l43 211h-475l-179 -211q-48 -56 -61.5 -79.5t-13.5 -53.5q0 -12 6.5 -21t20 -14.5t26.5 -9t35.5 -5t35.5 -2.5t38 -1q4 -1 6.5 -1h5.5h6l-21 -106q-196 4 -305 4q-84 0 -280 -4zM762 635h397l113 571l2 10t1.5 8t0.5 5 q0 12 -10 12q-2 0 -4 -0.5t-4 -2t-3.5 -2.5t-4 -4t-4 -5.5t-5 -7t-6.5 -7.5q-108 -136 -473 -577z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1361" d="M129 547q0 175 59.5 337.5t178.5 291.5q226 241 608 241q184 0 307 -49q78 -33 78 -119q0 -68 -33 -225h-104q0 131 -39 182q-52 64 -242 64q-137 0 -255.5 -53t-201.5 -158q-78 -97 -119.5 -228t-41.5 -264q0 -225 119 -337.5t317 -112.5q179 0 274 71q57 43 117 168 h106q-26 -152 -67 -225q-47 -82 -141 -113q-155 -47 -324 -47h-18q-25 -52 -25 -69q0 -31 29 -49q66 -36 91 -71.5t25 -90.5q0 -78 -56.5 -138.5t-140 -93t-186.5 -45.5l-8 90q118 26 180 62t62 96q0 35 -18 59.5t-60 51.5q-33 23 -33 57q0 43 58 147q-232 28 -364 177.5 t-132 392.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1228" d="M-10 0l22 106q139 3 170 31q12 11 18.5 32t17.5 78q3 15 5 23l166 852q14 72 14 101q0 34 -43 45q-39 8 -133 12l19 104h844q118 0 118 -79q0 -96 -37 -256h-98q0 42 -4 96q-5 49 -35 74q-24 15 -69 21.5t-156 6.5h-213l-90 -465h145q83 0 119 6.5t57 26.5q30 28 60 125 h98q-37 -153 -84 -440h-94q2 20 2 55q0 80 -53 92q-39 8 -131 8h-144l-82 -417q-1 -5 -3.5 -21t-2.5 -22q0 -46 43 -52q53 -8 203 -8q234 0 305 60q51 43 113 170h100q-14 -89 -39 -175.5t-51 -130.5q-35 -59 -176 -59h-901zM502 1784q0 36 25.5 60t58.5 24q24 0 46 -17.5 t60 -64.5l209 -260l-55 -56l-268 207q-76 60 -76 107z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1228" d="M-10 0l22 106q139 3 170 31q12 11 18.5 32t17.5 78q3 15 5 23l166 852q14 72 14 101q0 34 -43 45q-39 8 -133 12l19 104h844q118 0 118 -79q0 -96 -37 -256h-98q0 42 -4 96q-5 49 -35 74q-24 15 -69 21.5t-156 6.5h-213l-90 -465h145q83 0 119 6.5t57 26.5q30 28 60 125 h98q-37 -153 -84 -440h-94q2 20 2 55q0 80 -53 92q-39 8 -131 8h-144l-82 -417q-1 -5 -3.5 -21t-2.5 -22q0 -46 43 -52q53 -8 203 -8q234 0 305 60q51 43 113 170h100q-14 -89 -39 -175.5t-51 -130.5q-35 -59 -176 -59h-901zM641 1536l262 229q40 35 64 48.5t49 13.5 q32 0 51.5 -24t19.5 -60q0 -52 -94 -105l-305 -168z" />
+<glyph unicode="&#xca;" horiz-adv-x="1228" d="M-10 0l22 106q139 3 170 31q12 11 18.5 32t17.5 78q3 15 5 23l166 852q14 72 14 101q0 34 -43 45q-39 8 -133 12l19 104h844q118 0 118 -79q0 -96 -37 -256h-98q0 42 -4 96q-5 49 -35 74q-24 15 -69 21.5t-156 6.5h-213l-90 -465h145q83 0 119 6.5t57 26.5q30 28 60 125 h98q-37 -153 -84 -440h-94q2 20 2 55q0 80 -53 92q-39 8 -131 8h-144l-82 -417q-1 -5 -3.5 -21t-2.5 -22q0 -46 43 -52q53 -8 203 -8q234 0 305 60q51 43 113 170h100q-14 -89 -39 -175.5t-51 -130.5q-35 -59 -176 -59h-901zM446 1524l279 270q40 43 82 43q24 0 39.5 -9.5 t32.5 -35.5l178 -276l-58 -52l-215 203l-288 -203z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1228" d="M-10 0l22 106q139 3 170 31q12 11 18.5 32t17.5 78q3 15 5 23l166 852q14 72 14 101q0 34 -43 45q-39 8 -133 12l19 104h844q118 0 118 -79q0 -96 -37 -256h-98q0 42 -4 96q-5 49 -35 74q-24 15 -69 21.5t-156 6.5h-213l-90 -465h145q83 0 119 6.5t57 26.5q30 28 60 125 h98q-37 -153 -84 -440h-94q2 20 2 55q0 80 -53 92q-39 8 -131 8h-144l-82 -417q-1 -5 -3.5 -21t-2.5 -22q0 -46 43 -52q53 -8 203 -8q234 0 305 60q51 43 113 170h100q-14 -89 -39 -175.5t-51 -130.5q-35 -59 -176 -59h-901zM489 1624q0 44 29 75.5t74 31.5q42 0 68 -26.5 t26 -66.5q0 -49 -28.5 -82.5t-77.5 -33.5q-40 0 -65.5 29t-25.5 73zM844 1624q0 44 29.5 75.5t74.5 31.5q43 0 68.5 -26t25.5 -67q0 -49 -28.5 -82.5t-77.5 -33.5q-41 0 -66.5 28.5t-25.5 73.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="716" d="M-10 -2l22 106q144 10 172 35q11 9 18.5 34t20.5 95l166 856q14 82 14 99q0 20 -10.5 30t-34.5 15q-46 8 -131 14l19 104q252 -6 276 -6q15 0 291 6l-20 -104q-93 -7 -130.5 -15.5t-50.5 -21.5q-22 -25 -39 -119l-163 -856q-17 -84 -17 -104q0 -37 47 -47q61 -10 138 -15 l-23 -106q-172 4 -295 4q-90 0 -270 -4zM274 1784q0 36 25.5 60t58.5 24q24 0 46.5 -17.5t60.5 -64.5l209 -260l-56 -56l-268 207q-76 60 -76 107z" />
+<glyph unicode="&#xcd;" horiz-adv-x="716" d="M-10 -2l22 106q144 10 172 35q11 9 18.5 34t20.5 95l166 856q14 82 14 99q0 20 -10.5 30t-34.5 15q-46 8 -131 14l19 104q252 -6 276 -6q15 0 291 6l-20 -104q-93 -7 -130.5 -15.5t-50.5 -21.5q-22 -25 -39 -119l-163 -856q-17 -84 -17 -104q0 -37 47 -47q61 -10 138 -15 l-23 -106q-172 4 -295 4q-90 0 -270 -4zM399 1536l263 229q40 36 63.5 49t48.5 13q32 0 52 -24t20 -60q0 -52 -94 -105l-306 -168z" />
+<glyph unicode="&#xce;" horiz-adv-x="716" d="M-10 -2l22 106q144 10 172 35q11 9 18.5 34t20.5 95l166 856q14 82 14 99q0 20 -10.5 30t-34.5 15q-46 8 -131 14l19 104q252 -6 276 -6q15 0 291 6l-20 -104q-93 -7 -130.5 -15.5t-50.5 -21.5q-22 -25 -39 -119l-163 -856q-17 -84 -17 -104q0 -37 47 -47q61 -10 138 -15 l-23 -106q-172 4 -295 4q-90 0 -270 -4zM248 1524l278 270q40 43 82 43q24 0 39.5 -9.5t32.5 -35.5l178 -276l-57 -52l-215 203l-289 -203z" />
+<glyph unicode="&#xcf;" horiz-adv-x="716" d="M-10 -2l22 106q144 10 172 35q11 9 18.5 34t20.5 95l166 856q14 82 14 99q0 20 -10.5 30t-34.5 15q-46 8 -131 14l19 104q252 -6 276 -6q15 0 291 6l-20 -104q-93 -7 -130.5 -15.5t-50.5 -21.5q-22 -25 -39 -119l-163 -856q-17 -84 -17 -104q0 -37 47 -47q61 -10 138 -15 l-23 -106q-172 4 -295 4q-90 0 -270 -4zM287 1624q0 44 28.5 75.5t73.5 31.5q42 0 68 -26.5t26 -66.5q0 -49 -28.5 -82.5t-77.5 -33.5q-40 0 -65 29t-25 73zM641 1624q0 44 29.5 75.5t74.5 31.5q43 0 69 -26t26 -67q0 -49 -29 -82.5t-78 -33.5q-41 0 -66.5 28.5t-25.5 73.5z " />
+<glyph unicode="&#xd0;" horiz-adv-x="1484" d="M-10 0l22 104q92 8 124.5 14t47.5 21q12 12 18.5 33.5t18.5 87.5l80 408h-203l23 114h203l65 340q14 75 14 101q0 35 -45 45q-41 8 -131 14l19 102h344q300 0 441.5 -31t232.5 -100q81 -61 126.5 -166.5t45.5 -224.5q0 -515 -346 -737q-100 -65 -245 -95t-356 -30h-499z M393 201q0 -49 51 -58q43 -8 162 -8q125 0 229 34t178 95.5t125.5 148t76 190t24.5 222.5q0 116 -43 210.5t-117 138.5q-117 73 -364 73h-121l-90 -465h373l-25 -114h-371l-82 -422q-6 -30 -6 -45z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1515" d="M-10 -2l22 108q83 4 120.5 13.5t53.5 27.5q11 13 19.5 46.5t25.5 121.5q142 712 150 750q20 95 20 147q0 48 -57 56q-37 7 -127 12l23 106q86 -4 217 -4q94 0 168 4q465 -988 512 -1101q17 96 52 291t58.5 327t28.5 166q18 120 18 141q0 44 -39 52q-72 16 -137 18l21 106 q218 -4 274 -4q22 0 248 4l-23 -106q-86 -4 -116.5 -11.5t-46.5 -23.5q-13 -12 -24.5 -47.5t-31.5 -130.5q-88 -444 -190 -993q-8 -46 -31.5 -69t-69.5 -23q-62 0 -88 63q-120 260 -221.5 480t-145 314t-80 172.5t-63.5 139.5q-32 -166 -92 -495.5t-61 -336.5 q-23 -118 -23 -149q0 -42 56 -49q73 -11 131 -15l-23 -108q-208 4 -276 4q-34 0 -252 -4zM674 1526q36 96 89 157.5t118 61.5q14 0 29.5 -3.5t25.5 -7.5t28.5 -11.5t26.5 -10.5l60 -26q59 -25 90 -25t55.5 26t54.5 82l74 -24q-79 -225 -192 -225q-50 0 -132 39l-53 22 q-54 25 -84 25q-35 0 -62.5 -25.5t-58.5 -83.5z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1447" d="M131 532q0 179 56.5 358t168.5 302q201 223 521 223q264 0 395 -139t131 -381q0 -197 -52.5 -381t-170.5 -321q-92 -105 -224.5 -162.5t-273.5 -57.5q-261 0 -406 141t-145 418zM322 543q0 -426 370 -426q216 0 342 168q86 115 128 277t42 327q0 189 -91 286t-265 97 q-114 0 -208 -49t-157 -136q-77 -105 -119 -253t-42 -291zM629 1784q0 36 25.5 60t58.5 24q24 0 46 -17.5t60 -64.5l209 -260l-55 -56l-268 207q-76 60 -76 107z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1447" d="M131 532q0 179 56.5 358t168.5 302q201 223 521 223q264 0 395 -139t131 -381q0 -197 -52.5 -381t-170.5 -321q-92 -105 -224.5 -162.5t-273.5 -57.5q-261 0 -406 141t-145 418zM322 543q0 -426 370 -426q216 0 342 168q86 115 128 277t42 327q0 189 -91 286t-265 97 q-114 0 -208 -49t-157 -136q-77 -105 -119 -253t-42 -291zM721 1536l262 229q40 35 64 48.5t49 13.5q32 0 51.5 -24t19.5 -60q0 -52 -94 -105l-305 -168z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1447" d="M131 532q0 179 56.5 358t168.5 302q201 223 521 223q264 0 395 -139t131 -381q0 -197 -52.5 -381t-170.5 -321q-92 -105 -224.5 -162.5t-273.5 -57.5q-261 0 -406 141t-145 418zM322 543q0 -426 370 -426q216 0 342 168q86 115 128 277t42 327q0 189 -91 286t-265 97 q-114 0 -208 -49t-157 -136q-77 -105 -119 -253t-42 -291zM592 1524l278 270q40 43 82 43q24 0 39.5 -9.5t32.5 -35.5l178 -276l-57 -52l-215 203l-289 -203z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1447" d="M131 532q0 179 56.5 358t168.5 302q201 223 521 223q264 0 395 -139t131 -381q0 -197 -52.5 -381t-170.5 -321q-92 -105 -224.5 -162.5t-273.5 -57.5q-261 0 -406 141t-145 418zM322 543q0 -426 370 -426q216 0 342 168q86 115 128 277t42 327q0 189 -91 286t-265 97 q-114 0 -208 -49t-157 -136q-77 -105 -119 -253t-42 -291zM586 1526q36 96 89 157.5t118 61.5q14 0 29.5 -3.5t25.5 -7.5t28.5 -11.5t26.5 -10.5l60 -26q59 -25 90 -25t55.5 26t54.5 82l74 -24q-79 -225 -193 -225q-49 0 -131 39l-53 22q-54 25 -84 25q-35 0 -62.5 -25.5 t-58.5 -83.5z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1447" d="M131 532q0 179 56.5 358t168.5 302q201 223 521 223q264 0 395 -139t131 -381q0 -197 -52.5 -381t-170.5 -321q-92 -105 -224.5 -162.5t-273.5 -57.5q-261 0 -406 141t-145 418zM322 543q0 -426 370 -426q216 0 342 168q86 115 128 277t42 327q0 189 -91 286t-265 97 q-114 0 -208 -49t-157 -136q-77 -105 -119 -253t-42 -291zM643 1624q0 44 28.5 75.5t73.5 31.5q42 0 68.5 -26.5t26.5 -66.5q0 -49 -29 -82.5t-78 -33.5q-40 0 -65 29t-25 73zM997 1624q0 44 30 75.5t75 31.5q43 0 68.5 -26t25.5 -67q0 -49 -28.5 -82.5t-77.5 -33.5 q-41 0 -67 29t-26 73z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1226" d="M213 348l344 301l-227 299l106 94l223 -297l338 297l78 -102l-344 -301l230 -301l-105 -92l-229 301l-340 -299z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1447" d="M92 6l137 162q-98 140 -98 364q0 179 56.5 358t168.5 302q201 223 521 223q204 0 331 -88l127 150l80 -70l-127 -150q115 -133 115 -362q0 -197 -52.5 -381t-170.5 -321q-92 -105 -224.5 -162.5t-273.5 -57.5q-240 0 -381 117l-129 -151zM322 543q0 -138 34 -224l740 873 q-91 82 -248 82q-114 0 -208 -50t-157 -137q-77 -105 -119 -253t-42 -291zM414 221q89 -106 278 -106q214 0 342 170q86 115 128 277t42 327q0 132 -43 217z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1550" d="M205 1282l22 104q160 -4 287 -4q117 0 281 4l-21 -104q-97 -6 -127 -13t-47 -24q-19 -22 -39 -108q-38 -178 -102 -502q-35 -186 -35 -260q0 -258 315 -258q110 0 201.5 34t140.5 95q51 61 82.5 155.5t63.5 251.5q25 114 86 469q10 56 10 90q0 27 -9 37.5t-34 16.5 q-20 4 -141 16l20 104q74 -2 277 -2q20 0 110.5 1t130.5 1l-20 -104q-91 -4 -126.5 -15t-45.5 -30q-19 -32 -39 -131l-96 -492q-38 -200 -79 -307t-112 -178q-163 -160 -471 -160q-70 0 -133 10.5t-123 36.5t-103.5 65.5t-69.5 101t-26 139.5q0 117 41 305q11 54 51 243.5 t52 255.5q12 68 12 88q0 21 -8 33t-31 19q-40 13 -145 16zM657 1784q0 36 25.5 60t58.5 24q24 0 46.5 -17.5t60.5 -64.5l209 -260l-56 -56l-268 207q-76 60 -76 107z" />
+<glyph unicode="&#xda;" horiz-adv-x="1550" d="M205 1282l22 104q160 -4 287 -4q117 0 281 4l-21 -104q-97 -6 -127 -13t-47 -24q-19 -22 -39 -108q-38 -178 -102 -502q-35 -186 -35 -260q0 -258 315 -258q110 0 201.5 34t140.5 95q51 61 82.5 155.5t63.5 251.5q25 114 86 469q10 56 10 90q0 27 -9 37.5t-34 16.5 q-20 4 -141 16l20 104q74 -2 277 -2q20 0 110.5 1t130.5 1l-20 -104q-91 -4 -126.5 -15t-45.5 -30q-19 -32 -39 -131l-96 -492q-38 -200 -79 -307t-112 -178q-163 -160 -471 -160q-70 0 -133 10.5t-123 36.5t-103.5 65.5t-69.5 101t-26 139.5q0 117 41 305q11 54 51 243.5 t52 255.5q12 68 12 88q0 21 -8 33t-31 19q-40 13 -145 16zM803 1536l262 229q40 35 64 48.5t49 13.5q32 0 51.5 -24t19.5 -60q0 -52 -94 -105l-305 -168z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1550" d="M205 1282l22 104q160 -4 287 -4q117 0 281 4l-21 -104q-97 -6 -127 -13t-47 -24q-19 -22 -39 -108q-38 -178 -102 -502q-35 -186 -35 -260q0 -258 315 -258q110 0 201.5 34t140.5 95q51 61 82.5 155.5t63.5 251.5q25 114 86 469q10 56 10 90q0 27 -9 37.5t-34 16.5 q-20 4 -141 16l20 104q74 -2 277 -2q20 0 110.5 1t130.5 1l-20 -104q-91 -4 -126.5 -15t-45.5 -30q-19 -32 -39 -131l-96 -492q-38 -200 -79 -307t-112 -178q-163 -160 -471 -160q-70 0 -133 10.5t-123 36.5t-103.5 65.5t-69.5 101t-26 139.5q0 117 41 305q11 54 51 243.5 t52 255.5q12 68 12 88q0 21 -8 33t-31 19q-40 13 -145 16zM668 1524l278 270q40 43 82 43q24 0 39.5 -9.5t32.5 -35.5l178 -276l-57 -52l-215 203l-289 -203z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1550" d="M205 1282l22 104q160 -4 287 -4q117 0 281 4l-21 -104q-97 -6 -127 -13t-47 -24q-19 -22 -39 -108q-38 -178 -102 -502q-35 -186 -35 -260q0 -258 315 -258q110 0 201.5 34t140.5 95q51 61 82.5 155.5t63.5 251.5q25 114 86 469q10 56 10 90q0 27 -9 37.5t-34 16.5 q-20 4 -141 16l20 104q74 -2 277 -2q20 0 110.5 1t130.5 1l-20 -104q-91 -4 -126.5 -15t-45.5 -30q-19 -32 -39 -131l-96 -492q-38 -200 -79 -307t-112 -178q-163 -160 -471 -160q-70 0 -133 10.5t-123 36.5t-103.5 65.5t-69.5 101t-26 139.5q0 117 41 305q11 54 51 243.5 t52 255.5q12 68 12 88q0 21 -8 33t-31 19q-40 13 -145 16zM690 1624q0 44 29 75.5t74 31.5q42 0 68 -26.5t26 -66.5q0 -49 -29 -82.5t-78 -33.5q-40 0 -65 29t-25 73zM1044 1624q0 44 30 75.5t75 31.5q43 0 68.5 -26t25.5 -67q0 -49 -28.5 -82.5t-77.5 -33.5q-41 0 -67 29 t-26 73z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1275" d="M158 1282l20 104q230 -4 258 -4q61 0 269 4l-25 -104q-105 -3 -133 -12q-39 -10 -39 -51q0 -39 24 -97q110 -285 164 -430q310 398 342 438q58 72 58 109q0 15 -11.5 24.5t-36.5 13t-42.5 4.5t-49.5 1h-8l23 104q94 -4 278 -4q101 0 191 4l-23 -104q-53 -2 -98 -31 q-6 -3 -12.5 -9t-15 -14.5t-15.5 -16.5t-18 -21t-18.5 -21.5t-20 -24.5t-19.5 -24l-455 -555l-63 -315q-12 -62 -12 -88q0 -35 37 -43q39 -9 145 -15l-18 -106q-218 4 -281 4q-93 0 -281 -4l21 106q96 4 126 12t46 25q19 22 35 103l61 319l-223 553q-4 11 -10.5 26.5t-10 24 t-8 20t-7.5 17.5t-7 14.5t-7 13t-7 9.5t-7.5 8t-7.5 6q-34 24 -108 27zM682 1536l262 229q40 35 64 48.5t49 13.5q32 0 51.5 -24t19.5 -60q0 -52 -94 -105l-305 -168z" />
+<glyph unicode="&#xde;" horiz-adv-x="1198" d="M-10 -2l22 108q88 4 120 11.5t50 21.5q12 9 19.5 34t21.5 97l166 856q14 82 14 95q0 22 -12 32t-39 15q-54 9 -125 12l19 106q222 -6 272 -6q23 0 293 6l-23 -106q-95 -6 -131 -13t-49 -20q-19 -19 -33 -98l-8 -37q270 0 369 -16q88 -16 147 -61.5t84 -105t25 -132.5 q0 -104 -31 -187t-86.5 -139.5t-134.5 -94t-171.5 -54.5t-201.5 -17q-110 0 -155 2l-9 -45q-14 -79 -14 -92q0 -21 10 -33t35 -16q57 -12 160 -15l-21 -108q-172 4 -313 4q-90 0 -270 -4zM436 430q33 -2 115 -2q69 0 125 6.5t117.5 28t103 57t69 99t27.5 149.5 q0 55 -17 94.5t-45 63t-74.5 36.5t-94 17t-115.5 4h-102z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1232" d="M-281 -446q0 69 29 161h94q0 -87 18.5 -118t84.5 -31q41 0 78.5 22t60.5 60q48 77 80 256l155 889h-176l21 94q95 16 137 41q23 14 34.5 36t26.5 83q28 118 64.5 195t69.5 112t84 69q106 74 280 74q165 0 247.5 -74t82.5 -184q0 -74 -28 -133.5t-69.5 -99.5t-115.5 -93 q-41 -29 -59.5 -43t-41.5 -34t-31.5 -35t-8.5 -31q0 -27 24 -61q11 -14 144 -150t133 -260q0 -153 -112 -240.5t-284 -87.5q-145 0 -223 47q-51 31 -51 103q0 64 29 153h86q3 -89 34 -120q47 -50 156 -50q89 0 142 40.5t53 109.5q0 86 -121 207q-91 95 -127 135 q-51 57 -51 127q0 57 30 101t105 102q54 42 78.5 61.5t59.5 51.5t49 54t25 51t11 60q0 73 -45.5 115.5t-144.5 42.5q-137 0 -211 -92q-28 -34 -55 -109t-44 -168l-200 -1083q-27 -141 -59.5 -225.5t-82.5 -135.5q-106 -112 -274 -112q-81 0 -141 31q-50 23 -50 86z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1161" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q45 0 102.5 -13.5t98.5 -37.5l37 74h131l-127 -502q-49 -192 -49 -285q0 -69 82 -69q58 0 125 18l-25 -102q-112 -53 -217 -53q-78 0 -105.5 41.5t-27.5 128.5q-151 -177 -342 -177q-148 0 -221.5 82.5t-73.5 233.5z M262 309q0 -96 40.5 -143t127.5 -47q144 0 295 147q17 102 41 197l82 307q-76 45 -180 45q-126 0 -232 -92q-74 -65 -124 -183t-50 -231zM492 1421q0 35 26.5 57.5t59.5 22.5q27 0 49 -18t53 -70l184 -297l-63 -45l-242 244q-37 37 -52 59t-15 47z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1161" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q45 0 102.5 -13.5t98.5 -37.5l37 74h131l-127 -502q-49 -192 -49 -285q0 -69 82 -69q58 0 125 18l-25 -102q-112 -53 -217 -53q-78 0 -105.5 41.5t-27.5 128.5q-151 -177 -342 -177q-148 0 -221.5 82.5t-73.5 233.5z M262 309q0 -96 40.5 -143t127.5 -47q144 0 295 147q17 102 41 197l82 307q-76 45 -180 45q-126 0 -232 -92q-74 -65 -124 -183t-50 -231zM614 1126l217 275q35 44 58 61t47 17q31 0 56.5 -23t25.5 -57q0 -27 -18.5 -50t-61.5 -59l-268 -219z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1161" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q45 0 102.5 -13.5t98.5 -37.5l37 74h131l-127 -502q-49 -192 -49 -285q0 -69 82 -69q58 0 125 18l-25 -102q-112 -53 -217 -53q-78 0 -105.5 41.5t-27.5 128.5q-151 -177 -342 -177q-148 0 -221.5 82.5t-73.5 233.5z M262 309q0 -96 40.5 -143t127.5 -47q144 0 295 147q17 102 41 197l82 307q-76 45 -180 45q-126 0 -232 -92q-74 -65 -124 -183t-50 -231zM444 1098l258 305q35 43 80 43q55 0 72 -41l147 -324l-69 -39l-170 232l-264 -232z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1161" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q45 0 102.5 -13.5t98.5 -37.5l37 74h131l-127 -502q-49 -192 -49 -285q0 -69 82 -69q58 0 125 18l-25 -102q-112 -53 -217 -53q-78 0 -105.5 41.5t-27.5 128.5q-151 -177 -342 -177q-148 0 -221.5 82.5t-73.5 233.5z M262 309q0 -96 40.5 -143t127.5 -47q144 0 295 147q17 102 41 197l82 307q-76 45 -180 45q-126 0 -232 -92q-74 -65 -124 -183t-50 -231zM451 1137q75 217 190 217q48 0 111 -29l47 -22q64 -27 86 -27q52 0 106 106l72 -22q-67 -223 -178 -223q-49 0 -127 37l-41 18 q-51 22 -86 22q-32 0 -54 -22.5t-55 -81.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1161" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q45 0 102.5 -13.5t98.5 -37.5l37 74h131l-127 -502q-49 -192 -49 -285q0 -69 82 -69q58 0 125 18l-25 -102q-112 -53 -217 -53q-78 0 -105.5 41.5t-27.5 128.5q-151 -177 -342 -177q-148 0 -221.5 82.5t-73.5 233.5z M262 309q0 -96 40.5 -143t127.5 -47q144 0 295 147q17 102 41 197l82 307q-76 45 -180 45q-126 0 -232 -92q-74 -65 -124 -183t-50 -231zM530 1266q0 44 29.5 76t75.5 32q42 0 68 -27t26 -67q0 -48 -29.5 -81.5t-78.5 -33.5q-40 0 -65.5 28.5t-25.5 72.5zM850 1266 q0 44 29.5 76t72.5 32t69 -26.5t26 -67.5q0 -48 -28.5 -81.5t-76.5 -33.5q-41 0 -66.5 28.5t-25.5 72.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1161" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q45 0 102.5 -13.5t98.5 -37.5l37 74h131l-127 -502q-49 -192 -49 -285q0 -69 82 -69q58 0 125 18l-25 -102q-112 -53 -217 -53q-78 0 -105.5 41.5t-27.5 128.5q-151 -177 -342 -177q-148 0 -221.5 82.5t-73.5 233.5z M262 309q0 -96 40.5 -143t127.5 -47q144 0 295 147q17 102 41 197l82 307q-76 45 -180 45q-126 0 -232 -92q-74 -65 -124 -183t-50 -231zM580 1243q0 88 59 146.5t145 58.5q76 0 126.5 -46.5t50.5 -123.5q0 -87 -57.5 -147t-149.5 -60q-73 0 -123.5 46.5t-50.5 125.5z M664 1249q0 -45 27 -73.5t69 -28.5q52 0 83 33.5t31 95.5q0 46 -28 72t-70 26q-49 0 -80.5 -34t-31.5 -91z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1603" d="M84 291q0 131 62 279.5t165 240.5q160 141 385 141q46 0 101.5 -12t87.5 -35l39 80h118l-38 -147q58 63 140.5 94t151.5 31q134 0 202.5 -65t68.5 -159q0 -325 -637 -325q-6 -34 -6 -70q0 -97 58 -161t171 -64q152 0 334 112l51 -90q-100 -82 -204 -126t-240 -44 q-114 0 -200.5 56t-115.5 168q-178 -220 -401 -220q-293 0 -293 316zM262 307q0 -188 166 -188q77 0 166.5 52.5t165.5 139.5q3 107 82 461q-84 43 -174 43q-126 0 -232 -92q-74 -65 -124 -183t-50 -233zM946 530q231 6 344 58t113 133q0 53 -29 81.5t-108 28.5 q-41 0 -94.5 -19t-88.5 -50q-111 -90 -137 -232z" />
+<glyph unicode="&#xe7;" horiz-adv-x="954" d="M86 344q0 147 54 281t161 221q143 117 340 117q99 0 166 -25q48 -18 66 -44t18 -69q0 -29 -9.5 -84.5t-21.5 -95.5h-98q-3 115 -35 143q-40 37 -117 37q-125 0 -211 -86q-62 -62 -100.5 -162t-38.5 -198q0 -260 232 -260q143 0 307 110l59 -100q-183 -145 -387 -156 q-22 -42 -22 -67q0 -30 26 -43q66 -34 90.5 -69t24.5 -87q0 -74 -56 -132.5t-138.5 -90t-182.5 -41.5l-8 86q118 24 177.5 58t59.5 94q0 58 -75 102q-31 19 -31 53q0 45 53 137q-142 15 -222.5 113.5t-80.5 257.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="931" d="M86 332q0 275 149 453t381 178q141 0 210 -65t69 -159q0 -325 -633 -325q-4 -23 -4 -68q0 -98 56.5 -162.5t172.5 -64.5q83 0 156.5 25.5t175.5 88.5l58 -100q-101 -78 -207 -120t-242 -42q-145 0 -243.5 92.5t-98.5 268.5zM279 530q233 6 342.5 58t109.5 137 q0 55 -30.5 80.5t-100.5 25.5q-109 0 -198.5 -80t-122.5 -221zM336 1421q0 35 26.5 57.5t59.5 22.5q27 0 49 -18t53 -70l185 -297l-64 -45l-242 244q-37 37 -52 59t-15 47z" />
+<glyph unicode="&#xe9;" horiz-adv-x="931" d="M86 332q0 275 149 453t381 178q141 0 210 -65t69 -159q0 -325 -633 -325q-4 -23 -4 -68q0 -98 56.5 -162.5t172.5 -64.5q83 0 156.5 25.5t175.5 88.5l58 -100q-101 -78 -207 -120t-242 -42q-145 0 -243.5 92.5t-98.5 268.5zM279 530q233 6 342.5 58t109.5 137 q0 55 -30.5 80.5t-100.5 25.5q-109 0 -198.5 -80t-122.5 -221zM498 1126l217 275q35 44 58 61t46 17q31 0 56.5 -23t25.5 -57q0 -27 -18.5 -50t-61.5 -59l-268 -219z" />
+<glyph unicode="&#xea;" horiz-adv-x="931" d="M86 332q0 275 149 453t381 178q141 0 210 -65t69 -159q0 -325 -633 -325q-4 -23 -4 -68q0 -98 56.5 -162.5t172.5 -64.5q83 0 156.5 25.5t175.5 88.5l58 -100q-101 -78 -207 -120t-242 -42q-145 0 -243.5 92.5t-98.5 268.5zM279 530q233 6 342.5 58t109.5 137 q0 55 -30.5 80.5t-100.5 25.5q-109 0 -198.5 -80t-122.5 -221zM348 1098l258 305q35 43 80 43q55 0 72 -41l147 -324l-69 -39l-170 232l-265 -232z" />
+<glyph unicode="&#xeb;" horiz-adv-x="931" d="M86 332q0 275 149 453t381 178q141 0 210 -65t69 -159q0 -325 -633 -325q-4 -23 -4 -68q0 -98 56.5 -162.5t172.5 -64.5q83 0 156.5 25.5t175.5 88.5l58 -100q-101 -78 -207 -120t-242 -42q-145 0 -243.5 92.5t-98.5 268.5zM279 530q233 6 342.5 58t109.5 137 q0 55 -30.5 80.5t-100.5 25.5q-109 0 -198.5 -80t-122.5 -221zM416 1266q0 44 29 76t75 32q42 0 68 -27t26 -67q0 -48 -29.5 -81.5t-78.5 -33.5q-40 0 -65 28.5t-25 72.5zM735 1266q0 44 30 76t73 32t68.5 -26.5t25.5 -67.5q0 -48 -28.5 -81.5t-76.5 -33.5q-41 0 -66.5 28.5 t-25.5 72.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="616" d="M100 1421q0 35 26.5 57.5t59.5 22.5q28 0 50 -18t53 -70l184 -297l-63 -45l-242 244q-38 38 -53 60t-15 46zM111 797l18 94q120 63 215 63q58 0 88.5 -25.5t30.5 -88.5q0 -52 -49 -260l-58 -222q-30 -131 -30 -170q0 -36 16.5 -52.5t58.5 -16.5q67 0 134 18l-23 -102 q-116 -53 -231 -53q-138 0 -138 118q0 58 29 174l61 250q41 160 41 211q0 38 -17 53t-58 15q-53 0 -88 -6z" />
+<glyph unicode="&#xed;" horiz-adv-x="616" d="M111 797l18 94q120 63 215 63q58 0 88.5 -25.5t30.5 -88.5q0 -52 -49 -260l-58 -222q-30 -131 -30 -170q0 -36 16.5 -52.5t58.5 -16.5q67 0 134 18l-23 -102q-116 -53 -231 -53q-138 0 -138 118q0 58 29 174l61 250q41 160 41 211q0 38 -17 53t-58 15q-53 0 -88 -6z M238 1126l217 275q35 44 58 61t46 17q31 0 56.5 -23t25.5 -57q0 -27 -18.5 -50t-61.5 -59l-268 -219z" />
+<glyph unicode="&#xee;" horiz-adv-x="616" d="M86 1098l258 305q35 43 80 43q55 0 72 -41l147 -324l-70 -39l-170 232l-264 -232zM111 797l18 94q120 63 215 63q58 0 88.5 -25.5t30.5 -88.5q0 -52 -49 -260l-58 -222q-30 -131 -30 -170q0 -36 16.5 -52.5t58.5 -16.5q67 0 134 18l-23 -102q-116 -53 -231 -53 q-138 0 -138 118q0 58 29 174l61 250q41 160 41 211q0 38 -17 53t-58 15q-53 0 -88 -6z" />
+<glyph unicode="&#xef;" horiz-adv-x="616" d="M111 797l18 94q120 63 215 63q58 0 88.5 -25.5t30.5 -88.5q0 -52 -49 -260l-58 -222q-30 -131 -30 -170q0 -36 16.5 -52.5t58.5 -16.5q67 0 134 18l-23 -102q-116 -53 -231 -53q-138 0 -138 118q0 58 29 174l61 250q41 160 41 211q0 38 -17 53t-58 15q-53 0 -88 -6z M139 1266q0 44 29.5 76t75.5 32q42 0 68 -27t26 -67q0 -48 -30 -81.5t-79 -33.5q-40 0 -65 28.5t-25 72.5zM459 1266q0 44 29.5 76t72.5 32t68.5 -26.5t25.5 -67.5q0 -48 -28 -81.5t-76 -33.5q-41 0 -66.5 28.5t-25.5 72.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1069" d="M86 358q0 250 139 418q62 73 157 114.5t204 41.5q141 0 215 -80q-11 66 -43.5 147t-67.5 125l-248 -135l-47 80l240 133q-46 66 -119 121.5t-147 89.5l59 94q207 -85 334 -223l190 102l47 -83l-178 -97q168 -230 168 -563q0 -155 -34 -284t-124 -234 q-63 -73 -158.5 -113.5t-195.5 -40.5q-181 0 -286 97.5t-105 289.5zM260 373q0 -258 238 -258q138 0 215 104q102 136 102 354q0 232 -227 232q-149 0 -232 -113q-96 -131 -96 -319z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1163" d="M100 797l21 94q117 63 213 63q106 0 106 -114q0 -36 -4 -68q71 84 172.5 135t202.5 51q92 0 143.5 -43t51.5 -131q0 -75 -25 -178l-59 -244q-31 -118 -31 -174q0 -36 17.5 -52.5t56.5 -16.5q70 0 133 18l-23 -102q-114 -53 -231 -53q-131 0 -131 116q0 69 24 178l72 306 q16 69 16 118q0 56 -28.5 78.5t-83.5 22.5q-136 0 -287 -131q-6 -44 -33 -174l-117 -496h-161l110 498q39 176 39 227q0 43 -20 61.5t-64 18.5q-40 0 -80 -8zM379 1137q75 217 190 217q48 0 111 -29l47 -22q64 -27 86 -27q53 0 107 106l71 -22q-67 -223 -178 -223 q-49 0 -127 37l-41 18q-51 22 -86 22q-32 0 -53.5 -22t-54.5 -82z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1067" d="M84 358q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q181 0 281 -94t100 -265q0 -131 -38 -257.5t-118 -219.5q-65 -74 -161 -115t-195 -41q-181 0 -286 97.5t-105 289.5zM258 373q0 -260 238 -260q136 0 215 106q51 68 76.5 168t25.5 201q0 120 -56.5 177.5 t-170.5 57.5q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184zM391 1421q0 35 26.5 57.5t59.5 22.5q28 0 50 -18t53 -70l184 -297l-64 -45l-241 244q-38 38 -53 60t-15 46z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1067" d="M84 358q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q181 0 281 -94t100 -265q0 -131 -38 -257.5t-118 -219.5q-65 -74 -161 -115t-195 -41q-181 0 -286 97.5t-105 289.5zM258 373q0 -260 238 -260q136 0 215 106q51 68 76.5 168t25.5 201q0 120 -56.5 177.5 t-170.5 57.5q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184zM508 1126l217 275q35 44 58 61t46 17q31 0 56.5 -23t25.5 -57q0 -27 -18.5 -50t-61.5 -59l-268 -219z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1067" d="M84 358q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q181 0 281 -94t100 -265q0 -131 -38 -257.5t-118 -219.5q-65 -74 -161 -115t-195 -41q-181 0 -286 97.5t-105 289.5zM258 373q0 -260 238 -260q136 0 215 106q51 68 76.5 168t25.5 201q0 120 -56.5 177.5 t-170.5 57.5q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184zM365 1098l258 305q35 43 79 43q55 0 72 -41l148 -324l-70 -39l-170 232l-264 -232z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1067" d="M84 358q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q181 0 281 -94t100 -265q0 -131 -38 -257.5t-118 -219.5q-65 -74 -161 -115t-195 -41q-181 0 -286 97.5t-105 289.5zM258 373q0 -260 238 -260q136 0 215 106q51 68 76.5 168t25.5 201q0 120 -56.5 177.5 t-170.5 57.5q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184zM344 1137q75 217 191 217q47 0 110 -29l47 -22q64 -27 86 -27q53 0 107 106l71 -22q-67 -223 -178 -223q-49 0 -127 37l-41 18q-51 22 -86 22q-32 0 -53.5 -22t-54.5 -82z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1067" d="M84 358q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q181 0 281 -94t100 -265q0 -131 -38 -257.5t-118 -219.5q-65 -74 -161 -115t-195 -41q-181 0 -286 97.5t-105 289.5zM258 373q0 -260 238 -260q136 0 215 106q51 68 76.5 168t25.5 201q0 120 -56.5 177.5 t-170.5 57.5q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184zM416 1266q0 44 29 76t75 32q42 0 68 -27t26 -67q0 -48 -29.5 -81.5t-78.5 -33.5q-40 0 -65 28.5t-25 72.5zM735 1266q0 44 30 76t73 32t68.5 -26.5t25.5 -67.5q0 -48 -28.5 -81.5t-76.5 -33.5 q-41 0 -66.5 28.5t-25.5 72.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1189" d="M158 569l28 142h908l-29 -142h-907zM453 303q1 52 32.5 86.5t77.5 34.5q41 0 62.5 -25.5t21.5 -70.5q0 -50 -31 -84.5t-77 -34.5q-39 0 -62.5 26.5t-23.5 67.5zM600 948q0 50 34 84.5t79 34.5q40 0 62 -27.5t22 -72.5q0 -47 -34 -80t-79 -33q-37 0 -60.5 26.5t-23.5 67.5 z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1067" d="M49 -2l103 117q-66 94 -66 243q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q140 0 232 -58l108 123l72 -65l-107 -121q76 -92 76 -238q0 -131 -38.5 -259t-119.5 -220q-63 -72 -159.5 -112t-194.5 -40q-157 0 -262 76l-96 -110zM260 373q0 -69 14 -115l461 526 q-58 39 -147 39q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184zM324 172q57 -57 174 -57q134 0 215 104q51 70 76.5 169t25.5 200q0 64 -20 119z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1198" d="M117 795l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -44 -35 -191l-73 -305q-17 -70 -17 -116q0 -103 113 -103q134 0 287 133q11 83 32 172l115 496h164l-109 -496q-41 -184 -41 -245q0 -76 78 -76q17 0 64.5 6.5t62.5 11.5l-22 -100 q-113 -55 -224 -55q-51 0 -89 27.5t-38 84.5q0 44 2 64q-72 -85 -169 -133t-199 -48q-92 0 -148.5 46t-56.5 133q0 81 23 176l63 252q23 100 23 149q0 42 -17.5 57t-60.5 15q-40 0 -86 -8zM410 1421q0 35 26.5 57.5t59.5 22.5q27 0 49 -18t53 -70l184 -297l-63 -45l-242 244 q-37 37 -52 59t-15 47z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1198" d="M117 795l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -44 -35 -191l-73 -305q-17 -70 -17 -116q0 -103 113 -103q134 0 287 133q11 83 32 172l115 496h164l-109 -496q-41 -184 -41 -245q0 -76 78 -76q17 0 64.5 6.5t62.5 11.5l-22 -100 q-113 -55 -224 -55q-51 0 -89 27.5t-38 84.5q0 44 2 64q-72 -85 -169 -133t-199 -48q-92 0 -148.5 46t-56.5 133q0 81 23 176l63 252q23 100 23 149q0 42 -17.5 57t-60.5 15q-40 0 -86 -8zM551 1126l217 275q35 44 58 61t46 17q31 0 56.5 -23t25.5 -57q0 -27 -18.5 -50 t-61.5 -59l-268 -219z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1198" d="M117 795l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -44 -35 -191l-73 -305q-17 -70 -17 -116q0 -103 113 -103q134 0 287 133q11 83 32 172l115 496h164l-109 -496q-41 -184 -41 -245q0 -76 78 -76q17 0 64.5 6.5t62.5 11.5l-22 -100 q-113 -55 -224 -55q-51 0 -89 27.5t-38 84.5q0 44 2 64q-72 -85 -169 -133t-199 -48q-92 0 -148.5 46t-56.5 133q0 81 23 176l63 252q23 100 23 149q0 42 -17.5 57t-60.5 15q-40 0 -86 -8zM406 1098l258 305q35 43 79 43q55 0 72 -41l148 -324l-70 -39l-170 232l-264 -232z " />
+<glyph unicode="&#xfc;" horiz-adv-x="1198" d="M117 795l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -44 -35 -191l-73 -305q-17 -70 -17 -116q0 -103 113 -103q134 0 287 133q11 83 32 172l115 496h164l-109 -496q-41 -184 -41 -245q0 -76 78 -76q17 0 64.5 6.5t62.5 11.5l-22 -100 q-113 -55 -224 -55q-51 0 -89 27.5t-38 84.5q0 44 2 64q-72 -85 -169 -133t-199 -48q-92 0 -148.5 46t-56.5 133q0 81 23 176l63 252q23 100 23 149q0 42 -17.5 57t-60.5 15q-40 0 -86 -8zM444 1266q0 44 29.5 76t75.5 32q42 0 68 -27t26 -67q0 -48 -29.5 -81.5t-78.5 -33.5 q-40 0 -65.5 28.5t-25.5 72.5zM764 1266q0 44 29.5 76t72.5 32t69 -26.5t26 -67.5q0 -48 -28.5 -81.5t-76.5 -33.5q-41 0 -66.5 28.5t-25.5 72.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1196" d="M80 -430q0 80 26 182h99q0 -41 2 -59q3 -50 31 -78q47 -43 141 -43q71 0 127 26.5t86 77.5q24 41 47 104.5t32.5 100t28.5 113.5q6 29 20.5 86t18.5 74q-164 -179 -368 -179q-92 0 -143.5 45.5t-51.5 133.5q0 62 25 178l57 250q23 100 23 149q0 42 -17.5 57t-60.5 15 q-40 0 -86 -8l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -19 -35 -191l-67 -305q-17 -70 -17 -116q0 -57 24 -80t79 -23q131 0 297 148l139 653h166q-37 -178 -99 -497t-90 -455q-33 -166 -73 -262.5t-97 -153.5q-127 -127 -352 -127q-152 0 -223 49 q-47 29 -47 82zM547 1126l217 275q35 44 58 61t46 17q31 0 56.5 -23t25.5 -57q0 -27 -18.5 -50t-61.5 -59l-268 -219z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1150" d="M-12 -535l350 1598q33 162 33 217q0 39 -18.5 54.5t-61.5 15.5q-29 0 -84 -11l20 99q124 59 234 59q108 0 108 -100q0 -42 -18 -123q-78 -348 -117 -486q67 71 163.5 120.5t197.5 49.5q266 0 266 -294q0 -136 -40.5 -270t-127.5 -236q-152 -178 -424 -178q-104 0 -203 22 l-114 -537h-164zM303 156q65 -33 197 -33q168 0 274 141q48 64 75.5 160.5t27.5 181.5q0 96 -40 147.5t-135 51.5q-65 0 -140 -38t-142 -97z" />
+<glyph unicode="&#xff;" horiz-adv-x="1196" d="M80 -430q0 80 26 182h99q0 -41 2 -59q3 -50 31 -78q47 -43 141 -43q71 0 127 26.5t86 77.5q24 41 47 104.5t32.5 100t28.5 113.5q6 29 20.5 86t18.5 74q-164 -179 -368 -179q-92 0 -143.5 45.5t-51.5 133.5q0 62 25 178l57 250q23 100 23 149q0 42 -17.5 57t-60.5 15 q-40 0 -86 -8l20 96q55 30 116.5 45.5t102.5 15.5q59 0 89 -23.5t30 -80.5q0 -19 -35 -191l-67 -305q-17 -70 -17 -116q0 -57 24 -80t79 -23q131 0 297 148l139 653h166q-37 -178 -99 -497t-90 -455q-33 -166 -73 -262.5t-97 -153.5q-127 -127 -352 -127q-152 0 -223 49 q-47 29 -47 82zM457 1266q0 44 29 76t75 32q42 0 68 -27t26 -67q0 -48 -29.5 -81.5t-78.5 -33.5q-40 0 -65 28.5t-25 72.5zM776 1266q0 44 30 76t73 32t68.5 -26.5t25.5 -67.5q0 -48 -28.5 -81.5t-76.5 -33.5q-41 0 -66.5 28.5t-25.5 72.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="2015" d="M133 530q0 395 273 668q99 97 242.5 150t314.5 53q56 0 192.5 -8.5t196.5 -8.5h522q119 0 119 -79q0 -96 -37 -256h-101q0 69 -2 96q-5 55 -36 74q-22 15 -67 21.5t-157 6.5h-213l-90 -465h146q83 0 119 6.5t59 26.5q32 32 57 125h101q-39 -151 -86 -440h-95q2 18 2 55 q-5 81 -55 92q-39 8 -129 8h-143l-82 -417q-4 -32 -4 -43q0 -47 41 -52q53 -8 202 -8q233 0 308 60q44 37 112 170h96q-12 -88 -37 -174.5t-53 -131.5q-30 -59 -174 -59h-598q-43 0 -187 -6t-218 -6q-137 0 -242 42.5t-169 117.5t-96 171.5t-32 210.5zM328 555 q0 -191 98 -309.5t285 -118.5q224 0 268 66q15 22 39 120l145 744q17 83 17 114q0 58 -66 74q-73 15 -184 15q-120 0 -225.5 -45t-178.5 -128q-96 -104 -147 -246t-51 -286z" />
+<glyph unicode="&#x153;" horiz-adv-x="1624" d="M86 358q0 116 35.5 234t107.5 205q66 80 163.5 123t215.5 43q254 0 322 -201q63 92 164 146.5t219 54.5q139 0 207.5 -65t68.5 -159q0 -160 -152.5 -242.5t-475.5 -82.5q-5 -29 -5 -68q0 -98 55.5 -162.5t170.5 -64.5q149 0 334 114l51 -92q-98 -82 -202 -126t-239 -44 q-97 0 -178.5 49t-113.5 144q-57 -92 -150.5 -141.5t-206.5 -49.5q-181 0 -286 96.5t-105 288.5zM260 373q0 -258 238 -258q82 0 144.5 44t97.5 115.5t52 151t17 162.5q0 120 -53.5 177.5t-167.5 57.5q-152 0 -232 -110q-47 -65 -71.5 -156t-24.5 -184zM977 530 q232 6 341 58.5t109 134.5q0 52 -30 80t-107 28q-39 0 -90 -19t-88 -50q-46 -38 -79.5 -91.5t-55.5 -140.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="1275" d="M158 1282l20 104q230 -4 258 -4q61 0 269 4l-25 -104q-105 -3 -133 -12q-39 -10 -39 -51q0 -39 24 -97q110 -285 164 -430q310 398 342 438q58 72 58 109q0 15 -11.5 24.5t-36.5 13t-42.5 4.5t-49.5 1h-8l23 104q94 -4 278 -4q101 0 191 4l-23 -104q-53 -2 -98 -31 q-6 -3 -12.5 -9t-15 -14.5t-15.5 -16.5t-18 -21t-18.5 -21.5t-20 -24.5t-19.5 -24l-455 -555l-63 -315q-12 -62 -12 -88q0 -35 37 -43q39 -9 145 -15l-18 -106q-218 4 -281 4q-93 0 -281 -4l21 106q96 4 126 12t46 25q19 22 35 103l61 319l-223 553q-4 11 -10.5 26.5t-10 24 t-8 20t-7.5 17.5t-7 14.5t-7 13t-7 9.5t-7.5 8t-7.5 6q-34 24 -108 27zM569 1624q0 44 29 75.5t74 31.5q42 0 68 -26.5t26 -66.5q0 -49 -29 -82.5t-78 -33.5q-40 0 -65 29t-25 73zM924 1624q0 44 29.5 75.5t74.5 31.5q43 0 68.5 -26t25.5 -67q0 -49 -28.5 -82.5t-77.5 -33.5 q-41 0 -66.5 28.5t-25.5 73.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M20 1098l259 305q35 43 79 43q55 0 72 -41l148 -324l-70 -39l-170 232l-264 -232z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-8 1137q75 217 190 217q48 0 111 -29l47 -22q64 -27 86 -27q52 0 106 106l72 -22q-67 -223 -178 -223q-49 0 -127 37l-41 18q-51 22 -86 22q-32 0 -54 -22.5t-55 -81.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="935" />
+<glyph unicode="&#x2001;" horiz-adv-x="1870" />
+<glyph unicode="&#x2002;" horiz-adv-x="935" />
+<glyph unicode="&#x2003;" horiz-adv-x="1870" />
+<glyph unicode="&#x2004;" horiz-adv-x="623" />
+<glyph unicode="&#x2005;" horiz-adv-x="467" />
+<glyph unicode="&#x2006;" horiz-adv-x="311" />
+<glyph unicode="&#x2007;" horiz-adv-x="311" />
+<glyph unicode="&#x2008;" horiz-adv-x="233" />
+<glyph unicode="&#x2009;" horiz-adv-x="374" />
+<glyph unicode="&#x200a;" horiz-adv-x="103" />
+<glyph unicode="&#x2010;" horiz-adv-x="546" d="M53 430l29 143h426l-29 -143h-426z" />
+<glyph unicode="&#x2011;" horiz-adv-x="546" d="M53 430l29 143h426l-29 -143h-426z" />
+<glyph unicode="&#x2012;" horiz-adv-x="546" d="M53 430l29 143h426l-29 -143h-426z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1187" d="M72 436l26 133h1004l-27 -133h-1003z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M72 436l26 133h1497l-28 -133h-1495z" />
+<glyph unicode="&#x2018;" horiz-adv-x="413" d="M152 1055q0 248 366 407l35 -76q-112 -53 -170.5 -110.5t-58.5 -104.5q0 -46 38 -63q68 -31 68 -98q0 -51 -35.5 -85t-95.5 -34q-65 0 -106 46.5t-41 117.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="413" d="M94 961q112 52 171 109t59 104q0 45 -39 63q-68 35 -68 98q0 52 35.5 85.5t95.5 33.5q66 0 107 -46t41 -118t-30.5 -136.5t-84.5 -114t-115 -87t-135 -69.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="409" d="M-125 -283q112 52 169.5 108.5t57.5 104.5q0 46 -39 64q-67 33 -67 96q0 52 36 86.5t95 34.5q66 0 107.5 -46.5t41.5 -117.5q0 -252 -366 -407z" />
+<glyph unicode="&#x201c;" horiz-adv-x="782" d="M152 1055q0 248 366 407l35 -76q-112 -53 -170.5 -110.5t-58.5 -104.5q0 -46 38 -63q68 -31 68 -98q0 -51 -35.5 -85t-95.5 -34q-65 0 -106 46.5t-41 117.5zM520 1055q0 247 367 407l35 -76q-112 -53 -171 -110.5t-59 -104.5q0 -44 39 -63q70 -31 70 -98q0 -51 -36 -85 t-95 -34q-67 0 -108.5 46.5t-41.5 117.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="782" d="M94 961q112 52 171 109t59 104q0 45 -39 63q-68 35 -68 98q0 52 35.5 85.5t95.5 33.5q66 0 107 -46t41 -118t-30.5 -136.5t-84.5 -114t-115 -87t-135 -69.5zM463 961q112 52 171.5 109t59.5 104q0 44 -41 63q-67 34 -67 98q0 52 35.5 85.5t95.5 33.5q66 0 106.5 -46 t40.5 -118q0 -251 -364 -407z" />
+<glyph unicode="&#x201e;" horiz-adv-x="782" d="M-125 -283q112 52 169.5 108.5t57.5 104.5q0 46 -39 64q-67 33 -67 96q0 52 36 86.5t95 34.5q66 0 107.5 -46.5t41.5 -117.5q0 -252 -366 -407zM244 -283q112 52 170.5 108.5t58.5 104.5q0 45 -39 64q-67 31 -67 96q0 52 35.5 86.5t95.5 34.5q65 0 106 -46.5t41 -117.5 q0 -251 -364 -407z" />
+<glyph unicode="&#x2022;" horiz-adv-x="708" d="M104 549q0 120 78.5 207.5t202.5 87.5q117 0 191.5 -73.5t74.5 -188.5q0 -128 -79 -215.5t-205 -87.5q-115 0 -189 75.5t-74 194.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1726" d="M78 106q0 58 37 100t98 42q56 0 91.5 -34t35.5 -89q0 -62 -38 -103.5t-99 -41.5q-56 0 -90.5 34.5t-34.5 91.5zM651 106q0 58 37.5 100t97.5 42q56 0 91.5 -34t35.5 -89q0 -63 -38 -104t-101 -41q-54 0 -88.5 34.5t-34.5 91.5zM1227 106q0 58 38 100t99 42q56 0 91.5 -34 t35.5 -89q0 -63 -38 -104t-101 -41q-56 0 -90.5 34.5t-34.5 91.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="374" />
+<glyph unicode="&#x2039;" horiz-adv-x="561" d="M57 453q0 43 56 90l399 311l57 -70l-340 -329l205 -338l-78 -60l-276 332q-23 27 -23 64z" />
+<glyph unicode="&#x203a;" horiz-adv-x="561" d="M-6 129l340 330l-205 338l78 57l276 -332q25 -29 25 -61q0 -45 -57 -90l-400 -314z" />
+<glyph unicode="&#x205f;" horiz-adv-x="467" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1409" d="M166 504l16 96h144q6 78 24 150h-143l16 96h152q71 212 215 348q184 178 463 178q165 0 268 -45q43 -18 61.5 -46.5t18.5 -72.5q0 -31 -11.5 -102t-23.5 -115h-102q-9 142 -33 172q-47 68 -207 68q-186 0 -319 -139q-95 -101 -144 -246h494l-17 -96h-506 q-13 -63 -20 -150h502l-17 -96h-489q1 -198 91.5 -291.5t248.5 -93.5q189 0 260 67q46 40 98 158h105q-28 -156 -56 -217q-33 -74 -135 -111q-48 -17 -135 -31t-182 -14q-227 0 -354 134.5t-127 381.5v17h-156z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1519" d="M213 1208q10 94 14 119q4 27 17.5 42t48.5 15h446q52 0 52 -38q0 -25 -25 -138h-47q0 74 -19 88q-12 9 -35.5 11t-107.5 2l-78 -396q-6 -37 -6 -45q0 -7 2.5 -12t8.5 -8t11.5 -5t15.5 -3t16 -1.5l18 -1.5t18 -1l-12 -60q-39 2 -145 2q-105 0 -146 -2l12 60q64 2 80 14 q13 10 21 59l80 400q-126 0 -148 -11q-26 -17 -45 -90h-47zM745 776l13 60h2q24 1 34 1.5t22.5 4t15.5 5.5t8.5 12t7 17.5l5.5 27.5q1 4 1.5 7t1.5 7l2 8q20 91 35.5 166.5t22.5 109t10 45.5q8 31 8 47q0 11 -6.5 18t-22 9.5t-24.5 3t-31 0.5l12 59q57 -2 131 -2q61 0 88 2 q22 -100 42 -185.5t28.5 -122t13.5 -66.5q27 48 232 374q35 -2 110 -2q64 0 109 2l-12 -61q-62 -2 -74 -14q-12 -10 -21 -47q-5 -16 -63 -342q-6 -40 -6 -52t4.5 -17.5t17.5 -8.5q36 -6 62 -6l-13 -60q-41 2 -137 2q-86 0 -141 -2l14 60q61 5 72 16q10 10 18 49 q54 276 74 373q-36 -65 -240 -381q-16 -27 -43 -27q-34 0 -41 29q-62 262 -83 375q-8 -48 -36 -191.5t-32 -171.5q-4 -24 -4 -41q0 -22 20 -24q35 -6 66 -6l-12 -60q-37 2 -123 2q-91 0 -138 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="952" d="M0 0v952h952v-952h-952z" />
+<hkern u1="&#x20;" u2="&#x201c;" k="4" />
+<hkern u1="&#x20;" u2="&#x2018;" k="4" />
+<hkern u1="&#x20;" u2="&#xef;" k="61" />
+<hkern u1="&#x20;" u2="&#xee;" k="61" />
+<hkern u1="&#x20;" u2="&#xed;" k="61" />
+<hkern u1="&#x20;" u2="&#xec;" k="61" />
+<hkern u1="&#x20;" u2="i" k="61" />
+<hkern u1="&#x21;" u2="&#x2026;" k="-51" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-51" />
+<hkern u1="&#x21;" u2="]" k="-51" />
+<hkern u1="&#x21;" u2="&#x3a;" k="-41" />
+<hkern u1="&#x21;" u2="&#x2e;" k="-51" />
+<hkern u1="&#x21;" u2="&#x2c;" k="-51" />
+<hkern u1="&#x21;" u2="&#x29;" k="-51" />
+<hkern u1="&#x22;" g2="uniFB04" k="20" />
+<hkern u1="&#x22;" g2="uniFB03" k="20" />
+<hkern u1="&#x22;" g2="uniFB02" k="20" />
+<hkern u1="&#x22;" g2="uniFB01" k="20" />
+<hkern u1="&#x22;" u2="&#xdf;" k="20" />
+<hkern u1="&#x22;" u2="f" k="20" />
+<hkern u1="&#x22;" u2="&#x31;" k="184" />
+<hkern u1="&#x24;" u2="&#x33;" k="-41" />
+<hkern u1="&#x27;" u2="&#x31;" k="225" />
+<hkern u1="&#x28;" u2="W" k="-68" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="233" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="348" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="233" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="348" />
+<hkern u1="&#x2c;" u2="&#x38;" k="18" />
+<hkern u1="&#x2d;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2d;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="266" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="266" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2014;" k="41" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="41" />
+<hkern u1="&#x2e;" u2="&#x38;" k="23" />
+<hkern u1="&#x2e;" u2="&#x2d;" k="41" />
+<hkern u1="&#x2f;" g2="uniFB04" k="41" />
+<hkern u1="&#x2f;" g2="uniFB03" k="41" />
+<hkern u1="&#x2f;" g2="uniFB02" k="41" />
+<hkern u1="&#x2f;" g2="uniFB01" k="41" />
+<hkern u1="&#x2f;" u2="&#x153;" k="119" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-29" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="119" />
+<hkern u1="&#x2f;" u2="&#xef;" k="61" />
+<hkern u1="&#x2f;" u2="&#xee;" k="61" />
+<hkern u1="&#x2f;" u2="&#xed;" k="61" />
+<hkern u1="&#x2f;" u2="&#xec;" k="61" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="119" />
+<hkern u1="&#x2f;" u2="&#xea;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="100" />
+<hkern u1="&#x2f;" u2="&#xdf;" k="41" />
+<hkern u1="&#x2f;" u2="&#xde;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="82" />
+<hkern u1="&#x2f;" u2="q" k="100" />
+<hkern u1="&#x2f;" u2="o" k="119" />
+<hkern u1="&#x2f;" u2="l" k="-29" />
+<hkern u1="&#x2f;" u2="k" k="-29" />
+<hkern u1="&#x2f;" u2="i" k="61" />
+<hkern u1="&#x2f;" u2="h" k="-29" />
+<hkern u1="&#x2f;" u2="f" k="41" />
+<hkern u1="&#x2f;" u2="e" k="119" />
+<hkern u1="&#x2f;" u2="d" k="119" />
+<hkern u1="&#x2f;" u2="c" k="119" />
+<hkern u1="&#x2f;" u2="b" k="-29" />
+<hkern u1="&#x2f;" u2="a" k="100" />
+<hkern u1="&#x2f;" u2="V" k="-25" />
+<hkern u1="&#x2f;" u2="R" k="18" />
+<hkern u1="&#x2f;" u2="P" k="18" />
+<hkern u1="&#x2f;" u2="N" k="18" />
+<hkern u1="&#x2f;" u2="M" k="18" />
+<hkern u1="&#x2f;" u2="L" k="18" />
+<hkern u1="&#x2f;" u2="K" k="18" />
+<hkern u1="&#x2f;" u2="I" k="18" />
+<hkern u1="&#x2f;" u2="H" k="18" />
+<hkern u1="&#x2f;" u2="F" k="18" />
+<hkern u1="&#x2f;" u2="E" k="18" />
+<hkern u1="&#x2f;" u2="D" k="18" />
+<hkern u1="&#x2f;" u2="B" k="18" />
+<hkern u1="&#x2f;" u2="A" k="82" />
+<hkern u1="&#x2f;" u2="&#x35;" k="23" />
+<hkern u1="&#x30;" u2="&#x153;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-61" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-61" />
+<hkern u1="&#x30;" u2="&#xea;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-61" />
+<hkern u1="&#x30;" u2="o" k="-61" />
+<hkern u1="&#x30;" u2="e" k="-61" />
+<hkern u1="&#x30;" u2="d" k="-61" />
+<hkern u1="&#x30;" u2="c" k="-61" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-102" />
+<hkern u1="&#x30;" u2="&#x25;" k="-76" />
+<hkern u1="&#x31;" u2="&#x2026;" k="143" />
+<hkern u1="&#x31;" u2="&#x2f;" k="102" />
+<hkern u1="&#x31;" u2="&#x2e;" k="143" />
+<hkern u1="&#x31;" u2="&#x2c;" k="143" />
+<hkern u1="&#x31;" u2="&#x27;" k="287" />
+<hkern u1="&#x31;" u2="&#x22;" k="287" />
+<hkern u1="&#x32;" u2="&#x2026;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2e;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2c;" k="-102" />
+<hkern u1="&#x33;" g2="uniFB04" k="-78" />
+<hkern u1="&#x33;" g2="uniFB03" k="-78" />
+<hkern u1="&#x33;" g2="uniFB02" k="-78" />
+<hkern u1="&#x33;" g2="uniFB01" k="-78" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-78" />
+<hkern u1="&#x33;" u2="f" k="-78" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-102" />
+<hkern u1="&#x34;" u2="r" k="-102" />
+<hkern u1="&#x34;" u2="p" k="-102" />
+<hkern u1="&#x34;" u2="n" k="-102" />
+<hkern u1="&#x34;" u2="m" k="-102" />
+<hkern u1="&#x35;" u2="&#x2014;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2013;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2d;" k="-102" />
+<hkern u1="&#x37;" u2="&#x2026;" k="229" />
+<hkern u1="&#x37;" u2="&#x2e;" k="229" />
+<hkern u1="&#x37;" u2="&#x2c;" k="229" />
+<hkern u1="&#x38;" u2="&#x2026;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2014;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2013;" k="-61" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-14" />
+<hkern u1="&#x38;" u2="&#x2e;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2d;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2c;" k="-61" />
+<hkern u1="&#x3a;" u2="&#x31;" k="123" />
+<hkern u1="&#x3f;" u2="&#x2026;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2e;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="61" />
+<hkern u1="&#x3f;" u2="&#x20;" k="2" />
+<hkern u1="A" u2="b" k="80" />
+<hkern u1="A" u2="W" k="137" />
+<hkern u1="A" u2="&#x2f;" k="-51" />
+<hkern u1="A" u2="&#x21;" k="82" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="W" k="66" />
+<hkern u1="C" u2="&#xee;" k="31" />
+<hkern u1="C" u2="W" k="80" />
+<hkern u1="D" u2="&#xd0;" k="-25" />
+<hkern u1="D" u2="W" k="57" />
+<hkern u1="E" u2="W" k="59" />
+<hkern u1="F" u2="&#x2026;" k="154" />
+<hkern u1="F" u2="&#x178;" k="43" />
+<hkern u1="F" u2="&#x153;" k="80" />
+<hkern u1="F" u2="&#xff;" k="98" />
+<hkern u1="F" u2="&#xfe;" k="25" />
+<hkern u1="F" u2="&#xfd;" k="98" />
+<hkern u1="F" u2="&#xfc;" k="115" />
+<hkern u1="F" u2="&#xfb;" k="115" />
+<hkern u1="F" u2="&#xfa;" k="115" />
+<hkern u1="F" u2="&#xf9;" k="115" />
+<hkern u1="F" u2="&#xf8;" k="80" />
+<hkern u1="F" u2="&#xf6;" k="80" />
+<hkern u1="F" u2="&#xf5;" k="80" />
+<hkern u1="F" u2="&#xf4;" k="80" />
+<hkern u1="F" u2="&#xf3;" k="80" />
+<hkern u1="F" u2="&#xf2;" k="80" />
+<hkern u1="F" u2="&#xf1;" k="80" />
+<hkern u1="F" u2="&#xf0;" k="80" />
+<hkern u1="F" u2="&#xef;" k="2" />
+<hkern u1="F" u2="&#xee;" k="10" />
+<hkern u1="F" u2="&#xed;" k="53" />
+<hkern u1="F" u2="&#xec;" k="-12" />
+<hkern u1="F" u2="&#xeb;" k="80" />
+<hkern u1="F" u2="&#xea;" k="80" />
+<hkern u1="F" u2="&#xe9;" k="80" />
+<hkern u1="F" u2="&#xe8;" k="80" />
+<hkern u1="F" u2="&#xe7;" k="80" />
+<hkern u1="F" u2="&#xe6;" k="102" />
+<hkern u1="F" u2="&#xe5;" k="102" />
+<hkern u1="F" u2="&#xe4;" k="102" />
+<hkern u1="F" u2="&#xe3;" k="102" />
+<hkern u1="F" u2="&#xe2;" k="102" />
+<hkern u1="F" u2="&#xe1;" k="102" />
+<hkern u1="F" u2="&#xe0;" k="102" />
+<hkern u1="F" u2="&#xdd;" k="43" />
+<hkern u1="F" u2="&#xc6;" k="225" />
+<hkern u1="F" u2="&#xc5;" k="76" />
+<hkern u1="F" u2="&#xc4;" k="76" />
+<hkern u1="F" u2="&#xc3;" k="76" />
+<hkern u1="F" u2="&#xc2;" k="76" />
+<hkern u1="F" u2="&#xc1;" k="76" />
+<hkern u1="F" u2="&#xc0;" k="76" />
+<hkern u1="F" u2="z" k="102" />
+<hkern u1="F" u2="y" k="98" />
+<hkern u1="F" u2="x" k="125" />
+<hkern u1="F" u2="w" k="94" />
+<hkern u1="F" u2="v" k="98" />
+<hkern u1="F" u2="u" k="115" />
+<hkern u1="F" u2="t" k="63" />
+<hkern u1="F" u2="s" k="102" />
+<hkern u1="F" u2="r" k="80" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="80" />
+<hkern u1="F" u2="o" k="80" />
+<hkern u1="F" u2="n" k="80" />
+<hkern u1="F" u2="m" k="80" />
+<hkern u1="F" u2="l" k="25" />
+<hkern u1="F" u2="k" k="25" />
+<hkern u1="F" u2="j" k="23" />
+<hkern u1="F" u2="i" k="53" />
+<hkern u1="F" u2="h" k="25" />
+<hkern u1="F" u2="g" k="102" />
+<hkern u1="F" u2="e" k="80" />
+<hkern u1="F" u2="d" k="80" />
+<hkern u1="F" u2="c" k="80" />
+<hkern u1="F" u2="b" k="25" />
+<hkern u1="F" u2="a" k="102" />
+<hkern u1="F" u2="Y" k="43" />
+<hkern u1="F" u2="X" k="68" />
+<hkern u1="F" u2="J" k="20" />
+<hkern u1="F" u2="A" k="76" />
+<hkern u1="F" u2="&#x2f;" k="61" />
+<hkern u1="F" u2="&#x2e;" k="154" />
+<hkern u1="F" u2="&#x2c;" k="154" />
+<hkern u1="G" u2="&#xd0;" k="-27" />
+<hkern u1="G" u2="W" k="53" />
+<hkern u1="H" u2="&#xef;" k="-6" />
+<hkern u1="H" u2="&#xec;" k="-8" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="H" u2="&#x2f;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-6" />
+<hkern u1="I" u2="&#xec;" k="-33" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#x2f;" k="-20" />
+<hkern u1="J" u2="&#xef;" k="-12" />
+<hkern u1="J" u2="&#xec;" k="-74" />
+<hkern u1="J" u2="&#xd0;" k="-27" />
+<hkern u1="K" u2="&#xef;" k="18" />
+<hkern u1="K" u2="&#xec;" k="-45" />
+<hkern u1="K" u2="b" k="45" />
+<hkern u1="K" u2="W" k="76" />
+<hkern u1="L" u2="W" k="193" />
+<hkern u1="M" u2="&#xd0;" k="-27" />
+<hkern u1="N" u2="&#xef;" k="-66" />
+<hkern u1="N" u2="&#xec;" k="-66" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="N" u2="&#x2f;" k="-20" />
+<hkern u1="O" u2="&#xd0;" k="-25" />
+<hkern u1="O" u2="W" k="57" />
+<hkern u1="P" u2="&#xd0;" k="-20" />
+<hkern u1="P" u2="W" k="66" />
+<hkern u1="Q" u2="&#xd0;" k="-35" />
+<hkern u1="Q" u2="W" k="57" />
+<hkern u1="Q" u2="J" k="-246" />
+<hkern u1="Q" u2="&#x2c;" k="-184" />
+<hkern u1="R" u2="W" k="104" />
+<hkern u1="S" u2="W" k="74" />
+<hkern u1="T" u2="&#x2019;" k="-61" />
+<hkern u1="T" u2="&#xef;" k="2" />
+<hkern u1="T" u2="&#xee;" k="-4" />
+<hkern u1="T" u2="&#xec;" k="20" />
+<hkern u1="T" u2="&#x3f;" k="-25" />
+<hkern u1="T" u2="&#x3b;" k="76" />
+<hkern u1="T" u2="&#x3a;" k="104" />
+<hkern u1="T" u2="&#x21;" k="-8" />
+<hkern u1="U" u2="&#xef;" k="-12" />
+<hkern u1="U" u2="&#xec;" k="-74" />
+<hkern u1="U" u2="&#xd0;" k="-27" />
+<hkern u1="V" u2="&#xf6;" k="129" />
+<hkern u1="V" u2="&#xef;" k="-82" />
+<hkern u1="V" u2="&#xee;" k="27" />
+<hkern u1="V" u2="&#xec;" k="-78" />
+<hkern u1="V" u2="&#xe8;" k="109" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="88" />
+<hkern u1="W" u2="&#x201d;" k="-43" />
+<hkern u1="W" u2="&#x2019;" k="-49" />
+<hkern u1="W" u2="&#xff;" k="109" />
+<hkern u1="W" u2="&#xfd;" k="109" />
+<hkern u1="W" u2="&#xf6;" k="129" />
+<hkern u1="W" u2="&#xef;" k="-82" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="70" />
+<hkern u1="W" u2="&#xec;" k="-78" />
+<hkern u1="W" u2="&#xe8;" k="109" />
+<hkern u1="W" u2="y" k="109" />
+<hkern u1="W" u2="x" k="176" />
+<hkern u1="W" u2="w" k="152" />
+<hkern u1="W" u2="v" k="158" />
+<hkern u1="W" u2="t" k="102" />
+<hkern u1="W" u2="s" k="168" />
+<hkern u1="W" u2="j" k="66" />
+<hkern u1="W" u2="&#x3b;" k="102" />
+<hkern u1="W" u2="&#x3a;" k="88" />
+<hkern u1="X" u2="&#xef;" k="4" />
+<hkern u1="X" u2="&#xec;" k="-31" />
+<hkern u1="Y" u2="&#xef;" k="-80" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="66" />
+<hkern u1="Y" u2="&#xec;" k="-109" />
+<hkern u1="Y" u2="&#xe8;" k="115" />
+<hkern u1="Y" u2="W" k="27" />
+<hkern u1="Y" u2="&#x3b;" k="133" />
+<hkern u1="Y" u2="&#x3a;" k="123" />
+<hkern u1="Y" u2="&#x30;" k="-4" />
+<hkern u1="Y" u2="&#x21;" k="61" />
+<hkern u1="Z" u2="&#xef;" k="35" />
+<hkern u1="Z" u2="&#xec;" k="12" />
+<hkern u1="Z" u2="&#xd0;" k="-20" />
+<hkern u1="Z" u2="W" k="78" />
+<hkern u1="[" u2="W" k="-68" />
+<hkern u1="a" u2="&#x3f;" k="27" />
+<hkern u1="a" u2="&#x3b;" k="-16" />
+<hkern u1="a" u2="&#x2f;" k="-70" />
+<hkern u1="c" u2="&#x2019;" k="-20" />
+<hkern u1="c" u2="k" k="39" />
+<hkern u1="e" u2="&#x3a;" k="-20" />
+<hkern u1="f" u2="&#x2019;" k="-190" />
+<hkern u1="f" u2="&#xf2;" k="-14" />
+<hkern u1="f" u2="&#xf1;" k="-2" />
+<hkern u1="f" u2="&#xef;" k="-193" />
+<hkern u1="f" u2="&#xee;" k="-152" />
+<hkern u1="f" u2="&#xed;" k="-25" />
+<hkern u1="f" u2="&#xec;" k="-223" />
+<hkern u1="f" u2="&#xe8;" k="-25" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="W" k="-205" />
+<hkern u1="f" u2="&#x3f;" k="-199" />
+<hkern u1="f" u2="&#x3a;" k="-6" />
+<hkern u1="f" u2="&#x2f;" k="-20" />
+<hkern u1="f" u2="&#x2a;" k="-184" />
+<hkern u1="f" u2="&#x27;" k="-221" />
+<hkern u1="f" u2="&#x22;" k="-205" />
+<hkern u1="f" u2="&#x21;" k="-94" />
+<hkern u1="g" u2="y" k="16" />
+<hkern u1="g" u2="&#x3b;" k="-23" />
+<hkern u1="g" u2="&#x2c;" k="-96" />
+<hkern u1="h" u2="&#x3f;" k="27" />
+<hkern u1="h" u2="&#x3b;" k="-16" />
+<hkern u1="h" u2="&#x2f;" k="-70" />
+<hkern u1="i" u2="q" k="-14" />
+<hkern u1="k" u2="e" k="10" />
+<hkern u1="k" u2="&#x3a;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-47" />
+<hkern u1="m" u2="&#x3f;" k="27" />
+<hkern u1="m" u2="&#x3b;" k="-16" />
+<hkern u1="m" u2="&#x2f;" k="-70" />
+<hkern u1="n" u2="&#x3f;" k="27" />
+<hkern u1="n" u2="&#x3b;" k="-16" />
+<hkern u1="n" u2="&#x2f;" k="-70" />
+<hkern u1="q" u2="&#x2026;" k="72" />
+<hkern u1="q" u2="&#xff;" k="14" />
+<hkern u1="q" u2="&#xfd;" k="14" />
+<hkern u1="q" u2="&#xfc;" k="10" />
+<hkern u1="q" u2="&#xfb;" k="10" />
+<hkern u1="q" u2="&#xfa;" k="10" />
+<hkern u1="q" u2="&#xf9;" k="10" />
+<hkern u1="q" u2="&#xf1;" k="6" />
+<hkern u1="q" u2="&#x7d;" k="-8" />
+<hkern u1="q" u2="y" k="14" />
+<hkern u1="q" u2="x" k="35" />
+<hkern u1="q" u2="w" k="14" />
+<hkern u1="q" u2="v" k="14" />
+<hkern u1="q" u2="u" k="10" />
+<hkern u1="q" u2="r" k="6" />
+<hkern u1="q" u2="p" k="6" />
+<hkern u1="q" u2="n" k="6" />
+<hkern u1="q" u2="m" k="6" />
+<hkern u1="q" u2="j" k="-117" />
+<hkern u1="q" u2="]" k="-8" />
+<hkern u1="q" u2="&#x2e;" k="72" />
+<hkern u1="q" u2="&#x2c;" k="72" />
+<hkern u1="q" u2="&#x29;" k="-8" />
+<hkern u1="r" u2="&#x2019;" k="-27" />
+<hkern u1="r" u2="&#x3b;" k="-14" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="v" u2="&#x3b;" k="6" />
+<hkern u1="v" u2="&#x3a;" k="6" />
+<hkern u1="w" u2="&#x2019;" k="41" />
+<hkern u1="w" u2="&#x3b;" k="10" />
+<hkern u1="w" u2="&#x3a;" k="10" />
+<hkern u1="x" u2="&#x2026;" k="-61" />
+<hkern u1="x" u2="&#x153;" k="8" />
+<hkern u1="x" u2="&#xf8;" k="8" />
+<hkern u1="x" u2="&#xf6;" k="8" />
+<hkern u1="x" u2="&#xf5;" k="8" />
+<hkern u1="x" u2="&#xf4;" k="8" />
+<hkern u1="x" u2="&#xf3;" k="8" />
+<hkern u1="x" u2="&#xf2;" k="8" />
+<hkern u1="x" u2="&#xf0;" k="8" />
+<hkern u1="x" u2="&#xeb;" k="8" />
+<hkern u1="x" u2="&#xea;" k="8" />
+<hkern u1="x" u2="&#xe9;" k="8" />
+<hkern u1="x" u2="&#xe8;" k="8" />
+<hkern u1="x" u2="&#xe7;" k="8" />
+<hkern u1="x" u2="&#xe6;" k="2" />
+<hkern u1="x" u2="&#xe5;" k="2" />
+<hkern u1="x" u2="&#xe4;" k="2" />
+<hkern u1="x" u2="&#xe3;" k="2" />
+<hkern u1="x" u2="&#xe2;" k="2" />
+<hkern u1="x" u2="&#xe1;" k="2" />
+<hkern u1="x" u2="&#xe0;" k="2" />
+<hkern u1="x" u2="q" k="2" />
+<hkern u1="x" u2="o" k="8" />
+<hkern u1="x" u2="g" k="74" />
+<hkern u1="x" u2="e" k="8" />
+<hkern u1="x" u2="d" k="8" />
+<hkern u1="x" u2="c" k="8" />
+<hkern u1="x" u2="a" k="2" />
+<hkern u1="x" u2="&#x2e;" k="-61" />
+<hkern u1="x" u2="&#x2c;" k="-61" />
+<hkern u1="y" u2="&#xef;" k="16" />
+<hkern u1="y" u2="&#xee;" k="16" />
+<hkern u1="y" u2="&#xed;" k="16" />
+<hkern u1="y" u2="&#xec;" k="16" />
+<hkern u1="y" u2="i" k="16" />
+<hkern u1="y" u2="&#x3b;" k="6" />
+<hkern u1="y" u2="&#x3a;" k="6" />
+<hkern u1="&#x7b;" u2="W" k="-68" />
+<hkern u1="&#xa1;" u2="&#x178;" k="270" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="270" />
+<hkern u1="&#xa1;" u2="&#xc5;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc4;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc3;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc2;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc1;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc0;" k="61" />
+<hkern u1="&#xa1;" u2="Y" k="270" />
+<hkern u1="&#xa1;" u2="W" k="102" />
+<hkern u1="&#xa1;" u2="V" k="160" />
+<hkern u1="&#xa1;" u2="T" k="170" />
+<hkern u1="&#xa1;" u2="A" k="61" />
+<hkern u1="&#xa3;" u2="&#x35;" k="-25" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-45" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-72" />
+<hkern u1="&#xab;" u2="W" k="61" />
+<hkern u1="&#xbb;" u2="W" k="123" />
+<hkern u1="&#xbf;" u2="T" k="143" />
+<hkern u1="&#xbf;" u2="S" k="27" />
+<hkern u1="&#xc0;" u2="b" k="80" />
+<hkern u1="&#xc0;" u2="W" k="137" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc0;" u2="&#x21;" k="82" />
+<hkern u1="&#xc1;" u2="b" k="80" />
+<hkern u1="&#xc1;" u2="W" k="137" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc1;" u2="&#x21;" k="82" />
+<hkern u1="&#xc2;" u2="b" k="80" />
+<hkern u1="&#xc2;" u2="W" k="137" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc2;" u2="&#x21;" k="82" />
+<hkern u1="&#xc3;" u2="b" k="80" />
+<hkern u1="&#xc3;" u2="W" k="137" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc3;" u2="&#x21;" k="82" />
+<hkern u1="&#xc4;" u2="b" k="80" />
+<hkern u1="&#xc4;" u2="W" k="137" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc4;" u2="&#x21;" k="82" />
+<hkern u1="&#xc5;" u2="b" k="80" />
+<hkern u1="&#xc5;" u2="W" k="137" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc5;" u2="&#x21;" k="82" />
+<hkern u1="&#xc6;" u2="W" k="59" />
+<hkern u1="&#xc7;" u2="&#xee;" k="31" />
+<hkern u1="&#xc7;" u2="W" k="80" />
+<hkern u1="&#xc8;" u2="W" k="59" />
+<hkern u1="&#xc9;" u2="W" k="59" />
+<hkern u1="&#xca;" u2="W" k="59" />
+<hkern u1="&#xcb;" u2="W" k="59" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcc;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-6" />
+<hkern u1="&#xce;" u2="&#xec;" k="-8" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd0;" u2="W" k="57" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-6" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-8" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd1;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd2;" u2="W" k="57" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd3;" u2="W" k="57" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd4;" u2="W" k="57" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd5;" u2="W" k="57" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd6;" u2="W" k="57" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd8;" u2="W" k="57" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-74" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xda;" u2="&#xef;" k="-12" />
+<hkern u1="&#xda;" u2="&#xec;" k="-74" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-12" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-80" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="66" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-109" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="115" />
+<hkern u1="&#xdd;" u2="W" k="27" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="133" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="123" />
+<hkern u1="&#xdd;" u2="&#x30;" k="-4" />
+<hkern u1="&#xdd;" u2="&#x21;" k="61" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xde;" u2="W" k="57" />
+<hkern u1="&#xdf;" u2="&#x2026;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-61" />
+<hkern u1="&#xdf;" u2="&#x2e;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2c;" k="-41" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe7;" u2="&#x2019;" k="-20" />
+<hkern u1="&#xe7;" u2="k" k="39" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xec;" u2="q" k="-14" />
+<hkern u1="&#xed;" u2="q" k="-14" />
+<hkern u1="&#xee;" u2="q" k="-14" />
+<hkern u1="&#xef;" u2="q" k="-14" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xfd;" u2="&#x3b;" k="6" />
+<hkern u1="&#xfd;" u2="&#x3a;" k="6" />
+<hkern u1="&#xff;" u2="&#x3b;" k="6" />
+<hkern u1="&#xff;" u2="&#x3a;" k="6" />
+<hkern u1="&#x152;" u2="W" k="59" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-20" />
+<hkern u1="&#x178;" u2="&#xef;" k="-80" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="66" />
+<hkern u1="&#x178;" u2="&#xec;" k="-109" />
+<hkern u1="&#x178;" u2="&#xe8;" k="115" />
+<hkern u1="&#x178;" u2="W" k="27" />
+<hkern u1="&#x178;" u2="&#x3b;" k="133" />
+<hkern u1="&#x178;" u2="&#x3a;" k="123" />
+<hkern u1="&#x178;" u2="&#x30;" k="-4" />
+<hkern u1="&#x178;" u2="&#x21;" k="61" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2014;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2014;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2018;" u2="d" k="143" />
+<hkern u1="&#x2018;" u2="c" k="143" />
+<hkern u1="&#x2018;" u2="X" k="20" />
+<hkern u1="&#x2018;" u2="W" k="-49" />
+<hkern u1="&#x2018;" u2="J" k="-31" />
+<hkern u1="&#x2019;" u2="&#x20;" k="-29" />
+<hkern u1="&#x201a;" u2="W" k="246" />
+<hkern u1="&#x201c;" u2="d" k="143" />
+<hkern u1="&#x201c;" u2="W" k="-49" />
+<hkern u1="&#x201e;" u2="W" k="246" />
+<hkern u1="&#x2039;" u2="W" k="61" />
+<hkern u1="&#x203a;" u2="W" k="123" />
+<hkern u1="&#x20ac;" u2="&#x36;" k="-59" />
+<hkern g1="uniFB01" u2="q" k="-14" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-47" />
+<hkern g1="uniFB03" u2="q" k="-14" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-47" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="6" />
+<hkern g1="d" 	g2="w" 	k="18" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-45" />
+<hkern g1="d" 	g2="quoteright,quotedblright" 	k="41" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="g" 	k="25" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,ellipsis" 	k="-6" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="z" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="t" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-104" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-117" />
+<hkern g1="f" 	g2="x" 	k="37" />
+<hkern g1="f" 	g2="g" 	k="27" />
+<hkern g1="f" 	g2="comma,period,ellipsis" 	k="20" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-211" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-184" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-221" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-178" />
+<hkern g1="f" 	g2="z" 	k="20" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-59" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-102" />
+<hkern g1="f" 	g2="T" 	k="-186" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-184" />
+<hkern g1="f" 	g2="V" 	k="-207" />
+<hkern g1="f" 	g2="X" 	k="-147" />
+<hkern g1="f" 	g2="Z" 	k="-145" />
+<hkern g1="f" 	g2="j" 	k="-59" />
+<hkern g1="f" 	g2="s" 	k="4" />
+<hkern g1="f" 	g2="m,n,p,r,ntilde" 	k="-10" />
+<hkern g1="g" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="g" 	g2="w" 	k="-8" />
+<hkern g1="g" 	g2="x" 	k="12" />
+<hkern g1="g" 	g2="g" 	k="-8" />
+<hkern g1="g" 	g2="comma,period,ellipsis" 	k="12" />
+<hkern g1="g" 	g2="quoteleft,quotedblleft" 	k="2" />
+<hkern g1="g" 	g2="quoteright,quotedblright" 	k="-63" />
+<hkern g1="g" 	g2="parenright,bracketright,braceright" 	k="-139" />
+<hkern g1="g" 	g2="j" 	k="-53" />
+<hkern g1="g" 	g2="s" 	k="35" />
+<hkern g1="g" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="g" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-84" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="comma,period,ellipsis" 	k="-68" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="z" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="s" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="k" 	g2="w" 	k="8" />
+<hkern g1="k" 	g2="g" 	k="23" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="k" 	g2="t" 	k="16" />
+<hkern g1="k" 	g2="j" 	k="14" />
+<hkern g1="k" 	g2="s" 	k="8" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="10" />
+<hkern g1="k" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="g" 	k="12" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteright,quotedblright" 	k="-2" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-49" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-76" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotleft,guilsinglleft" 	k="-143" />
+<hkern g1="j" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="j" 	g2="w" 	k="8" />
+<hkern g1="j" 	g2="x" 	k="25" />
+<hkern g1="j" 	g2="comma,period,ellipsis" 	k="43" />
+<hkern g1="j" 	g2="s" 	k="14" />
+<hkern g1="j" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="x" 	k="4" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="66" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-106" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="s" 	k="18" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotleft,guilsinglleft" 	k="-102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="25" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="49" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="158" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="z" 	k="31" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-6" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="72" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="33" />
+<hkern g1="r" 	g2="w" 	k="29" />
+<hkern g1="r" 	g2="x" 	k="66" />
+<hkern g1="r" 	g2="g" 	k="92" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="156" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-41" />
+<hkern g1="r" 	g2="t" 	k="20" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="r" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
+<hkern g1="r" 	g2="j" 	k="43" />
+<hkern g1="r" 	g2="s" 	k="18" />
+<hkern g1="r" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="r" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="r" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="61" />
+<hkern g1="r" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="14" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="s" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="s" 	g2="z" 	k="14" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-86" />
+<hkern g1="s" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="s" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="s" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="t" 	g2="g" 	k="16" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="x" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="53" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="76" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="137" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="72" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="33" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-25" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="12" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="w" 	g2="w" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="94" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="127" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="w" 	g2="s" 	k="12" />
+<hkern g1="z" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="z" 	g2="g" 	k="12" />
+<hkern g1="z" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="z" 	g2="t" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="78" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="47" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="g" 	k="68" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="238" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="244" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="213" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotright,guilsinglright" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="168" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="70" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="145" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="25" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="66" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="s" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-61" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="x" 	k="41" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="150" />
+<hkern g1="B" 	g2="z" 	k="47" />
+<hkern g1="B" 	g2="V" 	k="66" />
+<hkern g1="B" 	g2="X" 	k="25" />
+<hkern g1="B" 	g2="Z" 	k="4" />
+<hkern g1="B" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-4" />
+<hkern g1="B" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-8" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="B" 	g2="AE" 	k="145" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="98" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="59" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-20" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="88" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="61" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="27" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="76" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="113" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="-33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="55" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="94" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="51" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="66" />
+<hkern g1="G" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="G" 	g2="g" 	k="10" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="111" />
+<hkern g1="G" 	g2="T" 	k="90" />
+<hkern g1="G" 	g2="V" 	k="102" />
+<hkern g1="G" 	g2="X" 	k="72" />
+<hkern g1="G" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="G" 	g2="S" 	k="6" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="G" 	g2="AE" 	k="123" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="b,h,k,l,thorn" 	k="-2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="27" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-63" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="X" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="s" 	k="14" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="49" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="25" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="166" />
+<hkern g1="K" 	g2="w" 	k="168" />
+<hkern g1="K" 	g2="x" 	k="25" />
+<hkern g1="K" 	g2="g" 	k="72" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-49" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="84" />
+<hkern g1="K" 	g2="z" 	k="72" />
+<hkern g1="K" 	g2="t" 	k="111" />
+<hkern g1="K" 	g2="guillemotright,guilsinglright" 	k="102" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="K" 	g2="T" 	k="80" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="80" />
+<hkern g1="K" 	g2="V" 	k="47" />
+<hkern g1="K" 	g2="X" 	k="39" />
+<hkern g1="K" 	g2="Z" 	k="41" />
+<hkern g1="K" 	g2="s" 	k="98" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="90" />
+<hkern g1="K" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="109" />
+<hkern g1="K" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="106" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="172" />
+<hkern g1="K" 	g2="J" 	k="4" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="K" 	g2="S" 	k="135" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="2" />
+<hkern g1="K" 	g2="AE" 	k="20" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="123" />
+<hkern g1="L" 	g2="w" 	k="115" />
+<hkern g1="L" 	g2="x" 	k="47" />
+<hkern g1="L" 	g2="g" 	k="88" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-66" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="281" />
+<hkern g1="L" 	g2="z" 	k="61" />
+<hkern g1="L" 	g2="t" 	k="102" />
+<hkern g1="L" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="96" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
+<hkern g1="L" 	g2="T" 	k="270" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="133" />
+<hkern g1="L" 	g2="V" 	k="233" />
+<hkern g1="L" 	g2="X" 	k="39" />
+<hkern g1="L" 	g2="Z" 	k="12" />
+<hkern g1="L" 	g2="s" 	k="41" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="86" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="L" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
+<hkern g1="L" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="98" />
+<hkern g1="L" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="L" 	g2="J" 	k="-25" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="98" />
+<hkern g1="L" 	g2="S" 	k="102" />
+<hkern g1="L" 	g2="AE" 	k="12" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="M" 	g2="w" 	k="20" />
+<hkern g1="M" 	g2="x" 	k="12" />
+<hkern g1="M" 	g2="g" 	k="31" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="M" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="M" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="M" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="57" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="b,h,k,l,thorn" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="x" 	k="18" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="g" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-184" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="72" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="59" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="90" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="125" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="P" 	g2="w" 	k="12" />
+<hkern g1="P" 	g2="x" 	k="76" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="P" 	g2="z" 	k="76" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="T" 	k="47" />
+<hkern g1="P" 	g2="V" 	k="39" />
+<hkern g1="P" 	g2="X" 	k="121" />
+<hkern g1="P" 	g2="Z" 	k="25" />
+<hkern g1="P" 	g2="s" 	k="23" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="P" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="P" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="90" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
+<hkern g1="P" 	g2="J" 	k="23" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-6" />
+<hkern g1="P" 	g2="S" 	k="12" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
+<hkern g1="P" 	g2="AE" 	k="205" />
+<hkern g1="R" 	g2="b,h,k,l,thorn" 	k="88" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="R" 	g2="w" 	k="72" />
+<hkern g1="R" 	g2="x" 	k="8" />
+<hkern g1="R" 	g2="g" 	k="66" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-94" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="R" 	g2="z" 	k="33" />
+<hkern g1="R" 	g2="t" 	k="66" />
+<hkern g1="R" 	g2="guillemotright,guilsinglright" 	k="8" />
+<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-10" />
+<hkern g1="R" 	g2="T" 	k="125" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="111" />
+<hkern g1="R" 	g2="V" 	k="119" />
+<hkern g1="R" 	g2="X" 	k="39" />
+<hkern g1="R" 	g2="Z" 	k="23" />
+<hkern g1="R" 	g2="j" 	k="37" />
+<hkern g1="R" 	g2="s" 	k="25" />
+<hkern g1="R" 	g2="m,n,p,r,ntilde" 	k="33" />
+<hkern g1="R" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="R" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="R" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="66" />
+<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="R" 	g2="J" 	k="-4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="R" 	g2="S" 	k="61" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="S" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="S" 	g2="z" 	k="25" />
+<hkern g1="S" 	g2="T" 	k="33" />
+<hkern g1="S" 	g2="V" 	k="61" />
+<hkern g1="S" 	g2="X" 	k="55" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="S" 	g2="AE" 	k="61" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="70" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="113" />
+<hkern g1="T" 	g2="w" 	k="102" />
+<hkern g1="T" 	g2="x" 	k="150" />
+<hkern g1="T" 	g2="g" 	k="199" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="172" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="T" 	g2="z" 	k="123" />
+<hkern g1="T" 	g2="t" 	k="123" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="6" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="129" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
+<hkern g1="T" 	g2="X" 	k="55" />
+<hkern g1="T" 	g2="j" 	k="111" />
+<hkern g1="T" 	g2="s" 	k="164" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="123" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="129" />
+<hkern g1="T" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="139" />
+<hkern g1="T" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="190" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="119" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="162" />
+<hkern g1="T" 	g2="AE" 	k="190" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="88" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="18" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="49" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="S" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="31" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="31" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="156" />
+<hkern g1="V,W" 	g2="w" 	k="131" />
+<hkern g1="V,W" 	g2="x" 	k="156" />
+<hkern g1="V,W" 	g2="g" 	k="211" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="238" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-80" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="27" />
+<hkern g1="V,W" 	g2="z" 	k="170" />
+<hkern g1="V,W" 	g2="t" 	k="123" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="47" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="49" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="X" 	k="25" />
+<hkern g1="V,W" 	g2="Z" 	k="41" />
+<hkern g1="V,W" 	g2="j" 	k="23" />
+<hkern g1="V,W" 	g2="s" 	k="147" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="139" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="V,W" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="121" />
+<hkern g1="V,W" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="154" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="V,W" 	g2="J" 	k="18" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V,W" 	g2="S" 	k="63" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="106" />
+<hkern g1="V,W" 	g2="AE" 	k="225" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="211" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="166" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-68" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="197" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="72" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="66" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="31" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="92" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="172" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="131" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="104" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="223" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="137" />
+<hkern g1="X" 	g2="w" 	k="129" />
+<hkern g1="X" 	g2="x" 	k="88" />
+<hkern g1="X" 	g2="g" 	k="84" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="39" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="X" 	g2="z" 	k="51" />
+<hkern g1="X" 	g2="t" 	k="88" />
+<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="102" />
+<hkern g1="X" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="X" 	g2="T" 	k="74" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="8" />
+<hkern g1="X" 	g2="V" 	k="27" />
+<hkern g1="X" 	g2="j" 	k="68" />
+<hkern g1="X" 	g2="s" 	k="88" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="109" />
+<hkern g1="X" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
+<hkern g1="X" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="102" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="106" />
+<hkern g1="X" 	g2="guillemotleft,guilsinglleft" 	k="180" />
+<hkern g1="X" 	g2="J" 	k="18" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="X" 	g2="S" 	k="111" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="47" />
+<hkern g1="Z" 	g2="w" 	k="76" />
+<hkern g1="Z" 	g2="g" 	k="8" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-133" />
+<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="94" />
+<hkern g1="Z" 	g2="t" 	k="82" />
+<hkern g1="Z" 	g2="guillemotright,guilsinglright" 	k="-43" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="Z" 	g2="T" 	k="12" />
+<hkern g1="Z" 	g2="V" 	k="35" />
+<hkern g1="Z" 	g2="X" 	k="41" />
+<hkern g1="Z" 	g2="s" 	k="61" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="45" />
+<hkern g1="Z" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="61" />
+<hkern g1="Z" 	g2="J" 	k="-6" />
+<hkern g1="Z" 	g2="S" 	k="35" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-2" />
+<hkern g1="Z" 	g2="AE" 	k="23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-45" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-119" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-76" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="252" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-25" />
+<hkern g1="guillemotright,guilsinglright" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="164" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-61" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-96" />
+<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-53" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-45" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-66" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-82" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="143" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="270" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="352" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="246" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="190" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="307" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-143" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="82" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-68" />
+<hkern g1="hyphen,endash,emdash" 	g2="t" 	k="-41" />
+<hkern g1="hyphen,endash,emdash" 	g2="s" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-12" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-66" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-25" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-125" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-225" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-162" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-41" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..d175febc5ec4a9d61e98163c202830ef853cedc8
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.woff
new file mode 100755
index 0000000000000000000000000000000000000000..5972d738342420aa3aad9dd62d64419ef5d71108
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaIta.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.eot
new file mode 100755
index 0000000000000000000000000000000000000000..31dd798e411511608bb2fc416fdd2ada2592aa39
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.svg
new file mode 100755
index 0000000000000000000000000000000000000000..81d0b9c7fde25e2b1cb1bf86efb4adf216452848
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.svg
@@ -0,0 +1,2056 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-lightregular" horiz-adv-x="1095" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1280" d="M63 807v80q80 18 115 41q26 17 36.5 43t16.5 90q24 221 156 334q56 46 142.5 74t185.5 28q149 0 223 -31q57 -20 57 -90q0 -66 -12 -168h-98q-12 116 -64 148q-39 24 -133 24q-74 0 -140 -26.5t-104 -77.5q-75 -90 -75 -289v-67h471q81 36 129 36q40 0 61 -25t21 -97 q0 -90 -3.5 -297t-3.5 -301q0 -88 17 -111q9 -14 37.5 -20.5t105.5 -12.5v-94q-180 4 -250 4q-119 0 -209 -4v94q73 6 104.5 12.5t41.5 18.5q18 18 18 110v420q0 68 -5.5 93t-22.5 40q-25 21 -133 21h-379v-549q0 -104 18 -131q12 -16 46 -23.5t145 -11.5v-94q-188 4 -252 4 q-68 0 -256 -4v94q75 4 106.5 12t42.5 23q14 19 14 100v580h-170z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1288" d="M63 807v80q80 18 115 41q27 18 38 44t15 89q7 123 43 201.5t105 138.5q53 45 137.5 70.5t177.5 25.5q102 0 191 -18q56 18 84 18q45 0 65.5 -22.5t20.5 -100.5q0 -24 -1 -211t-1 -274v-653q0 -93 16 -111q17 -23 143 -33v-94q-176 4 -249 4q-121 0 -211 -4v94 q75 6 106 13t41 20q16 19 16 108v654q0 201 -2 303q-3 110 -45 143q-58 47 -184 47q-178 0 -252 -104q-63 -86 -63 -264v-90q111 0 282 -7v-102q-135 -6 -282 -6v-549q0 -101 18 -131q11 -16 47 -23.5t146 -11.5v-94q-192 4 -254 4q-68 0 -256 -4v94q75 4 106.5 12t42.5 23 q14 19 14 100v580h-170z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1972" d="M63 807v80q80 18 115 41q27 18 38 44t15 89q16 193 118.5 300t289.5 107q102 0 154 -20q57 -20 57 -94q0 -48 -16 -158h-80q-7 74 -17 101.5t-32 39.5q-33 17 -95 17q-134 0 -186 -92q-55 -99 -55 -256v-91h401q101 0 131 35q5 5 8.5 12t5.5 19t3 20.5t3 28.5t3 31 q10 118 49 197.5t106 136.5q56 46 142.5 74t187.5 28q144 0 221 -31q58 -20 58 -90q0 -58 -13 -168h-98q-9 114 -64 148q-39 24 -133 24q-72 0 -138.5 -27.5t-104.5 -78.5q-74 -94 -74 -287v-67h469q81 36 127 36q41 0 61.5 -24t20.5 -94q0 -89 -2 -298.5t-2 -303.5 q0 -90 16 -111q11 -14 39 -20.5t104 -12.5v-94q-176 4 -249 4q-117 0 -207 -4v94q76 6 105 12t38 19q19 23 19 110v420q0 65 -6 89.5t-23 43.5q-21 21 -133 21h-377v-549q0 -107 16 -131q11 -16 47 -23.5t146 -11.5v-94q-188 4 -254 4t-258 -4v94q76 4 108 12t43 23 q15 20 15 100v580h-557v-549q0 -104 18 -131q11 -16 47 -23.5t150 -11.5v-94q-192 4 -258 4q-68 0 -256 -4v94q75 4 106.5 12t42.5 23q14 19 14 100v580h-170z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1980" d="M63 807v80q80 18 115 41q27 18 38 44t15 89q16 193 118.5 300t289.5 107q102 0 154 -20q57 -20 57 -94q0 -48 -16 -158h-80q-7 74 -17 102.5t-32 40.5q-29 15 -95 15q-134 0 -186 -92q-55 -99 -55 -258v-89h401q101 0 131 35q17 17 22 98v3t0.5 3t0.5 3.5v3.5 q10 125 45 203.5t102 136.5q55 45 138.5 70.5t176.5 25.5q102 0 191 -18q56 18 86 18q44 0 64 -22.5t20 -100.5q0 -24 -1 -212t-1 -275v-651q0 -93 16 -111q11 -13 41 -20t103 -13v-94q-180 4 -250 4q-119 0 -209 -4v94q123 10 143 33q19 27 19 108v654q0 201 -2 303 q-3 102 -45 141q-61 49 -187 49q-174 0 -248 -104q-63 -85 -63 -266v-88q109 0 280 -7v-102q-135 -6 -280 -6v-549q0 -107 16 -131q11 -16 46.5 -23.5t148.5 -11.5v-94q-188 4 -256 4q-66 0 -258 -4v94q76 4 108 12t43 23q15 20 15 100v580h-557v-549q0 -104 18 -131 q11 -16 47 -23.5t150 -11.5v-94q-192 4 -258 4q-68 0 -256 -4v94q75 4 106.5 12t42.5 23q14 19 14 100v580h-170z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="583" d="M207 104q0 55 36 92t87 37q55 0 90 -34t35 -88q0 -60 -33.5 -95.5t-89.5 -35.5q-53 0 -89 35t-36 89zM238 1315q0 54 25 85.5t75 31.5q96 0 96 -115q0 -49 -61 -881h-78q-57 797 -57 879z" />
+<glyph unicode="&#x22;" horiz-adv-x="620" d="M76 1358q0 51 20 74.5t66 23.5q47 0 65.5 -25t18.5 -73q0 -44 -49 -473h-76q-45 392 -45 473zM377 1358q0 51 20 74.5t66 23.5q47 0 65.5 -25t18.5 -73q0 -44 -49 -473h-76q-45 414 -45 473z" />
+<glyph unicode="#" horiz-adv-x="1138" d="M92 432v143h236l49 242h-199v146h223l82 409h90l-84 -409h263l84 409h84l-80 -409h204v-146h-231l-49 -242h188v-143h-217l-88 -459h-88l90 459h-264l-92 -459h-84l88 459h-205zM412 575h266l47 242h-264z" />
+<glyph unicode="$" horiz-adv-x="1116" d="M145 246q0 12 5 135h92q9 -85 29 -127.5t51 -71.5q55 -58 202 -67v501l-104 46q-248 105 -248 325q0 140 89 237.5t263 121.5v219h97v-211h12q147 0 254 -45q69 -29 69 -115q0 -62 -16 -188h-90q-7 86 -22 124t-42 60q-51 39 -165 45v-487l133 -56q243 -103 243 -323 q0 -158 -101 -253.5t-275 -113.5v-238h-97v234q-168 3 -272 55q-61 31 -84 76t-23 117zM324 1016q0 -76 41 -127.5t159 -102.5v443q-102 -14 -151 -73t-49 -140zM621 117q110 13 167.5 74t57.5 143q0 79 -43 132t-144 95l-38 17v-461z" />
+<glyph unicode="%" horiz-adv-x="1689" d="M66 930q0 211 84.5 324.5t238.5 113.5q163 0 234 -107.5t71 -312.5q0 -230 -86.5 -339t-228.5 -109q-162 0 -237.5 107t-75.5 323zM190 946q0 -184 48.5 -266t142.5 -82q92 0 140 88.5t48 253.5q0 176 -45.5 253t-140.5 77q-193 0 -193 -324zM512 18l592 1364l86 -34 l-592 -1368zM995 414q0 211 84.5 324.5t239.5 113.5q165 0 235 -107.5t70 -314.5q0 -117 -24 -205t-67.5 -139.5t-99 -76.5t-122.5 -25q-162 0 -239 107t-77 323zM1120 428q0 -184 48.5 -265t144.5 -81q92 0 139 87.5t47 252.5q0 177 -45 254.5t-139 77.5q-97 0 -146 -84 t-49 -242z" />
+<glyph unicode="&#x26;" horiz-adv-x="1529" d="M104 369q0 145 79 240.5t245 170.5q-100 162 -100 305q0 66 22.5 124.5t67 105t117 73.5t165.5 27q149 0 230.5 -75.5t81.5 -200.5q0 -131 -96 -220t-293 -174q59 -97 166.5 -217t216.5 -219q58 60 122 213q19 51 19 88q0 10 -3 18t-10 14t-14.5 10.5t-19.5 7t-21.5 4.5 t-24 3t-24 1.5t-25 1t-22.5 0.5v96q118 -4 229 -4q110 0 246 4v-96q-105 -3 -135 -33q-20 -20 -68 -129q-81 -177 -165 -270q56 -53 147.5 -95.5t175.5 -42.5q29 0 43 2v-116q-54 -4 -80 -4q-225 0 -387 139q-179 -148 -416 -148q-214 0 -341.5 113.5t-127.5 282.5zM264 395 q0 -124 87 -210.5t249 -86.5q171 0 293 103q-106 101 -224 239.5t-182 237.5q-122 -51 -172.5 -121t-50.5 -162zM475 1092q0 -115 94 -250q310 116 310 286q0 79 -48.5 124.5t-136.5 45.5q-115 0 -167 -59t-52 -147z" />
+<glyph unicode="'" horiz-adv-x="319" d="M76 1358q0 51 20 74.5t66 23.5q47 0 65.5 -25t18.5 -73q0 -44 -49 -473h-76q-45 392 -45 473z" />
+<glyph unicode="(" horiz-adv-x="628" d="M84 594q0 329 118.5 569t354.5 424l55 -57q-94 -95 -158.5 -181t-118.5 -198t-80 -249.5t-26 -307.5q0 -155 28.5 -291t83.5 -249t119.5 -204t151.5 -182l-51 -57q-225 162 -351 412t-126 571z" />
+<glyph unicode=")" horiz-adv-x="628" d="M14 1530l54 57q224 -162 349.5 -412t125.5 -569q0 -330 -118 -570.5t-353 -424.5l-56 59q94 94 157.5 180t117.5 197.5t80 250t26 308.5q0 154 -28.5 290t-82.5 248.5t-119.5 204t-152.5 181.5z" />
+<glyph unicode="*" horiz-adv-x="825" d="M80 1151q0 32 19 57t53 25q24 0 67 -23.5t172 -105.5q-51 194 -51 252q0 40 21 57t51 17q33 0 52 -16t19 -58q0 -53 -39 -252q112 74 158 98.5t76 24.5q31 0 49 -19t18 -53q0 -32 -15 -50.5t-54 -25.5q-115 -22 -221 -35q120 -100 157 -142.5t37 -80.5q0 -30 -24.5 -48.5 t-49.5 -18.5q-44 0 -71 45t-94 215q-45 -116 -73 -170.5t-49 -72t-50 -17.5q-22 0 -44 19.5t-22 49.5q0 34 39 82t158 144q-140 17 -217 32q-38 8 -55 23.5t-17 46.5z" />
+<glyph unicode="+" horiz-adv-x="1198" d="M139 569v129h398v439h122v-439h396v-129h-396v-436h-122v436h-398z" />
+<glyph unicode="," horiz-adv-x="440" d="M25 -303q198 127 198 250q0 52 -45 65q-42 14 -64 38t-22 73q0 46 36.5 78t88.5 32q71 0 112.5 -47.5t41.5 -130.5q0 -252 -305 -428z" />
+<glyph unicode="-" horiz-adv-x="540" d="M57 436v133h420v-133h-420z" />
+<glyph unicode="." horiz-adv-x="434" d="M92 104q0 55 36 92t87 37q55 0 91 -34t36 -88q0 -59 -35 -95t-90 -36q-53 0 -89 35t-36 89z" />
+<glyph unicode="/" horiz-adv-x="688" d="M39 -133l489 1630l105 -31l-490 -1632z" />
+<glyph unicode="0" d="M82 666q0 346 124.5 526t352.5 180q124 0 212.5 -44.5t141.5 -133.5t77 -211.5t24 -288.5q0 -157 -24 -281t-65.5 -206t-101 -136t-127.5 -77t-149 -23q-241 0 -353 170.5t-112 524.5zM236 694q0 -166 21 -283t62.5 -185.5t98 -99t133.5 -30.5q150 0 229.5 150t79.5 434 q0 209 -35 336t-100.5 180t-169.5 53q-158 0 -238.5 -142.5t-80.5 -412.5z" />
+<glyph unicode="1" d="M240 1223q90 56 260 133q49 18 82 18q31 0 46 -20t15 -68q0 -35 -1 -193.5t-1 -269.5v-594q0 -81 16 -102q18 -27 203 -35v-94q-172 4 -307 4q-105 0 -281 -4v94q178 9 199 33q21 21 21 104v598q0 227 -9 303q-5 52 -49 52q-41 0 -170 -39z" />
+<glyph unicode="2" d="M63 0v96q172 138 293 249t216 222t141.5 212t46.5 196q0 274 -264 274q-152 0 -213 -69q-29 -36 -43 -158h-82q-19 126 -19 160q0 51 20.5 81t73.5 56q104 53 283 53q199 0 302.5 -96t103.5 -279q0 -390 -631 -856q47 0 176.5 1t159.5 1q106 0 156 7.5t71 29.5 q31 33 59 129h82q-7 -141 -22 -233q-13 -76 -127 -76h-783z" />
+<glyph unicode="3" d="M125 150q0 73 14 169h88q8 -110 47 -149q66 -74 222 -74q162 0 242.5 72.5t80.5 200.5q0 111 -81 183.5t-249 82.5q-47 4 -145 4v111q108 5 141 10q135 21 207 96t72 174q0 44 -11 81t-36 70t-72.5 51.5t-112.5 18.5q-159 0 -215 -59q-32 -32 -47 -158h-84 q-14 86 -14 148q0 50 19.5 79t68.5 54q112 57 281 57q189 0 283 -88.5t94 -234.5q0 -123 -77.5 -213t-234.5 -127q179 -12 273 -99.5t94 -238.5q0 -191 -128 -295.5t-356 -104.5q-163 0 -268 43q-51 20 -73.5 52.5t-22.5 83.5z" />
+<glyph unicode="4" d="M80 365v84l575 856q24 37 49.5 53t63.5 16q74 0 74 -100q0 -46 -1 -148t-1 -137v-493h204v-129h-204v-121q0 -95 16 -121q20 -31 180 -41v-86q-168 4 -291 4q-75 0 -247 -4v86q160 14 178 41q18 26 18 123v117h-614zM238 489h456q0 361 8 693z" />
+<glyph unicode="5" d="M119 147q0 87 12 170h90q8 -111 45 -153q62 -70 215 -70q115 0 192.5 44t111.5 114.5t34 161.5q0 137 -80.5 221t-249.5 84q-55 0 -127 -21q-58 -16 -88 -16q-65 0 -65 72q0 27 4 77l47 508h662v-143h-560l-34 -377q113 33 221 33q192 0 308 -105.5t116 -312.5 q0 -212 -132.5 -337.5t-361.5 -125.5q-165 0 -264 43q-53 23 -74.5 53t-21.5 80z" />
+<glyph unicode="6" d="M113 584q0 396 146.5 592t414.5 196q127 0 198 -26q51 -18 73 -45t22 -76q0 -78 -15 -170h-88q-12 116 -45 149q-46 43 -155 43q-56 0 -105.5 -13t-101.5 -50t-90 -96.5t-65 -160t-34 -233.5q43 67 140 113.5t200 46.5q180 0 288 -112.5t108 -292.5q0 -114 -35 -206 t-96 -151t-140.5 -90t-171.5 -31q-206 0 -327 153.5t-121 459.5zM270 561q0 -108 4 -145q18 -148 89.5 -235t201.5 -87q129 0 207 84.5t78 241.5q0 150 -74.5 226.5t-206.5 76.5q-89 0 -169 -40.5t-130 -121.5z" />
+<glyph unicode="7" d="M90 1235q0 48 25.5 76t95.5 28h788v-88l-534 -1255q-19 -47 -64 -47q-34 0 -54.5 14t-20.5 41q0 18 10 43l502 1149h-332q-213 0 -244 -8q-35 -8 -50 -47t-26 -131h-82q-14 143 -14 225z" />
+<glyph unicode="8" d="M106 328q0 236 289 364q-133 77 -184 160.5t-51 175.5q0 151 107.5 247.5t297.5 96.5q184 0 282.5 -87.5t98.5 -235.5q0 -105 -61 -187t-195 -155q89 -39 148 -80t90.5 -87t44 -92.5t12.5 -107.5q0 -161 -122.5 -266t-323.5 -105q-196 0 -314.5 98t-118.5 261zM254 338 q0 -113 83 -179.5t208 -66.5q130 0 206 63.5t76 172.5q0 54 -19 95t-65.5 77.5t-103 66t-152.5 70.5q-131 -75 -182 -140.5t-51 -158.5zM311 1051q0 -86 64 -153.5t215 -135.5q209 128 209 276q0 98 -62.5 155.5t-171.5 57.5q-115 0 -184.5 -53.5t-69.5 -146.5z" />
+<glyph unicode="9" d="M94 899q0 113 35.5 204.5t97.5 149.5t142.5 88.5t173.5 30.5q208 0 323 -151t115 -459q0 -791 -551 -791q-90 0 -203 31q-49 15 -74.5 50t-25.5 83q0 79 10 164h90q8 -110 47 -152q45 -51 168 -51q353 0 383 561q-44 -65 -140 -111t-200 -46q-180 0 -285.5 109 t-105.5 290zM246 926q0 -149 72.5 -222t205.5 -73q90 0 169.5 39t129.5 118q0 109 -4 144q-41 317 -295 317q-127 0 -202.5 -83.5t-75.5 -239.5z" />
+<glyph unicode=":" horiz-adv-x="477" d="M135 104q0 55 36 92t87 37q55 0 91 -34t36 -88q0 -59 -35 -95t-90 -36q-53 0 -89 35t-36 89zM135 774q0 56 35.5 92.5t87.5 36.5q55 0 91 -34t36 -89q0 -60 -35 -95.5t-90 -35.5q-53 0 -89 35.5t-36 89.5z" />
+<glyph unicode=";" horiz-adv-x="479" d="M68 -303q198 129 198 250q0 52 -45 65q-42 14 -64 38t-22 73q0 46 36.5 78t88.5 32q71 0 112.5 -47.5t41.5 -130.5q0 -251 -305 -428zM135 774q0 56 35.5 92.5t87.5 36.5q55 0 91 -34t36 -89q0 -60 -35 -95.5t-90 -35.5q-53 0 -89 35.5t-36 89.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1198" d="M186 563v142l772 419v-147l-643 -342l643 -336v-154z" />
+<glyph unicode="=" horiz-adv-x="1198" d="M135 401v129h924v-129h-924zM135 758v127h924v-127h-924z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1198" d="M238 145v152l643 340l-643 334v153l768 -415v-138z" />
+<glyph unicode="?" horiz-adv-x="847" d="M125 1274q0 44 25.5 72.5t76.5 46.5q101 32 226 32q179 -1 269.5 -85.5t90.5 -243.5q0 -123 -70 -220.5t-241 -185.5q-61 -33 -72 -112q-7 -55 -10 -144h-80q-16 128 -16 203q0 51 29.5 84.5t88.5 64.5q207 109 207 295q0 31 -4 59t-17.5 60t-35 55t-59 38t-87.5 16 q-129 0 -172 -35q-38 -30 -41 -150h-90q-18 97 -18 150zM266 104q0 55 36 92t87 37q54 0 89.5 -34t35.5 -88q0 -59 -34 -95t-89 -36q-53 0 -89 35t-36 89z" />
+<glyph unicode="@" horiz-adv-x="1605" d="M74 418q0 172 60 329t167 277t266.5 191t347.5 71q135 0 244.5 -35t178 -90t115 -127.5t65 -143t18.5 -140.5q0 -184 -60.5 -312t-185.5 -239q-47 -41 -116 -72t-115 -31q-119 0 -119 109q0 35 2 45q-148 -154 -307 -154q-240 0 -240 281q0 113 60 245t157 216 q74 63 136.5 88.5t158.5 25.5q105 0 185 -49l30 68h101l-113 -420q-49 -177 -49 -279q0 -26 13.5 -39.5t33.5 -13.5q25 0 64.5 20.5t72.5 51.5q78 70 126 188.5t48 259.5q0 205 -141 328t-365 123q-205 0 -369 -100.5t-255.5 -278.5t-91.5 -401q0 -175 83.5 -309.5 t226 -205.5t320.5 -71q354 0 619 221l57 -76q-143 -126 -318.5 -191t-365.5 -65q-217 0 -386 86t-264 246.5t-95 372.5zM524 379q0 -172 148 -172q61 0 138 40.5t134 94.5q3 18 41 174l76 289q-81 43 -180 43q-105 0 -189 -76q-71 -65 -119.5 -177.5t-48.5 -215.5z" />
+<glyph unicode="A" horiz-adv-x="1435" d="M10 -2v96q110 6 144 33q19 13 32 40.5t47 119.5l396 1056q15 41 37.5 58.5t58.5 17.5q32 0 53 -16t35 -57l406 -1086q24 -66 38.5 -94t34.5 -43q29 -26 133 -29v-96q-144 4 -264 4q-132 0 -276 -4v96q103 5 141 15q47 11 47 47q0 42 -29 125l-83 221h-521l-78 -211 q-30 -88 -30 -131q0 -33 24 -45q24 -9 166 -21v-96q-132 4 -270 4q-116 0 -242 -4zM477 616h445q-196 527 -224 613q-60 -174 -221 -613z" />
+<glyph unicode="B" horiz-adv-x="1263" d="M76 -2v96q126 5 153 21q23 9 29 29.5t6 95.5v903q0 97 -14 117q-12 14 -44.5 20t-129.5 12v94h358q214 0 346 -16q153 -23 227 -102.5t74 -204.5q0 -122 -69.5 -206.5t-202.5 -117.5q173 -20 260.5 -109t87.5 -229q0 -231 -194 -335q-122 -68 -330 -68q-39 0 -143 2 t-158 2q-108 0 -256 -4zM416 186q0 -37 11.5 -50t45.5 -21q35 -6 145 -6q180 0 273.5 72.5t93.5 211.5q0 76 -36.5 136t-94.5 89q-54 28 -128.5 39t-203.5 11h-106v-482zM416 782h102q55 0 123 5.5t90 11.5q184 56 184 239q0 81 -44.5 135.5t-120.5 75.5q-78 19 -230 19 h-104v-486z" />
+<glyph unicode="C" horiz-adv-x="1372" d="M104 668q0 347 197 548t524 201q200 0 324 -47q51 -19 73.5 -47t22.5 -72q0 -94 -18 -213h-90q-10 143 -47 185q-30 30 -103.5 48.5t-177.5 18.5q-114 0 -212.5 -39.5t-173 -113.5t-117 -189.5t-42.5 -259.5q0 -122 28.5 -221t78.5 -167t119 -114t149 -67t170 -21 q97 0 169 21t107 51q42 36 84 170h91q-3 -133 -23 -209q-25 -86 -125 -115q-142 -45 -328 -45q-149 0 -273 46t-215 132.5t-141.5 219t-50.5 299.5z" />
+<glyph unicode="D" horiz-adv-x="1464" d="M76 0v94q89 4 125.5 10.5t48.5 20.5q9 12 11.5 34.5t2.5 86.5v891q0 93 -8 114q-10 21 -44 28t-136 13v92h332q311 0 457.5 -23.5t246.5 -86.5q129 -81 188.5 -217.5t59.5 -337.5q0 -411 -258 -594q-92 -65 -218.5 -95t-334.5 -30h-473zM416 201q0 -36 11.5 -49t45.5 -21 q59 -12 182 -12q264 0 403.5 150.5t139.5 439.5q0 181 -64 305t-182 182q-143 70 -401 70h-135v-1065z" />
+<glyph unicode="E" horiz-adv-x="1210" d="M76 0v94q145 8 170 33q12 12 15 38.5t3 92.5v879q0 103 -12 120q-10 15 -46 22t-130 13v92h856q71 0 97 -25t26 -73q0 -82 -15 -225h-90q-15 149 -51 174q-25 19 -76 25t-182 6h-225v-490h162q90 0 123.5 6.5t50.5 28.5q30 34 36 127h89q-3 -79 -3 -213q0 -95 3 -221h-82 q-10 88 -39 129q-16 21 -53.5 26t-129.5 5h-157v-453q0 -44 13 -63.5t44 -22.5q68 -8 195 -8q145 0 208.5 13t90.5 42q39 41 80 180h86q-3 -205 -35 -295q-9 -27 -50.5 -42t-105.5 -15h-866z" />
+<glyph unicode="F" horiz-adv-x="1175" d="M76 -2v96q91 6 126 13.5t48 21.5q9 9 11.5 33t2.5 96v879q0 103 -12 120q-10 15 -46 22t-130 13v92h876q72 0 96.5 -24t24.5 -74q0 -92 -14 -225h-90q-10 85 -22 122.5t-32 51.5q-26 18 -74.5 24.5t-174.5 6.5h-250v-512h188q86 0 119.5 7.5t52.5 29.5q31 40 37 127h88 q-2 -51 -2 -213q0 -140 2 -224h-82q-14 95 -39 131q-16 21 -52.5 26t-127.5 5h-184v-381q0 -98 22 -129q11 -16 60.5 -24t148.5 -15v-96q-176 4 -305 4q-94 0 -266 -4z" />
+<glyph unicode="G" horiz-adv-x="1452" d="M104 668q0 172 53.5 313t149.5 236.5t230 147.5t294 52q206 0 343 -49q96 -33 96 -119q0 -32 -6.5 -100.5t-14.5 -112.5h-92q-10 145 -47 185q-62 69 -289 69q-65 0 -125.5 -12t-116.5 -37t-104 -61t-87 -86t-66.5 -110.5t-42.5 -135.5t-15 -160q0 -122 28.5 -221.5 t78.5 -167t120 -113.5t150 -67t170 -21q205 0 272 54q19 17 19 90v166q0 54 -3.5 75t-15.5 31q-20 18 -174 25v98q177 -6 260 -6q120 0 222 6v-98q-59 -2 -86.5 -7.5t-38.5 -21.5q-13 -16 -13 -102v-263q0 -87 -71 -110q-182 -66 -404 -66q-148 0 -271.5 46t-213 133 t-139.5 220t-50 300z" />
+<glyph unicode="H" horiz-adv-x="1536" d="M76 -2v96q89 6 125.5 13t48.5 22q9 10 11.5 34t2.5 95v877q0 103 -14 122q-16 22 -174 35v94q28 -1 87 -2.5t101 -2.5t64 -1q14 0 278 6v-94q-94 -7 -130 -15.5t-46 -21.5q-14 -22 -14 -118v-355h702v353q0 103 -14 122q-19 22 -174 35v94l252 -6q14 0 278 6v-94 q-94 -7 -130 -15.5t-46 -21.5q-14 -19 -14 -118v-877q0 -72 2.5 -96t11.5 -33q21 -28 176 -37v-96q-176 4 -268 4q-90 0 -262 -4v96q89 6 125.5 13t48.5 22q9 10 11.5 34t2.5 95v408h-702v-406q0 -112 14 -129q21 -28 176 -37v-96q-176 4 -270 4q-88 0 -260 -4z" />
+<glyph unicode="I" horiz-adv-x="681" d="M76 -2v96q86 6 124 13.5t50 21.5q9 9 11.5 33t2.5 96v877q0 103 -14 122q-16 22 -174 35v94q234 -6 254 -6q12 0 276 6v-94q-94 -7 -130 -15.5t-46 -21.5q-14 -22 -14 -118v-877q0 -110 14 -127q20 -29 176 -39v-96q-176 4 -268 4q-90 0 -262 -4z" />
+<glyph unicode="J" horiz-adv-x="643" d="M-14 -227q199 104 237 250q31 127 31 315v797q0 103 -14 122q-15 22 -181 35v94q240 -6 260 -6q9 0 273 6v-94q-153 -11 -172 -37q-14 -22 -14 -118v-795q0 -267 -52 -389q-34 -80 -121.5 -153t-199.5 -122z" />
+<glyph unicode="K" horiz-adv-x="1353" d="M76 -2v96q130 9 150 15q16 6 24 16q9 12 11.5 36t2.5 95v881q0 104 -14 123t-174 32v94q28 -1 87 -2.5t101 -2.5t64 -1q20 0 284 6v-94q-96 -7 -134.5 -15t-47.5 -20q-14 -22 -14 -120v-881q0 -109 14 -129q22 -25 182 -33v-96q-176 4 -276 4q-88 0 -260 -4zM451 707 q157 144 428 436q65 73 65 108q0 19 -29 27t-114 14v94q92 -4 266 -4q148 0 238 4v-94q-3 0 -18.5 -1t-24 -1.5t-22 -2.5t-24 -5t-18.5 -8q-48 -21 -151 -127q-12 -12 -116.5 -117.5t-192.5 -194t-115 -112.5q106 -139 254 -308.5t221 -230.5q61 -50 116 -71q54 -21 119 -21 v-92q-31 -8 -100 -8q-62 0 -129.5 21t-114.5 59q-85 69 -255 273t-283 362z" />
+<glyph unicode="L" horiz-adv-x="1210" d="M76 0v94q145 8 170 33q12 12 15 37.5t3 93.5v881q0 102 -14 121q-19 22 -174 32v94q234 -6 254 -6q26 0 284 6v-94q-166 -13 -184 -37q-14 -22 -14 -118v-926q0 -44 13 -62.5t44 -23.5q71 -8 195 -8q145 0 207.5 13t89.5 42q44 47 82 186h83q-1 -89 -12 -173.5 t-26 -127.5q-18 -57 -152 -57h-864z" />
+<glyph unicode="M" horiz-adv-x="1792" d="M72 -2v94q136 6 161 31q15 15 21.5 51.5t7.5 118.5q4 199 7 370.5t5 254t3 146.5t1.5 87t0.5 35q0 63 -15 78q-14 12 -47 18t-131 10v94q92 -4 227 -4q125 0 162 4q323 -732 414 -968q77 191 432 968q110 -4 186 -4q136 0 197 4v-94q-97 -4 -133 -11.5t-47 -23.5 q-17 -22 -17 -112q0 -102 4 -860q0 -132 17 -152q14 -17 46.5 -25.5t137.5 -15.5v-94q-188 4 -266 4q-39 0 -277 -4v94q152 7 177 39q12 18 12 102q0 824 2 963q-66 -177 -426 -948q-11 -25 -25.5 -35t-42.5 -10q-44 0 -63 47q-329 759 -410 950q-6 -867 -6 -985 q0 -74 23 -94q13 -13 42.5 -18t129.5 -11v-94q-172 4 -238 4q-68 0 -272 -4z" />
+<glyph unicode="N" horiz-adv-x="1503" d="M66 1292v94q90 -4 221 -4q75 0 147 4q617 -915 748 -1132q-5 154 -9 487.5t-4 337.5q-5 150 -18 174q-17 31 -174 39v94q200 -4 258 -4q30 0 248 4v-94q-87 -6 -119.5 -13t-48.5 -22q-12 -14 -16.5 -49t-4.5 -129q-2 -195 -2 -692q0 -49 1 -170.5t1 -159.5q0 -73 -71 -73 q-49 0 -76 45q-255 390 -437 666t-238 360.5t-85 130.5q1 -121 3 -330.5t4.5 -369t2.5 -183.5q0 -95 3.5 -128t15.5 -46q12 -15 49.5 -23t128.5 -14v-94q-222 4 -264 4q-54 0 -262 -4v94q166 8 186 41q4 6 6 14.5t3 25.5t1.5 30.5t1.5 46.5t2 57q4 102 4 772q0 133 -14 158 q-17 33 -63 43q-62 12 -129 12z" />
+<glyph unicode="O" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q321 0 474.5 -183.5t153.5 -516.5q0 -185 -49.5 -329t-137 -233.5t-203 -135.5t-251.5 -46q-160 0 -283 52t-201 147.5t-117.5 225.5t-39.5 290zM264 715q0 -617 486 -617q228 0 351.5 156t123.5 446q0 305 -118.5 447.5t-354.5 142.5 q-235 0 -361.5 -155t-126.5 -420z" />
+<glyph unicode="P" horiz-adv-x="1171" d="M76 -2v96q142 10 170 31q12 10 15 33t3 96v883q0 63 -3 86.5t-13 33.5q-26 23 -172 35v92h358q248 0 352 -16q166 -28 243 -124.5t77 -239.5q0 -443 -561 -443q-84 0 -129 2v-307q0 -107 14 -127q22 -25 180 -35v-96q-176 4 -280 4q-74 0 -254 -4zM416 674q17 0 50 -1 t48 -1q49 0 88 2.5t85.5 10t81.5 21.5t69.5 38.5t56.5 57.5t35.5 82.5t13.5 110.5q0 108 -53 173t-143 85q-90 17 -222 17h-110v-596z" />
+<glyph unicode="Q" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q321 0 474.5 -183.5t153.5 -516.5q0 -307 -131 -492t-348 -233q128 -112 269 -172q134 -60 325 -60q39 0 55 2v-96q-56 -10 -145 -10q-200 0 -324 51q-97 39 -180.5 95.5t-224.5 172.5q-285 20 -431.5 211t-146.5 502zM264 715 q0 -617 486 -617q228 0 351.5 156t123.5 446q0 305 -118.5 447.5t-354.5 142.5q-235 0 -361.5 -155t-126.5 -420z" />
+<glyph unicode="R" horiz-adv-x="1329" d="M76 -2v96q141 11 170 33q12 10 15 31.5t3 93.5v893q0 58 -3 80t-13 32q-11 12 -47.5 20t-124.5 15v92h358q240 0 350 -20q153 -29 227 -117t74 -225q0 -160 -85.5 -257t-233.5 -136q138 -212 202 -300t128 -143q61 -51 110 -71q44 -18 97 -21v-94q-24 -4 -72 -4 q-137 0 -242 84q-81 64 -159 176t-220 348q-25 -2 -73 -2q-43 0 -121 4v-350q0 -105 14 -125q23 -26 176 -37v-96q-180 4 -276 4q-74 0 -254 -4zM416 715q17 0 55.5 -1t52.5 -1q65 0 118 6.5t107 26.5t90.5 52t59.5 87t23 129q0 63 -21 109t-55 74t-87.5 44.5t-109 22.5 t-127.5 6h-106v-555z" />
+<glyph unicode="S" horiz-adv-x="1132" d="M125 240q0 56 6 133h88q14 -91 35 -133.5t53 -71.5q35 -33 105 -52.5t163 -19.5q147 0 225.5 67.5t78.5 164.5q0 86 -44.5 139t-160.5 104l-254 111q-258 110 -258 346q0 82 29 150.5t86.5 122.5t152.5 84t219 30q162 0 271 -49q71 -29 71 -121q0 -68 -14 -201h-86 q-14 98 -29 140.5t-39 62.5q-54 43 -217 43q-147 0 -219 -66.5t-72 -166.5q0 -83 49 -140t185 -114l229 -94q140 -57 199 -143t59 -199q0 -187 -130 -291.5t-351 -104.5q-91 0 -176 16t-137 44q-69 35 -93 82t-24 127z" />
+<glyph unicode="T" horiz-adv-x="1318" d="M78 1280q0 52 23.5 78t95.5 26h921q72 0 97.5 -25t25.5 -75q0 -94 -10 -237h-84q-18 164 -57 192q-28 20 -85.5 25.5t-269.5 5.5v-1004q0 -108 13 -131q8 -16 45 -25t139 -16v-96q-160 4 -258 4q-117 0 -281 -4v96q99 7 133 15t45 24q13 17 13 129v1008q-211 0 -268 -5.5 t-85 -25.5q-41 -26 -59 -192h-84q-10 143 -10 233z" />
+<glyph unicode="U" horiz-adv-x="1542" d="M57 1292v94q160 -4 271 -4q108 0 268 4v-94q-96 -6 -132 -14t-48 -23q-14 -19 -17 -110q-4 -145 -4 -512q0 -265 35 -357q69 -178 358 -178q109 0 199.5 36t126.5 97q39 64 53.5 164t14.5 258q0 256 -8 480q-1 68 -6 94t-17 35q-26 18 -168 30v94q76 -2 250 -2 q21 0 118.5 1t135.5 1v-94q-164 -10 -178 -45q-11 -28 -11 -131v-500q0 -194 -24.5 -305t-83.5 -182q-127 -160 -434 -160q-158 0 -273.5 51t-167.5 138q-40 68 -56.5 166t-16.5 303q0 97 2 276.5t2 233.5q0 86 -13 112q-11 19 -49.5 29t-126.5 14z" />
+<glyph unicode="V" horiz-adv-x="1433" d="M10 1292v94q140 -4 277 -4q120 0 264 4v-94q-134 -7 -141 -8q-48 -9 -48 -49q0 -32 31 -127q124 -351 227.5 -632.5t114.5 -313.5q82 236 332 938q31 95 31 133q0 32 -25 43q-22 10 -166 16v94q132 -4 258 -4q132 0 258 4v-94q-110 -3 -145 -30q-17 -13 -31.5 -42.5 t-42.5 -107.5l-399 -1079q-24 -68 -90 -68q-35 0 -57 15.5t-35 52.5l-406 1100q-24 65 -39 93.5t-35 43.5q-20 17 -133 22z" />
+<glyph unicode="W" horiz-adv-x="1986" d="M35 1292v94q48 -1 107 -2t92.5 -1.5t58.5 -0.5q176 0 258 4v-94q-42 0 -73.5 -3t-52 -8t-33.5 -11t-19.5 -15.5t-8.5 -18.5t-2 -22q0 -32 15 -94q202 -861 217 -932q58 214 334 1127q24 76 88 76q24 0 39.5 -6t27 -22t19.5 -44q257 -879 321 -1133q56 267 213 916 q15 61 15 108q0 18 -2.5 27.5t-12 20.5t-30.5 16.5t-57.5 10.5t-92.5 7v94q200 -4 264 -4q82 0 234 4v-94q-7 -1 -23.5 -2.5t-23 -2t-19.5 -2.5t-19.5 -4t-15.5 -5.5t-15.5 -8t-12.5 -10.5q-12 -12 -22 -35t-16 -44t-15 -56l-273 -1079q-9 -38 -32.5 -58t-57.5 -20 t-56.5 16.5t-33.5 57.5q-242 827 -320 1130q-97 -363 -335 -1126q-24 -78 -93 -78q-72 0 -90 74l-264 1089q-9 38 -14.5 57.5t-15 41t-20 31t-29.5 18.5t-43 12t-60 4z" />
+<glyph unicode="X" horiz-adv-x="1423" d="M27 -2v96q118 0 151 27q39 29 88 98l357 498l-328 463q-50 70 -88 92q-27 16 -125 20v94q125 -4 285 -4q206 0 274 4v-94q-76 -3 -114 -10t-49 -17.5t-11 -29.5q0 -31 35 -80l237 -340l219 313q20 27 35 59.5t15 49.5q0 18 -11 27.5t-47 16.5t-108 11v94q66 -4 266 -4 q160 0 238 4v-94q-62 -2 -88 -6.5t-46 -19.5q-27 -18 -92 -109l-317 -430l362 -516q46 -63 82 -90q35 -27 148 -27v-96q-274 4 -281 4q-20 0 -274 -4v96q101 4 133.5 16t32.5 40q0 20 -35 69l-279 404l-256 -375q-47 -71 -47 -98q0 -31 37 -43t141 -13v-96q-230 4 -288 4 q-127 0 -252 -4z" />
+<glyph unicode="Y" horiz-adv-x="1253" d="M8 1292v94q234 -4 246 -4q46 0 254 4v-94q-75 -2 -113 -10t-46.5 -17.5t-8.5 -27.5q0 -27 45 -104q149 -254 260 -457q169 292 273 467q40 64 40 102q0 25 -33 35.5t-130 11.5v94q98 -4 256 -4q106 0 192 4v-94q-57 -3 -96 -30q-27 -21 -90 -119l-357 -572v-340 q0 -82 9 -100t44.5 -25.5t139.5 -11.5v-96q-218 4 -258 4q-73 0 -273 -4v96q101 4 132.5 10.5t40.5 22.5q12 19 12 104v338l-334 557q-11 18 -26.5 45t-21.5 37.5t-15.5 24t-16 20t-14.5 11.5q-36 23 -111 28z" />
+<glyph unicode="Z" horiz-adv-x="1241" d="M68 0v57l845 1211q-359 0 -463.5 -3.5t-136.5 -13.5q-31 -9 -46.5 -51.5t-26.5 -142.5h-93q-16 156 -16 233q0 94 133 94h875v-55l-844 -1206q78 -4 309 -4q200 0 273.5 9.5t105.5 33.5q30 22 51.5 70t44.5 126h90q-7 -181 -28 -288q-14 -70 -127 -70h-946z" />
+<glyph unicode="[" horiz-adv-x="604" d="M195 -348v1894h376v-92h-243v-1710h243v-92h-376z" />
+<glyph unicode="\" horiz-adv-x="688" d="M61 1466l105 33l491 -1632l-106 -33z" />
+<glyph unicode="]" horiz-adv-x="604" d="M33 -256h246v1710h-246v92h377v-1894h-377v92z" />
+<glyph unicode="^" horiz-adv-x="1198" d="M215 758l322 688h133l309 -688h-133l-248 542l-248 -542h-135z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-4 -164h1014v-115h-1014v115z" />
+<glyph unicode="`" horiz-adv-x="604" d="M123 1427q0 27 24.5 47.5t51.5 20.5t47 -17t53 -69l180 -287l-57 -47l-236 242q-34 36 -48.5 60t-14.5 50z" />
+<glyph unicode="a" horiz-adv-x="1044" d="M100 256q0 48 12 86t43.5 73t82 58t131.5 37t188 14q98 0 131 -4v96q0 123 -29 168q-42 66 -184 66q-109 0 -158 -43q-35 -28 -41 -145h-88q-18 97 -18 151q0 44 25.5 72.5t76.5 46.5q101 37 232 37q195 0 264 -82q31 -36 43 -85.5t12 -135.5q0 -21 -1 -218t-1 -208 q0 -82 20.5 -111t71.5 -29q29 0 82 11v-95q-66 -32 -149 -32q-118 0 -144 118q-113 -125 -286 -125q-83 0 -152.5 28.5t-116.5 93.5t-47 157zM244 268q0 -89 58 -130.5t140 -41.5q70 0 135 25.5t111 62.5v232q-74 4 -139 4q-89 0 -151 -11.5t-94.5 -33.5t-46 -47.5 t-13.5 -59.5z" />
+<glyph unicode="b" horiz-adv-x="1148" d="M37 1352v86q108 59 207 59q51 0 74.5 -28t23.5 -113q0 -287 -2 -527q64 60 153.5 100t184.5 40q185 0 279 -132.5t94 -355.5q0 -229 -127.5 -368.5t-364.5 -139.5q-204 0 -356 70q2 96 2 264v764q0 231 -27 262q-21 23 -80 23q-11 0 -61 -4zM342 135q74 -39 231 -39 q161 0 245.5 102.5t84.5 272.5q0 58 -8 108.5t-28.5 99t-52.5 83t-84 55.5t-118 21q-143 0 -270 -93v-610z" />
+<glyph unicode="c" horiz-adv-x="976" d="M100 455q0 234 132 374t360 140q104 0 176 -19q53 -14 77.5 -42.5t24.5 -80.5q0 -69 -16 -157h-90q-11 112 -50.5 147t-146.5 35q-155 0 -240 -104t-85 -285q0 -163 82.5 -263t240.5 -100q89 0 159.5 28t141.5 83l58 -84q-75 -72 -176.5 -114t-215.5 -42 q-194 0 -313 129.5t-119 354.5z" />
+<glyph unicode="d" horiz-adv-x="1191" d="M100 442q0 114 32 209.5t93.5 166.5t159.5 111t223 40q49 0 116 -11.5t112 -37.5q0 178 -2 266q-3 112 -27 145q-22 25 -84 25q-23 0 -55 -4v86q105 59 206 59q51 0 76 -27.5t25 -107.5q0 -21 -1 -212.5t-1 -275.5v-651q0 -69 19 -96t67 -27q36 0 82 11v-95 q-68 -32 -154 -32q-116 0 -137 116q-54 -62 -136.5 -93.5t-178.5 -31.5q-199 0 -317 132t-118 335zM242 463q0 -168 90 -266.5t233 -98.5q72 0 149.5 25t121.5 61v613q-37 22 -106.5 37.5t-133.5 15.5q-163 0 -258.5 -102t-95.5 -285z" />
+<glyph unicode="e" horiz-adv-x="1017" d="M100 455q0 125 36 224t99.5 161.5t147 95.5t182.5 33q81 0 145 -21t104.5 -55.5t67 -82t37.5 -98t11 -106.5q0 -88 -25 -110q-19 -17 -84 -17h-577v-33q0 -154 84.5 -250t249.5 -96q90 0 164 30t151 87l59 -90q-177 -156 -397 -156q-113 0 -201 38t-143 104.5t-83 153.5 t-28 188zM252 584l539 6v20q0 113 -56 177.5t-190 64.5q-114 0 -196.5 -69.5t-96.5 -198.5z" />
+<glyph unicode="f" horiz-adv-x="663" d="M63 807v80q80 18 115 41q28 18 39 44t14 89q15 251 134 350q102 86 258 86q85 0 147 -22q57 -21 57 -95q0 -44 -14 -163h-88q-9 108 -33.5 136.5t-111.5 28.5q-52 0 -96 -25t-68 -71q-47 -92 -47 -272v-92q156 0 258 -4v-105q-135 -6 -258 -6v-549q0 -104 18 -131 q11 -16 47 -23.5t150 -11.5v-94q-192 4 -258 4q-68 0 -256 -4v94q75 4 106.5 12t42.5 23q14 19 14 100v580h-170z" />
+<glyph unicode="g" horiz-adv-x="1050" d="M37 -276q0 108 90 184q74 63 147 96q-96 41 -96 125q0 85 119 164q-195 95 -195 309q0 163 108.5 265t283.5 102q143 0 227 -47q205 0 287 -7v-102q-117 -6 -185 -6q28 -27 44 -83.5t16 -105.5q0 -174 -111 -269t-285 -95q-76 0 -106 6q-42 -28 -58 -48t-16 -46 q0 -16 19.5 -31.5t56.5 -25.5q52 -15 195.5 -39t177.5 -31q129 -26 186 -88.5t57 -167.5q0 -156 -137 -252t-358 -96q-220 0 -343.5 81.5t-123.5 207.5zM176 -256q0 -76 86 -132t254 -56q94 0 163 19.5t105 51.5t52 66t16 71q0 27 -8.5 47t-33 42t-75 39t-127.5 30 q-193 31 -248 47q-101 -58 -142.5 -111t-41.5 -114zM242 621q0 -131 69.5 -190.5t184.5 -59.5q110 0 179.5 58.5t69.5 170.5q0 252 -253 252q-120 0 -185 -65t-65 -166z" />
+<glyph unicode="h" horiz-adv-x="1193" d="M53 1352v86q108 59 209 59q51 0 75.5 -28.5t24.5 -112.5q0 -58 -2 -232t-2 -305q70 68 169 108t202 40q57 0 107 -19t79 -49q34 -39 49 -101.5t15 -168.5v-396q0 -76 12 -100q10 -16 41 -25t115 -16v-94q-172 4 -232 4q-49 0 -225 -4v94q67 6 96.5 13.5t38.5 21.5 q19 23 19 111v364q0 119 -33 168q-43 59 -158 59q-73 0 -155.5 -24t-137.5 -64v-505q0 -92 17 -111q9 -12 36 -19t101 -14v-94q-176 4 -246 4q-119 0 -209 -4v94q80 8 109 14t39 19q16 19 16 108v879q0 109 -5.5 157.5t-20.5 63.5q-23 23 -80 23q-10 0 -64 -4z" />
+<glyph unicode="i" horiz-adv-x="606" d="M70 -2v94q74 6 105.5 12.5t41.5 18.5q16 19 16 110v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 206 61q50 0 75.5 -27.5t25.5 -109.5q0 -89 -4 -290t-4 -295q0 -87 18 -111q11 -14 38.5 -20.5t102.5 -12.5v-94q-176 4 -247 4q-121 0 -211 -4zM160 1333 q0 51 30.5 83t79.5 32q55 0 82 -30.5t27 -80.5q0 -49 -31 -80.5t-84 -31.5q-46 0 -75 31.5t-29 76.5z" />
+<glyph unicode="j" horiz-adv-x="550" d="M-16 -477q78 35 124 70.5t72 87.5q37 73 37 294v680q0 97 -19 130.5t-89 33.5q-24 0 -60 -6v84q105 61 205 61q50 0 74 -27t24 -110q0 -91 3 -407.5t3 -401.5q0 -154 -10 -234.5t-47 -142.5q-39 -67 -120 -120t-167 -78zM139 1333q0 51 30 83t79 32q56 0 83 -30.5 t27 -80.5q0 -49 -30.5 -80.5t-83.5 -31.5q-48 0 -76.5 31t-28.5 77z" />
+<glyph unicode="k" horiz-adv-x="1105" d="M76 1354v84q108 59 207 59q25 0 41 -4t30.5 -16.5t21.5 -39.5t7 -69q0 -24 -1 -140.5t-1 -199.5v-792q0 -89 16 -113q9 -12 39 -18.5t103 -12.5v-94q-176 4 -248 4q-121 0 -211 -4v94q130 11 147 31t17 108v945q0 44 -1.5 68t-7.5 50t-18 38t-33 20t-53 8q-31 0 -55 -6z M403 481q116 89 240 213q48 50 65 75t17 44q0 13 -9.5 20.5t-39 12.5t-86.5 8v88q96 -4 229 -4q134 0 228 4v-88q-64 -4 -97 -20q-41 -23 -113 -86t-159 -146t-111 -104q155 -199 277 -305q72 -57 108 -74q50 -21 135 -25v-94q-40 -4 -94 -4q-139 0 -237 80q-35 29 -69.5 63 t-75.5 82.5t-64.5 77.5t-75 95t-68.5 87z" />
+<glyph unicode="l" horiz-adv-x="614" d="M76 1354v84q105 59 207 59q25 0 41 -4t30.5 -16.5t21.5 -39.5t7 -69q0 -24 -1 -208.5t-1 -270.5v-653q0 -90 16 -111q17 -23 142 -33v-94q-176 4 -248 4q-121 0 -211 -4v94q75 6 106 13t41 20q17 20 17 108v840q0 231 -33 266q-21 21 -80 21q-31 0 -55 -6z" />
+<glyph unicode="m" horiz-adv-x="1802" d="M70 -2v94q79 8 108 14t39 19q16 19 16 108v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 196 61q46 0 72 -28t29 -111q155 148 356 148q82 0 144 -36t87 -116q74 70 171.5 111t199.5 41q125 0 184 -68q34 -37 49 -100t15 -170v-396q0 -78 14 -100q8 -16 40 -25 t116 -16v-94q-176 4 -234 4q-49 0 -225 -4v94q119 11 135 35q19 19 19 111v364q0 126 -31 168q-43 59 -158 59q-69 0 -147 -25t-137 -65q6 -37 6 -110v-396q0 -76 12 -100q8 -16 37.5 -25t109.5 -16v-94q-160 4 -223 4q-51 0 -227 -4v94q119 11 135 35q19 19 19 111v364 q0 123 -37.5 175t-147.5 52q-71 0 -146.5 -23.5t-133.5 -64.5v-505q0 -90 18 -111q9 -12 36 -19t101 -14v-94q-184 4 -227 4q-137 0 -227 -4z" />
+<glyph unicode="n" horiz-adv-x="1218" d="M70 -2v94q75 6 106 13t41 20q16 19 16 108v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 196 61q46 0 72 -28t29 -111q71 68 169.5 108t200.5 40q61 0 112 -18t77 -50q35 -36 49 -98.5t14 -171.5v-396q0 -79 15 -100q8 -18 37.5 -26t117.5 -15v-94q-172 4 -233 4 q-54 0 -226 -4v94q68 6 96.5 13t37.5 20q18 15 18 113v364q0 126 -31 168q-43 59 -157 59q-72 0 -155 -24t-140 -64v-505q0 -90 18 -113q9 -12 36.5 -18.5t100.5 -12.5v-94q-176 4 -243 4q-121 0 -211 -4z" />
+<glyph unicode="o" horiz-adv-x="1105" d="M100 465q0 235 128.5 369.5t340.5 134.5q224 0 331.5 -126t107.5 -356q0 -128 -35 -228t-97.5 -162t-144 -94t-178.5 -32q-222 0 -337.5 134t-115.5 360zM242 487q0 -395 315 -395q148 0 228.5 96.5t80.5 284.5q0 377 -305 377q-155 0 -237 -94.5t-82 -268.5z" />
+<glyph unicode="p" horiz-adv-x="1155" d="M45 811v86q105 61 199 61q46 0 72 -27.5t30 -109.5q63 63 153 105.5t185 42.5q185 0 279 -132.5t94 -355.5q0 -229 -127.5 -368.5t-366.5 -139.5q-88 0 -215 29v-268q0 -117 23 -140q10 -10 20.5 -14.5t51 -10.5t116.5 -11v-95q-235 5 -256 5q-16 0 -256 -5v95 q75 6 107 14.5t45 24.5q12 16 12 104v950q0 98 -18.5 131t-88.5 33q-27 0 -59 -4zM348 135q74 -39 230 -39q162 0 246.5 102t84.5 273q0 73 -14 134.5t-45.5 115.5t-91 84.5t-142.5 30.5q-66 0 -138.5 -27.5t-129.5 -71.5v-602z" />
+<glyph unicode="q" horiz-adv-x="1187" d="M100 442q0 241 131.5 384t380.5 143q195 0 365 -56q-4 -104 -4 -286v-926q0 -88 12 -104q13 -16 44 -24.5t106 -14.5v-95q-240 5 -256 5t-256 -5v95q76 5 116.5 11t51 10.5t20.5 14.5q23 23 23 140q0 293 2 352q-53 -54 -132 -82.5t-169 -28.5q-199 0 -317 132t-118 335z M242 463q0 -168 90 -265.5t233 -97.5q73 0 150.5 24t120.5 60v625q-90 43 -240 43q-163 0 -258.5 -103t-95.5 -286z" />
+<glyph unicode="r" horiz-adv-x="800" d="M70 -2v94q74 6 105.5 12.5t41.5 18.5q16 19 16 110v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 196 61q46 0 73 -29.5t28 -117.5q42 63 115.5 108.5t146.5 45.5q50 0 77 -20t27 -73t-20 -151h-76q-8 58 -28 75t-60 17q-44 0 -94 -23.5t-86 -62.5v-491 q0 -90 18 -113q14 -18 172 -31v-94q-176 4 -278 4q-121 0 -211 -4z" />
+<glyph unicode="s" horiz-adv-x="917" d="M111 154q0 73 4 147h88q12 -125 65 -164q52 -49 185 -49q100 0 156.5 38.5t56.5 96.5q0 51 -33 87.5t-109 66.5l-184 69q-111 42 -158 104.5t-47 145.5q0 123 92 198t281 75q126 0 205 -33q57 -22 57 -96q0 -48 -14 -158h-84q-5 65 -19 93.5t-37 43.5q-42 33 -147 33 q-201 0 -201 -143q0 -45 33.5 -77t120.5 -65l182 -69q59 -22 99.5 -50.5t61.5 -61t29.5 -65t8.5 -71.5q0 -129 -101 -204t-268 -75q-136 0 -233 39q-52 21 -71 57t-19 87z" />
+<glyph unicode="t" horiz-adv-x="698" d="M61 807v80q55 13 107 35q36 19 51 61q15 49 37 162q10 43 63 43q48 0 48 -47v-219q142 0 256 -7v-102q-126 -6 -258 -6v-389q0 -159 10 -215q11 -54 40 -78.5t83 -24.5q80 0 159 35l31 -94q-56 -32 -121.5 -49t-113.5 -17q-51 0 -89.5 12t-70.5 40t-49 80.5t-17 128.5 q0 62 1 262t1 309h-168z" />
+<glyph unicode="u" horiz-adv-x="1191" d="M47 811v86q105 61 203 61q51 0 75.5 -29t24.5 -110q0 -15 -2 -211.5t-2 -279.5q0 -118 43.5 -170t157.5 -52q73 0 149.5 27t134.5 70v448q0 103 -17.5 133.5t-92.5 30.5q-36 0 -64 -4v86q100 61 217 61q49 0 73 -31t24 -116q0 -1 -2 -230t-2 -350q0 -76 19.5 -103.5 t70.5 -27.5q36 0 78 11v-95q-65 -32 -160 -32q-120 0 -139 131q-142 -142 -344 -142q-66 0 -125.5 22.5t-92.5 61.5q-34 40 -48.5 98t-14.5 158v338q0 100 -17.5 132t-87.5 32q-8 0 -30 -2t-29 -2z" />
+<glyph unicode="v" horiz-adv-x="1069" d="M8 848v94q136 -4 238 -4q56 0 188 4v-94q-6 0 -19.5 -1t-21 -1.5t-20 -1.5t-20 -2.5t-17 -4.5t-15.5 -7t-11.5 -9.5t-8 -13t-2.5 -16.5q0 -30 23 -86q118 -282 233 -566q162 412 227 563q23 59 23 95q0 30 -29 37q-39 9 -110 14v94q122 -4 202 -4q73 0 191 4v-94 q-67 -3 -94 -27q-25 -23 -66 -116l-287 -670q-24 -58 -73 -58q-29 0 -48.5 12.5t-33.5 45.5l-289 676q-39 89 -68 112q-24 19 -92 25z" />
+<glyph unicode="w" horiz-adv-x="1562" d="M23 848v94q90 -4 221 -4q113 0 213 4v-94q-41 0 -103 -8q-26 -5 -38.5 -15t-12.5 -32q0 -20 19 -84q67 -226 153 -533q61 188 252 713q20 57 78 57q29 0 44 -13.5t25 -43.5q63 -181 242 -715q28 99 82 282.5t72 245.5q16 59 16 91q0 14 -10 26t-23 15q-38 11 -120 14v94 q82 -4 217 -4q114 0 192 4v-94q-65 -3 -98 -23q-17 -10 -28.5 -34t-29.5 -82l-210 -674q-18 -58 -74 -58q-60 0 -78 58q-203 587 -238 710q-39 -118 -258 -710q-21 -58 -73 -58q-63 0 -80 60l-203 676q-28 87 -41 104q-14 18 -36 23.5t-72 7.5z" />
+<glyph unicode="x" horiz-adv-x="1138" d="M41 0v92q62 3 89 10t44 21q34 23 90 90l217 266l-231 285q-28 35 -46 50.5t-45 23.5t-77 10v94q104 -4 217 -4q111 0 215 4v-94q-108 0 -108 -41q0 -26 32 -66l148 -180l129 170q35 47 35 76q0 21 -20 30.5t-87 10.5v94q156 -4 219 -4q72 0 182 4v-94q-65 -3 -102 -23 q-44 -26 -111 -110l-184 -230l223 -262q54 -66 95 -98q19 -16 45 -22t84 -11v-92q-59 0 -142 1t-108 1q-117 0 -230 -2v92q79 4 104 14.5t25 32.5q0 24 -57 94l-141 168l-117 -151q-37 -49 -50 -71.5t-13 -39.5q0 -21 27.5 -32.5t105.5 -14.5v-92q-200 4 -240 4 q-53 0 -217 -4z" />
+<glyph unicode="y" horiz-adv-x="1067" d="M8 848v94q136 -4 238 -4q56 0 192 4v-94q-64 -4 -90 -8q-49 -8 -49 -54q0 -28 27 -90q22 -52 79 -182.5t98 -226.5t77 -185q12 35 81.5 236t110.5 315q33 87 33 146q0 16 -8.5 26t-27.5 14.5t-32.5 6t-39.5 2t-33 0.5v94q126 -4 204 -4q73 0 191 4v-94q-68 -6 -90 -23 q-18 -16 -32.5 -48.5t-43.5 -110.5l-246 -666q-91 -254 -147 -371q-49 -104 -115 -147t-160 -43q-157 0 -157 121q0 62 12 121h82q13 -73 25 -91q19 -28 71 -28q72 0 125 92q44 78 147 344q-50 0 -75 59l-283 650q-42 92 -72 116q-24 19 -92 25z" />
+<glyph unicode="z" horiz-adv-x="931" d="M29 0v51l630 791q-315 0 -372 -6q-61 -6 -78 -39q-19 -35 -29 -131h-90q-12 106 -12 174q0 50 18 75t74 25h688v-61l-627 -777q74 -4 195 -4q211 0 272 21q44 13 68 63q28 62 41 121h86q-5 -141 -12 -221q-3 -40 -28 -61t-87 -21h-737z" />
+<glyph unicode="{" horiz-adv-x="618" d="M43 561v80q49 4 81.5 17t53 34t31.5 60.5t14.5 85t3.5 118.5v252q0 70 9 123t34 101.5t66 80t108.5 50t159.5 18.5v-90q-140 0 -193 -59.5t-53 -229.5v-311q0 -149 -33 -205.5t-145 -83.5q106 -23 142 -81t36 -208v-321q0 -152 55.5 -214.5t190.5 -62.5v-88 q-206 0 -289.5 79t-83.5 263v299q0 147 -39 215t-149 78z" />
+<glyph unicode="|" horiz-adv-x="530" d="M205 -375v1950h119v-1950h-119z" />
+<glyph unicode="}" horiz-adv-x="618" d="M35 -287q140 0 194 60.5t54 230.5v311q0 148 33 204t143 85q-107 22 -143.5 80t-36.5 209v319q0 153 -54.5 215t-189.5 62v92q206 0 289.5 -80.5t83.5 -265.5v-299q0 -148 38.5 -215t149.5 -76v-80q-49 -5 -81.5 -18.5t-53 -34.5t-31.5 -60t-14.5 -84.5t-3.5 -117.5v-254 q0 -69 -9 -122t-34 -101t-66.5 -79t-109 -49t-158.5 -18v86z" />
+<glyph unicode="~" horiz-adv-x="1198" d="M119 557q68 101 134.5 146t149.5 45q45 0 91.5 -17t136.5 -76q104 -67 162 -67q53 0 98.5 31.5t101.5 115.5l86 -82q-67 -99 -135.5 -146.5t-150.5 -47.5q-89 0 -195 69q-85 52 -121.5 68t-73.5 16q-56 0 -102 -32t-90 -109z" />
+<glyph unicode="&#xa1;" horiz-adv-x="583" d="M125 915q0 59 33 94t88 35q54 0 89.5 -34.5t35.5 -89.5t-35 -91t-88 -36q-54 0 -88.5 34t-34.5 88zM150 -289q0 88 61 877h78q57 -791 57 -879q0 -55 -25 -86t-75 -31q-96 0 -96 119z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1028" d="M141 449q0 191 95.5 319t265.5 160v215h96v-205h12q98 0 168 -20q101 -26 101 -115q0 -62 -17 -152h-90q-8 102 -43 135t-131 37v-712q137 2 276 106l48 -78q-133 -130 -324 -145v-230h-96v232q-163 15 -262 135.5t-99 317.5zM287 457q0 -291 215 -338v694 q-105 -28 -160 -120t-55 -236z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1187" d="M76 0v111q142 26 216.5 127.5t74.5 255.5q0 8 -1 27.5t-1 31.5h-201v113h188q-4 25 -16.5 94t-20.5 124.5t-8 88.5q0 189 116.5 294t317.5 105q136 0 207 -26q51 -18 72.5 -45t21.5 -78q0 -64 -16 -174h-84q-11 117 -43 153q-46 49 -180 49q-258 0 -258 -278 q0 -38 19 -155.5t22 -151.5h317v-113h-305v-25q0 -264 -190 -391q188 4 393 4q111 0 164.5 7t74.5 28q38 38 62 131h80q-4 -138 -23 -235q-15 -72 -123 -72h-876z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1153" d="M86 240l135 137q-92 112 -92 278q0 161 90 275l-133 137l84 90l137 -139q113 90 271 90q149 0 268 -88l131 137l88 -88l-133 -139q88 -112 88 -275q0 -157 -88 -274l135 -141l-88 -90l-133 141q-117 -86 -273 -86q-164 0 -268 82l-135 -137zM250 659q0 -150 92 -247 t236 -97q139 0 230 96t91 244q0 142 -92 240t-229 98q-142 0 -235 -94.5t-93 -239.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1284" d="M45 1247v94q117 -2 231 -2q154 0 263 2v-94q-73 -2 -109.5 -8t-45.5 -14.5t-9 -24.5q0 -34 82 -178q34 -60 105.5 -181.5t105.5 -181.5q98 190 221 388q67 114 67 157q0 24 -32 32.5t-119 10.5v94q86 -2 237 -2q111 0 195 2v-94q-69 -3 -98 -26q-17 -11 -40 -45t-91 -142 l-185 -297h264v-90h-317l-59 -100v-55h376v-91h-376v-180q0 -56 8 -80q8 -22 43.5 -32.5t138.5 -14.5v-96q-204 4 -254 4q-86 0 -270 -4v96q103 7 132.5 15.5t39.5 27.5q12 18 12 86v178h-346v91h346v53l-59 102h-287v90h234l-205 357q-6 11 -16.5 28.5t-14.5 25t-11.5 19.5 t-11 17.5t-9 13t-10.5 13t-11 10.5q-29 23 -115 26z" />
+<glyph unicode="&#xa6;" horiz-adv-x="530" d="M205 -244v690h119v-690h-119zM205 752v692h119v-692h-119z" />
+<glyph unicode="&#xa7;" horiz-adv-x="954" d="M86 662q0 94 59 166.5t168 117.5q-62 65 -88 123.5t-26 124.5q0 119 93 200t253 81q45 0 101 -9t89 -22q60 -25 60 -92q0 -12 -17 -162h-84q-9 73 -20.5 103.5t-34.5 45.5q-36 25 -102 25q-199 0 -199 -152q0 -62 34 -112t138 -144l139 -125q131 -119 176 -192.5 t45 -161.5q0 -86 -59 -164t-180 -137q83 -87 111 -146t28 -126q0 -133 -97.5 -218t-266.5 -85q-134 0 -211 41q-64 37 -64 102t14 154h86q12 -113 64 -154q48 -31 119 -31q105 0 159 42t54 114q0 54 -40 116t-151 175l-172 172q-108 109 -143 180.5t-35 149.5zM221 696 q0 -58 27 -107.5t96 -121.5l96 -100q24 -25 67.5 -67t61.5 -60q162 89 162 190q0 54 -30 112.5t-123 147.5l-107 101q-17 17 -52 45.5t-50 44.5q-67 -33 -107.5 -80.5t-40.5 -104.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M41 1274q0 40 27 68t69 28q43 0 69.5 -27.5t26.5 -68.5q0 -43 -27.5 -71.5t-72.5 -28.5q-39 0 -65.5 28t-26.5 72zM365 1274q0 41 27.5 68.5t70.5 27.5q41 0 67.5 -28t26.5 -68q0 -43 -27 -71.5t-71 -28.5q-39 0 -66.5 28.5t-27.5 71.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM176 694q0 -133 49.5 -252.5t134.5 -206t203.5 -137.5t251.5 -51 q128 0 242.5 50t196 135.5t129 204t47.5 251.5q0 181 -79.5 329t-221.5 233t-318 85q-133 0 -251.5 -50t-202.5 -136t-132.5 -204.5t-48.5 -250.5zM377 674q0 212 122.5 335.5t329.5 123.5q128 0 207 -27q64 -24 64 -78q0 -77 -15 -143h-79q-8 88 -27 110q-39 39 -156 39 q-135 0 -220 -89.5t-85 -256.5q0 -173 86 -256.5t219 -83.5q107 0 154 43q21 19 51 103h82q-1 -43 -2 -60.5t-4.5 -45.5t-9 -40t-16.5 -27.5t-27 -24.5t-39 -17q-86 -31 -209 -31q-193 0 -309.5 114.5t-116.5 311.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="702" d="M70 737q0 83 68 128.5t237 45.5q58 0 78 -2v56q0 86 -28.5 113.5t-107.5 27.5q-69 0 -92.5 -22.5t-23.5 -98.5h-72q-14 63 -14 105q0 55 65 79q83 31 162 31q134 0 182 -55q37 -40 37 -148q0 -19 -1 -136.5t-1 -123.5q0 -51 12.5 -70.5t42.5 -19.5q6 0 14.5 1t20 2.5 t17.5 2.5v-73q-55 -25 -113 -25q-33 0 -55 16t-33 58q-36 -34 -87.5 -55t-103.5 -21q-84 0 -144 46.5t-60 137.5zM186 745q0 -50 36.5 -75t82.5 -25q85 0 150 45v144q-25 2 -82 2q-187 0 -187 -91z" />
+<glyph unicode="&#xab;" horiz-adv-x="905" d="M70 459q0 40 34 71l334 320l64 -57l-277 -330l275 -340l-64 -62l-336 328q-30 30 -30 70zM416 459q0 34 37 71l331 320l64 -57l-279 -330l279 -340l-66 -62l-336 328q-30 26 -30 70z" />
+<glyph unicode="&#xac;" horiz-adv-x="1198" d="M135 569v129h883v-546h-119v417h-764z" />
+<glyph unicode="&#xad;" horiz-adv-x="540" d="M57 436v133h420v-133h-420z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM178 694q0 -133 49.5 -252.5t134 -206t202.5 -137.5t251 -51 q128 0 242.5 50t196 135.5t129 204t47.5 251.5q0 181 -79.5 329t-221.5 233t-318 85q-133 0 -251 -50t-201.5 -136t-132 -204.5t-48.5 -250.5zM449 303v80q84 3 100 16q9 6 11.5 19t2.5 55v494q0 59 -8 67q-22 14 -106 19v75h247q132 0 222 -12q95 -15 143.5 -70.5 t48.5 -140.5q0 -180 -188 -237q62 -92 101 -141t79 -83q34 -31 69 -49q27 -12 60 -12v-78q-8 -2 -49 -2q-101 0 -174 59q-48 38 -94 101t-123 186q-85 0 -103 2v-174q0 -42 1.5 -55t8.5 -19q21 -18 107 -20v-80q-118 4 -191 4q-51 0 -165 -4zM688 741q12 0 38 -1t34 -1 q213 0 213 160q0 41 -17.5 68.5t-52 40.5t-70.5 17.5t-88 4.5h-57v-289z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M39 1147v121h520v-121h-520z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M86 1163q0 124 78 198.5t194 74.5q114 0 188.5 -70.5t74.5 -200.5q0 -123 -77 -195.5t-190 -72.5q-117 0 -192.5 70.5t-75.5 195.5zM180 1165q0 -79 46.5 -130.5t127.5 -51.5q83 0 129.5 51t46.5 129q0 85 -46.5 136t-129.5 51q-78 0 -126 -51.5t-48 -133.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1198" d="M139 0v125h916v-125h-916zM139 692v125h398v422h122v-422h396v-125h-396v-418h-122v418h-398z" />
+<glyph unicode="&#xb2;" horiz-adv-x="761" d="M45 860v76q156 120 247 203.5t145.5 165t54.5 153.5q0 156 -162 156q-100 0 -131 -35q-19 -22 -27 -100h-68q-10 62 -10 108q0 31 15 51t51 39q77 35 190 35q131 0 201 -61t70 -174q0 -237 -404 -512q29 0 110 1t101 1q118 0 141 26q22 29 35 80h68q-9 -125 -17 -164 q-10 -49 -88 -49h-522z" />
+<glyph unicode="&#xb3;" horiz-adv-x="761" d="M84 956q0 47 8 117h72q2 -61 31 -90q41 -41 137 -41q99 0 147.5 40t48.5 112q0 63 -49 102t-149 45q-31 2 -97 2v88q62 4 99 8q80 12 121 53t41 99q0 55 -34 89t-108 34q-89 0 -131 -33q-25 -19 -31 -94h-69q-8 62 -8 100q0 61 57 86q85 39 192 39q131 0 192.5 -56 t61.5 -147q0 -75 -46.5 -130.5t-147.5 -80.5q114 -10 172.5 -62.5t58.5 -141.5q0 -120 -85.5 -185t-239.5 -65q-103 0 -181 24q-63 25 -63 88z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M123 1122l180 287q33 52 54 69t49 17q26 0 49.5 -20.5t23.5 -47.5q0 -26 -14.5 -50t-48.5 -60l-238 -242z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1202" d="M74 811v86q105 61 202 61q51 0 75 -29t24 -110q0 -15 -1 -211.5t-1 -279.5q0 -118 43.5 -170t156.5 -52q72 0 150 27t137 70v448q0 113 -31 144q-23 20 -81 20q-34 0 -66 -4v86q53 33 113.5 47t103.5 14q50 0 75 -31t25 -116q0 -1 -4 -230t-4 -350q0 -77 20 -104t72 -27 q32 0 78 11v-95q-65 -32 -160 -32q-120 0 -139 131q-140 -140 -321 -140q-42 0 -96 22.5t-76 55.5q24 -422 24 -461q0 -88 -80 -88q-42 0 -58.5 22t-16.5 64v1061q0 97 -18 130.5t-87 33.5q-9 0 -31 -2t-28 -2z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1114" d="M109 866q0 231 161 374.5t445 143.5h336v-94q-85 -3 -116 -9t-44 -19q-12 -13 -15.5 -43t-3.5 -99q0 -174 3.5 -451t3.5 -390q0 -323 -29 -439q-65 -257 -406 -356l-24 92q163 63 231.5 152.5t79.5 224.5q12 143 12 373v43q-25 -2 -71 -2q-92 0 -174 17.5t-154 56 t-123.5 95.5t-81.5 141.5t-30 188.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="434" d="M92 500q0 55 35.5 91t87.5 36q55 0 91 -34t36 -87q0 -61 -35 -97t-90 -36q-53 0 -89 36t-36 91z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M123 -473q111 23 164 56.5t53 90.5q0 33 -22 58t-70 51q-39 22 -39 59q0 43 49 168h78q-33 -78 -33 -100q0 -30 33 -47q76 -39 107.5 -77t31.5 -93q0 -103 -90 -164t-242 -84z" />
+<glyph unicode="&#xb9;" horiz-adv-x="761" d="M156 1618q78 44 176 80q48 16 63 16q51 0 51 -65q0 -25 -1 -119t-1 -160v-352q0 -52 11 -66q11 -13 133 -22v-72q-114 4 -209 4q-87 0 -201 -4v72q114 8 133 24q13 13 13 66v348q0 116 -7 174q-3 33 -32 33q-27 0 -109 -25z" />
+<glyph unicode="&#xba;" horiz-adv-x="817" d="M86 874q0 151 85.5 238.5t227.5 87.5q149 0 222 -82.5t73 -230.5q0 -160 -85.5 -247t-221.5 -87q-147 0 -224 88t-77 233zM203 887q0 -236 186 -236q92 0 140.5 56t48.5 167q0 119 -46 174.5t-137 55.5q-95 0 -143.5 -56t-48.5 -161z" />
+<glyph unicode="&#xbb;" horiz-adv-x="905" d="M57 119l277 327l-277 342l66 62l336 -330q30 -26 30 -71q0 -39 -36 -70l-332 -318zM403 119l279 327l-276 342l63 62l336 -330q33 -33 33 -71q0 -33 -37 -70l-332 -318z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1687" d="M143 1276q58 30 176 80q42 14 64 14q51 0 51 -63q0 -25 -1 -119t-1 -160v-352q0 -53 10 -68q11 -14 133 -20v-74q-171 6 -208 6q-3 0 -201 -6v74q113 5 133 22q12 12 12 68v348q0 126 -6 172q-3 33 -33 33q-32 0 -108 -23zM494 18l591 1364l89 -34l-594 -1368zM872 223 v68l365 504q25 33 42.5 46t47.5 13q26 0 44 -18t18 -58q0 -29 -1.5 -95t-1.5 -87v-272h134v-101h-134v-61q0 -55 9 -70q17 -21 118 -26v-68q-106 4 -198 4q-64 0 -174 -4v68q99 8 114 26q13 13 13 72v59h-396zM991 319h277q0 204 4 396z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1687" d="M125 1276q58 30 176 80q42 14 64 14q51 0 51 -63q0 -25 -1 -119t-1 -160v-352q0 -53 10 -68q11 -14 133 -20v-74q-171 6 -209 6q-3 0 -201 -6v74q114 5 134 22q12 12 12 68v348q0 126 -6 172q-3 33 -33 33q-33 0 -109 -23zM473 18l592 1364l88 -34l-594 -1368zM952 0v76 q156 120 247 203.5t145.5 165t54.5 153.5q0 156 -162 156q-99 0 -131 -35q-19 -22 -27 -101h-67q-11 68 -11 109q0 31 15 51t51 39q77 35 190 35q131 0 201 -61.5t70 -174.5q0 -237 -404 -512q29 0 110 1t101 1q118 0 142 27q20 27 34 80h68q-9 -133 -16 -164 q-10 -49 -88 -49h-523z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1687" d="M123 614q0 43 8 117h72q3 -67 30 -90q43 -43 138 -43q99 0 147.5 40t48.5 112q0 130 -198 147q-62 4 -97 4v88q3 0 39.5 2t57.5 4q80 12 121.5 54t41.5 100q0 53 -33.5 87t-107.5 34q-91 0 -131 -31q-25 -22 -31 -94h-69q-8 62 -8 98q0 33 12.5 53t44.5 33q85 39 192 39 q131 0 192.5 -55t61.5 -148q0 -160 -194 -211q114 -9 172.5 -61.5t58.5 -142.5q0 -120 -85.5 -185t-239.5 -65q-109 0 -181 26q-63 22 -63 88zM547 18l592 1364l88 -34l-594 -1368zM903 223v68l365 504q25 33 42.5 46t47.5 13q26 0 43.5 -18t17.5 -58q0 -29 -1 -95t-1 -87 v-272h133v-101h-133v-61q0 -57 8 -70q17 -21 119 -26v-68q-106 4 -198 4q-65 0 -175 -4v68q100 8 115 26q12 12 12 72v59h-395zM1022 319h276q0 156 5 396z" />
+<glyph unicode="&#xbf;" horiz-adv-x="847" d="M33 -70q0 124 69.5 219t241.5 187q63 34 74 115q7 55 10 141h80q16 -154 16 -201q0 -53 -29.5 -86.5t-88.5 -64.5q-207 -113 -207 -293q0 -32 4 -59.5t17 -59.5t34 -54.5t59 -38t88 -16.5q44 0 71.5 2t53.5 9t40.5 19t26 33t16 50t5.5 72h91q18 -97 18 -150 q0 -37 -21.5 -65t-54.5 -44.5t-79 -26.5t-87 -13.5t-86 -3.5q-181 1 -271.5 85.5t-90.5 243.5zM334 915q0 61 34 96.5t87 35.5q54 0 89.5 -35t35.5 -90t-35 -91t-88 -36q-26 0 -48.5 8.5t-39 24t-26 38t-9.5 49.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1435" d="M10 -2v96q110 6 144 33q19 13 32 40.5t47 119.5l396 1056q15 41 37.5 58.5t58.5 17.5q32 0 53 -16t35 -57l406 -1086q24 -66 38.5 -94t34.5 -43q29 -26 133 -29v-96q-144 4 -264 4q-132 0 -276 -4v96q103 5 141 15q47 11 47 47q0 42 -29 125l-83 221h-521l-78 -211 q-30 -88 -30 -131q0 -33 24 -45q24 -9 166 -21v-96q-132 4 -270 4q-116 0 -242 -4zM451 1767q0 30 21.5 52t49.5 22q24 0 46.5 -13.5t60.5 -51.5l237 -248l-47 -55l-284 188q-84 58 -84 106zM477 616h445q-196 527 -224 613q-60 -174 -221 -613z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1435" d="M10 -2v96q110 6 144 33q19 13 32 40.5t47 119.5l396 1056q15 41 37.5 58.5t58.5 17.5q32 0 53 -16t35 -57l406 -1086q24 -66 38.5 -94t34.5 -43q29 -26 133 -29v-96q-144 4 -264 4q-132 0 -276 -4v96q103 5 141 15q47 11 47 47q0 42 -29 125l-83 221h-521l-78 -211 q-30 -88 -30 -131q0 -33 24 -45q24 -9 166 -21v-96q-132 4 -270 4q-116 0 -242 -4zM477 616h445q-196 527 -224 613q-60 -174 -221 -613zM553 1526l238 248q38 38 60.5 51.5t45.5 13.5q28 0 50 -22t22 -52q0 -48 -84 -106l-285 -189z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1435" d="M10 -2v96q110 6 144 33q19 13 32 40.5t47 119.5l396 1056q15 41 37.5 58.5t58.5 17.5q32 0 53 -16t35 -57l406 -1086q24 -66 38.5 -94t34.5 -43q29 -26 133 -29v-96q-144 4 -264 4q-132 0 -276 -4v96q103 5 141 15q47 11 47 47q0 42 -29 125l-83 221h-521l-78 -211 q-30 -88 -30 -131q0 -33 24 -45q24 -9 166 -21v-96q-132 4 -270 4q-116 0 -242 -4zM416 1513l233 277q33 41 70 41q41 0 76 -43l221 -275l-55 -49l-248 207l-248 -207zM477 616h445q-196 527 -224 613q-60 -174 -221 -613z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1435" d="M10 -2v96q110 6 144 33q19 13 32 40.5t47 119.5l396 1056q15 41 37.5 58.5t58.5 17.5q32 0 53 -16t35 -57l406 -1086q24 -66 38.5 -94t34.5 -43q29 -26 133 -29v-96q-144 4 -264 4q-132 0 -276 -4v96q103 5 141 15q47 11 47 47q0 42 -29 125l-83 221h-521l-78 -211 q-30 -88 -30 -131q0 -33 24 -45q24 -9 166 -21v-96q-132 4 -270 4q-116 0 -242 -4zM410 1526q24 92 70 152.5t110 60.5q39 0 115 -31l59 -25q61 -28 92 -28q50 0 100 110l72 -24q-58 -217 -166 -217q-49 0 -139 37l-51 20q-59 23 -88 23q-33 0 -54 -22t-53 -81zM477 616h445 q-196 527 -224 613q-60 -174 -221 -613z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1435" d="M10 -2v96q110 6 144 33q19 13 32 40.5t47 119.5l396 1056q15 41 37.5 58.5t58.5 17.5q32 0 53 -16t35 -57l406 -1086q24 -66 38.5 -94t34.5 -43q29 -26 133 -29v-96q-144 4 -264 4q-132 0 -276 -4v96q103 5 141 15q47 11 47 47q0 42 -29 125l-83 221h-521l-78 -211 q-30 -88 -30 -131q0 -33 24 -45q24 -9 166 -21v-96q-132 4 -270 4q-116 0 -242 -4zM434 1620q0 42 27 69t69 27q44 0 70.5 -27t26.5 -69q0 -41 -28 -70.5t-71 -29.5q-40 0 -67 28.5t-27 71.5zM477 616h445q-196 527 -224 613q-60 -174 -221 -613zM786 1620q0 41 28 68.5 t71 27.5q42 0 69 -27t27 -69q0 -41 -27.5 -70.5t-70.5 -29.5q-40 0 -68.5 29t-28.5 71z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1435" d="M10 -2v96q110 6 144 33q19 13 32 40.5t47 119.5l396 1056q15 41 37.5 58.5t58.5 17.5q32 0 53 -16t35 -57l406 -1086q24 -66 38.5 -94t34.5 -43q29 -26 133 -29v-96q-144 4 -264 4q-132 0 -276 -4v96q103 5 141 15q47 11 47 47q0 42 -29 125l-83 221h-521l-78 -211 q-30 -88 -30 -131q0 -33 24 -45q24 -9 166 -21v-96q-132 4 -270 4q-116 0 -242 -4zM477 616h445q-196 527 -224 613q-60 -174 -221 -613zM530 1636q0 80 56 134.5t133 54.5q83 0 135.5 -51.5t52.5 -133.5q0 -83 -55 -136.5t-135 -53.5q-79 0 -133 51t-54 135zM610 1640 q0 -53 29.5 -84.5t77.5 -31.5q49 0 78.5 30t29.5 86q0 54 -30.5 82.5t-77.5 28.5q-45 0 -76 -29t-31 -82z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2011" d="M10 -2v96q116 6 150 33q47 42 119 152l561 856q45 67 45 106q0 33 -49 41q-67 8 -148 10v92h1045q72 0 98.5 -25t26.5 -73q0 -44 -19 -225h-88q-15 149 -51 174q-25 19 -75.5 25t-180.5 6h-227v-490h163q88 0 121.5 6.5t50.5 28.5q30 34 39 127h86q-2 -53 -2 -213 q0 -137 2 -221h-82q-10 88 -39 129q-16 21 -53 26t-127 5h-159v-453q0 -44 13 -63.5t44 -22.5q68 -8 194 -8q145 0 208.5 13t90.5 42q40 40 82 180h84q-3 -205 -35 -295q-20 -57 -153 -57h-860v94q105 7 139 19q11 4 19 10.5t12.5 16.5t7.5 18.5t4 25t1 27t-0.5 33 t-0.5 35.5v237h-483l-152 -231q-20 -30 -29 -45.5t-17.5 -38.5t-8.5 -43q0 -21 12 -34t45.5 -19t49 -7.5t64.5 -2.5q15 -1 23 -1v-96q-200 4 -288 4q-85 0 -273 -4zM649 629h418v608q0 18 -12 18q-2 0 -3.5 -0.5l-3 -1t-3 -2l-2.5 -2.5t-2.5 -3.5t-3 -4.5t-3.5 -5.5t-4 -6.5 q-113 -185 -381 -600z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1372" d="M104 668q0 347 197 548t524 201q200 0 324 -47q51 -19 73.5 -47t22.5 -72q0 -94 -18 -213h-90q-10 143 -47 185q-30 30 -103.5 48.5t-177.5 18.5q-114 0 -212.5 -39.5t-173 -113.5t-117 -189.5t-42.5 -259.5q0 -122 28.5 -221t78.5 -167t119 -114t149 -67t170 -21 q97 0 169 21t107 51q42 36 84 170h91q-3 -133 -23 -209q-25 -86 -125 -115q-142 -45 -328 -45h-30q-17 -49 -17 -67q0 -32 35 -51q81 -39 113.5 -77.5t32.5 -97.5q0 -75 -47 -130.5t-122 -86t-180 -45.5l-20 84q117 27 172 61.5t55 94.5q0 35 -23.5 61t-72.5 54 q-41 24 -41 65q0 51 37 141q-261 32 -416.5 211t-155.5 480z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1210" d="M76 0v94q145 8 170 33q12 12 15 38.5t3 92.5v879q0 103 -12 120q-10 15 -46 22t-130 13v92h856q71 0 97 -25t26 -73q0 -82 -15 -225h-90q-15 149 -51 174q-25 19 -76 25t-182 6h-225v-490h162q90 0 123.5 6.5t50.5 28.5q30 34 36 127h89q-3 -79 -3 -213q0 -95 3 -221h-82 q-10 88 -39 129q-16 21 -53.5 26t-129.5 5h-157v-453q0 -44 13 -63.5t44 -22.5q68 -8 195 -8q145 0 208.5 13t90.5 42q39 41 80 180h86q-3 -205 -35 -295q-9 -27 -50.5 -42t-105.5 -15h-866zM326 1765q0 30 21.5 52t49.5 22q24 0 46.5 -13.5t60.5 -51.5l237 -248l-47 -56 l-284 189q-84 58 -84 106z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1210" d="M76 0v94q145 8 170 33q12 12 15 38.5t3 92.5v879q0 103 -12 120q-10 15 -46 22t-130 13v92h856q71 0 97 -25t26 -73q0 -82 -15 -225h-90q-15 149 -51 174q-25 19 -76 25t-182 6h-225v-490h162q90 0 123.5 6.5t50.5 28.5q30 34 36 127h89q-3 -79 -3 -213q0 -95 3 -221h-82 q-10 88 -39 129q-16 21 -53.5 26t-129.5 5h-157v-453q0 -44 13 -63.5t44 -22.5q68 -8 195 -8q145 0 208.5 13t90.5 42q39 41 80 180h86q-3 -205 -35 -295q-9 -27 -50.5 -42t-105.5 -15h-866zM444 1526l238 248q38 38 60.5 51.5t45.5 13.5q28 0 50 -22t22 -52q0 -48 -84 -106 l-284 -189z" />
+<glyph unicode="&#xca;" horiz-adv-x="1210" d="M76 0v94q145 8 170 33q12 12 15 38.5t3 92.5v879q0 103 -12 120q-10 15 -46 22t-130 13v92h856q71 0 97 -25t26 -73q0 -82 -15 -225h-90q-15 149 -51 174q-25 19 -76 25t-182 6h-225v-490h162q90 0 123.5 6.5t50.5 28.5q30 34 36 127h89q-3 -79 -3 -213q0 -95 3 -221h-82 q-10 88 -39 129q-16 21 -53.5 26t-129.5 5h-157v-453q0 -44 13 -63.5t44 -22.5q68 -8 195 -8q145 0 208.5 13t90.5 42q39 41 80 180h86q-3 -205 -35 -295q-9 -27 -50.5 -42t-105.5 -15h-866zM299 1513l233 277q33 41 70 41q41 0 76 -43l221 -275l-55 -49l-248 207l-248 -207 z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1210" d="M76 0v94q145 8 170 33q12 12 15 38.5t3 92.5v879q0 103 -12 120q-10 15 -46 22t-130 13v92h856q71 0 97 -25t26 -73q0 -82 -15 -225h-90q-15 149 -51 174q-25 19 -76 25t-182 6h-225v-490h162q90 0 123.5 6.5t50.5 28.5q30 34 36 127h89q-3 -79 -3 -213q0 -95 3 -221h-82 q-10 88 -39 129q-16 21 -53.5 26t-129.5 5h-157v-453q0 -44 13 -63.5t44 -22.5q68 -8 195 -8q145 0 208.5 13t90.5 42q39 41 80 180h86q-3 -205 -35 -295q-9 -27 -50.5 -42t-105.5 -15h-866zM334 1622q0 42 27 69t69 27q44 0 70 -27t26 -69q0 -41 -27.5 -70.5t-70.5 -29.5 q-40 0 -67 28.5t-27 71.5zM686 1622q0 41 27.5 68.5t70.5 27.5q42 0 69.5 -27t27.5 -69q0 -41 -28 -70.5t-71 -29.5q-40 0 -68 29t-28 71z" />
+<glyph unicode="&#xcc;" horiz-adv-x="681" d="M76 -2v96q86 6 124 13.5t50 21.5q9 9 11.5 33t2.5 96v877q0 103 -14 122q-16 22 -174 35v94q234 -6 254 -6q12 0 276 6v-94q-94 -7 -130 -15.5t-46 -21.5q-14 -22 -14 -118v-877q0 -110 14 -127q20 -29 176 -39v-96q-176 4 -268 4q-90 0 -262 -4zM84 1765q0 30 22 52 t50 22q23 0 45.5 -13.5t60.5 -51.5l238 -248l-47 -56l-285 189q-84 58 -84 106z" />
+<glyph unicode="&#xcd;" horiz-adv-x="681" d="M76 -2v96q86 6 124 13.5t50 21.5q9 9 11.5 33t2.5 96v877q0 103 -14 122q-16 22 -174 35v94q234 -6 254 -6q12 0 276 6v-94q-94 -7 -130 -15.5t-46 -21.5q-14 -22 -14 -118v-877q0 -110 14 -127q20 -29 176 -39v-96q-176 4 -268 4q-90 0 -262 -4zM168 1526l238 248 q38 38 60.5 51.5t45.5 13.5q28 0 50 -22t22 -52q0 -48 -84 -106l-285 -189z" />
+<glyph unicode="&#xce;" horiz-adv-x="681" d="M41 1513l233 277q33 41 70 41q41 0 76 -43l221 -275l-55 -49l-248 207l-248 -207zM76 -2v96q86 6 124 13.5t50 21.5q9 9 11.5 33t2.5 96v877q0 103 -14 122q-16 22 -174 35v94q234 -6 254 -6q12 0 276 6v-94q-94 -7 -130 -15.5t-46 -21.5q-14 -22 -14 -118v-877 q0 -110 14 -127q20 -29 176 -39v-96q-176 4 -268 4q-90 0 -262 -4z" />
+<glyph unicode="&#xcf;" horiz-adv-x="681" d="M66 1622q0 42 27 69t69 27q44 0 70 -27t26 -69q0 -41 -27.5 -70.5t-70.5 -29.5q-40 0 -67 28.5t-27 71.5zM76 -2v96q86 6 124 13.5t50 21.5q9 9 11.5 33t2.5 96v877q0 103 -14 122q-16 22 -174 35v94q234 -6 254 -6q12 0 276 6v-94q-94 -7 -130 -15.5t-46 -21.5 q-14 -22 -14 -118v-877q0 -110 14 -127q20 -29 176 -39v-96q-176 4 -268 4q-90 0 -262 -4zM418 1622q0 41 27.5 68.5t70.5 27.5q42 0 69 -27t27 -69q0 -41 -27.5 -70.5t-70.5 -29.5q-40 0 -68 29t-28 71z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1464" d="M66 672v106h198v359q0 93 -8 114q-10 21 -44 28t-136 13v92h332q311 0 457.5 -23.5t246.5 -86.5q129 -81 188.5 -217.5t59.5 -337.5q0 -411 -258 -594q-92 -65 -218.5 -95t-334.5 -30h-473v94q89 4 125.5 10.5t48.5 20.5q9 12 11.5 34.5t2.5 86.5v426h-198zM416 205 q0 -37 12 -51.5t45 -22.5q69 -14 174 -14q267 0 409 151.5t142 440.5q0 181 -64 305t-182 182q-143 70 -401 70h-135v-488h395v-106h-395v-467z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1503" d="M66 1292v94q90 -4 221 -4q75 0 147 4q617 -915 748 -1132q-5 154 -9 487.5t-4 337.5q-5 150 -18 174q-17 31 -174 39v94q200 -4 258 -4q30 0 248 4v-94q-87 -6 -119.5 -13t-48.5 -22q-12 -14 -16.5 -49t-4.5 -129q-2 -195 -2 -692q0 -49 1 -170.5t1 -159.5q0 -73 -71 -73 q-49 0 -76 45q-255 390 -437 666t-238 360.5t-85 130.5q1 -121 3.5 -330.5t4.5 -369t2 -183.5q0 -95 3.5 -128t15.5 -46q12 -15 49.5 -23t128.5 -14v-94q-222 4 -264 4q-54 0 -262 -4v94q166 8 186 41q4 6 6 14.5t3 25.5t1.5 30.5t1.5 46.5t2 57q4 102 4 772q0 133 -14 158 q-17 33 -63 43q-62 12 -129 12zM473 1526q24 92 70 152.5t110 60.5q39 0 115 -31l59 -25q61 -28 93 -28q50 0 100 110l72 -24q-58 -217 -166 -217q-50 0 -140 37l-51 20q-59 23 -88 23q-33 0 -53.5 -21.5t-52.5 -81.5z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q321 0 474.5 -183.5t153.5 -516.5q0 -185 -49.5 -329t-137 -233.5t-203 -135.5t-251.5 -46q-160 0 -283 52t-201 147.5t-117.5 225.5t-39.5 290zM264 715q0 -617 486 -617q228 0 351.5 156t123.5 446q0 305 -118.5 447.5t-354.5 142.5 q-235 0 -361.5 -155t-126.5 -420zM481 1765q0 30 22 52t50 22q23 0 45.5 -13.5t60.5 -51.5l238 -248l-47 -56l-285 189q-84 58 -84 106z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q321 0 474.5 -183.5t153.5 -516.5q0 -185 -49.5 -329t-137 -233.5t-203 -135.5t-251.5 -46q-160 0 -283 52t-201 147.5t-117.5 225.5t-39.5 290zM264 715q0 -617 486 -617q228 0 351.5 156t123.5 446q0 305 -118.5 447.5t-354.5 142.5 q-235 0 -361.5 -155t-126.5 -420zM598 1526l238 248q38 38 60.5 51.5t45.5 13.5q28 0 50 -22t22 -52q0 -48 -84 -106l-285 -189z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q321 0 474.5 -183.5t153.5 -516.5q0 -185 -49.5 -329t-137 -233.5t-203 -135.5t-251.5 -46q-160 0 -283 52t-201 147.5t-117.5 225.5t-39.5 290zM264 715q0 -617 486 -617q228 0 351.5 156t123.5 446q0 305 -118.5 447.5t-354.5 142.5 q-235 0 -361.5 -155t-126.5 -420zM457 1513l233 277q33 41 70 41q41 0 76 -43l221 -275l-56 -49l-247 207l-248 -207z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q321 0 474.5 -183.5t153.5 -516.5q0 -185 -49.5 -329t-137 -233.5t-203 -135.5t-251.5 -46q-160 0 -283 52t-201 147.5t-117.5 225.5t-39.5 290zM264 715q0 -617 486 -617q228 0 351.5 156t123.5 446q0 305 -118.5 447.5t-354.5 142.5 q-235 0 -361.5 -155t-126.5 -420zM442 1526q24 92 70.5 152.5t110.5 60.5q38 0 114 -31l60 -25q61 -28 92 -28q50 0 100 110l72 -24q-58 -217 -166 -217q-49 0 -139 37l-51 20q-59 23 -89 23q-33 0 -53.5 -21.5t-52.5 -81.5z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q321 0 474.5 -183.5t153.5 -516.5q0 -185 -49.5 -329t-137 -233.5t-203 -135.5t-251.5 -46q-160 0 -283 52t-201 147.5t-117.5 225.5t-39.5 290zM264 715q0 -617 486 -617q228 0 351.5 156t123.5 446q0 305 -118.5 447.5t-354.5 142.5 q-235 0 -361.5 -155t-126.5 -420zM479 1622q0 42 27 69t69 27q44 0 70.5 -27t26.5 -69q0 -41 -28 -70.5t-71 -29.5q-40 0 -67 28.5t-27 71.5zM831 1622q0 41 28 68.5t71 27.5q42 0 69 -27t27 -69q0 -41 -27.5 -70.5t-70.5 -29.5q-40 0 -68.5 29t-28.5 71z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1183" d="M201 967l86 94l307 -324l301 326l84 -86l-303 -330l305 -330l-86 -90l-303 322l-305 -324l-84 88l305 328z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1490" d="M104 686q0 339 178.5 534t475.5 195q214 0 362 -90l109 154l84 -60l-111 -155q184 -178 184 -549q0 -185 -49.5 -329t-137 -233.5t-203 -135.5t-251.5 -46q-227 0 -378 105l-115 -162l-84 59l119 168q-183 189 -183 545zM264 715q0 -298 111 -449l665 944 q-113 82 -288 82q-235 0 -361.5 -156t-126.5 -421zM446 188q117 -92 304 -92q227 0 351 157t124 447q0 295 -111 439z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1542" d="M57 1292v94q160 -4 271 -4q108 0 268 4v-94q-96 -6 -132 -14t-48 -23q-14 -19 -17 -110q-4 -145 -4 -512q0 -265 35 -357q69 -178 358 -178q109 0 199.5 36t126.5 97q39 64 53.5 164t14.5 258q0 256 -8 480q-1 68 -6 94t-17 35q-26 18 -168 30v94q76 -2 250 -2 q21 0 118.5 1t135.5 1v-94q-164 -10 -178 -45q-11 -28 -11 -131v-500q0 -194 -24.5 -305t-83.5 -182q-127 -160 -434 -160q-158 0 -273.5 51t-167.5 138q-40 68 -56.5 166t-16.5 303q0 97 2 276.5t2 233.5q0 86 -13 112q-11 19 -49.5 29t-126.5 14zM489 1765q0 30 22 52 t50 22q24 0 46.5 -13.5t60.5 -51.5l237 -248l-47 -56l-285 189q-84 58 -84 106z" />
+<glyph unicode="&#xda;" horiz-adv-x="1542" d="M57 1292v94q160 -4 271 -4q108 0 268 4v-94q-96 -6 -132 -14t-48 -23q-14 -19 -17 -110q-4 -145 -4 -512q0 -265 35 -357q69 -178 358 -178q109 0 199.5 36t126.5 97q39 64 53.5 164t14.5 258q0 256 -8 480q-1 68 -6 94t-17 35q-26 18 -168 30v94q76 -2 250 -2 q21 0 118.5 1t135.5 1v-94q-164 -10 -178 -45q-11 -28 -11 -131v-500q0 -194 -24.5 -305t-83.5 -182q-127 -160 -434 -160q-158 0 -273.5 51t-167.5 138q-40 68 -56.5 166t-16.5 303q0 97 2 276.5t2 233.5q0 86 -13 112q-11 19 -49.5 29t-126.5 14zM629 1526l237 248 q38 38 60.5 51.5t46.5 13.5q28 0 49.5 -22t21.5 -52q0 -49 -83 -106l-285 -189z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1542" d="M57 1292v94q160 -4 271 -4q108 0 268 4v-94q-96 -6 -132 -14t-48 -23q-14 -19 -17 -110q-4 -145 -4 -512q0 -265 35 -357q69 -178 358 -178q109 0 199.5 36t126.5 97q39 64 53.5 164t14.5 258q0 256 -8 480q-1 68 -6 94t-17 35q-26 18 -168 30v94q76 -2 250 -2 q21 0 118.5 1t135.5 1v-94q-164 -10 -178 -45q-11 -28 -11 -131v-500q0 -194 -24.5 -305t-83.5 -182q-127 -160 -434 -160q-158 0 -273.5 51t-167.5 138q-40 68 -56.5 166t-16.5 303q0 97 2 276.5t2 233.5q0 86 -13 112q-11 19 -49.5 29t-126.5 14zM446 1513l234 277 q33 41 70 41q40 0 75 -43l222 -275l-56 -49l-248 207l-247 -207z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1542" d="M57 1292v94q160 -4 271 -4q108 0 268 4v-94q-96 -6 -132 -14t-48 -23q-14 -19 -17 -110q-4 -145 -4 -512q0 -265 35 -357q69 -178 358 -178q109 0 199.5 36t126.5 97q39 64 53.5 164t14.5 258q0 256 -8 480q-1 68 -6 94t-17 35q-26 18 -168 30v94q76 -2 250 -2 q21 0 118.5 1t135.5 1v-94q-164 -10 -178 -45q-11 -28 -11 -131v-500q0 -194 -24.5 -305t-83.5 -182q-127 -160 -434 -160q-158 0 -273.5 51t-167.5 138q-40 68 -56.5 166t-16.5 303q0 97 2 276.5t2 233.5q0 86 -13 112q-11 19 -49.5 29t-126.5 14zM481 1622q0 42 27.5 69 t69.5 27q44 0 70 -27t26 -69q0 -41 -28 -70.5t-71 -29.5q-40 0 -67 28.5t-27 71.5zM834 1622q0 41 27.5 68.5t70.5 27.5q42 0 69 -27t27 -69q0 -41 -27.5 -70.5t-70.5 -29.5q-40 0 -68 29t-28 71z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1253" d="M8 1292v94q234 -4 246 -4q46 0 254 4v-94q-75 -2 -113 -10t-46.5 -17.5t-8.5 -27.5q0 -27 45 -104q149 -254 260 -457q169 292 273 467q40 64 40 102q0 25 -33 35.5t-130 11.5v94q98 -4 256 -4q106 0 192 4v-94q-57 -3 -96 -30q-27 -21 -90 -119l-357 -572v-340 q0 -82 9 -100t44.5 -25.5t139.5 -11.5v-96q-218 4 -258 4q-73 0 -273 -4v96q101 4 132.5 10.5t40.5 22.5q12 19 12 104v338l-334 557q-11 18 -26.5 45t-21.5 37.5t-15.5 24t-16 20t-14.5 11.5q-36 23 -111 28zM530 1526l238 248q38 38 60.5 51.5t45.5 13.5q28 0 50 -22 t22 -52q0 -48 -84 -106l-284 -189z" />
+<glyph unicode="&#xde;" horiz-adv-x="1171" d="M76 -2v96q93 6 127.5 12.5t46.5 20.5q9 10 11.5 34.5t2.5 96.5v879q0 101 -14 120q-16 22 -174 35v94q234 -6 254 -6q12 0 276 6v-94q-96 -7 -131.5 -15t-44.5 -22q-14 -20 -14 -106v-37h86q178 0 284 -18q166 -26 243 -121t77 -236q0 -434 -561 -434q-84 0 -129 2v-59 q0 -101 14 -115q21 -27 180 -37v-96q-176 4 -274 4q-88 0 -260 -4zM416 412q33 -2 98 -2q50 0 88.5 2t85 10t81 21.5t68.5 37.5t56 56.5t35.5 81.5t13.5 110q0 207 -197 250q-123 25 -237 25h-92v-592z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1185" d="M63 807v80q109 26 142 67q8 11 16.5 38.5t9.5 49.5q6 150 35.5 235.5t89.5 147.5q54 55 129 79t150 24q150 0 238 -78t88 -197q0 -88 -41 -158t-115 -143q-75 -71 -99 -104t-24 -60q0 -40 51 -79q23 -19 111 -86t135 -111q108 -105 108 -229q0 -149 -96 -230.5 t-256 -81.5q-98 0 -186 37q-43 20 -58.5 51.5t-15.5 77.5q0 49 4 119h84q13 -96 60 -133q45 -35 131 -35q88 0 140 43t52 125q0 91 -86 162q-40 34 -120 96.5t-115 91.5q-82 65 -82 152t94 178q62 58 95.5 94.5t62 90.5t28.5 106q0 91 -56.5 138.5t-150.5 47.5 q-104 0 -165 -64t-70 -169q-12 -129 -12 -322v-594q0 -94 8 -266q-74 4 -109 4q-76 0 -198 -4v94q123 6 145 31q18 23 18 108v576h-170z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1044" d="M100 256q0 48 12 86t43.5 73t82 58t131.5 37t188 14q98 0 131 -4v96q0 123 -29 168q-42 66 -184 66q-109 0 -158 -43q-35 -28 -41 -145h-88q-18 97 -18 151q0 44 25.5 72.5t76.5 46.5q101 37 232 37q195 0 264 -82q31 -36 43 -85.5t12 -135.5q0 -21 -1 -218t-1 -208 q0 -82 20.5 -111t71.5 -29q29 0 82 11v-95q-66 -32 -149 -32q-118 0 -144 118q-113 -125 -286 -125q-83 0 -152.5 28.5t-116.5 93.5t-47 157zM244 268q0 -89 58 -130.5t140 -41.5q70 0 135 25.5t111 62.5v232q-74 4 -139 4q-89 0 -151 -11.5t-94.5 -33.5t-46 -47.5 t-13.5 -59.5zM246 1427q0 27 24.5 47.5t51.5 20.5t47 -17t53 -69l180 -287l-57 -47l-236 242q-34 36 -48.5 60t-14.5 50z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1044" d="M100 256q0 48 12 86t43.5 73t82 58t131.5 37t188 14q98 0 131 -4v96q0 123 -29 168q-42 66 -184 66q-109 0 -158 -43q-35 -28 -41 -145h-88q-18 97 -18 151q0 44 25.5 72.5t76.5 46.5q101 37 232 37q195 0 264 -82q31 -36 43 -85.5t12 -135.5q0 -21 -1 -218t-1 -208 q0 -82 20.5 -111t71.5 -29q29 0 82 11v-95q-66 -32 -149 -32q-118 0 -144 118q-113 -125 -286 -125q-83 0 -152.5 28.5t-116.5 93.5t-47 157zM244 268q0 -89 58 -130.5t140 -41.5q70 0 135 25.5t111 62.5v232q-74 4 -139 4q-89 0 -151 -11.5t-94.5 -33.5t-46 -47.5 t-13.5 -59.5zM377 1122l180 287q33 52 53.5 69t48.5 17q26 0 50 -20.5t24 -47.5q0 -26 -14.5 -50t-48.5 -60l-238 -242z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1044" d="M100 256q0 48 12 86t43.5 73t82 58t131.5 37t188 14q98 0 131 -4v96q0 123 -29 168q-42 66 -184 66q-109 0 -158 -43q-35 -28 -41 -145h-88q-18 97 -18 151q0 44 25.5 72.5t76.5 46.5q101 37 232 37q195 0 264 -82q31 -36 43 -85.5t12 -135.5q0 -21 -1 -218t-1 -208 q0 -82 20.5 -111t71.5 -29q29 0 82 11v-95q-66 -32 -149 -32q-118 0 -144 118q-113 -125 -286 -125q-83 0 -152.5 28.5t-116.5 93.5t-47 157zM221 1090l213 309q26 41 70 41q49 0 76 -39l200 -309l-57 -48l-225 236l-222 -236zM244 268q0 -89 58 -130.5t140 -41.5 q70 0 135 25.5t111 62.5v232q-74 4 -139 4q-89 0 -151 -11.5t-94.5 -33.5t-46 -47.5t-13.5 -59.5z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1044" d="M100 256q0 48 12 86t43.5 73t82 58t131.5 37t188 14q98 0 131 -4v96q0 123 -29 168q-42 66 -184 66q-109 0 -158 -43q-35 -28 -41 -145h-88q-18 97 -18 151q0 44 25.5 72.5t76.5 46.5q101 37 232 37q195 0 264 -82q31 -36 43 -85.5t12 -135.5q0 -21 -1 -218t-1 -208 q0 -82 20.5 -111t71.5 -29q29 0 82 11v-95q-66 -32 -149 -32q-118 0 -144 118q-113 -125 -286 -125q-83 0 -152.5 28.5t-116.5 93.5t-47 157zM193 1139q26 94 69.5 153.5t104.5 59.5q45 0 108 -29l57 -25q57 -26 91 -26q27 0 49.5 25.5t48.5 80.5l67 -22 q-27 -107 -69.5 -163t-91.5 -56q-43 0 -129 37l-49 22q-53 23 -89 23q-32 0 -51.5 -22.5t-48.5 -82.5zM244 268q0 -89 58 -130.5t140 -41.5q70 0 135 25.5t111 62.5v232q-74 4 -139 4q-89 0 -151 -11.5t-94.5 -33.5t-46 -47.5t-13.5 -59.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1044" d="M100 256q0 48 12 86t43.5 73t82 58t131.5 37t188 14q98 0 131 -4v96q0 123 -29 168q-42 66 -184 66q-109 0 -158 -43q-35 -28 -41 -145h-88q-18 97 -18 151q0 44 25.5 72.5t76.5 46.5q101 37 232 37q195 0 264 -82q31 -36 43 -85.5t12 -135.5q0 -21 -1 -218t-1 -208 q0 -82 20.5 -111t71.5 -29q29 0 82 11v-95q-66 -32 -149 -32q-118 0 -144 118q-113 -125 -286 -125q-83 0 -152.5 28.5t-116.5 93.5t-47 157zM238 1274q0 40 27 68t69 28q43 0 69.5 -27.5t26.5 -68.5q0 -43 -27.5 -71.5t-72.5 -28.5q-39 0 -65.5 28t-26.5 72zM244 268 q0 -89 58 -130.5t140 -41.5q70 0 135 25.5t111 62.5v232q-74 4 -139 4q-89 0 -151 -11.5t-94.5 -33.5t-46 -47.5t-13.5 -59.5zM561 1274q0 41 27.5 68.5t70.5 27.5q41 0 68 -28t27 -68q0 -43 -27.5 -71.5t-71.5 -28.5q-39 0 -66.5 28.5t-27.5 71.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1044" d="M100 256q0 48 12 86t43.5 73t82 58t131.5 37t188 14q98 0 131 -4v96q0 123 -29 168q-42 66 -184 66q-109 0 -158 -43q-35 -28 -41 -145h-88q-18 97 -18 151q0 44 25.5 72.5t76.5 46.5q101 37 232 37q195 0 264 -82q31 -36 43 -85.5t12 -135.5q0 -21 -1 -218t-1 -208 q0 -82 20.5 -111t71.5 -29q29 0 82 11v-95q-66 -32 -149 -32q-118 0 -144 118q-113 -125 -286 -125q-83 0 -152.5 28.5t-116.5 93.5t-47 157zM244 268q0 -89 58 -130.5t140 -41.5q70 0 135 25.5t111 62.5v232q-74 4 -139 4q-89 0 -151 -11.5t-94.5 -33.5t-46 -47.5 t-13.5 -59.5zM313 1255q0 84 56 138.5t133 54.5q84 0 136 -51t52 -137q0 -82 -55 -134.5t-135 -52.5q-79 0 -133 50t-54 132zM393 1260q0 -51 30 -82t77 -31q48 0 78 30t30 83q0 56 -30.5 85t-77.5 29q-45 0 -76 -30t-31 -84z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1574" d="M100 268q0 50 14 91t48.5 77.5t89 61t139.5 39t197 14.5h94v67q0 118 -33 170q-44 66 -174 66q-106 0 -158 -43q-35 -28 -41 -145h-88q-20 108 -20 147q0 83 104 119q113 37 224 37q76 0 131 -14t98 -52.5t61 -101.5q114 168 340 168q98 0 171 -35.5t113 -95t58.5 -125.5 t18.5 -138q0 -85 -27 -110q-16 -14 -84 -14h-563v-23q0 -66 19.5 -124.5t58 -105t103 -73.5t147.5 -27q63 0 120.5 18t94 39.5t94.5 61.5l55 -84q-187 -162 -383 -162q-226 0 -342 156q-156 -152 -356 -152q-62 0 -118 17t-103 51t-75 92t-28 133zM244 279q0 -51 18 -88 t49 -57.5t65 -30t73 -9.5q149 0 284 111q-49 90 -49 241h-111q-183 0 -256 -43t-73 -124zM821 555l527 6v17q0 57 -12 103t-39 86t-77.5 62.5t-121.5 22.5q-113 0 -191 -74t-86 -223z" />
+<glyph unicode="&#xe7;" horiz-adv-x="976" d="M100 455q0 234 132 374t360 140q104 0 176 -19q53 -14 77.5 -42.5t24.5 -80.5q0 -69 -16 -157h-90q-11 112 -50.5 147t-146.5 35q-155 0 -240 -104t-85 -285q0 -163 82.5 -263t240.5 -100q89 0 159.5 28t141.5 83l58 -84q-157 -150 -375 -156q-17 -46 -17 -61 q0 -30 33 -47q76 -39 108 -77t32 -93q0 -103 -90 -164t-242 -84l-21 82q111 23 164 56.5t53 90.5q0 33 -22 58t-70 51q-39 22 -39 59t35 133q-169 19 -271 145.5t-102 334.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1017" d="M100 455q0 125 36 224t99.5 161.5t147 95.5t182.5 33q81 0 145 -21t104.5 -55.5t67 -82t37.5 -98t11 -106.5q0 -88 -25 -110q-19 -17 -84 -17h-577v-33q0 -154 84.5 -250t249.5 -96q90 0 164 30t151 87l59 -90q-177 -156 -397 -156q-113 0 -201 38t-143 104.5t-83 153.5 t-28 188zM252 584l539 6v20q0 113 -56 177.5t-190 64.5q-114 0 -196.5 -69.5t-96.5 -198.5zM322 1427q0 27 24 47.5t51 20.5t47.5 -17t53.5 -69l180 -287l-57 -47l-236 242q-34 36 -48.5 60t-14.5 50z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1017" d="M100 455q0 125 36 224t99.5 161.5t147 95.5t182.5 33q81 0 145 -21t104.5 -55.5t67 -82t37.5 -98t11 -106.5q0 -88 -25 -110q-19 -17 -84 -17h-577v-33q0 -154 84.5 -250t249.5 -96q90 0 164 30t151 87l59 -90q-177 -156 -397 -156q-113 0 -201 38t-143 104.5t-83 153.5 t-28 188zM252 584l539 6v20q0 113 -56 177.5t-190 64.5q-114 0 -196.5 -69.5t-96.5 -198.5zM434 1122l180 287q33 52 54 69t49 17q26 0 50 -20.5t24 -47.5q0 -26 -14.5 -49.5t-49.5 -60.5l-238 -242z" />
+<glyph unicode="&#xea;" horiz-adv-x="1017" d="M100 455q0 125 36 224t99.5 161.5t147 95.5t182.5 33q81 0 145 -21t104.5 -55.5t67 -82t37.5 -98t11 -106.5q0 -88 -25 -110q-19 -17 -84 -17h-577v-33q0 -154 84.5 -250t249.5 -96q90 0 164 30t151 87l59 -90q-177 -156 -397 -156q-113 0 -201 38t-143 104.5t-83 153.5 t-28 188zM252 584l539 6v20q0 113 -56 177.5t-190 64.5q-114 0 -196.5 -69.5t-96.5 -198.5zM270 1090l213 309q26 41 70 41q49 0 76 -39l200 -309l-57 -48l-225 236l-221 -236z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1017" d="M100 455q0 125 36 224t99.5 161.5t147 95.5t182.5 33q81 0 145 -21t104.5 -55.5t67 -82t37.5 -98t11 -106.5q0 -88 -25 -110q-19 -17 -84 -17h-577v-33q0 -154 84.5 -250t249.5 -96q90 0 164 30t151 87l59 -90q-177 -156 -397 -156q-113 0 -201 38t-143 104.5t-83 153.5 t-28 188zM252 584l539 6v20q0 113 -56 177.5t-190 64.5q-114 0 -196.5 -69.5t-96.5 -198.5zM287 1274q0 40 27 68t69 28q43 0 69.5 -27.5t26.5 -68.5q0 -43 -27.5 -71.5t-72.5 -28.5q-39 0 -65.5 28t-26.5 72zM610 1274q0 40 28 68t71 28q41 0 67.5 -28t26.5 -68 q0 -43 -27 -71.5t-71 -28.5q-39 0 -67 28.5t-28 71.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="606" d="M29 1427q0 27 24 47.5t51 20.5t47.5 -17t53.5 -69l180 -287l-57 -47l-236 242q-34 36 -48.5 60t-14.5 50zM70 -2v94q74 6 105.5 12.5t41.5 18.5q16 19 16 110v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 206 61q50 0 75.5 -27.5t25.5 -109.5q0 -89 -4 -290 t-4 -295q0 -90 18 -111q9 -14 37 -20.5t104 -12.5v-94q-176 4 -247 4q-121 0 -211 -4z" />
+<glyph unicode="&#xed;" horiz-adv-x="606" d="M70 -2v94q74 6 105.5 12.5t41.5 18.5q16 19 16 110v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 206 61q50 0 75.5 -27.5t25.5 -109.5q0 -89 -4 -290t-4 -295q0 -90 18 -111q9 -14 37 -20.5t104 -12.5v-94q-176 4 -247 4q-121 0 -211 -4zM119 1122l180 287 q33 52 53.5 69t48.5 17q26 0 50 -20.5t24 -47.5q0 -26 -14.5 -50t-48.5 -60l-238 -242z" />
+<glyph unicode="&#xee;" horiz-adv-x="606" d="M-14 1090l213 309q26 41 69 41q49 0 76 -39l201 -309l-58 -48l-225 236l-221 -236zM70 -2v94q74 6 105.5 12.5t41.5 18.5q16 19 16 110v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 206 61q50 0 75.5 -27.5t25.5 -109.5q0 -89 -4 -290t-4 -295q0 -90 18 -111 q9 -14 37 -20.5t104 -12.5v-94q-176 4 -247 4q-121 0 -211 -4z" />
+<glyph unicode="&#xef;" horiz-adv-x="606" d="M10 1274q0 40 27 68t69 28q43 0 70 -27.5t27 -68.5q0 -43 -28 -71.5t-73 -28.5q-39 0 -65.5 28t-26.5 72zM70 -2v94q74 6 105.5 12.5t41.5 18.5q16 19 16 110v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 206 61q50 0 75.5 -27.5t25.5 -109.5q0 -89 -4 -290 t-4 -295q0 -90 18 -111q9 -14 37 -20.5t104 -12.5v-94q-176 4 -247 4q-121 0 -211 -4zM334 1274q0 41 27.5 68.5t70.5 27.5q41 0 67.5 -28t26.5 -68q0 -43 -27 -71.5t-71 -28.5q-39 0 -66.5 28.5t-27.5 71.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1077" d="M100 440q0 208 121.5 343t319.5 135q74 0 148.5 -34.5t113.5 -97.5q-57 197 -185 347l-243 -142l-45 76l229 135q-56 65 -139 122t-166 95l49 90q198 -76 365 -233l176 102l47 -78l-162 -94q127 -147 187.5 -320.5t60.5 -393.5q0 -246 -122.5 -383.5t-324.5 -137.5 q-197 0 -313.5 131t-116.5 338zM242 473q0 -184 81.5 -281.5t211.5 -97.5q136 0 216 88.5t80 245.5q0 172 -76 273.5t-225 101.5q-125 0 -206.5 -90t-81.5 -240z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1218" d="M70 -2v94q75 6 106 13t41 20q16 19 16 108v418q0 99 -18 131.5t-88 32.5q-29 0 -57 -4v86q105 61 196 61q46 0 72 -28t29 -111q71 68 169.5 108t200.5 40q61 0 112 -18t77 -50q35 -36 49 -98.5t14 -171.5v-396q0 -79 15 -100q8 -18 37.5 -26t117.5 -15v-94q-172 4 -233 4 q-54 0 -226 -4v94q68 6 96.5 13t37.5 20q18 15 18 113v364q0 126 -31 168q-43 59 -157 59q-72 0 -155 -24t-140 -64v-505q0 -90 18 -113q9 -12 36.5 -18.5t100.5 -12.5v-94q-176 4 -243 4q-121 0 -211 -4zM305 1139q26 94 69.5 153.5t104.5 59.5q46 0 109 -29l57 -25 q57 -26 90 -26q27 0 50 25.5t49 80.5l67 -22q-27 -107 -70 -163t-92 -56q-43 0 -129 37l-49 22q-53 23 -88 23q-32 0 -51.5 -22.5t-48.5 -82.5z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1105" d="M100 465q0 235 128.5 369.5t340.5 134.5q224 0 331.5 -126t107.5 -356q0 -128 -35 -228t-97.5 -162t-144 -94t-178.5 -32q-222 0 -337.5 134t-115.5 360zM242 487q0 -395 315 -395q148 0 228.5 96.5t80.5 284.5q0 377 -305 377q-155 0 -237 -94.5t-82 -268.5zM336 1427 q0 27 24.5 47.5t51.5 20.5t47 -17t53 -69l180 -287l-57 -47l-236 242q-34 36 -48.5 60t-14.5 50z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1105" d="M100 465q0 235 128.5 369.5t340.5 134.5q224 0 331.5 -126t107.5 -356q0 -128 -35 -228t-97.5 -162t-144 -94t-178.5 -32q-222 0 -337.5 134t-115.5 360zM242 487q0 -395 315 -395q148 0 228.5 96.5t80.5 284.5q0 377 -305 377q-155 0 -237 -94.5t-82 -268.5zM438 1122 l180 287q33 52 54 69t49 17q26 0 50 -20.5t24 -47.5q0 -26 -14.5 -49.5t-49.5 -60.5l-237 -242z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1105" d="M100 465q0 235 128.5 369.5t340.5 134.5q224 0 331.5 -126t107.5 -356q0 -128 -35 -228t-97.5 -162t-144 -94t-178.5 -32q-222 0 -337.5 134t-115.5 360zM242 487q0 -395 315 -395q148 0 228.5 96.5t80.5 284.5q0 377 -305 377q-155 0 -237 -94.5t-82 -268.5zM283 1090 l213 309q26 41 69 41q49 0 76 -39l201 -309l-58 -48l-225 236l-221 -236z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1105" d="M100 465q0 235 128.5 369.5t340.5 134.5q224 0 331.5 -126t107.5 -356q0 -128 -35 -228t-97.5 -162t-144 -94t-178.5 -32q-222 0 -337.5 134t-115.5 360zM242 487q0 -395 315 -395q148 0 228.5 96.5t80.5 284.5q0 377 -305 377q-155 0 -237 -94.5t-82 -268.5zM258 1139 q26 94 69.5 153.5t104.5 59.5q46 0 109 -29l57 -25q57 -26 90 -26q27 0 49.5 25.5t48.5 80.5l68 -22q-27 -107 -70 -163t-92 -56q-43 0 -129 37l-49 22q-53 23 -88 23q-32 0 -51.5 -22.5t-48.5 -82.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1105" d="M100 465q0 235 128.5 369.5t340.5 134.5q224 0 331.5 -126t107.5 -356q0 -128 -35 -228t-97.5 -162t-144 -94t-178.5 -32q-222 0 -337.5 134t-115.5 360zM242 487q0 -395 315 -395q148 0 228.5 96.5t80.5 284.5q0 377 -305 377q-155 0 -237 -94.5t-82 -268.5zM303 1274 q0 40 27 68t69 28q43 0 70 -27.5t27 -68.5q0 -43 -28 -71.5t-73 -28.5q-39 0 -65.5 28t-26.5 72zM627 1274q0 41 27.5 68.5t70.5 27.5q41 0 67.5 -28t26.5 -68q0 -43 -27 -71.5t-71 -28.5q-39 0 -66.5 28.5t-27.5 71.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1198" d="M135 573v134h924v-134h-924zM500 319q0 41 27 70t69 29t69 -29t27 -72q0 -44 -27 -74t-69 -30q-43 0 -69.5 30.5t-26.5 75.5zM500 965q0 41 27 71.5t69 30.5t69 -30t27 -74q0 -43 -27 -73t-69 -30q-43 0 -69.5 30t-26.5 75z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1105" d="M100 465q0 235 128.5 369.5t340.5 134.5q141 0 238 -54l92 129l74 -53l-92 -129q127 -121 127 -375q0 -128 -35 -228t-97.5 -162t-144 -94t-178.5 -32q-150 0 -256 64l-86 -123l-74 51l90 129q-127 130 -127 373zM242 487q0 -185 67 -280l422 600q-71 41 -170 41 q-155 0 -237 -93.5t-82 -267.5zM373 143q71 -49 184 -49q149 0 229 95.5t80 283.5q0 178 -67 270z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1191" d="M47 811v86q105 61 203 61q51 0 75.5 -29t24.5 -110q0 -15 -2 -211.5t-2 -279.5q0 -118 43.5 -170t157.5 -52q73 0 149.5 27t134.5 70v448q0 103 -17.5 133.5t-92.5 30.5q-36 0 -64 -4v86q100 61 217 61q49 0 73 -31t24 -116q0 -1 -2 -230t-2 -350q0 -76 19.5 -103.5 t70.5 -27.5q36 0 78 11v-95q-65 -32 -160 -32q-120 0 -139 131q-142 -142 -344 -142q-66 0 -125.5 22.5t-92.5 61.5q-34 40 -48.5 98t-14.5 158v338q0 100 -17.5 132t-87.5 32q-8 0 -30 -2t-29 -2zM322 1427q0 27 24 47.5t51 20.5t47.5 -17t53.5 -69l180 -287l-57 -47 l-236 242q-34 36 -48.5 60t-14.5 50z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1191" d="M47 811v86q105 61 203 61q51 0 75.5 -29t24.5 -110q0 -15 -2 -211.5t-2 -279.5q0 -118 43.5 -170t157.5 -52q73 0 149.5 27t134.5 70v448q0 103 -17.5 133.5t-92.5 30.5q-36 0 -64 -4v86q100 61 217 61q49 0 73 -31t24 -116q0 -1 -2 -230t-2 -350q0 -76 19.5 -103.5 t70.5 -27.5q36 0 78 11v-95q-65 -32 -160 -32q-120 0 -139 131q-142 -142 -344 -142q-66 0 -125.5 22.5t-92.5 61.5q-34 40 -48.5 98t-14.5 158v338q0 100 -17.5 132t-87.5 32q-8 0 -30 -2t-29 -2zM438 1122l180 287q33 52 54 69t49 17q26 0 50 -20.5t24 -47.5 q0 -26 -14.5 -49.5t-49.5 -60.5l-237 -242z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1191" d="M47 811v86q105 61 203 61q51 0 75.5 -29t24.5 -110q0 -15 -2 -211.5t-2 -279.5q0 -118 43.5 -170t157.5 -52q73 0 149.5 27t134.5 70v448q0 103 -17.5 133.5t-92.5 30.5q-36 0 -64 -4v86q100 61 217 61q49 0 73 -31t24 -116q0 -1 -2 -230t-2 -350q0 -76 19.5 -103.5 t70.5 -27.5q36 0 78 11v-95q-65 -32 -160 -32q-120 0 -139 131q-142 -142 -344 -142q-66 0 -125.5 22.5t-92.5 61.5q-34 40 -48.5 98t-14.5 158v338q0 100 -17.5 132t-87.5 32q-8 0 -30 -2t-29 -2zM281 1090l213 309q26 41 69 41q49 0 76 -39l201 -309l-58 -48l-225 236 l-221 -236z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1191" d="M47 811v86q105 61 203 61q51 0 75.5 -29t24.5 -110q0 -15 -2 -211.5t-2 -279.5q0 -118 43.5 -170t157.5 -52q73 0 149.5 27t134.5 70v448q0 103 -17.5 133.5t-92.5 30.5q-36 0 -64 -4v86q100 61 217 61q49 0 73 -31t24 -116q0 -1 -2 -230t-2 -350q0 -76 19.5 -103.5 t70.5 -27.5q36 0 78 11v-95q-65 -32 -160 -32q-120 0 -139 131q-142 -142 -344 -142q-66 0 -125.5 22.5t-92.5 61.5q-34 40 -48.5 98t-14.5 158v338q0 100 -17.5 132t-87.5 32q-8 0 -30 -2t-29 -2zM289 1274q0 40 27 68t69 28q43 0 69.5 -27.5t26.5 -68.5q0 -43 -27.5 -71.5 t-72.5 -28.5q-39 0 -65.5 28t-26.5 72zM612 1274q0 40 28 68t71 28q41 0 67.5 -28t26.5 -68q0 -43 -27 -71.5t-71 -28.5q-39 0 -67 28.5t-28 71.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1067" d="M8 848v94q136 -4 238 -4q56 0 192 4v-94q-64 -4 -90 -8q-49 -8 -49 -54q0 -28 27 -90q22 -52 79 -182.5t98 -226.5t77 -185q12 35 81.5 236t110.5 315q33 87 33 146q0 16 -8.5 26t-27.5 14.5t-32.5 6t-39.5 2t-33 0.5v94q126 -4 204 -4q73 0 191 4v-94q-68 -6 -90 -23 q-18 -16 -32.5 -48.5t-43.5 -110.5l-246 -666q-91 -254 -147 -371q-49 -104 -115 -147t-160 -43q-157 0 -157 121q0 62 12 121h82q13 -73 25 -91q19 -28 71 -28q72 0 125 92q44 78 147 344q-50 0 -75 59l-283 650q-42 92 -72 116q-24 19 -92 25zM453 1122l180 287 q33 52 53.5 69t48.5 17q26 0 50 -20.5t24 -47.5q0 -26 -14.5 -49.5t-49.5 -60.5l-237 -242z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1155" d="M23 1352v86q108 59 206 59q51 0 76 -28.5t25 -112.5q0 -58 -3 -228t-3 -301q162 142 342 142q94 0 165.5 -36t116 -101.5t66.5 -153.5t22 -197q0 -229 -127 -367.5t-366 -138.5q-87 0 -217 29v-270q0 -116 24 -140q12 -14 46 -21.5t145 -14.5v-95q-240 5 -258 5 q-19 0 -254 -5v95q74 6 105 14.5t42 24.5q14 16 14 104v1446v13q0 45 -0.5 65t-3.5 48.5t-9 39.5t-18 23.5t-30 16t-45 3.5q-11 0 -61 -4zM326 131q76 -35 231 -35q163 0 247.5 102t84.5 273q0 73 -14 134.5t-45.5 115.5t-91 84.5t-142.5 30.5q-66 0 -139.5 -26.5 t-130.5 -68.5v-610z" />
+<glyph unicode="&#xff;" horiz-adv-x="1067" d="M8 848v94q136 -4 238 -4q56 0 192 4v-94q-64 -4 -90 -8q-49 -8 -49 -54q0 -28 27 -90q22 -52 79 -182.5t98 -226.5t77 -185q12 35 81.5 236t110.5 315q33 87 33 146q0 16 -8.5 26t-27.5 14.5t-32.5 6t-39.5 2t-33 0.5v94q126 -4 204 -4q73 0 191 4v-94q-68 -6 -90 -23 q-18 -16 -32.5 -48.5t-43.5 -110.5l-246 -666q-91 -254 -147 -371q-49 -104 -115 -147t-160 -43q-157 0 -157 121q0 62 12 121h82q13 -73 25 -91q19 -28 71 -28q72 0 125 92q44 78 147 344q-50 0 -75 59l-283 650q-42 92 -72 116q-24 19 -92 25zM303 1274q0 40 27 68t69 28 q43 0 70 -27.5t27 -68.5q0 -43 -28 -71.5t-73 -28.5q-39 0 -65.5 28t-26.5 72zM627 1274q0 41 27.5 68.5t70.5 27.5q41 0 67.5 -28t26.5 -68q0 -43 -27 -71.5t-71 -28.5q-39 0 -66.5 28.5t-27.5 71.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="1986" d="M104 674q0 152 43.5 283t125.5 230.5t210.5 156.5t288.5 57q57 0 205 -8.5t188 -8.5h543q72 0 98.5 -25t26.5 -73q0 -97 -18 -225h-89q-15 149 -51 174q-25 19 -75.5 25t-180.5 6h-227v-490h162q90 0 123.5 6.5t52.5 28.5q32 46 37 127h86q-2 -53 -2 -213q0 -137 2 -221 h-82q-5 39 -12.5 66.5t-12 36.5t-14.5 26q-16 21 -53 26t-127 5h-160v-453q0 -44 13 -62.5t44 -23.5q71 -8 195 -8q145 0 208.5 13t90.5 42q40 40 82 180h84q-3 -205 -35 -295q-18 -57 -152 -57h-563q-43 0 -191.5 -6t-222.5 -6q-162 0 -286 51.5t-201 144.5t-115.5 216.5 t-38.5 273.5zM266 696q0 -267 128 -426t364 -159q238 0 270 65q12 28 12 125v770q0 76 -4 111t-20 51q-22 25 -80 34t-176 9q-152 0 -265 -76.5t-171 -207t-58 -296.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="1740" d="M100 465q0 235 125.5 369.5t335.5 134.5q277 0 375 -209q104 209 360 209q98 0 170 -30.5t112 -83.5t58.5 -115t18.5 -134q0 -87 -27 -110q-19 -17 -84 -17h-551v-33q0 -75 18 -137t55.5 -110t99.5 -74.5t145 -26.5q91 0 158.5 29.5t148.5 89.5l55 -84 q-183 -162 -383 -162q-142 0 -234.5 58.5t-137.5 160.5q-112 -219 -373 -219q-221 0 -333 133.5t-112 360.5zM242 487q0 -395 307 -395q145 0 224 96.5t79 284.5q0 194 -73.5 285.5t-223.5 91.5q-153 0 -233 -94t-80 -269zM1001 584l512 6v16q0 116 -54.5 181t-190.5 65 q-108 0 -180 -68.5t-87 -199.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="1253" d="M8 1292v94q234 -4 246 -4q46 0 254 4v-94q-75 -2 -113 -10t-46.5 -17.5t-8.5 -27.5q0 -27 45 -104q149 -254 260 -457q169 292 273 467q40 64 40 102q0 25 -33 35.5t-130 11.5v94q98 -4 256 -4q106 0 192 4v-94q-57 -3 -96 -30q-27 -21 -90 -119l-357 -572v-340 q0 -82 9 -100t44.5 -25.5t139.5 -11.5v-96q-218 4 -258 4q-73 0 -273 -4v96q101 4 132.5 10.5t40.5 22.5q12 19 12 104v338l-334 557q-11 18 -26.5 45t-21.5 37.5t-15.5 24t-16 20t-14.5 11.5q-36 23 -111 28zM367 1622q0 42 27 69t69 27q44 0 70 -27t26 -69 q0 -41 -27.5 -70.5t-70.5 -29.5q-40 0 -67 28.5t-27 71.5zM719 1622q0 41 27.5 68.5t70.5 27.5q42 0 69 -27t27 -69q0 -41 -27.5 -70.5t-70.5 -29.5q-40 0 -68 29t-28 71z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M18 1090l213 309q26 41 70 41q49 0 76 -39l201 -309l-58 -48l-225 236l-221 -236z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M0 1139q26 94 69.5 153.5t104.5 59.5q46 0 109 -29l57 -25q57 -26 90 -26q27 0 49.5 25.5t48.5 80.5l68 -22q-27 -107 -70 -163t-92 -56q-43 0 -129 37l-49 22q-53 23 -88 23q-32 0 -51.5 -22.5t-48.5 -82.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="920" />
+<glyph unicode="&#x2001;" horiz-adv-x="1841" />
+<glyph unicode="&#x2002;" horiz-adv-x="920" />
+<glyph unicode="&#x2003;" horiz-adv-x="1841" />
+<glyph unicode="&#x2004;" horiz-adv-x="613" />
+<glyph unicode="&#x2005;" horiz-adv-x="460" />
+<glyph unicode="&#x2006;" horiz-adv-x="306" />
+<glyph unicode="&#x2007;" horiz-adv-x="306" />
+<glyph unicode="&#x2008;" horiz-adv-x="230" />
+<glyph unicode="&#x2009;" horiz-adv-x="368" />
+<glyph unicode="&#x200a;" horiz-adv-x="102" />
+<glyph unicode="&#x2010;" horiz-adv-x="540" d="M57 436v133h420v-133h-420z" />
+<glyph unicode="&#x2011;" horiz-adv-x="540" d="M57 436v133h420v-133h-420z" />
+<glyph unicode="&#x2012;" horiz-adv-x="540" d="M57 436v133h420v-133h-420z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1193" d="M96 440v123h998v-123h-998z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M96 440v123h1485v-123h-1485z" />
+<glyph unicode="&#x2018;" horiz-adv-x="409" d="M61 1067q0 227 293 403l43 -65q-192 -125 -192 -240q0 -47 45 -61q41 -13 61.5 -33.5t20.5 -66.5q0 -47 -34.5 -77t-86.5 -30q-68 0 -109 46t-41 124z" />
+<glyph unicode="&#x2019;" horiz-adv-x="409" d="M8 942q195 125 195 240q0 45 -45 61q-41 13 -62.5 34t-21.5 66t35.5 76t85.5 31q67 0 109 -46t42 -124q0 -228 -293 -401z" />
+<glyph unicode="&#x201a;" horiz-adv-x="409" d="M8 -301q195 123 195 240q0 45 -45 59q-42 15 -63 35t-21 65q0 48 35 78.5t86 30.5q70 0 110.5 -45.5t40.5 -126.5q0 -227 -293 -400z" />
+<glyph unicode="&#x201c;" horiz-adv-x="751" d="M61 1067q0 227 293 403l43 -65q-192 -125 -192 -240q0 -47 45 -61q41 -13 61.5 -33.5t20.5 -66.5q0 -47 -34.5 -77t-86.5 -30q-68 0 -109 46t-41 124zM406 1067q0 228 294 403l41 -65q-192 -125 -192 -240q0 -48 47 -61q39 -13 59.5 -33.5t20.5 -66.5q0 -47 -34.5 -77 t-84.5 -30q-68 0 -109.5 46t-41.5 124z" />
+<glyph unicode="&#x201d;" horiz-adv-x="751" d="M8 942q195 125 195 240q0 45 -45 61q-41 13 -62.5 34t-21.5 66t35.5 76t85.5 31q69 0 110 -45.5t41 -124.5q0 -228 -293 -401zM354 942q193 126 193 240q0 45 -45 61q-40 12 -61 33.5t-21 66.5t34.5 76t84.5 31q68 0 109.5 -45.5t41.5 -124.5q0 -228 -295 -401z" />
+<glyph unicode="&#x201e;" horiz-adv-x="751" d="M8 -301q195 123 195 240q0 45 -45 59q-42 15 -63 35t-21 65q0 48 35 78.5t86 30.5q70 0 110.5 -45.5t40.5 -126.5q0 -227 -293 -400zM354 -301q193 123 193 240q0 45 -45 59q-41 15 -61.5 35t-20.5 65q0 49 34 79t85 30q70 0 110.5 -45.5t40.5 -126.5q0 -227 -295 -400z " />
+<glyph unicode="&#x2022;" horiz-adv-x="692" d="M80 567q0 114 74 190.5t186 76.5q120 0 196 -75t76 -186q0 -127 -75.5 -204.5t-192.5 -77.5q-115 0 -189.5 79t-74.5 197z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1712" d="M162 104q0 55 35 92t88 37q54 0 89.5 -34t35.5 -88q0 -59 -34 -95t-89 -36q-54 0 -89.5 35t-35.5 89zM731 104q0 55 35 92t86 37q55 0 90 -34t35 -88q0 -60 -33.5 -95.5t-89.5 -35.5q-53 0 -88 35t-35 89zM1303 104q0 55 35.5 92t86.5 37q55 0 90 -34t35 -88 q0 -60 -33.5 -95.5t-89.5 -35.5q-53 0 -88.5 35t-35.5 89z" />
+<glyph unicode="&#x202f;" horiz-adv-x="368" />
+<glyph unicode="&#x2039;" horiz-adv-x="559" d="M70 459q0 33 34 71l334 320l64 -57l-277 -330l275 -340l-64 -62l-336 328q-30 30 -30 70z" />
+<glyph unicode="&#x203a;" horiz-adv-x="559" d="M57 119l277 327l-277 342l66 62l336 -330q30 -26 30 -71q0 -29 -36 -70l-332 -318z" />
+<glyph unicode="&#x205f;" horiz-adv-x="460" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1396" d="M154 506v92h143v47q0 37 4 107h-147v90h159q43 251 197 390.5t389 139.5q161 0 285 -45q98 -38 98 -117q0 -70 -16 -206h-90q-10 130 -46 176q-25 30 -89.5 47.5t-155.5 17.5q-163 0 -273 -103.5t-145 -299.5h512v-90h-522q-4 -58 -4 -90v-64h526v-92h-516 q30 -208 139 -308t279 -100q85 0 152.5 19.5t96.5 46.5q38 38 72 162h94q-8 -148 -22 -199q-10 -39 -42.5 -68t-78.5 -45q-127 -43 -293 -43q-231 0 -377 138.5t-178 396.5h-151z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1503" d="M51 1329q0 26 11.5 40.5t46.5 14.5h448q57 0 57 -53q0 -61 -6 -117h-45q-8 73 -26 86q-12 9 -39.5 12t-112.5 3v-406q0 -51 4 -59q9 -11 86 -16v-58q-41 2 -135 2q-104 0 -143 -2v58q74 2 84 16q8 8 8 57v408q-90 0 -117.5 -3t-38.5 -12q-24 -14 -31 -86h-43 q-8 49 -8 115zM678 776v58q4 0 11 1q22 1 30.5 1.5t20 4t14 7.5t6.5 15.5t4 23v35.5q6 307 6 358q0 21 -8 33q-10 10 -76 12v59q59 -2 117 -2q63 0 90 2q127 -297 160 -387q35 90 166 387q35 -2 104 -2q55 0 100 2v-59q-69 -3 -75 -14q-9 -9 -9 -47q0 -37 2 -346 q0 -56 9 -68q2 -4 8.5 -7t23.5 -5t48 -4v-58q-45 2 -130 2q-90 0 -141 -2v58q71 5 78 16q8 11 8 47q0 297 2 379q-7 -16 -23.5 -53.5t-53 -121.5t-91.5 -206q-6 -17 -15 -24t-24 -7q-16 0 -25 6.5t-18 26.5q-50 116 -84 198.5t-49.5 120t-25.5 60.5q0 -67 1 -227t1 -162 v-20.5t3.5 -14t5 -9t11 -4.5t15 -2t23 -1t30.5 -2v-58q-41 2 -115 2q-92 0 -135 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="942" d="M0 0v942h942v-942h-942z" />
+<hkern u1="&#x20;" u2="&#x2026;" k="102" />
+<hkern u1="&#x20;" u2="&#x178;" k="29" />
+<hkern u1="&#x20;" u2="&#xdd;" k="29" />
+<hkern u1="&#x20;" u2="&#xc5;" k="45" />
+<hkern u1="&#x20;" u2="&#xc4;" k="45" />
+<hkern u1="&#x20;" u2="&#xc3;" k="45" />
+<hkern u1="&#x20;" u2="&#xc2;" k="45" />
+<hkern u1="&#x20;" u2="&#xc1;" k="45" />
+<hkern u1="&#x20;" u2="&#xc0;" k="45" />
+<hkern u1="&#x20;" u2="Y" k="29" />
+<hkern u1="&#x20;" u2="W" k="166" />
+<hkern u1="&#x20;" u2="V" k="-29" />
+<hkern u1="&#x20;" u2="A" k="45" />
+<hkern u1="&#x20;" u2="&#x2e;" k="102" />
+<hkern u1="&#x20;" u2="&#x2c;" k="102" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-25" />
+<hkern u1="&#x21;" u2="]" k="-25" />
+<hkern u1="&#x21;" u2="&#x29;" k="-25" />
+<hkern u1="&#x22;" u2="&#x31;" k="109" />
+<hkern u1="&#x26;" u2="[" k="57" />
+<hkern u1="&#x27;" u2="&#x31;" k="109" />
+<hkern u1="&#x28;" u2="y" k="-41" />
+<hkern u1="&#x28;" u2="W" k="-61" />
+<hkern u1="&#x28;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="127" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="127" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2d;" u2="W" k="102" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="147" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="147" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="109" />
+<hkern u1="&#x2f;" u2="&#x153;" k="121" />
+<hkern u1="&#x2f;" u2="&#x152;" k="82" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-41" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="121" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="121" />
+<hkern u1="&#x2f;" u2="&#xea;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="102" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd8;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd6;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc7;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="133" />
+<hkern u1="&#x2f;" u2="&#x7b;" k="102" />
+<hkern u1="&#x2f;" u2="q" k="121" />
+<hkern u1="&#x2f;" u2="o" k="121" />
+<hkern u1="&#x2f;" u2="l" k="-41" />
+<hkern u1="&#x2f;" u2="k" k="-41" />
+<hkern u1="&#x2f;" u2="h" k="-41" />
+<hkern u1="&#x2f;" u2="e" k="121" />
+<hkern u1="&#x2f;" u2="d" k="121" />
+<hkern u1="&#x2f;" u2="c" k="121" />
+<hkern u1="&#x2f;" u2="b" k="-41" />
+<hkern u1="&#x2f;" u2="a" k="102" />
+<hkern u1="&#x2f;" u2="V" k="-59" />
+<hkern u1="&#x2f;" u2="R" k="-18" />
+<hkern u1="&#x2f;" u2="Q" k="82" />
+<hkern u1="&#x2f;" u2="P" k="-18" />
+<hkern u1="&#x2f;" u2="O" k="82" />
+<hkern u1="&#x2f;" u2="N" k="-18" />
+<hkern u1="&#x2f;" u2="M" k="-18" />
+<hkern u1="&#x2f;" u2="L" k="-18" />
+<hkern u1="&#x2f;" u2="K" k="-18" />
+<hkern u1="&#x2f;" u2="I" k="-18" />
+<hkern u1="&#x2f;" u2="H" k="-18" />
+<hkern u1="&#x2f;" u2="G" k="82" />
+<hkern u1="&#x2f;" u2="F" k="-18" />
+<hkern u1="&#x2f;" u2="E" k="-18" />
+<hkern u1="&#x2f;" u2="D" k="-18" />
+<hkern u1="&#x2f;" u2="C" k="82" />
+<hkern u1="&#x2f;" u2="B" k="-18" />
+<hkern u1="&#x2f;" u2="A" k="133" />
+<hkern u1="&#x30;" u2="&#x153;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-70" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-70" />
+<hkern u1="&#x30;" u2="&#xea;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-70" />
+<hkern u1="&#x30;" u2="q" k="-70" />
+<hkern u1="&#x30;" u2="o" k="-70" />
+<hkern u1="&#x30;" u2="e" k="-70" />
+<hkern u1="&#x30;" u2="d" k="-70" />
+<hkern u1="&#x30;" u2="c" k="-70" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-61" />
+<hkern u1="&#x30;" u2="&#x25;" k="-100" />
+<hkern u1="&#x31;" u2="&#x2f;" k="41" />
+<hkern u1="&#x31;" u2="&#x27;" k="223" />
+<hkern u1="&#x31;" u2="&#x22;" k="223" />
+<hkern u1="&#x33;" g2="uniFB04" k="-61" />
+<hkern u1="&#x33;" g2="uniFB03" k="-61" />
+<hkern u1="&#x33;" g2="uniFB02" k="-61" />
+<hkern u1="&#x33;" g2="uniFB01" k="-61" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-61" />
+<hkern u1="&#x33;" u2="&#x7d;" k="41" />
+<hkern u1="&#x33;" u2="f" k="-61" />
+<hkern u1="&#x33;" u2="]" k="41" />
+<hkern u1="&#x33;" u2="&#x29;" k="41" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-131" />
+<hkern u1="&#x34;" u2="r" k="-131" />
+<hkern u1="&#x34;" u2="p" k="-131" />
+<hkern u1="&#x34;" u2="n" k="-131" />
+<hkern u1="&#x34;" u2="m" k="-131" />
+<hkern u1="&#x35;" u2="&#xe6;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe5;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe4;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe3;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe2;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe1;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe0;" k="-41" />
+<hkern u1="&#x35;" u2="a" k="-41" />
+<hkern u1="&#x36;" u2="]" k="-41" />
+<hkern u1="&#x37;" u2="&#x2026;" k="285" />
+<hkern u1="&#x37;" u2="&#xb0;" k="-61" />
+<hkern u1="&#x37;" u2="&#x2e;" k="285" />
+<hkern u1="&#x37;" u2="&#x2c;" k="305" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-82" />
+<hkern u1="&#x3a;" u2="&#x33;" k="-63" />
+<hkern u1="&#x3a;" u2="&#x31;" k="109" />
+<hkern u1="&#x3f;" u2="&#x203a;" k="-20" />
+<hkern u1="&#x3f;" u2="&#xbb;" k="-20" />
+<hkern u1="&#x3f;" u2="&#x3b;" k="-37" />
+<hkern u1="&#x3f;" u2="&#x3a;" k="-31" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="109" />
+<hkern u1="A" u2="&#xb5;" k="20" />
+<hkern u1="A" u2="W" k="82" />
+<hkern u1="A" u2="G" k="47" />
+<hkern u1="A" u2="&#x2f;" k="-100" />
+<hkern u1="B" u2="&#xee;" k="-12" />
+<hkern u1="B" u2="&#xec;" k="-6" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="y" k="27" />
+<hkern u1="B" u2="W" k="47" />
+<hkern u1="C" u2="&#xef;" k="-16" />
+<hkern u1="C" u2="&#xee;" k="-43" />
+<hkern u1="C" u2="&#xec;" k="8" />
+<hkern u1="C" u2="y" k="66" />
+<hkern u1="C" u2="e" k="37" />
+<hkern u1="C" u2="d" k="51" />
+<hkern u1="C" u2="W" k="14" />
+<hkern u1="C" u2="C" k="41" />
+<hkern u1="D" u2="&#xef;" k="-10" />
+<hkern u1="D" u2="&#xee;" k="-41" />
+<hkern u1="D" u2="&#xec;" k="-47" />
+<hkern u1="D" u2="&#xd0;" k="-20" />
+<hkern u1="D" u2="&#xc6;" k="184" />
+<hkern u1="D" u2="&#xc5;" k="76" />
+<hkern u1="D" u2="&#xc4;" k="76" />
+<hkern u1="D" u2="&#xc3;" k="76" />
+<hkern u1="D" u2="&#xc2;" k="76" />
+<hkern u1="D" u2="&#xc1;" k="76" />
+<hkern u1="D" u2="&#xc0;" k="76" />
+<hkern u1="D" u2="W" k="55" />
+<hkern u1="D" u2="A" k="76" />
+<hkern u1="E" u2="&#xb5;" k="20" />
+<hkern u1="E" u2="y" k="61" />
+<hkern u1="E" u2="W" k="33" />
+<hkern u1="F" g2="uniFB04" k="41" />
+<hkern u1="F" g2="uniFB03" k="41" />
+<hkern u1="F" g2="uniFB02" k="41" />
+<hkern u1="F" g2="uniFB01" k="41" />
+<hkern u1="F" u2="&#x2026;" k="285" />
+<hkern u1="F" u2="&#x201d;" k="-16" />
+<hkern u1="F" u2="&#x2019;" k="-16" />
+<hkern u1="F" u2="&#x178;" k="33" />
+<hkern u1="F" u2="&#x153;" k="102" />
+<hkern u1="F" u2="&#x152;" k="20" />
+<hkern u1="F" u2="&#xff;" k="106" />
+<hkern u1="F" u2="&#xfe;" k="49" />
+<hkern u1="F" u2="&#xfd;" k="106" />
+<hkern u1="F" u2="&#xfc;" k="76" />
+<hkern u1="F" u2="&#xfb;" k="76" />
+<hkern u1="F" u2="&#xfa;" k="76" />
+<hkern u1="F" u2="&#xf9;" k="76" />
+<hkern u1="F" u2="&#xf8;" k="102" />
+<hkern u1="F" u2="&#xf6;" k="102" />
+<hkern u1="F" u2="&#xf5;" k="102" />
+<hkern u1="F" u2="&#xf4;" k="102" />
+<hkern u1="F" u2="&#xf3;" k="102" />
+<hkern u1="F" u2="&#xf2;" k="102" />
+<hkern u1="F" u2="&#xf1;" k="94" />
+<hkern u1="F" u2="&#xf0;" k="102" />
+<hkern u1="F" u2="&#xef;" k="-4" />
+<hkern u1="F" u2="&#xee;" k="-2" />
+<hkern u1="F" u2="&#xed;" k="88" />
+<hkern u1="F" u2="&#xec;" k="49" />
+<hkern u1="F" u2="&#xeb;" k="102" />
+<hkern u1="F" u2="&#xea;" k="102" />
+<hkern u1="F" u2="&#xe9;" k="102" />
+<hkern u1="F" u2="&#xe8;" k="102" />
+<hkern u1="F" u2="&#xe7;" k="102" />
+<hkern u1="F" u2="&#xe6;" k="129" />
+<hkern u1="F" u2="&#xe5;" k="129" />
+<hkern u1="F" u2="&#xe4;" k="129" />
+<hkern u1="F" u2="&#xe3;" k="129" />
+<hkern u1="F" u2="&#xe2;" k="129" />
+<hkern u1="F" u2="&#xe1;" k="129" />
+<hkern u1="F" u2="&#xe0;" k="129" />
+<hkern u1="F" u2="&#xdf;" k="41" />
+<hkern u1="F" u2="&#xde;" k="4" />
+<hkern u1="F" u2="&#xdd;" k="33" />
+<hkern u1="F" u2="&#xd8;" k="20" />
+<hkern u1="F" u2="&#xd6;" k="20" />
+<hkern u1="F" u2="&#xd5;" k="20" />
+<hkern u1="F" u2="&#xd4;" k="20" />
+<hkern u1="F" u2="&#xd3;" k="20" />
+<hkern u1="F" u2="&#xd2;" k="20" />
+<hkern u1="F" u2="&#xd1;" k="4" />
+<hkern u1="F" u2="&#xd0;" k="4" />
+<hkern u1="F" u2="&#xcf;" k="4" />
+<hkern u1="F" u2="&#xce;" k="4" />
+<hkern u1="F" u2="&#xcd;" k="4" />
+<hkern u1="F" u2="&#xcc;" k="4" />
+<hkern u1="F" u2="&#xcb;" k="4" />
+<hkern u1="F" u2="&#xca;" k="4" />
+<hkern u1="F" u2="&#xc9;" k="4" />
+<hkern u1="F" u2="&#xc8;" k="4" />
+<hkern u1="F" u2="&#xc7;" k="20" />
+<hkern u1="F" u2="&#xc6;" k="231" />
+<hkern u1="F" u2="&#xc5;" k="150" />
+<hkern u1="F" u2="&#xc4;" k="150" />
+<hkern u1="F" u2="&#xc3;" k="150" />
+<hkern u1="F" u2="&#xc2;" k="150" />
+<hkern u1="F" u2="&#xc1;" k="150" />
+<hkern u1="F" u2="&#xc0;" k="150" />
+<hkern u1="F" u2="z" k="94" />
+<hkern u1="F" u2="y" k="57" />
+<hkern u1="F" u2="x" k="96" />
+<hkern u1="F" u2="w" k="82" />
+<hkern u1="F" u2="v" k="106" />
+<hkern u1="F" u2="u" k="76" />
+<hkern u1="F" u2="t" k="20" />
+<hkern u1="F" u2="s" k="59" />
+<hkern u1="F" u2="r" k="94" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="94" />
+<hkern u1="F" u2="o" k="102" />
+<hkern u1="F" u2="n" k="94" />
+<hkern u1="F" u2="m" k="94" />
+<hkern u1="F" u2="l" k="49" />
+<hkern u1="F" u2="k" k="49" />
+<hkern u1="F" u2="j" k="27" />
+<hkern u1="F" u2="i" k="63" />
+<hkern u1="F" u2="h" k="49" />
+<hkern u1="F" u2="g" k="121" />
+<hkern u1="F" u2="f" k="41" />
+<hkern u1="F" u2="e" k="102" />
+<hkern u1="F" u2="d" k="102" />
+<hkern u1="F" u2="c" k="102" />
+<hkern u1="F" u2="b" k="49" />
+<hkern u1="F" u2="a" k="129" />
+<hkern u1="F" u2="Z" k="41" />
+<hkern u1="F" u2="Y" k="33" />
+<hkern u1="F" u2="X" k="43" />
+<hkern u1="F" u2="W" k="35" />
+<hkern u1="F" u2="T" k="25" />
+<hkern u1="F" u2="S" k="16" />
+<hkern u1="F" u2="R" k="4" />
+<hkern u1="F" u2="Q" k="20" />
+<hkern u1="F" u2="P" k="4" />
+<hkern u1="F" u2="O" k="20" />
+<hkern u1="F" u2="N" k="4" />
+<hkern u1="F" u2="M" k="4" />
+<hkern u1="F" u2="L" k="4" />
+<hkern u1="F" u2="K" k="4" />
+<hkern u1="F" u2="J" k="27" />
+<hkern u1="F" u2="I" k="4" />
+<hkern u1="F" u2="H" k="4" />
+<hkern u1="F" u2="G" k="20" />
+<hkern u1="F" u2="F" k="4" />
+<hkern u1="F" u2="E" k="4" />
+<hkern u1="F" u2="D" k="4" />
+<hkern u1="F" u2="C" k="20" />
+<hkern u1="F" u2="B" k="4" />
+<hkern u1="F" u2="A" k="150" />
+<hkern u1="F" u2="&#x2f;" k="121" />
+<hkern u1="F" u2="&#x2e;" k="285" />
+<hkern u1="F" u2="&#x2c;" k="285" />
+<hkern u1="G" u2="&#xee;" k="-14" />
+<hkern u1="G" u2="&#xd0;" k="-20" />
+<hkern u1="G" u2="y" k="41" />
+<hkern u1="G" u2="W" k="41" />
+<hkern u1="G" u2="M" k="25" />
+<hkern u1="H" u2="&#xef;" k="-12" />
+<hkern u1="H" u2="&#xee;" k="-18" />
+<hkern u1="H" u2="&#xec;" k="-18" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-12" />
+<hkern u1="I" u2="&#xee;" k="-18" />
+<hkern u1="I" u2="&#xec;" k="-18" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xf1;" k="43" />
+<hkern u1="J" u2="&#xef;" k="-20" />
+<hkern u1="J" u2="&#xee;" k="-20" />
+<hkern u1="J" u2="&#xec;" k="-31" />
+<hkern u1="J" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xc6;" k="82" />
+<hkern u1="J" u2="y" k="25" />
+<hkern u1="K" u2="&#xef;" k="-29" />
+<hkern u1="K" u2="&#xec;" k="-12" />
+<hkern u1="K" u2="y" k="115" />
+<hkern u1="K" u2="W" k="29" />
+<hkern u1="L" u2="&#xf8;" k="27" />
+<hkern u1="L" u2="y" k="129" />
+<hkern u1="L" u2="b" k="27" />
+<hkern u1="L" u2="W" k="197" />
+<hkern u1="L" u2="&#x20;" k="82" />
+<hkern u1="M" u2="&#xf8;" k="-6" />
+<hkern u1="M" u2="&#xef;" k="-2" />
+<hkern u1="M" u2="&#xec;" k="-33" />
+<hkern u1="M" u2="&#xdd;" k="29" />
+<hkern u1="M" u2="&#xd0;" k="-20" />
+<hkern u1="M" u2="y" k="20" />
+<hkern u1="M" u2="W" k="20" />
+<hkern u1="N" u2="&#xf8;" k="-10" />
+<hkern u1="N" u2="&#xef;" k="-57" />
+<hkern u1="N" u2="&#xee;" k="-10" />
+<hkern u1="N" u2="&#xec;" k="-35" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="&#xef;" k="-10" />
+<hkern u1="O" u2="&#xee;" k="-6" />
+<hkern u1="O" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="W" k="55" />
+<hkern u1="P" u2="&#xef;" k="-14" />
+<hkern u1="P" u2="&#xee;" k="-25" />
+<hkern u1="P" u2="&#xec;" k="-2" />
+<hkern u1="P" u2="&#xe5;" k="78" />
+<hkern u1="P" u2="c" k="61" />
+<hkern u1="P" u2="W" k="20" />
+<hkern u1="P" u2="M" k="25" />
+<hkern u1="Q" u2="&#xef;" k="-10" />
+<hkern u1="Q" u2="&#xee;" k="-6" />
+<hkern u1="Q" u2="&#xd0;" k="-20" />
+<hkern u1="Q" u2="W" k="55" />
+<hkern u1="Q" u2="N" k="-14" />
+<hkern u1="Q" u2="&#x2c;" k="-104" />
+<hkern u1="R" u2="y" k="53" />
+<hkern u1="R" u2="W" k="68" />
+<hkern u1="S" u2="&#xf8;" k="-10" />
+<hkern u1="S" u2="&#xef;" k="-10" />
+<hkern u1="S" u2="&#xee;" k="-18" />
+<hkern u1="S" u2="&#xec;" k="-20" />
+<hkern u1="S" u2="y" k="61" />
+<hkern u1="S" u2="W" k="14" />
+<hkern u1="T" u2="&#x203a;" k="94" />
+<hkern u1="T" u2="&#x2039;" k="203" />
+<hkern u1="T" u2="&#xff;" k="152" />
+<hkern u1="T" u2="&#xf6;" k="121" />
+<hkern u1="T" u2="&#xf5;" k="147" />
+<hkern u1="T" u2="&#xf4;" k="147" />
+<hkern u1="T" u2="&#xf2;" k="147" />
+<hkern u1="T" u2="&#xf1;" k="147" />
+<hkern u1="T" u2="&#xef;" k="-43" />
+<hkern u1="T" u2="&#xee;" k="-29" />
+<hkern u1="T" u2="&#xed;" k="98" />
+<hkern u1="T" u2="&#xec;" k="-31" />
+<hkern u1="T" u2="&#xeb;" k="156" />
+<hkern u1="T" u2="&#xea;" k="145" />
+<hkern u1="T" u2="&#xe8;" k="137" />
+<hkern u1="T" u2="&#xe4;" k="129" />
+<hkern u1="T" u2="&#xe3;" k="113" />
+<hkern u1="T" u2="&#xcf;" k="33" />
+<hkern u1="T" u2="&#xce;" k="37" />
+<hkern u1="T" u2="&#xcc;" k="37" />
+<hkern u1="T" u2="y" k="125" />
+<hkern u1="T" u2="]" k="-61" />
+<hkern u1="T" u2="M" k="57" />
+<hkern u1="T" u2="&#x3f;" k="-20" />
+<hkern u1="T" u2="&#x2c;" k="203" />
+<hkern u1="U" u2="&#xf1;" k="43" />
+<hkern u1="U" u2="&#xef;" k="-18" />
+<hkern u1="U" u2="&#xee;" k="-10" />
+<hkern u1="U" u2="&#xec;" k="-37" />
+<hkern u1="U" u2="&#xd0;" k="-20" />
+<hkern u1="U" u2="y" k="25" />
+<hkern u1="V" u2="&#x203a;" k="61" />
+<hkern u1="V" u2="&#x2039;" k="86" />
+<hkern u1="V" u2="&#xef;" k="-74" />
+<hkern u1="V" u2="&#xee;" k="20" />
+<hkern u1="V" u2="&#xed;" k="88" />
+<hkern u1="V" u2="&#xec;" k="-63" />
+<hkern u1="V" u2="&#xe4;" k="113" />
+<hkern u1="V" u2="&#xe3;" k="92" />
+<hkern u1="V" u2="&#xe0;" k="92" />
+<hkern u1="V" u2="y" k="121" />
+<hkern u1="V" u2="M" k="23" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="102" />
+<hkern u1="W" g2="uniFB04" k="90" />
+<hkern u1="W" g2="uniFB03" k="90" />
+<hkern u1="W" g2="uniFB02" k="90" />
+<hkern u1="W" g2="uniFB01" k="90" />
+<hkern u1="W" u2="&#x203a;" k="82" />
+<hkern u1="W" u2="&#x2039;" k="84" />
+<hkern u1="W" u2="&#x2026;" k="279" />
+<hkern u1="W" u2="&#x153;" k="86" />
+<hkern u1="W" u2="&#x152;" k="33" />
+<hkern u1="W" u2="&#xff;" k="80" />
+<hkern u1="W" u2="&#xfe;" k="41" />
+<hkern u1="W" u2="&#xfd;" k="104" />
+<hkern u1="W" u2="&#xfc;" k="86" />
+<hkern u1="W" u2="&#xfb;" k="96" />
+<hkern u1="W" u2="&#xfa;" k="96" />
+<hkern u1="W" u2="&#xf9;" k="96" />
+<hkern u1="W" u2="&#xf8;" k="86" />
+<hkern u1="W" u2="&#xf6;" k="86" />
+<hkern u1="W" u2="&#xf5;" k="86" />
+<hkern u1="W" u2="&#xf4;" k="86" />
+<hkern u1="W" u2="&#xf3;" k="86" />
+<hkern u1="W" u2="&#xf2;" k="86" />
+<hkern u1="W" u2="&#xf1;" k="82" />
+<hkern u1="W" u2="&#xf0;" k="86" />
+<hkern u1="W" u2="&#xef;" k="-33" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="115" />
+<hkern u1="W" u2="&#xec;" k="-57" />
+<hkern u1="W" u2="&#xeb;" k="176" />
+<hkern u1="W" u2="&#xea;" k="115" />
+<hkern u1="W" u2="&#xe9;" k="86" />
+<hkern u1="W" u2="&#xe8;" k="150" />
+<hkern u1="W" u2="&#xe7;" k="86" />
+<hkern u1="W" u2="&#xe6;" k="152" />
+<hkern u1="W" u2="&#xe5;" k="152" />
+<hkern u1="W" u2="&#xe4;" k="115" />
+<hkern u1="W" u2="&#xe3;" k="72" />
+<hkern u1="W" u2="&#xe2;" k="152" />
+<hkern u1="W" u2="&#xe1;" k="152" />
+<hkern u1="W" u2="&#xe0;" k="72" />
+<hkern u1="W" u2="&#xdf;" k="90" />
+<hkern u1="W" u2="&#xde;" k="20" />
+<hkern u1="W" u2="&#xd8;" k="33" />
+<hkern u1="W" u2="&#xd6;" k="33" />
+<hkern u1="W" u2="&#xd5;" k="33" />
+<hkern u1="W" u2="&#xd4;" k="33" />
+<hkern u1="W" u2="&#xd3;" k="33" />
+<hkern u1="W" u2="&#xd2;" k="33" />
+<hkern u1="W" u2="&#xd1;" k="20" />
+<hkern u1="W" u2="&#xd0;" k="20" />
+<hkern u1="W" u2="&#xcf;" k="20" />
+<hkern u1="W" u2="&#xce;" k="20" />
+<hkern u1="W" u2="&#xcd;" k="20" />
+<hkern u1="W" u2="&#xcc;" k="20" />
+<hkern u1="W" u2="&#xcb;" k="20" />
+<hkern u1="W" u2="&#xca;" k="20" />
+<hkern u1="W" u2="&#xc9;" k="20" />
+<hkern u1="W" u2="&#xc8;" k="20" />
+<hkern u1="W" u2="&#xc7;" k="33" />
+<hkern u1="W" u2="&#xc6;" k="215" />
+<hkern u1="W" u2="&#xc5;" k="143" />
+<hkern u1="W" u2="&#xc4;" k="143" />
+<hkern u1="W" u2="&#xc3;" k="143" />
+<hkern u1="W" u2="&#xc2;" k="143" />
+<hkern u1="W" u2="&#xc1;" k="143" />
+<hkern u1="W" u2="&#xc0;" k="143" />
+<hkern u1="W" u2="&#xbb;" k="121" />
+<hkern u1="W" u2="&#xab;" k="121" />
+<hkern u1="W" u2="z" k="123" />
+<hkern u1="W" u2="y" k="113" />
+<hkern u1="W" u2="x" k="121" />
+<hkern u1="W" u2="w" k="47" />
+<hkern u1="W" u2="v" k="80" />
+<hkern u1="W" u2="u" k="96" />
+<hkern u1="W" u2="t" k="78" />
+<hkern u1="W" u2="s" k="133" />
+<hkern u1="W" u2="r" k="104" />
+<hkern u1="W" u2="q" k="86" />
+<hkern u1="W" u2="p" k="82" />
+<hkern u1="W" u2="o" k="86" />
+<hkern u1="W" u2="n" k="82" />
+<hkern u1="W" u2="m" k="82" />
+<hkern u1="W" u2="l" k="41" />
+<hkern u1="W" u2="k" k="41" />
+<hkern u1="W" u2="j" k="51" />
+<hkern u1="W" u2="i" k="61" />
+<hkern u1="W" u2="h" k="41" />
+<hkern u1="W" u2="g" k="143" />
+<hkern u1="W" u2="f" k="90" />
+<hkern u1="W" u2="e" k="147" />
+<hkern u1="W" u2="d" k="129" />
+<hkern u1="W" u2="c" k="127" />
+<hkern u1="W" u2="b" k="43" />
+<hkern u1="W" u2="a" k="152" />
+<hkern u1="W" u2="X" k="20" />
+<hkern u1="W" u2="W" k="-8" />
+<hkern u1="W" u2="R" k="20" />
+<hkern u1="W" u2="Q" k="33" />
+<hkern u1="W" u2="P" k="20" />
+<hkern u1="W" u2="O" k="33" />
+<hkern u1="W" u2="N" k="20" />
+<hkern u1="W" u2="M" k="23" />
+<hkern u1="W" u2="L" k="20" />
+<hkern u1="W" u2="K" k="20" />
+<hkern u1="W" u2="J" k="47" />
+<hkern u1="W" u2="I" k="20" />
+<hkern u1="W" u2="H" k="20" />
+<hkern u1="W" u2="G" k="33" />
+<hkern u1="W" u2="F" k="10" />
+<hkern u1="W" u2="E" k="20" />
+<hkern u1="W" u2="D" k="20" />
+<hkern u1="W" u2="C" k="33" />
+<hkern u1="W" u2="B" k="20" />
+<hkern u1="W" u2="A" k="143" />
+<hkern u1="W" u2="&#x3b;" k="141" />
+<hkern u1="W" u2="&#x3a;" k="141" />
+<hkern u1="W" u2="&#x2e;" k="279" />
+<hkern u1="W" u2="&#x2c;" k="244" />
+<hkern u1="X" u2="&#xef;" k="-2" />
+<hkern u1="X" u2="&#xee;" k="-4" />
+<hkern u1="X" u2="&#xed;" k="18" />
+<hkern u1="X" u2="&#xec;" k="-8" />
+<hkern u1="X" u2="y" k="111" />
+<hkern u1="X" u2="W" k="20" />
+<hkern u1="Y" u2="&#x203a;" k="100" />
+<hkern u1="Y" u2="&#x2039;" k="102" />
+<hkern u1="Y" u2="&#xf5;" k="205" />
+<hkern u1="Y" u2="&#xf2;" k="188" />
+<hkern u1="Y" u2="&#xef;" k="-37" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="129" />
+<hkern u1="Y" u2="&#xec;" k="-47" />
+<hkern u1="Y" u2="&#xe9;" k="184" />
+<hkern u1="Y" u2="&#xe8;" k="147" />
+<hkern u1="Y" u2="&#xe4;" k="111" />
+<hkern u1="Y" u2="&#xe3;" k="104" />
+<hkern u1="Y" u2="&#xe0;" k="106" />
+<hkern u1="Y" u2="&#xb5;" k="209" />
+<hkern u1="Y" u2="y" k="184" />
+<hkern u1="Y" u2="e" k="178" />
+<hkern u1="Y" u2="b" k="2" />
+<hkern u1="Y" u2="M" k="43" />
+<hkern u1="Y" u2="&#x3b;" k="121" />
+<hkern u1="Y" u2="&#x3a;" k="121" />
+<hkern u1="Y" u2="&#x2c;" k="244" />
+<hkern u1="Z" u2="&#xef;" k="-14" />
+<hkern u1="Z" u2="&#xee;" k="-6" />
+<hkern u1="Z" u2="&#xec;" k="-16" />
+<hkern u1="Z" u2="y" k="104" />
+<hkern u1="Z" u2="W" k="20" />
+<hkern u1="[" u2="&#x153;" k="-100" />
+<hkern u1="[" u2="&#xfe;" k="-61" />
+<hkern u1="[" u2="&#xf8;" k="-100" />
+<hkern u1="[" u2="&#xf6;" k="-100" />
+<hkern u1="[" u2="&#xf5;" k="-100" />
+<hkern u1="[" u2="&#xf4;" k="-100" />
+<hkern u1="[" u2="&#xf3;" k="-100" />
+<hkern u1="[" u2="&#xf2;" k="-100" />
+<hkern u1="[" u2="&#xf0;" k="-100" />
+<hkern u1="[" u2="&#xeb;" k="-100" />
+<hkern u1="[" u2="&#xea;" k="-100" />
+<hkern u1="[" u2="&#xe9;" k="-100" />
+<hkern u1="[" u2="&#xe8;" k="-100" />
+<hkern u1="[" u2="&#xe7;" k="-100" />
+<hkern u1="[" u2="y" k="-41" />
+<hkern u1="[" u2="q" k="-100" />
+<hkern u1="[" u2="o" k="-100" />
+<hkern u1="[" u2="l" k="-61" />
+<hkern u1="[" u2="k" k="-61" />
+<hkern u1="[" u2="j" k="-100" />
+<hkern u1="[" u2="h" k="-61" />
+<hkern u1="[" u2="e" k="-100" />
+<hkern u1="[" u2="d" k="-100" />
+<hkern u1="[" u2="c" k="-100" />
+<hkern u1="[" u2="b" k="-61" />
+<hkern u1="[" u2="W" k="-61" />
+<hkern u1="[" u2="J" k="-90" />
+<hkern u1="[" u2="&#x3f;" k="-55" />
+<hkern u1="a" u2="&#x2019;" k="61" />
+<hkern u1="a" u2="&#x2018;" k="162" />
+<hkern u1="a" u2="&#xff;" k="39" />
+<hkern u1="a" u2="&#xfd;" k="39" />
+<hkern u1="a" u2="y" k="47" />
+<hkern u1="a" u2="v" k="39" />
+<hkern u1="a" u2="&#x3f;" k="61" />
+<hkern u1="a" u2="&#x2f;" k="-59" />
+<hkern u1="a" u2="&#x21;" k="-6" />
+<hkern u1="b" u2="&#x2018;" k="41" />
+<hkern u1="b" u2="&#xff;" k="20" />
+<hkern u1="b" u2="&#xfd;" k="20" />
+<hkern u1="b" u2="y" k="20" />
+<hkern u1="b" u2="v" k="20" />
+<hkern u1="b" u2="&#x3f;" k="53" />
+<hkern u1="d" u2="&#xec;" k="-20" />
+<hkern u1="d" u2="y" k="49" />
+<hkern u1="e" u2="y" k="23" />
+<hkern u1="f" u2="&#x2018;" k="-182" />
+<hkern u1="f" u2="&#xef;" k="-217" />
+<hkern u1="f" u2="&#xee;" k="-133" />
+<hkern u1="f" u2="&#xec;" k="-174" />
+<hkern u1="f" u2="&#xe4;" k="-27" />
+<hkern u1="f" u2="y" k="-20" />
+<hkern u1="f" u2="l" k="-113" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="]" k="-227" />
+<hkern u1="f" u2="W" k="-225" />
+<hkern u1="f" u2="M" k="-100" />
+<hkern u1="f" u2="&#x3f;" k="-201" />
+<hkern u1="f" u2="&#x3a;" k="-25" />
+<hkern u1="f" u2="&#x2f;" k="-78" />
+<hkern u1="f" u2="&#x2c;" k="20" />
+<hkern u1="f" u2="&#x2a;" k="-182" />
+<hkern u1="f" u2="&#x27;" k="-203" />
+<hkern u1="f" u2="&#x22;" k="-203" />
+<hkern u1="f" u2="&#x21;" k="-102" />
+<hkern u1="f" u2="&#x20;" k="-63" />
+<hkern u1="g" u2="&#x2026;" k="-41" />
+<hkern u1="g" u2="&#x201d;" k="-74" />
+<hkern u1="g" u2="&#x201c;" k="-23" />
+<hkern u1="g" u2="&#x2019;" k="-74" />
+<hkern u1="g" u2="&#x2018;" k="-23" />
+<hkern u1="g" u2="&#xff;" k="-6" />
+<hkern u1="g" u2="&#xfd;" k="-6" />
+<hkern u1="g" u2="&#xf1;" k="-4" />
+<hkern u1="g" u2="&#x7d;" k="-51" />
+<hkern u1="g" u2="y" k="-6" />
+<hkern u1="g" u2="x" k="8" />
+<hkern u1="g" u2="w" k="16" />
+<hkern u1="g" u2="v" k="-6" />
+<hkern u1="g" u2="r" k="-4" />
+<hkern u1="g" u2="p" k="-4" />
+<hkern u1="g" u2="n" k="-4" />
+<hkern u1="g" u2="m" k="-4" />
+<hkern u1="g" u2="j" k="-29" />
+<hkern u1="g" u2="g" k="-4" />
+<hkern u1="g" u2="]" k="-92" />
+<hkern u1="g" u2="&#x2e;" k="-41" />
+<hkern u1="g" u2="&#x2c;" k="-41" />
+<hkern u1="g" u2="&#x29;" k="-51" />
+<hkern u1="h" u2="&#x2019;" k="61" />
+<hkern u1="h" u2="&#x2018;" k="162" />
+<hkern u1="h" u2="y" k="37" />
+<hkern u1="h" u2="&#x3f;" k="61" />
+<hkern u1="h" u2="&#x2f;" k="-59" />
+<hkern u1="h" u2="&#x21;" k="-6" />
+<hkern u1="i" u2="y" k="20" />
+<hkern u1="k" u2="&#xb5;" k="25" />
+<hkern u1="k" u2="y" k="23" />
+<hkern u1="l" u2="&#xef;" k="-10" />
+<hkern u1="l" u2="&#xee;" k="-10" />
+<hkern u1="l" u2="&#xec;" k="-35" />
+<hkern u1="l" u2="y" k="35" />
+<hkern u1="l" u2="]" k="-61" />
+<hkern u1="l" u2="&#x3f;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-41" />
+<hkern u1="l" u2="&#x21;" k="-29" />
+<hkern u1="m" u2="&#x2019;" k="61" />
+<hkern u1="m" u2="&#x2018;" k="162" />
+<hkern u1="m" u2="y" k="37" />
+<hkern u1="m" u2="w" k="25" />
+<hkern u1="m" u2="&#x3f;" k="61" />
+<hkern u1="m" u2="&#x2f;" k="-59" />
+<hkern u1="m" u2="&#x21;" k="-6" />
+<hkern u1="n" u2="&#x2019;" k="61" />
+<hkern u1="n" u2="&#x2018;" k="162" />
+<hkern u1="n" u2="y" k="37" />
+<hkern u1="n" u2="&#x3f;" k="61" />
+<hkern u1="n" u2="&#x2f;" k="-59" />
+<hkern u1="n" u2="&#x21;" k="-6" />
+<hkern u1="o" u2="&#x2018;" k="41" />
+<hkern u1="o" u2="y" k="23" />
+<hkern u1="o" u2="&#x3f;" k="53" />
+<hkern u1="p" u2="&#x2018;" k="41" />
+<hkern u1="p" u2="y" k="23" />
+<hkern u1="p" u2="&#x3f;" k="53" />
+<hkern u1="q" u2="&#x2026;" k="33" />
+<hkern u1="q" u2="&#x153;" k="-8" />
+<hkern u1="q" u2="&#xff;" k="29" />
+<hkern u1="q" u2="&#xfd;" k="29" />
+<hkern u1="q" u2="&#xfc;" k="23" />
+<hkern u1="q" u2="&#xfb;" k="23" />
+<hkern u1="q" u2="&#xfa;" k="23" />
+<hkern u1="q" u2="&#xf9;" k="23" />
+<hkern u1="q" u2="&#xf8;" k="-8" />
+<hkern u1="q" u2="&#xf6;" k="-8" />
+<hkern u1="q" u2="&#xf5;" k="-8" />
+<hkern u1="q" u2="&#xf4;" k="-8" />
+<hkern u1="q" u2="&#xf3;" k="-8" />
+<hkern u1="q" u2="&#xf2;" k="-8" />
+<hkern u1="q" u2="&#xf0;" k="-8" />
+<hkern u1="q" u2="&#xeb;" k="-8" />
+<hkern u1="q" u2="&#xea;" k="-8" />
+<hkern u1="q" u2="&#xe9;" k="-8" />
+<hkern u1="q" u2="&#xe8;" k="-8" />
+<hkern u1="q" u2="&#xe7;" k="-8" />
+<hkern u1="q" u2="&#x7d;" k="-61" />
+<hkern u1="q" u2="y" k="29" />
+<hkern u1="q" u2="x" k="20" />
+<hkern u1="q" u2="w" k="29" />
+<hkern u1="q" u2="v" k="29" />
+<hkern u1="q" u2="u" k="23" />
+<hkern u1="q" u2="q" k="-8" />
+<hkern u1="q" u2="o" k="-8" />
+<hkern u1="q" u2="j" k="-121" />
+<hkern u1="q" u2="g" k="-16" />
+<hkern u1="q" u2="e" k="-8" />
+<hkern u1="q" u2="d" k="-8" />
+<hkern u1="q" u2="c" k="-8" />
+<hkern u1="q" u2="]" k="-61" />
+<hkern u1="q" u2="&#x2e;" k="33" />
+<hkern u1="q" u2="&#x2c;" k="33" />
+<hkern u1="q" u2="&#x29;" k="-61" />
+<hkern u1="r" g2="uniFB02" k="25" />
+<hkern u1="r" u2="&#x2019;" k="-41" />
+<hkern u1="r" u2="y" k="-6" />
+<hkern u1="r" u2="&#x3b;" k="-18" />
+<hkern u1="r" u2="&#x2c;" k="102" />
+<hkern u1="s" u2="y" k="45" />
+<hkern u1="t" u2="y" k="20" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="u" u2="y" k="31" />
+<hkern u1="u" u2="&#x2c;" k="-20" />
+<hkern u1="v" u2="&#x2019;" k="-61" />
+<hkern u1="v" u2="&#x2c;" k="197" />
+<hkern u1="w" u2="p" k="6" />
+<hkern u1="w" u2="m" k="23" />
+<hkern u1="w" u2="&#x2c;" k="190" />
+<hkern u1="x" u2="&#x2026;" k="-20" />
+<hkern u1="x" u2="&#x153;" k="14" />
+<hkern u1="x" u2="&#xfc;" k="12" />
+<hkern u1="x" u2="&#xfb;" k="12" />
+<hkern u1="x" u2="&#xfa;" k="12" />
+<hkern u1="x" u2="&#xf9;" k="12" />
+<hkern u1="x" u2="&#xf8;" k="14" />
+<hkern u1="x" u2="&#xf6;" k="14" />
+<hkern u1="x" u2="&#xf5;" k="14" />
+<hkern u1="x" u2="&#xf4;" k="14" />
+<hkern u1="x" u2="&#xf3;" k="14" />
+<hkern u1="x" u2="&#xf2;" k="14" />
+<hkern u1="x" u2="&#xf0;" k="14" />
+<hkern u1="x" u2="&#xeb;" k="14" />
+<hkern u1="x" u2="&#xea;" k="14" />
+<hkern u1="x" u2="&#xe9;" k="14" />
+<hkern u1="x" u2="&#xe8;" k="14" />
+<hkern u1="x" u2="&#xe7;" k="14" />
+<hkern u1="x" u2="y" k="20" />
+<hkern u1="x" u2="u" k="12" />
+<hkern u1="x" u2="q" k="14" />
+<hkern u1="x" u2="o" k="14" />
+<hkern u1="x" u2="e" k="14" />
+<hkern u1="x" u2="d" k="14" />
+<hkern u1="x" u2="c" k="14" />
+<hkern u1="x" u2="&#x2e;" k="-20" />
+<hkern u1="x" u2="&#x2c;" k="-20" />
+<hkern u1="y" u2="&#x2019;" k="-61" />
+<hkern u1="y" u2="&#xe6;" k="39" />
+<hkern u1="y" u2="&#xe5;" k="39" />
+<hkern u1="y" u2="&#xe4;" k="39" />
+<hkern u1="y" u2="&#xe3;" k="39" />
+<hkern u1="y" u2="&#xe2;" k="39" />
+<hkern u1="y" u2="&#xe1;" k="39" />
+<hkern u1="y" u2="&#xe0;" k="39" />
+<hkern u1="y" u2="c" k="25" />
+<hkern u1="y" u2="a" k="39" />
+<hkern u1="y" u2="&#x2c;" k="197" />
+<hkern u1="z" u2="y" k="37" />
+<hkern u1="&#x7b;" u2="y" k="-41" />
+<hkern u1="&#x7b;" u2="W" k="-61" />
+<hkern u1="&#x7b;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x7c;" u2="J" k="-82" />
+<hkern u1="&#xa1;" u2="&#x178;" k="170" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="170" />
+<hkern u1="&#xa1;" u2="Y" k="170" />
+<hkern u1="&#xa1;" u2="W" k="123" />
+<hkern u1="&#xa1;" u2="V" k="147" />
+<hkern u1="&#xa1;" u2="T" k="109" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-72" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-100" />
+<hkern u1="&#xab;" u2="&#x2014;" k="-82" />
+<hkern u1="&#xab;" u2="&#x2013;" k="-82" />
+<hkern u1="&#xab;" u2="W" k="141" />
+<hkern u1="&#xab;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xab;" u2="&#x3a;" k="-23" />
+<hkern u1="&#xab;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xb5;" u2="y" k="31" />
+<hkern u1="&#xb5;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x2014;" k="-121" />
+<hkern u1="&#xbb;" u2="&#x2013;" k="-121" />
+<hkern u1="&#xbb;" u2="W" k="102" />
+<hkern u1="&#xbb;" u2="M" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xbf;" u2="T" k="127" />
+<hkern u1="&#xbf;" u2="S" k="43" />
+<hkern u1="&#xc0;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc0;" u2="W" k="82" />
+<hkern u1="&#xc0;" u2="G" k="47" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc1;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc1;" u2="W" k="82" />
+<hkern u1="&#xc1;" u2="G" k="47" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc2;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc2;" u2="W" k="82" />
+<hkern u1="&#xc2;" u2="G" k="47" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc3;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc3;" u2="W" k="82" />
+<hkern u1="&#xc3;" u2="G" k="47" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc4;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc4;" u2="W" k="82" />
+<hkern u1="&#xc4;" u2="G" k="47" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc5;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc5;" u2="W" k="82" />
+<hkern u1="&#xc5;" u2="G" k="47" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc6;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc6;" u2="y" k="61" />
+<hkern u1="&#xc6;" u2="W" k="33" />
+<hkern u1="&#xc7;" u2="&#xef;" k="-16" />
+<hkern u1="&#xc7;" u2="&#xee;" k="-43" />
+<hkern u1="&#xc7;" u2="&#xec;" k="8" />
+<hkern u1="&#xc7;" u2="y" k="66" />
+<hkern u1="&#xc7;" u2="e" k="37" />
+<hkern u1="&#xc7;" u2="d" k="51" />
+<hkern u1="&#xc7;" u2="W" k="14" />
+<hkern u1="&#xc7;" u2="C" k="41" />
+<hkern u1="&#xc8;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc8;" u2="y" k="61" />
+<hkern u1="&#xc8;" u2="W" k="33" />
+<hkern u1="&#xc9;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc9;" u2="y" k="61" />
+<hkern u1="&#xc9;" u2="W" k="33" />
+<hkern u1="&#xca;" u2="&#xb5;" k="20" />
+<hkern u1="&#xca;" u2="y" k="61" />
+<hkern u1="&#xca;" u2="W" k="33" />
+<hkern u1="&#xcb;" u2="&#xb5;" k="20" />
+<hkern u1="&#xcb;" u2="y" k="61" />
+<hkern u1="&#xcb;" u2="W" k="33" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcc;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-12" />
+<hkern u1="&#xce;" u2="&#xee;" k="-18" />
+<hkern u1="&#xce;" u2="&#xec;" k="-18" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcf;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd0;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="W" k="55" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd1;" u2="&#xee;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd2;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="W" k="55" />
+<hkern u1="&#xd3;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd3;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd3;" u2="W" k="55" />
+<hkern u1="&#xd4;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd4;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd4;" u2="W" k="55" />
+<hkern u1="&#xd5;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd5;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd5;" u2="W" k="55" />
+<hkern u1="&#xd6;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd6;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd6;" u2="W" k="55" />
+<hkern u1="&#xd8;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd8;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd8;" u2="W" k="55" />
+<hkern u1="&#xd9;" u2="&#xf1;" k="43" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-18" />
+<hkern u1="&#xd9;" u2="&#xee;" k="-10" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-37" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd9;" u2="y" k="25" />
+<hkern u1="&#xda;" u2="&#xf1;" k="43" />
+<hkern u1="&#xda;" u2="&#xef;" k="-18" />
+<hkern u1="&#xda;" u2="&#xee;" k="-10" />
+<hkern u1="&#xda;" u2="&#xec;" k="-37" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xda;" u2="y" k="25" />
+<hkern u1="&#xdb;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdb;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdb;" u2="y" k="25" />
+<hkern u1="&#xdc;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdc;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdc;" u2="y" k="25" />
+<hkern u1="&#xdd;" u2="&#x203a;" k="100" />
+<hkern u1="&#xdd;" u2="&#x2039;" k="102" />
+<hkern u1="&#xdd;" u2="&#xf5;" k="205" />
+<hkern u1="&#xdd;" u2="&#xf2;" k="188" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-37" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="129" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-47" />
+<hkern u1="&#xdd;" u2="&#xe9;" k="184" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="147" />
+<hkern u1="&#xdd;" u2="&#xe4;" k="111" />
+<hkern u1="&#xdd;" u2="&#xe3;" k="104" />
+<hkern u1="&#xdd;" u2="&#xe0;" k="106" />
+<hkern u1="&#xdd;" u2="&#xb5;" k="209" />
+<hkern u1="&#xdd;" u2="y" k="184" />
+<hkern u1="&#xdd;" u2="e" k="178" />
+<hkern u1="&#xdd;" u2="b" k="2" />
+<hkern u1="&#xdd;" u2="M" k="43" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="121" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="121" />
+<hkern u1="&#xdd;" u2="&#x2c;" k="244" />
+<hkern u1="&#xde;" u2="&#xef;" k="-10" />
+<hkern u1="&#xde;" u2="&#xee;" k="-6" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xde;" u2="W" k="55" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-18" />
+<hkern u1="&#xe0;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe0;" u2="y" k="37" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe0;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe1;" u2="y" k="37" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe2;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe2;" u2="y" k="37" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe2;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe3;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe3;" u2="y" k="37" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe3;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe4;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe4;" u2="y" k="37" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe4;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe5;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe5;" u2="y" k="37" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe5;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe6;" u2="y" k="23" />
+<hkern u1="&#xe8;" u2="y" k="23" />
+<hkern u1="&#xe9;" u2="y" k="23" />
+<hkern u1="&#xea;" u2="y" k="23" />
+<hkern u1="&#xeb;" u2="y" k="23" />
+<hkern u1="&#xec;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="k" k="-20" />
+<hkern u1="&#xee;" u2="y" k="20" />
+<hkern u1="&#xee;" u2="k" k="-20" />
+<hkern u1="&#xef;" u2="y" k="20" />
+<hkern u1="&#xf1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xf1;" u2="y" k="37" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xf1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xf2;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf2;" u2="y" k="23" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf3;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf3;" u2="y" k="23" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf4;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf4;" u2="y" k="23" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf5;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf5;" u2="y" k="23" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf6;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf6;" u2="y" k="23" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf8;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf8;" u2="y" k="23" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf9;" u2="y" k="31" />
+<hkern u1="&#xf9;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfa;" u2="y" k="31" />
+<hkern u1="&#xfa;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfb;" u2="y" k="31" />
+<hkern u1="&#xfb;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfc;" u2="y" k="31" />
+<hkern u1="&#xfc;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfd;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xfd;" u2="&#x2c;" k="197" />
+<hkern u1="&#xfe;" u2="&#x2018;" k="41" />
+<hkern u1="&#xfe;" u2="y" k="23" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="53" />
+<hkern u1="&#xff;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xff;" u2="&#x2c;" k="197" />
+<hkern u1="&#x152;" u2="&#xb5;" k="20" />
+<hkern u1="&#x152;" u2="y" k="61" />
+<hkern u1="&#x152;" u2="W" k="33" />
+<hkern u1="&#x153;" u2="y" k="23" />
+<hkern u1="&#x178;" u2="&#x203a;" k="100" />
+<hkern u1="&#x178;" u2="&#x2039;" k="102" />
+<hkern u1="&#x178;" u2="&#xf5;" k="205" />
+<hkern u1="&#x178;" u2="&#xf2;" k="188" />
+<hkern u1="&#x178;" u2="&#xef;" k="-37" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="129" />
+<hkern u1="&#x178;" u2="&#xec;" k="-47" />
+<hkern u1="&#x178;" u2="&#xe9;" k="184" />
+<hkern u1="&#x178;" u2="&#xe8;" k="147" />
+<hkern u1="&#x178;" u2="&#xe4;" k="111" />
+<hkern u1="&#x178;" u2="&#xe3;" k="104" />
+<hkern u1="&#x178;" u2="&#xe0;" k="106" />
+<hkern u1="&#x178;" u2="&#xb5;" k="209" />
+<hkern u1="&#x178;" u2="y" k="184" />
+<hkern u1="&#x178;" u2="e" k="178" />
+<hkern u1="&#x178;" u2="b" k="2" />
+<hkern u1="&#x178;" u2="M" k="43" />
+<hkern u1="&#x178;" u2="&#x3b;" k="121" />
+<hkern u1="&#x178;" u2="&#x3a;" k="121" />
+<hkern u1="&#x178;" u2="&#x2c;" k="244" />
+<hkern u1="&#x2013;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2013;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2013;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2013;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2013;" u2="W" k="102" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-100" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-61" />
+<hkern u1="&#x2014;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2014;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2014;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2014;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2014;" u2="W" k="102" />
+<hkern u1="&#x2014;" u2="&#x33;" k="145" />
+<hkern u1="&#x2018;" u2="&#xc5;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc4;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc3;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc2;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc1;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc0;" k="217" />
+<hkern u1="&#x2018;" u2="W" k="-72" />
+<hkern u1="&#x2018;" u2="V" k="-86" />
+<hkern u1="&#x2018;" u2="A" k="217" />
+<hkern u1="&#x2018;" u2="&#x2c;" k="170" />
+<hkern u1="&#x2019;" u2="s" k="43" />
+<hkern u1="&#x201a;" u2="&#x178;" k="223" />
+<hkern u1="&#x201a;" u2="&#x153;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf6;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf5;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf4;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf3;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf2;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf0;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xeb;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xea;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe9;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe7;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xdd;" k="223" />
+<hkern u1="&#x201a;" u2="q" k="-86" />
+<hkern u1="&#x201a;" u2="o" k="-86" />
+<hkern u1="&#x201a;" u2="j" k="-63" />
+<hkern u1="&#x201a;" u2="e" k="-86" />
+<hkern u1="&#x201a;" u2="d" k="-86" />
+<hkern u1="&#x201a;" u2="c" k="-86" />
+<hkern u1="&#x201a;" u2="Y" k="223" />
+<hkern u1="&#x201a;" u2="W" k="162" />
+<hkern u1="&#x201a;" u2="V" k="213" />
+<hkern u1="&#x201a;" u2="T" k="168" />
+<hkern u1="&#x201a;" u2="J" k="-104" />
+<hkern u1="&#x201c;" u2="W" k="-72" />
+<hkern u1="&#x201c;" u2="&#x2c;" k="170" />
+<hkern u1="&#x201e;" u2="W" k="201" />
+<hkern u1="&#x2039;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x153;" k="-41" />
+<hkern u1="&#x2039;" u2="&#x152;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf0;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xeb;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xea;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe9;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe6;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe5;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe4;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe3;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe2;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe1;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe0;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc1;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc0;" k="-41" />
+<hkern u1="&#x2039;" u2="s" k="-20" />
+<hkern u1="&#x2039;" u2="q" k="-41" />
+<hkern u1="&#x2039;" u2="o" k="-41" />
+<hkern u1="&#x2039;" u2="e" k="-41" />
+<hkern u1="&#x2039;" u2="d" k="-41" />
+<hkern u1="&#x2039;" u2="c" k="-41" />
+<hkern u1="&#x2039;" u2="a" k="-25" />
+<hkern u1="&#x2039;" u2="W" k="141" />
+<hkern u1="&#x2039;" u2="Q" k="-41" />
+<hkern u1="&#x2039;" u2="O" k="-41" />
+<hkern u1="&#x2039;" u2="M" k="-41" />
+<hkern u1="&#x2039;" u2="J" k="-82" />
+<hkern u1="&#x2039;" u2="G" k="-41" />
+<hkern u1="&#x2039;" u2="C" k="-41" />
+<hkern u1="&#x2039;" u2="A" k="-41" />
+<hkern u1="&#x2039;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x2039;" u2="&#x3a;" k="-23" />
+<hkern u1="&#x2039;" u2="&#x2c;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x153;" k="-27" />
+<hkern u1="&#x203a;" u2="&#x152;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xf8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf6;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf5;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf4;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf3;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf2;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf0;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xeb;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xea;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe9;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe7;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x203a;" u2="q" k="-27" />
+<hkern u1="&#x203a;" u2="o" k="-27" />
+<hkern u1="&#x203a;" u2="e" k="-27" />
+<hkern u1="&#x203a;" u2="d" k="-47" />
+<hkern u1="&#x203a;" u2="c" k="-27" />
+<hkern u1="&#x203a;" u2="W" k="102" />
+<hkern u1="&#x203a;" u2="Q" k="-41" />
+<hkern u1="&#x203a;" u2="O" k="-41" />
+<hkern u1="&#x203a;" u2="M" k="-20" />
+<hkern u1="&#x203a;" u2="G" k="-41" />
+<hkern u1="&#x203a;" u2="C" k="-41" />
+<hkern u1="&#x203a;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x3a;" k="-20" />
+<hkern g1="uniFB01" u2="y" k="20" />
+<hkern g1="uniFB02" u2="&#xef;" k="-10" />
+<hkern g1="uniFB02" u2="&#xee;" k="-10" />
+<hkern g1="uniFB02" u2="&#xec;" k="-35" />
+<hkern g1="uniFB02" u2="y" k="35" />
+<hkern g1="uniFB02" u2="]" k="-61" />
+<hkern g1="uniFB02" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB02" u2="&#x21;" k="-29" />
+<hkern g1="uniFB03" u2="y" k="20" />
+<hkern g1="uniFB04" u2="&#xef;" k="-10" />
+<hkern g1="uniFB04" u2="&#xee;" k="-10" />
+<hkern g1="uniFB04" u2="&#xec;" k="-35" />
+<hkern g1="uniFB04" u2="y" k="35" />
+<hkern g1="uniFB04" u2="]" k="-61" />
+<hkern g1="uniFB04" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB04" u2="&#x21;" k="-29" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="d" 	g2="w" 	k="31" />
+<hkern g1="d" 	g2="x" 	k="2" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-20" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-23" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="61" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="w" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-45" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-18" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="61" />
+<hkern g1="f" 	g2="T" 	k="-205" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-113" />
+<hkern g1="f" 	g2="v,y,yacute,ydieresis" 	k="-6" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-184" />
+<hkern g1="f" 	g2="w" 	k="-6" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-291" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-188" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-162" />
+<hkern g1="f" 	g2="S" 	k="-41" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-193" />
+<hkern g1="f" 	g2="V" 	k="-231" />
+<hkern g1="f" 	g2="X" 	k="-162" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-223" />
+<hkern g1="f" 	g2="Z" 	k="-82" />
+<hkern g1="f" 	g2="j" 	k="-70" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-57" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="v,y,yacute,ydieresis" 	k="31" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="w" 	k="20" />
+<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="k" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
+<hkern g1="k" 	g2="s" 	k="10" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="k" 	g2="w" 	k="31" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-18" />
+<hkern g1="k" 	g2="j" 	k="4" />
+<hkern g1="k" 	g2="t" 	k="27" />
+<hkern g1="k" 	g2="g" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteleft,quotedblleft" 	k="53" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="w" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-6" />
+<hkern g1="j" 	g2="j" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="145" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="29" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="g" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="w" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="6" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="27" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="102" />
+<hkern g1="r" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
+<hkern g1="r" 	g2="s" 	k="10" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="r" 	g2="w" 	k="-23" />
+<hkern g1="r" 	g2="x" 	k="8" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="102" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="r" 	g2="j" 	k="-37" />
+<hkern g1="r" 	g2="t" 	k="-20" />
+<hkern g1="r" 	g2="g" 	k="61" />
+<hkern g1="r" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="r" 	g2="z" 	k="23" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="14" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="29" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="12" />
+<hkern g1="s" 	g2="w" 	k="25" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-47" />
+<hkern g1="t" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-8" />
+<hkern g1="t" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="t" 	g2="w" 	k="20" />
+<hkern g1="t" 	g2="x" 	k="-18" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="t" 	g2="z" 	k="-6" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="v,y,yacute,ydieresis" 	k="-18" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="70" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="w" 	k="4" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="29" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="v,y,yacute,ydieresis" 	k="-10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="-37" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="w" 	k="-18" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="217" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="-43" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="14" />
+<hkern g1="w" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="w" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
+<hkern g1="w" 	g2="s" 	k="29" />
+<hkern g1="w" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="w" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="w" 	g2="w" 	k="-20" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="141" />
+<hkern g1="w" 	g2="quoteright,quotedblright" 	k="-49" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="z" 	k="18" />
+<hkern g1="z" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="178" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="80" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="223" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-43" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="205" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="74" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="166" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="AE" 	k="29" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-16" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-43" />
+<hkern g1="B" 	g2="T" 	k="51" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="w" 	k="31" />
+<hkern g1="B" 	g2="x" 	k="4" />
+<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
+<hkern g1="B" 	g2="V" 	k="53" />
+<hkern g1="B" 	g2="X" 	k="37" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="B" 	g2="Z" 	k="25" />
+<hkern g1="B" 	g2="g" 	k="6" />
+<hkern g1="B" 	g2="J" 	k="41" />
+<hkern g1="B" 	g2="AE" 	k="92" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="quoteleft,quotedblleft" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="comma,period,ellipsis" 	k="16" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-16" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="80" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="J" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="76" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="61" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="57" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="G" 	g2="T" 	k="61" />
+<hkern g1="G" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="G" 	g2="w" 	k="41" />
+<hkern g1="G" 	g2="x" 	k="4" />
+<hkern g1="G" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="G" 	g2="V" 	k="43" />
+<hkern g1="G" 	g2="X" 	k="35" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="G" 	g2="Z" 	k="14" />
+<hkern g1="G" 	g2="J" 	k="2" />
+<hkern g1="G" 	g2="AE" 	k="61" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="T" 	k="16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-45" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteright,quotedblright" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="V" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="J" 	k="4" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="29" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="K" 	g2="T" 	k="41" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
+<hkern g1="K" 	g2="s" 	k="25" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="109" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="43" />
+<hkern g1="K" 	g2="w" 	k="102" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
+<hkern g1="K" 	g2="S" 	k="45" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
+<hkern g1="K" 	g2="V" 	k="20" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="K" 	g2="j" 	k="25" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="82" />
+<hkern g1="K" 	g2="g" 	k="59" />
+<hkern g1="K" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="41" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="L" 	g2="T" 	k="221" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="L" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="L" 	g2="w" 	k="94" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="L" 	g2="S" 	k="31" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="106" />
+<hkern g1="L" 	g2="V" 	k="207" />
+<hkern g1="L" 	g2="X" 	k="29" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="215" />
+<hkern g1="L" 	g2="Z" 	k="10" />
+<hkern g1="L" 	g2="j" 	k="20" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="L" 	g2="t" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="47" />
+<hkern g1="L" 	g2="z" 	k="6" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="49" />
+<hkern g1="L" 	g2="J" 	k="27" />
+<hkern g1="L" 	g2="AE" 	k="49" />
+<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="M" 	g2="T" 	k="43" />
+<hkern g1="M" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="M" 	g2="w" 	k="41" />
+<hkern g1="M" 	g2="x" 	k="20" />
+<hkern g1="M" 	g2="V" 	k="18" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="29" />
+<hkern g1="M" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-14" />
+<hkern g1="M" 	g2="g" 	k="8" />
+<hkern g1="M" 	g2="J" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="20" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-86" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,ellipsis" 	k="-2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="S" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="49" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="53" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="31" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="63" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="102" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
+<hkern g1="P" 	g2="T" 	k="25" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="113" />
+<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="98" />
+<hkern g1="P" 	g2="s" 	k="109" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="49" />
+<hkern g1="P" 	g2="w" 	k="6" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="301" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="S" 	k="23" />
+<hkern g1="P" 	g2="V" 	k="41" />
+<hkern g1="P" 	g2="X" 	k="61" />
+<hkern g1="P" 	g2="Z" 	k="66" />
+<hkern g1="P" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
+<hkern g1="P" 	g2="J" 	k="2" />
+<hkern g1="P" 	g2="AE" 	k="227" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="203" />
+<hkern g1="R" 	g2="T" 	k="98" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="R" 	g2="w" 	k="53" />
+<hkern g1="R" 	g2="x" 	k="-41" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="R" 	g2="S" 	k="31" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
+<hkern g1="R" 	g2="V" 	k="84" />
+<hkern g1="R" 	g2="X" 	k="16" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="R" 	g2="Z" 	k="-12" />
+<hkern g1="R" 	g2="g" 	k="4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="R" 	g2="J" 	k="37" />
+<hkern g1="R" 	g2="AE" 	k="20" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="S" 	g2="T" 	k="20" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="39" />
+<hkern g1="S" 	g2="w" 	k="33" />
+<hkern g1="S" 	g2="x" 	k="41" />
+<hkern g1="S" 	g2="V" 	k="8" />
+<hkern g1="S" 	g2="X" 	k="23" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="S" 	g2="J" 	k="41" />
+<hkern g1="S" 	g2="AE" 	k="80" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="186" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="162" />
+<hkern g1="T" 	g2="s" 	k="176" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="125" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="111" />
+<hkern g1="T" 	g2="quoteleft,quotedblleft" 	k="-100" />
+<hkern g1="T" 	g2="w" 	k="100" />
+<hkern g1="T" 	g2="x" 	k="164" />
+<hkern g1="T" 	g2="parenright,bracketright,braceright" 	k="-25" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="115" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="170" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-31" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
+<hkern g1="T" 	g2="S" 	k="51" />
+<hkern g1="T" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
+<hkern g1="T" 	g2="V" 	k="-20" />
+<hkern g1="T" 	g2="X" 	k="68" />
+<hkern g1="T" 	g2="Z" 	k="35" />
+<hkern g1="T" 	g2="j" 	k="74" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="94" />
+<hkern g1="T" 	g2="t" 	k="102" />
+<hkern g1="T" 	g2="g" 	k="166" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="T" 	g2="z" 	k="141" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="76" />
+<hkern g1="T" 	g2="J" 	k="20" />
+<hkern g1="T" 	g2="AE" 	k="213" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="180" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="T" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,l,thorn" 	k="-16" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Z" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="121" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
+<hkern g1="V,W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="147" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="6" />
+<hkern g1="V,W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="113" />
+<hkern g1="V,W" 	g2="s" 	k="82" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="59" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="137" />
+<hkern g1="V,W" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="V,W" 	g2="w" 	k="121" />
+<hkern g1="V,W" 	g2="x" 	k="121" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="137" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="121" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="S" 	k="29" />
+<hkern g1="V,W" 	g2="X" 	k="20" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="-20" />
+<hkern g1="V,W" 	g2="Z" 	k="20" />
+<hkern g1="V,W" 	g2="j" 	k="10" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="V,W" 	g2="t" 	k="82" />
+<hkern g1="V,W" 	g2="g" 	k="145" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="100" />
+<hkern g1="V,W" 	g2="z" 	k="106" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="63" />
+<hkern g1="V,W" 	g2="J" 	k="61" />
+<hkern g1="V,W" 	g2="AE" 	k="244" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="152" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="133" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="143" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="203" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="160" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-39" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="96" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="29" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="111" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="109" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="154" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="236" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="195" />
+<hkern g1="X" 	g2="T" 	k="45" />
+<hkern g1="X" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="-10" />
+<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="X" 	g2="s" 	k="35" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="51" />
+<hkern g1="X" 	g2="w" 	k="111" />
+<hkern g1="X" 	g2="x" 	k="-16" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="4" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
+<hkern g1="X" 	g2="V" 	k="20" />
+<hkern g1="X" 	g2="X" 	k="-41" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="X" 	g2="j" 	k="8" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="18" />
+<hkern g1="X" 	g2="t" 	k="55" />
+<hkern g1="X" 	g2="g" 	k="25" />
+<hkern g1="X" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="70" />
+<hkern g1="X" 	g2="AE" 	k="41" />
+<hkern g1="Z" 	g2="T" 	k="23" />
+<hkern g1="Z" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="Z" 	g2="s" 	k="41" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="98" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="41" />
+<hkern g1="Z" 	g2="w" 	k="92" />
+<hkern g1="Z" 	g2="x" 	k="31" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-31" />
+<hkern g1="Z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="Z" 	g2="V" 	k="25" />
+<hkern g1="Z" 	g2="X" 	k="8" />
+<hkern g1="Z" 	g2="j" 	k="10" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
+<hkern g1="Z" 	g2="t" 	k="20" />
+<hkern g1="Z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Z" 	g2="z" 	k="37" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
+<hkern g1="Z" 	g2="J" 	k="18" />
+<hkern g1="Z" 	g2="AE" 	k="43" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="82" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-45" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="121" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-20" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="141" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-84" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-39" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="174" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="-23" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="w" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,ellipsis" 	k="213" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-29" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-86" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-6" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="252" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="147" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="152" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="213" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="139" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="256" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="209" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-90" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-86" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-86" />
+<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="V" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-49" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-117" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..cb39dc8d691f3ac375a040ae9e00f557ec49c115
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.woff
new file mode 100755
index 0000000000000000000000000000000000000000..3d3046136adf596f0ec0ae4229d10bbaf32f1af9
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLig.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.eot
new file mode 100755
index 0000000000000000000000000000000000000000..5b9b763bc23ae4991faa784b9e1af19f2b1fcf77
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.svg
new file mode 100755
index 0000000000000000000000000000000000000000..5d97537d8b492be44b08b51c38a5c8f4b35c4fd2
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.svg
@@ -0,0 +1,1479 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-lightitalicregular" horiz-adv-x="1093" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1243" d="M-322 -489q0 55 29 155h80q0 -76 22 -111.5t85 -35.5q92 0 149 84q51 68 86 278l162 926h-176l16 80q92 11 143 41q24 14 34.5 34t23.5 82q22 95 45.5 160t52 107t52.5 64.5t63 49.5q100 72 299 72q40 0 98 -9t86 -22q51 -20 51 -80q0 -74 -30 -194h-93v59q0 80 -41 105 q-19 13 -58 20.5t-73 7.5q-147 0 -217 -104q-53 -78 -96 -295l-14 -74h379q111 39 151 39q46 0 67 -18.5t21 -77.5q0 -78 -49 -274l-55 -238q-29 -126 -29 -170q0 -36 17 -53t59 -17q71 0 141 19l-20 -86q-116 -53 -219 -53q-54 0 -90.5 26t-36.5 88q0 48 28 176l56 250 q36 153 36 211q0 43 -22 58q-21 16 -82 16h-373l-176 -936q-31 -169 -72.5 -257t-105.5 -138q-89 -72 -232 -72q-69 0 -120.5 27.5t-51.5 79.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1232" d="M-322 -489q0 55 29 155h80q0 -78 21.5 -112.5t85.5 -34.5q94 0 151 84q44 59 84 278l166 926h-176l16 80q92 11 144 41q24 14 35.5 34.5t21.5 71.5q20 91 45 158t55 110t56.5 68t62.5 49q58 39 129.5 58.5t181.5 19.5q71 0 148 -18q52 20 92 20q47 0 66.5 -18t19.5 -74 q0 -15 -4 -42.5t-11.5 -68.5t-14 -72.5t-17.5 -82t-15 -70.5l-157 -729q-3 -14 -9.5 -45t-10 -48.5t-6.5 -40t-3 -36.5q0 -36 17 -53t59 -17q71 0 141 19l-20 -86q-114 -53 -219 -53q-54 0 -89.5 26t-35.5 88q0 34 28 174l164 779q2 13 8.5 43t9.5 47t7 41.5t6 44.5t2 37 q0 67 -46.5 94.5t-133.5 27.5q-107 0 -165.5 -25.5t-96.5 -78.5q-21 -30 -33.5 -53.5t-33 -86t-38.5 -153.5l-14 -72q148 0 250 -4l-19 -98q-135 -6 -254 -6l-176 -928q-32 -171 -74 -261t-106 -142q-89 -72 -234 -72q-68 0 -119 27t-51 80z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1902" d="M-313 -455q0 67 26 156h80q0 -90 20.5 -123t88.5 -33q45 0 85 25.5t64 67.5q49 77 84 274l156 895h-176l16 80q92 11 143 41q24 14 35 34t23 72q40 155 84 231t112 121q102 70 252 70q73 0 140 -24q49 -22 49 -74q0 -73 -29 -187h-80v43q0 79 -33 105q-28 22 -96 22 q-113 0 -176 -96q-50 -79 -90 -299l-8 -39h354q103 0 131 23q35 22 55 106q29 126 63 204.5t65 114t81 70.5q103 72 299 72q41 0 99.5 -9t87.5 -22q47 -19 47 -80q0 -76 -29 -198h-94q2 27 2 84q0 54 -43 84q-35 28 -129 28q-147 0 -217 -104q-24 -34 -44 -95t-50 -200 l-17 -74h381q111 39 150 39q47 0 67.5 -18.5t20.5 -77.5q0 -58 -49 -276l-56 -236q-28 -122 -28 -170q0 -37 16 -53.5t59 -16.5q70 0 140 19l-19 -86q-114 -53 -219 -53q-54 0 -90.5 26t-36.5 88q0 42 29 174l55 252q39 166 39 211q0 46 -26 60t-81 14h-370l-164 -860 q-47 -248 -133 -348q-47 -57 -118.5 -88t-154.5 -31q-91 0 -145 28q-45 27 -45 80q0 57 29 146h75q0 -85 24 -115.5t93 -30.5q48 0 92 26t66 67q55 103 86 274l151 852h-520l-170 -903q-50 -254 -129 -348q-103 -119 -268 -119q-87 0 -137 28q-45 27 -45 80z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1892" d="M-313 -455q0 67 26 156h80q0 -90 20.5 -123t88.5 -33q45 0 85 25.5t64 67.5q49 77 84 274l156 895h-176l16 80q92 11 143 41q23 14 34.5 35t23.5 73q39 154 83.5 230t112.5 123q97 67 252 67q82 0 140 -24q49 -20 49 -74q0 -73 -29 -187h-80v52q0 69 -33 98 q-25 20 -94 20q-121 0 -178 -94q-54 -87 -90 -303l-6 -37h358q97 0 125 23q38 24 55 106q28 120 65 200t70 115.5t82 67.5q119 78 312 78q70 0 147 -18q52 18 96 18q45 0 63.5 -17.5t18.5 -72.5q0 -46 -63 -336l-154 -729q-28 -138 -28 -170q0 -37 16 -53.5t59 -16.5 q68 0 138 19l-17 -86q-116 -53 -219 -53q-127 0 -127 114q0 17 2.5 38.5t5.5 35t10.5 50t10.5 52.5l164 777q32 165 32 213q0 67 -47 94.5t-133 27.5q-108 0 -166.5 -25t-95.5 -79q-19 -28 -32 -53t-33 -87t-39 -153l-15 -72q150 0 252 -4l-18 -98q-135 -6 -254 -6 l-164 -860q-46 -247 -131 -350q-47 -56 -119.5 -86.5t-155.5 -30.5q-91 0 -145 28q-45 27 -45 80q0 57 29 146h75q0 -85 23.5 -115.5t93.5 -30.5q47 0 91 26t67 67q55 103 86 274l151 852h-520l-170 -903q-50 -254 -129 -348q-103 -119 -268 -119q-87 0 -137 28 q-45 27 -45 80z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="583" d="M150 98q0 55 34 94t90 39q53 0 86 -32t33 -84q0 -57 -35.5 -96t-93.5 -39q-50 0 -82 32.5t-32 85.5zM285 436q91 726 116 881q9 58 34.5 86.5t76.5 28.5q40 0 62 -21.5t22 -56.5q0 -26 -6 -47q-4 -22 -15.5 -67t-33.5 -127t-44.5 -166.5t-63 -232.5t-75.5 -278h-73z" />
+<glyph unicode="&#x22;" horiz-adv-x="620" d="M190 885q33 396 50 485q9 48 32 67t64 19q36 0 54 -19t18 -48q0 -26 -17 -82q-33 -130 -125 -422h-76zM492 885q36 425 47 485q9 48 33 67t65 19q35 0 53.5 -19.5t18.5 -47.5q0 -16 -17 -86q-32 -119 -127 -418h-73z" />
+<glyph unicode="#" horiz-adv-x="1136" d="M121 434l26 141h215l74 242h-217l29 146h223l119 409h90l-121 -409h264l121 409h84l-115 -409h199l-29 -146h-213l-73 -242h207l-27 -141h-221l-131 -461h-86l131 461h-262l-138 -461h-80l129 461h-198zM446 575h267l69 242h-264z" />
+<glyph unicode="$" horiz-adv-x="1069" d="M76 180q0 81 16 199h88q8 -141 62 -203q44 -54 180 -63l100 512l-96 57q-182 105 -182 285q0 173 114.5 270t305.5 113l43 215h94l-41 -211q141 -4 235 -41q58 -21 58 -82q0 -71 -39 -223h-86q-3 87 -11.5 125t-27.5 57q-35 38 -154 45l-94 -492l125 -69 q174 -98 174 -281q0 -181 -123 -280.5t-321 -112.5l-45 -236h-97l45 234q-323 13 -323 182zM393 1004q0 -63 36.5 -111t125.5 -100l86 442q-111 -10 -179.5 -66t-68.5 -165zM518 111q116 8 192 67.5t76 171.5q0 125 -141 205l-37 20z" />
+<glyph unicode="%" horiz-adv-x="1687" d="M121 786q0 111 33.5 239t101.5 214q103 127 264 127q133 0 196.5 -66.5t63.5 -201.5q0 -109 -29.5 -233t-88.5 -210q-106 -155 -281 -155q-130 0 -195 74t-65 212zM244 797q0 -199 151 -199q66 0 119 50.5t83 128t45 157t15 149.5q0 191 -145 191q-101 0 -166 -90 q-51 -71 -76.5 -183.5t-25.5 -203.5zM461 27l762 1353l77 -41l-761 -1355zM979 270q0 114 33.5 241t103.5 214q102 127 264 127q258 0 258 -270q0 -109 -29.5 -232t-90.5 -211q-107 -153 -281 -153q-129 0 -193.5 73.5t-64.5 210.5zM1104 283q0 -201 149 -201 q66 0 118.5 50.5t82 128t44.5 157t15 149.5q0 191 -143 191q-103 0 -166 -90q-50 -69 -75 -181.5t-25 -203.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="1523" d="M104 350q0 85 26.5 152.5t79.5 118.5t116.5 88.5t154.5 74.5q-31 60 -50 135t-19 134q0 168 105 265t286 97q137 0 220 -72t83 -186q0 -49 -14.5 -92.5t-36 -77t-60 -66t-71 -54.5t-85.5 -48t-88 -40.5t-92 -37.5q47 -97 139 -217.5t189 -218.5q78 72 158 219 q29 52 29 90q0 20 -9 29t-32 14q-43 9 -125 13l14 90q122 -4 242 -4q99 0 235 4l-16 -90q-58 -1 -85 -7.5t-44 -21.5q-4 -3 -8 -7.5t-10 -13t-10.5 -15t-12.5 -20.5t-13 -22t-16 -27t-16 -28q-40 -69 -99 -149t-106 -130q45 -52 132.5 -91.5t182.5 -39.5q25 0 39 2l-18 -112 q-32 -4 -76 -4q-222 0 -369 139q-193 -150 -417 -150q-196 0 -314.5 111t-118.5 266zM260 383q0 -123 76.5 -206t224.5 -83q160 0 307 111q-94 101 -192.5 239.5t-149.5 237.5q-57 -23 -101 -48t-83.5 -60.5t-60.5 -84t-21 -106.5zM557 1077q0 -53 16.5 -120t44.5 -119 q355 126 355 309q0 69 -54 111t-135 42q-101 0 -164 -59.5t-63 -163.5z" />
+<glyph unicode="'" horiz-adv-x="321" d="M190 885q33 396 50 485q9 48 32 67t64 19q36 0 54 -19t18 -48q0 -33 -21 -103q-1 -2 -41 -140.5t-80 -260.5h-76z" />
+<glyph unicode="(" horiz-adv-x="626" d="M90 379q0 379 177 683t511 527l47 -67q-99 -71 -186.5 -159.5t-163.5 -199t-131 -232.5t-86 -264.5t-31 -289.5q0 -204 64.5 -389t167.5 -328l-58 -49q-145 126 -228 325.5t-83 442.5z" />
+<glyph unicode=")" horiz-adv-x="626" d="M-180 -324q125 90 230.5 208t188.5 261.5t130 318t47 357.5q0 205 -64 390t-166 327l60 51q144 -128 227.5 -328t83.5 -442q0 -378 -177.5 -682t-510.5 -526z" />
+<glyph unicode="*" horiz-adv-x="825" d="M229 1186q0 32 19.5 59t52.5 27q28 0 67.5 -28t161.5 -136q-16 144 -16 205q0 67 19 90.5t55 23.5q76 0 76 -63q0 -58 -80 -264q109 49 157.5 66.5t77.5 17.5q32 0 51 -18.5t19 -49.5q0 -52 -32 -66t-146 -14q-88 0 -127 2q93 -105 125 -152.5t32 -82.5q0 -32 -23 -51 t-50 -19q-51 0 -71.5 47.5t-61.5 235.5q-83 -141 -121 -186.5t-72 -45.5q-26 0 -50 19t-24 51q0 17 7 32t29.5 38t71 56t124.5 77q-177 50 -224 71t-47 58z" />
+<glyph unicode="+" horiz-adv-x="1185" d="M131 573l31 123h413l101 441h123l-103 -441h412l-29 -123h-411l-103 -440h-119l99 440h-414z" />
+<glyph unicode="," horiz-adv-x="440" d="M-113 -274q109 48 178.5 109.5t69.5 131.5q0 39 -41 56q-65 28 -65 98q0 48 34 80t89 32q63 0 104 -42t41 -115q0 -60 -21.5 -115.5t-57.5 -100t-86 -84t-103.5 -69t-112.5 -51.5z" />
+<glyph unicode="-" horiz-adv-x="540" d="M55 434l25 131h418l-27 -131h-416z" />
+<glyph unicode="." horiz-adv-x="432" d="M27 98q0 55 35 94t92 39q53 0 85.5 -32t32.5 -84q0 -57 -36 -96t-93 -39q-50 0 -83 32.5t-33 85.5z" />
+<glyph unicode="/" horiz-adv-x="667" d="M-49 -129l713 1632l96 -43l-713 -1632z" />
+<glyph unicode="0" d="M96 416q0 120 20.5 250t74 275.5t133.5 244.5q146 186 378 186q369 0 369 -426q0 -111 -19.5 -240t-70 -277.5t-123.5 -252.5q-145 -205 -387 -205q-193 0 -284 117t-91 328zM250 434q0 -53 4.5 -96t19 -91t40 -80t70 -53.5t105.5 -21.5q91 0 167 64t123.5 160.5 t80.5 214t46.5 220.5t13.5 185q0 53 -5 95.5t-20.5 85t-41.5 71t-70.5 46t-104.5 17.5q-147 0 -250 -143q-86 -122 -132 -311t-46 -363z" />
+<glyph unicode="1" d="M190 -2l17 92q153 3 194 31q16 12 24 35.5t17 68.5l121 602q49 273 49 312q0 25 -8 35t-29 10q-58 0 -176 -37l-24 82q97 51 295 127q52 18 86 18q47 0 47 -51q0 -17 -4 -45q-80 -386 -94 -455l-117 -596q-8 -37 -8 -80q0 -41 49 -47q57 -7 166 -10l-17 -92 q-164 4 -319 4q-93 0 -269 -4z" />
+<glyph unicode="2" d="M-27 0l17 94q340 246 452 337q237 193 324 346q70 123 70 253q0 96 -56.5 158.5t-175.5 62.5q-88 0 -136.5 -18t-80.5 -51q-41 -51 -70 -160h-79q0 108 8 160q7 50 32 80t80 57q104 53 287 53q169 0 261.5 -84t92.5 -225q0 -83 -27 -167t-68.5 -154t-108.5 -144.5 t-128.5 -131t-149 -122t-149 -107.5t-147.5 -98q48 0 185 1t165 1q107 0 159 7.5t77 29.5q21 18 38.5 45.5t45.5 83.5h80q-40 -170 -64 -231q-26 -76 -137 -76h-797z" />
+<glyph unicode="3" d="M74 123q0 77 32 194h87q3 -105 32 -155q46 -70 209 -70q73 0 137.5 18t116.5 54t82.5 96t30.5 137q0 97 -73.5 164.5t-221.5 77.5q-94 4 -148 4l21 109q12 1 42 1.5t53.5 1.5t47.5 5q63 10 118.5 32t102 57.5t74 89t27.5 118.5q0 37 -10.5 69.5t-34 62t-67.5 47 t-105 17.5q-137 0 -201 -57q-38 -35 -72 -158h-82q0 80 7 148q6 48 28.5 75.5t77.5 55.5q104 55 270 55q90 0 157.5 -23.5t106 -64.5t57.5 -91.5t19 -109.5q0 -158 -96 -247t-268 -129q152 -10 236.5 -90t84.5 -201q0 -108 -40.5 -193.5t-112 -140t-165.5 -83t-204 -28.5 q-179 0 -278 43q-42 18 -60 44t-18 65z" />
+<glyph unicode="4" d="M66 365l14 81l745 861q32 36 56 51.5t57 15.5q29 0 47.5 -16t18.5 -49q0 -24 -17 -107q-5 -24 -15 -74.5t-44 -219.5t-82 -412h205l-23 -129h-205l-24 -121q-15 -65 -15 -92q0 -45 47 -56q33 -7 142 -14l-17 -86q-164 4 -294 4q-66 0 -242 -4l18 86q148 8 176 39 q17 22 41 125l25 117h-614zM256 489h446q89 439 146 682z" />
+<glyph unicode="5" d="M63 121q0 60 31 192h88q3 -110 29 -153q47 -70 209 -70q171 0 283 93t112 259q0 53 -17.5 101.5t-51.5 89t-92 64.5t-132 24q-67 0 -129 -21q-50 -16 -86 -16q-55 0 -55 53q0 28 16 94l131 508h658l-23 -141h-557l-98 -379q93 27 209 27q165 0 274 -97.5t109 -261.5 q0 -235 -149 -375.5t-408 -140.5q-185 0 -273 43q-78 37 -78 107z" />
+<glyph unicode="6" d="M133 408q0 205 70 425t200 361q161 178 439 178q108 0 184 -26q78 -24 78 -93q0 -31 -11 -90t-26 -106h-80q-5 116 -35 155q-32 37 -141 37q-186 0 -295 -116q-131 -134 -199 -441q54 72 152.5 116t204.5 44q158 0 252 -92.5t94 -243.5q0 -108 -33.5 -205.5t-95.5 -173.5 t-158.5 -121t-214.5 -45q-175 0 -280 113.5t-105 323.5zM281 391q0 -130 64 -214.5t187 -84.5q106 0 183 53.5t114 139t37 192.5q0 115 -65.5 182.5t-184.5 67.5q-185 0 -313 -164q-22 -86 -22 -172z" />
+<glyph unicode="7" d="M184 1012q5 117 21 223q7 49 36.5 76.5t100.5 27.5h784l-14 -86l-725 -1257q-14 -24 -28.5 -35.5t-39.5 -11.5q-69 0 -69 51q0 21 14 49l680 1149h-332q-212 0 -243 -8q-36 -8 -56 -45.5t-47 -132.5h-82z" />
+<glyph unicode="8" d="M90 315q0 142 94.5 236t270.5 158q-93 66 -133.5 147.5t-40.5 161.5q0 162 117 258t307 96q165 0 264.5 -78.5t99.5 -214.5q0 -71 -24.5 -129.5t-72 -103.5t-101.5 -78t-130 -66q232 -140 232 -337q0 -182 -132.5 -287t-338.5 -105q-186 0 -299 93.5t-113 248.5zM240 332 q0 -108 72.5 -174t197.5 -66q62 0 115.5 13.5t97 41.5t68 76.5t24.5 112.5q0 90 -66 167t-212 146q-77 -35 -125 -63t-91 -65.5t-62 -83.5t-19 -105zM434 1040q0 -85 49.5 -152t165.5 -130q54 26 96.5 52t85.5 62.5t67 82.5t24 98q0 87 -59 142.5t-169 55.5 q-114 0 -187 -53.5t-73 -157.5z" />
+<glyph unicode="9" d="M74 98q0 101 28 193h80q7 -113 45 -154q40 -43 154 -43q187 0 299 125q117 126 186 432q-55 -70 -149.5 -112.5t-200.5 -42.5q-160 0 -258 94t-98 246q0 109 32 205t93 170.5t157.5 117.5t216.5 43q177 0 281 -110t104 -322q0 -136 -21.5 -269.5t-78 -274.5t-141.5 -238 q-164 -187 -441 -187q-52 0 -113.5 10.5t-98.5 24.5q-40 16 -58 36.5t-18 55.5zM313 879q0 -123 65 -188.5t185 -65.5q193 0 318 157q20 78 20 170q0 132 -65.5 216.5t-190.5 84.5q-157 0 -244.5 -106.5t-87.5 -267.5z" />
+<glyph unicode=":" horiz-adv-x="473" d="M70 98q0 55 35 94t92 39q53 0 85.5 -32t32.5 -84q0 -57 -36 -96t-93 -39q-50 0 -83 32.5t-33 85.5zM197 756q0 54 35 93.5t90 39.5q53 0 85.5 -31.5t32.5 -83.5q0 -58 -35 -96.5t-94 -38.5q-50 0 -82 32t-32 85z" />
+<glyph unicode=";" horiz-adv-x="475" d="M-70 -274q108 48 177 109.5t69 131.5q0 40 -39 56q-67 29 -67 98q0 48 34.5 80t88.5 32q65 0 105 -42t40 -115q0 -60 -21.5 -115.5t-57.5 -100t-86 -84t-103.5 -69t-112.5 -51.5zM197 756q0 54 35 93.5t90 39.5q53 0 85.5 -31.5t32.5 -83.5q0 -58 -35 -96.5t-94 -38.5 q-50 0 -82 32t-32 85z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1183" d="M201 557l35 139l882 416l-33 -158l-743 -338l588 -331l-35 -140z" />
+<glyph unicode="=" horiz-adv-x="1183" d="M117 395l28 125h908l-25 -125h-911zM199 752l24 125h912l-29 -125h-907z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1183" d="M143 145l33 156l744 340l-584 330l31 141l688 -412l-27 -137z" />
+<glyph unicode="?" horiz-adv-x="845" d="M213 98q0 55 34.5 94t90.5 39q54 0 87.5 -32t33.5 -84q0 -57 -35.5 -96t-93.5 -39q-52 0 -84.5 32.5t-32.5 85.5zM242 1124q0 101 8 150q14 83 123 119q112 32 219 32q153 -1 236 -75t83 -197q0 -70 -19 -129.5t-50.5 -104t-82 -86.5t-102 -73t-122.5 -66 q-21 -11 -37 -23.5t-27.5 -30t-19 -32.5t-14 -39t-10.5 -42t-10 -49t-11 -52h-89q8 139 21 209q10 53 44.5 86.5t98.5 66.5q60 32 102 60.5t82 69t60 92t20 114.5q0 32 -9 63t-28.5 59.5t-56 46t-84.5 18.5q-124 0 -172 -33q-41 -30 -65 -154h-88z" />
+<glyph unicode="@" horiz-adv-x="1603" d="M74 393q0 136 40 267.5t117.5 244t181.5 198t240.5 134.5t286.5 49q135 0 242.5 -34.5t174 -89t110.5 -126t61.5 -140.5t17.5 -138q0 -342 -262 -559q-51 -41 -120.5 -72t-112.5 -31q-60 0 -86 25.5t-31 79.5q0 29 2 47q-149 -152 -309 -152q-232 0 -232 262 q0 129 62.5 261t167.5 219q73 63 140 88.5t163 25.5q97 0 180 -49l31 68h98l-123 -420q-55 -186 -55 -283q0 -51 45 -51q24 0 64 21t75 53q85 75 136 192.5t51 261.5q0 203 -136.5 324t-359.5 121q-156 0 -294 -64.5t-234.5 -173t-152.5 -255t-56 -306.5q0 -170 80.5 -300 t219 -198.5t312.5 -68.5q178 0 338 58t289 163l55 -76q-148 -126 -325.5 -191t-366.5 -65q-213 0 -377 82.5t-256 237.5t-92 360zM524 365q0 -158 142 -158q61 0 140 41t136 94q16 70 47 176l84 289q-88 45 -180 45q-56 0 -98.5 -18.5t-89.5 -61.5q-81 -72 -131 -182 t-50 -225z" />
+<glyph unicode="A" horiz-adv-x="1433" d="M-76 -2l21 94q98 5 137 33q21 15 41.5 43.5t71.5 114.5l620 1063q44 73 107 73q67 0 77 -71l175 -1092q9 -63 18.5 -91.5t26.5 -45.5q20 -23 139 -27l-21 -94q-136 4 -268 4q-112 0 -260 -4l20 94q82 0 132 12q36 9 49.5 26t13.5 50q0 55 -8 99l-35 223h-520l-127 -213 q-60 -100 -60 -137q0 -25 17 -37q28 -17 174 -23l-19 -94q-126 4 -290 4q-100 0 -232 -4zM518 614h449q-25 157 -95 627q-105 -196 -354 -627z" />
+<glyph unicode="B" horiz-adv-x="1263" d="M-4 -2l20 92q126 8 152 21t36 32t23 88l174 910q15 73 15 98q0 32 -43 41q-46 11 -135 16l16 88h356q202 0 334 -20q123 -21 186.5 -88t63.5 -164q0 -306 -330 -377q146 -17 221.5 -93.5t75.5 -199.5q0 -145 -78 -246.5t-210.5 -149.5t-309.5 -48q-39 0 -149 2t-166 2 q-96 0 -252 -4zM362 158q0 -22 10.5 -32.5t37.5 -16.5q36 -7 159 -7q81 0 153 18t133 54.5t96.5 99t35.5 144.5q0 69 -27 121.5t-69 78.5q-47 28 -121 39t-205 11h-104l-90 -451q-9 -45 -9 -59zM481 780h105q54 0 122.5 5.5t90.5 11.5q105 30 167 97.5t62 174.5 q0 143 -125 182q-86 23 -221 23h-107z" />
+<glyph unicode="C" horiz-adv-x="1353" d="M133 545q0 170 56 328.5t167 285.5q228 258 617 258q176 0 301 -47q78 -30 78 -117q0 -43 -31 -213h-88q0 132 -39 187q-52 65 -252 65q-144 0 -268 -56t-213 -167q-81 -102 -124.5 -235.5t-43.5 -268.5q0 -234 125.5 -352.5t335.5 -118.5q180 0 284 74q57 43 119 170h88 q-8 -54 -27.5 -114.5t-35.5 -92.5q-46 -84 -140 -115q-153 -45 -319 -45q-270 0 -430 153.5t-160 420.5z" />
+<glyph unicode="D" horiz-adv-x="1478" d="M-4 0l20 90q90 6 124.5 13t49.5 22q12 10 18 32t19 89l174 893q15 81 15 100q0 33 -47 43q-27 7 -131 14l16 88h330q206 0 339 -16.5t201 -42.5t129 -72q81 -61 126.5 -166.5t45.5 -224.5q0 -503 -338 -731q-101 -69 -244 -100t-358 -31h-489zM365 180q0 -48 51 -57 q49 -8 178 -8q163 0 291 53.5t210 149.5t124.5 224.5t42.5 282.5q0 124 -45 223.5t-123 145.5q-128 76 -387 76h-134l-202 -1047q-6 -30 -6 -43z" />
+<glyph unicode="E" horiz-adv-x="1212" d="M-4 0l20 92q141 3 172 31l6 6t5.5 8t4.5 9.5t4 12.5t3.5 13.5t4 17t4 19t4.5 23t5 24.5l172 883q15 77 15 98q0 37 -45 45q-39 8 -133 12l16 90h821q113 0 113 -75q0 -89 -35 -248h-84q0 42 -4 104q-5 54 -35 74q-26 17 -74.5 24t-171.5 7h-209l-94 -494h162 q89 0 124.5 6.5t57.5 26.5q31 31 60 129h86q-32 -125 -82 -428h-82q4 20 4 53q0 84 -57 96q-44 9 -136 9h-157l-90 -455q-1 -6 -3.5 -20.5t-2.5 -20.5q0 -45 43 -51q53 -6 208 -6q143 0 210.5 15t103.5 44q56 48 117 178h86q-15 -91 -39.5 -172.5t-49.5 -122.5 q-29 -57 -167 -57h-881z" />
+<glyph unicode="F" horiz-adv-x="1163" d="M-4 -2l20 92q92 6 126.5 13t47.5 20q11 11 18.5 36.5t20.5 96.5l172 883q15 81 15 96q0 20 -10 30.5t-35 14.5q-48 11 -133 14l16 90h842q66 0 89 -21t23 -65q0 -70 -37 -237h-84q0 147 -40 176q-23 18 -71.5 25.5t-174.5 7.5h-226l-100 -516h189q86 0 121.5 8t58.5 29 q34 29 63 127h86q-49 -206 -84 -435h-82q2 23 2 56q-2 38 -10.5 60t-32.5 32q-31 12 -147 12h-182l-78 -385q-14 -75 -14 -102q0 -43 47 -52q26 -6 166 -14l-19 -92q-172 4 -301 4q-82 0 -262 -4z" />
+<glyph unicode="G" horiz-adv-x="1449" d="M133 555q0 199 75 380t214 300q211 182 522 182q195 0 336 -49q86 -31 86 -111q0 -54 -33 -219h-90q0 138 -35 183q-64 71 -293 71q-110 0 -208.5 -38t-173.5 -105t-130 -155t-83.5 -192.5t-28.5 -213.5q0 -131 37 -228.5t104 -154.5t152.5 -84t191.5 -27q98 0 197 23 q45 12 76 33q22 19 36 90l33 168q8 54 8 73q0 34 -41 45q-26 5 -139 13l17 94q114 -4 247 -4q162 0 234 4l-19 -94q-59 -2 -87.5 -7.5t-41.5 -19.5q-14 -19 -30 -106l-52 -261q-17 -88 -84 -110q-192 -66 -401 -66q-276 0 -436 150t-160 436z" />
+<glyph unicode="H" horiz-adv-x="1536" d="M-4 -2l20 92q146 10 174 35q11 9 18.5 33.5t20.5 95.5l172 885q15 88 15 98q0 35 -47 45q-46 8 -131 14l16 90q123 -6 254 -6q7 0 283 6l-19 -90q-96 -7 -133.5 -15t-50.5 -21q-18 -21 -37 -119l-70 -359h686l72 357q14 82 14 98q0 36 -49 45q-39 10 -131 14l19 90 q252 -6 256 -6q10 0 280 6l-18 -90q-99 -7 -136.5 -14.5t-48.5 -21.5q-22 -25 -39 -119l-169 -887q-17 -93 -17 -104q0 -22 13 -31.5t40 -14.5q41 -7 136 -14l-19 -92q-172 4 -280 4q-76 0 -256 -4l20 92q149 10 174 35q11 9 18.5 33.5t20.5 95.5l80 414h-686l-82 -414 q-17 -84 -17 -104q0 -22 13 -31.5t39 -14.5q54 -8 139 -14l-21 -92q-172 4 -280 4q-76 0 -256 -4z" />
+<glyph unicode="I" horiz-adv-x="704" d="M-4 -2l20 92q147 10 174 35q11 9 18.5 33.5t20.5 95.5l172 885q15 88 15 98q0 21 -11 30.5t-36 14.5q-46 8 -131 14l16 90q246 -6 258 -6q5 0 281 6l-19 -90q-160 -12 -184 -36q-19 -22 -37 -119l-172 -887q-16 -79 -16 -104q0 -36 51 -46q50 -8 139 -14l-20 -92 q-172 4 -283 4q-76 0 -256 -4z" />
+<glyph unicode="J" horiz-adv-x="645" d="M-164 -227q118 45 195.5 108t118.5 156q54 124 88 307l151 795q14 72 14 100q0 37 -47 43q-66 10 -133 14l19 90q234 -6 256 -6q8 0 272 6l-18 -90q-98 -8 -131 -14t-46 -20q-19 -21 -38 -121l-148 -791q-28 -145 -53.5 -231.5t-65.5 -155.5q-49 -87 -152.5 -161.5 t-250.5 -120.5z" />
+<glyph unicode="K" horiz-adv-x="1353" d="M-4 -2l20 92q143 9 172 33q11 9 19.5 35t21.5 94l172 889q15 81 15 98q0 32 -39 41q-44 11 -139 16l16 90q246 -6 254 -6q7 0 283 6l-21 -90q-156 -9 -182 -39q-17 -17 -35 -110l-174 -893q-17 -87 -17 -102q0 -41 54 -48q50 -7 137 -14l-21 -92q-172 4 -280 4 q-76 0 -256 -4zM504 707q200 162 493 438q80 77 80 112q0 20 -27.5 27t-111.5 12l18 90q88 -4 271 -4q131 0 223 4l-18 -90q-57 -4 -95 -18q-63 -25 -172 -129q-42 -40 -253.5 -222t-241.5 -210q78 -136 197.5 -305t183.5 -230q54 -51 106 -71q57 -24 115 -27l-17 -84 q-27 -8 -96 -8q-134 0 -217 80q-79 76 -219 281.5t-219 353.5z" />
+<glyph unicode="L" horiz-adv-x="1204" d="M-4 0l20 90q140 5 170 29q14 13 23 41.5t20 91.5l172 887q15 81 15 96q0 23 -13.5 33.5t-40.5 15.5q-41 9 -124 12l16 90q234 -6 256 -6q152 0 287 6l-21 -90q-163 -7 -188 -39q-17 -19 -35 -118l-180 -906q-8 -48 -8 -61q0 -45 43 -51q55 -6 196 -6q144 0 209.5 13.5 t97.5 41.5q56 47 119 186h80q-42 -207 -94 -299q-29 -57 -160 -57h-860z" />
+<glyph unicode="M" horiz-adv-x="1796" d="M-6 -2l20 92q135 6 160 31q19 15 33 52.5t31 119.5q45 208 80 371t54 253t30.5 147t17.5 86.5t8 37.5q6 30 6 51q0 22 -11.5 32t-37.5 15q-29 7 -131 10l20 90q90 -4 226 -4q120 0 155 4q172 -714 228 -978q126 224 610 978q102 -4 190 -4q120 0 183 4l-21 -94 q-142 -7 -170 -35q-24 -30 -39 -112q-19 -100 -151 -862q-15 -90 -15 -129q0 -44 62 -52q43 -6 123 -12l-17 -92q-184 4 -270 4q-28 0 -270 -4l16 92q90 4 126 13.5t50 25.5q14 14 33 102q3 15 41 226t81 445.5t54 293.5q-91 -153 -596 -948q-18 -25 -33 -35t-39 -10 q-46 0 -59 49q-107 454 -227 950q-24 -121 -71.5 -358t-84.5 -421t-41 -206q-8 -40 -8 -59q0 -28 13.5 -40.5t45.5 -17.5q44 -6 127 -10l-22 -92q-168 4 -242 4q-56 0 -268 -4z" />
+<glyph unicode="N" horiz-adv-x="1501" d="M-4 -2l20 92q148 8 177 41q11 13 19.5 46.5t25.5 121.5q11 55 46 234.5t65.5 334.5t43.5 215q21 114 21 146q0 47 -58 55q-37 7 -131 12l21 90q86 -4 194 -4q80 0 154 4q494 -1055 536 -1153q19 105 56.5 308.5t65 354t32.5 185.5q19 127 19 148q0 41 -37 49 q-71 16 -142 18l19 90q218 -4 264 -4q16 0 242 4l-19 -90q-85 -4 -115.5 -11.5t-50.5 -22.5q-15 -13 -25.5 -48t-29.5 -131q-106 -528 -197 -1026q-12 -73 -82 -73q-50 0 -73 51q-485 1050 -531 1147q-32 -166 -96 -519.5t-65 -359.5q-23 -118 -23 -149q0 -23 14 -34t41 -16 q55 -8 135 -14l-20 -92q-204 4 -272 4q-26 0 -244 -4z" />
+<glyph unicode="O" horiz-adv-x="1431" d="M133 532q0 172 53 348t156 300q199 235 522 235q258 0 387 -138.5t129 -379.5q0 -199 -52 -384t-169 -323q-89 -104 -219 -160.5t-266 -56.5q-259 0 -400 141.5t-141 417.5zM289 543q0 -449 393 -449q110 0 201.5 45.5t156.5 126.5q90 118 133.5 284.5t43.5 340.5 q0 199 -97 301t-282 102q-121 0 -220.5 -53t-166.5 -145q-77 -110 -119.5 -259t-42.5 -294z" />
+<glyph unicode="P" horiz-adv-x="1169" d="M-4 -2l20 92q139 9 170 31q13 9 21 34t22 99l172 887q15 84 15 94q0 23 -12 31.5t-39 13.5q-35 8 -127 14l16 90h362q226 0 349 -22q132 -25 193 -107t61 -192q0 -132 -47 -230t-133 -156t-197.5 -86t-249.5 -28q-111 0 -154 2l-59 -309q-17 -81 -17 -104q0 -38 41 -46 q46 -9 166 -16l-20 -92q-172 4 -303 4q-66 0 -250 -4zM461 674q31 -2 114 -2q52 0 96 3t94.5 13t90.5 26t78.5 44.5t64 66t41 92.5t15.5 123q0 88 -38.5 138t-111.5 75q-74 23 -217 23h-113z" />
+<glyph unicode="Q" horiz-adv-x="1431" d="M133 532q0 172 53 348t156 300q199 235 522 235q258 0 387 -138.5t129 -379.5q0 -199 -52 -384t-169 -323q-128 -149 -330 -196q108 -115 244 -180q62 -30 154 -46t172 -16q45 0 61 2l-18 -90q-59 -10 -146 -10q-199 0 -313 51q-92 41 -166.5 99t-187.5 171 q-238 11 -367 152t-129 405zM289 543q0 -449 393 -449q110 0 201.5 45.5t156.5 126.5q90 118 133.5 284.5t43.5 340.5q0 199 -97 301t-282 102q-121 0 -220.5 -53t-166.5 -145q-77 -110 -119.5 -259t-42.5 -294z" />
+<glyph unicode="R" horiz-adv-x="1325" d="M-4 -2l20 92q85 6 121 13t51 20q12 9 20 33.5t21 95.5l174 897q13 64 13 86q0 21 -11 31t-38 16q-17 4 -129 14l16 88h358q233 0 338 -24q124 -31 185 -109.5t61 -183.5q0 -185 -106 -293t-289 -149q88 -201 137.5 -294t103.5 -147q50 -50 99 -71q43 -18 102 -21l-18 -94 q-14 -2 -82 -2q-128 0 -215 84q-69 69 -130.5 187.5t-148.5 336.5q-59 0 -203 4l-67 -356q-17 -94 -17 -102q0 -35 50 -46q19 -4 139 -14l-21 -92q-176 4 -286 4q-64 0 -248 -4zM467 717q62 -4 113 -4q450 0 450 336q0 68 -35 121.5t-94 76.5q-73 25 -219 25h-107z" />
+<glyph unicode="S" horiz-adv-x="1124" d="M61 176q0 90 23 205h86q4 -152 78.5 -220.5t253.5 -68.5q165 0 246 72.5t81 179.5q0 141 -170 234l-229 124q-97 54 -143.5 134t-46.5 170q0 188 135 298.5t393 110.5q159 0 242 -39q75 -34 75 -102q0 -72 -30 -219h-86q0 105 -22.5 151.5t-65.5 63.5q-59 26 -172 26 q-159 0 -238.5 -74.5t-79.5 -183.5q0 -64 39 -118t145 -111l213 -117q199 -108 199 -295q0 -143 -68 -240t-183 -141.5t-271 -44.5q-71 0 -139.5 11.5t-129 35t-98 64.5t-37.5 94z" />
+<glyph unicode="T" horiz-adv-x="1314" d="M205 1049q11 119 33 231q10 53 35.5 78.5t91.5 25.5h913q67 0 93 -20t26 -66q0 -61 -47 -249h-80q0 166 -31 194q-22 19 -76.5 24t-271.5 5l-197 -1012q-14 -71 -14 -110q0 -38 41 -46q30 -7 143 -14l-16 -92q-156 4 -264 4q-107 0 -275 -4l19 92q98 7 130.5 15t47.5 24 q20 20 39 129l196 1014q-212 0 -269.5 -5.5t-88.5 -23.5q-24 -14 -45.5 -57.5t-50.5 -136.5h-82z" />
+<glyph unicode="U" horiz-adv-x="1538" d="M213 1296l20 90q160 -4 277 -4q94 0 258 4l-16 -90q-99 -6 -130 -13t-47 -23q-18 -20 -38 -109q-57 -255 -109 -518q-35 -172 -35 -271q0 -266 328 -266q113 0 208 36t144 97q51 63 84 162t66 262q15 69 90 486q10 56 10 90q0 26 -9 35t-34 16q-15 3 -139 16l16 90 q74 -2 260 -2q20 0 112 1t132 1l-19 -90q-93 -3 -129.5 -13.5t-46.5 -29.5q-17 -33 -36 -133l-99 -504q-40 -203 -80.5 -310.5t-109.5 -176.5q-163 -160 -465 -160q-68 0 -129 10.5t-118.5 36t-99 64.5t-66.5 99.5t-25 137.5q0 114 36 291q15 73 56 269.5t55 265.5 q12 67 12 88q0 20 -7.5 31t-29.5 18q-34 13 -147 16z" />
+<glyph unicode="V" horiz-adv-x="1437" d="M170 1296l16 90q140 -4 281 -4q106 0 254 4l-19 -90q-77 -3 -135 -12q-59 -9 -59 -57q0 -41 12 -115q51 -322 95.5 -595t58.5 -367q156 299 522 956q55 94 55 143q0 28 -43 35q-56 12 -143 12l16 90q126 -4 271 -4q121 0 247 4l-18 -90q-107 -5 -141 -28 q-20 -13 -38.5 -41t-64.5 -111l-610 -1085q-22 -36 -45 -51t-57 -15q-67 0 -78 68l-189 1106q-11 65 -21.5 94t-29.5 41q-33 18 -137 22z" />
+<glyph unicode="W" horiz-adv-x="1980" d="M172 1296l16 90q40 -1 85.5 -1.5t71.5 -1t53 -1t46 -0.5q170 0 252 4l-18 -90q-41 -1 -60 -2t-47.5 -4.5t-40.5 -10t-25.5 -17.5t-18.5 -29t-5 -43q0 -14 1 -52t1 -44q29 -826 31 -912q161 345 559 1135q34 74 92 74q35 0 54.5 -16t23.5 -54q83 -886 98 -1143 q124 301 396 930q41 95 41 133q0 35 -47 43q-39 9 -146 12l17 90q200 -4 272 -4q73 0 229 4l-16 -90q-51 -3 -78 -9.5t-49 -24.5q-8 -6 -15.5 -15t-13 -16.5t-13.5 -23t-11.5 -23t-13 -29t-13.5 -29.5l-483 -1085q-36 -76 -103 -76q-34 0 -52.5 17t-22.5 59 q-80 846 -99 1135q-144 -316 -557 -1135q-40 -76 -104 -76q-73 0 -76 76l-51 1092q-4 60 -12 93.5t-29 45.5q-29 17 -119 24z" />
+<glyph unicode="X" horiz-adv-x="1419" d="M-55 -2l18 92q105 0 150 29q44 30 106 98l449 500l-250 467q-16 30 -24.5 45t-20 28t-23.5 19q-27 16 -131 20l23 90q125 -4 286 -4q190 0 260 4l-20 -90q-104 -10 -123 -14q-57 -9 -57 -47q0 -27 24 -74l181 -352l288 324q64 73 64 108q0 17 -9 26.5t-40 16.5 q-37 9 -119 12l22 90q61 -4 285 -4q151 0 229 4l-20 -90q-90 -2 -131 -28q-12 -8 -26.5 -22t-42.5 -44.5t-40 -42.5l-411 -436l266 -512q15 -28 22.5 -39.5t19 -26t26.5 -26.5q30 -26 149 -29l-18 -92q-266 4 -287 4l-254 -4l16 92q72 3 123 14q47 13 47 48q0 19 -22 65 l-211 406l-328 -377q-65 -74 -65 -109q0 -17 13 -27.5t42 -14.5t47 -4.5t57 -0.5h21l-19 -92q-222 4 -297 4q-118 0 -245 -4z" />
+<glyph unicode="Y" horiz-adv-x="1251" d="M160 1296l18 90q230 -4 246 -4q38 0 250 4l-21 -90q-108 0 -139 -10q-39 -10 -39 -51q0 -34 25 -98q156 -412 174 -461q190 249 364 469q60 74 60 112q0 14 -11 22.5t-36.5 12t-41.5 4t-49 0.5h-16l21 90q94 -4 260 -4q100 0 190 4l-20 -90q-59 -3 -99 -28 q-8 -5 -17.5 -13.5t-22 -23t-21.5 -25t-25 -30.5t-22 -27l-469 -578l-68 -338q-12 -64 -12 -90q0 -34 33 -39q36 -8 149 -14l-16 -92q-212 4 -262 4q-80 0 -264 -4l16 92q98 4 127.5 11t44.5 24q19 23 35 102l65 342l-225 561q-9 21 -19 46.5t-15 37t-11 25t-12 20t-13 11.5 q-33 23 -112 26z" />
+<glyph unicode="Z" horiz-adv-x="1234" d="M-14 0l8 57l1061 1211q-358 0 -460 -3.5t-136 -13.5q-32 -9 -56 -51t-55 -143h-92q10 115 27 233q16 94 151 94h875l-11 -55l-1058 -1206q78 -4 303 -4q200 0 275 9.5t112 33.5q53 35 131 196h90q-34 -163 -82 -288q-26 -70 -137 -70h-946z" />
+<glyph unicode="[" horiz-adv-x="602" d="M27 -348l368 1894h379l-18 -90h-246l-330 -1712h244l-16 -92h-381z" />
+<glyph unicode="\" horiz-adv-x="737" d="M244 1473l102 20l240 -1634l-105 -19z" />
+<glyph unicode="]" horiz-adv-x="602" d="M-129 -348l16 92h246l332 1710h-248l21 92h380l-368 -1894h-379z" />
+<glyph unicode="^" d="M211 764l483 700h131l158 -700h-123l-129 555l-377 -555h-143z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-115 -279l23 115h1012l-21 -115h-1014z" />
+<glyph unicode="`" horiz-adv-x="604" d="M119 1421q0 33 25 54.5t55 21.5q25 0 45.5 -17.5t52.5 -66.5l186 -297l-55 -41l-242 244q-37 37 -52 58t-15 44z" />
+<glyph unicode="a" horiz-adv-x="1144" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q111 0 201 -53l35 76h110l-124 -492q-54 -211 -54 -309q0 -34 19 -52t67 -18q57 0 127 19l-20 -86q-103 -53 -209 -53q-72 0 -97.5 42t-25.5 130q-156 -179 -350 -179q-144 0 -214.5 81.5t-70.5 230.5zM238 297 q0 -103 42 -152t134 -49q151 0 317 162q18 99 45 207l84 321q-82 50 -192 50q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247z" />
+<glyph unicode="b" horiz-adv-x="1114" d="M111 43q24 93 59 264l158 746q39 184 39 245q0 42 -18.5 57t-63.5 15q-44 0 -86 -10l16 82q113 55 213 55q102 0 102 -94q0 -45 -16 -119q-69 -340 -106 -479q71 69 161 112.5t183 43.5q144 0 211 -81t67 -223q0 -310 -162 -501q-151 -183 -419 -183q-201 0 -338 70z M266 131q66 -37 213 -37q175 0 291 148q55 72 83 172t28 198q0 102 -45.5 157.5t-153.5 55.5q-64 0 -145.5 -34t-149.5 -86z" />
+<glyph unicode="c" horiz-adv-x="948" d="M94 340q0 148 54 282.5t161 221.5q140 117 336 117q91 0 158 -25q45 -18 62.5 -44t17.5 -65q0 -28 -9.5 -81t-21.5 -89h-82q0 115 -33 148q-42 39 -125 39q-134 0 -227 -90q-66 -66 -106.5 -172t-40.5 -209q0 -275 243 -275q146 0 314 119l53 -84q-191 -162 -414 -162 q-159 0 -249.5 99.5t-90.5 269.5z" />
+<glyph unicode="d" horiz-adv-x="1171" d="M92 303q0 142 58.5 285.5t162.5 232.5q153 135 389 135q113 0 191 -45l31 133q43 188 43 252q0 41 -18.5 57.5t-63.5 16.5q-27 0 -84 -10l16 82q116 55 213 55q49 0 74.5 -21.5t25.5 -74.5q0 -49 -67 -346l-143 -639q-35 -151 -35 -244q0 -70 82 -70q57 0 127 19l-19 -86 q-101 -53 -213 -53q-109 0 -119 108q-2 14 -2 66q-152 -181 -346 -181q-157 0 -230 88t-73 240zM238 330q0 -116 47.5 -175t152.5 -59q80 0 163.5 48.5t146.5 115.5q12 62 49 219l71 309q-91 54 -202 54q-160 0 -258 -101q-71 -72 -120.5 -189t-49.5 -222z" />
+<glyph unicode="e" horiz-adv-x="913" d="M94 326q0 182 67 327.5t185 226.5t266 81q134 0 199.5 -64t65.5 -152q0 -325 -637 -325q-4 -25 -4 -76q0 -106 58.5 -176t178.5 -70q87 0 160 27t176 94l51 -84q-100 -81 -201 -122.5t-237 -41.5q-64 0 -121.5 21.5t-104.5 63.5t-74.5 111.5t-27.5 158.5zM254 518 q246 7 364.5 64t118.5 149q0 60 -33 89.5t-108 29.5q-116 0 -212 -89t-130 -243z" />
+<glyph unicode="f" horiz-adv-x="671" d="M-313 -455q0 67 26 156h80q0 -90 20.5 -123t88.5 -33q45 0 85 25.5t64 67.5q49 77 84 274l156 895h-176l16 80q92 11 143 41q24 14 36 35.5t22 72.5q39 180 84.5 264t115.5 130q101 67 244 67q76 0 135 -24q50 -20 50 -72q0 -75 -31 -197h-84q2 27 2 66q-2 63 -31 88.5 t-90 25.5q-104 0 -164 -92q-47 -73 -92 -311l-12 -66q146 0 250 -4l-21 -98q-135 -6 -252 -6l-170 -903q-50 -254 -129 -348q-103 -119 -268 -119q-87 0 -137 28q-45 27 -45 80z" />
+<glyph unicode="g" horiz-adv-x="1050" d="M-23 -293q0 101 105 184q59 47 168 101q-44 19 -64 49t-20 61q0 104 145 195q-147 72 -147 246q0 198 143 323q109 95 281 95q126 0 203 -48q231 0 284 -2l-18 -102q-61 -4 -178 -4q16 -19 26 -59.5t10 -75.5q0 -174 -102 -285q-120 -129 -317 -129q-59 0 -105 8 q-46 -31 -68 -56.5t-22 -55.5t23 -49.5t75 -32.5q37 -9 141.5 -30.5t176.5 -37.5q209 -46 209 -221q0 -164 -135 -254t-359 -90q-220 0 -337.5 75.5t-117.5 194.5zM117 -268q0 -79 84.5 -130t253.5 -51q153 0 238 55.5t85 139.5q0 62 -45 94t-160 56q-209 44 -235 53 q-84 -31 -152.5 -90t-68.5 -127zM299 557q0 -97 58.5 -143.5t152.5 -46.5q64 0 120 24t89 68q61 83 61 186t-51.5 155t-148.5 52q-130 0 -205.5 -82t-75.5 -213z" />
+<glyph unicode="h" horiz-adv-x="1124" d="M102 0l226 1053q39 189 39 245q0 42 -18.5 57t-63.5 15q-44 0 -86 -10l16 82q113 55 213 55q102 0 102 -94q0 -20 -16 -119q-47 -249 -113 -506q73 83 170 130.5t197 47.5q91 0 143 -41t52 -127q0 -67 -27 -178l-64 -264q-28 -122 -28 -174q0 -36 17 -53t59 -17 q70 0 137 19l-19 -86q-114 -53 -219 -53q-123 0 -123 112q0 65 27 176l76 328q16 62 16 117q0 60 -31.5 84t-89.5 24q-146 0 -307 -141l-156 -682h-129z" />
+<glyph unicode="i" horiz-adv-x="604" d="M117 813l16 80q109 59 201 59q108 0 108 -104q0 -21 -6.5 -61t-13 -70t-18 -79.5t-13.5 -57.5l-57 -238q-29 -126 -29 -170q0 -37 16.5 -53.5t59.5 -16.5q69 0 139 19l-18 -86q-116 -53 -219 -53q-127 0 -127 114q0 56 26 174l62 254q41 171 41 228q0 39 -17.5 54 t-62.5 15q-42 0 -88 -8zM291 1321q0 59 35 96t86 37q46 0 73 -30t27 -78q0 -55 -34 -92t-85 -37q-46 0 -74 28.5t-28 75.5z" />
+<glyph unicode="j" horiz-adv-x="563" d="M-205 -471q76 21 138 61t92 91q51 88 108 313q21 79 40.5 165t42.5 197.5t34 159.5q35 170 35 229q0 44 -17 60t-63 16q-40 0 -86 -8l14 80q112 59 203 59q108 0 108 -104q0 -25 -26 -178q-28 -148 -150 -682q-56 -253 -133 -363q-44 -63 -132 -116.5t-193 -71.5z M297 1321q0 59 35 96t86 37q46 0 73 -30t27 -78q0 -55 -34.5 -92t-84.5 -37q-47 0 -74.5 28.5t-27.5 75.5z" />
+<glyph unicode="k" horiz-adv-x="1028" d="M102 0l226 1055q39 184 39 243q0 42 -18.5 57t-63.5 15q-44 0 -86 -10l16 82q113 55 213 55q102 0 102 -94q0 -47 -16 -121q-238 -1088 -283 -1282h-129zM379 518q138 179 262 299q146 139 274 139q109 0 109 -88q0 -40 -25 -129h-73q-4 39 -17.5 53.5t-42.5 14.5 q-36 0 -79 -21t-78 -53q-116 -101 -197 -194q51 -104 114 -200.5t117 -158.5q67 -78 144 -78q51 0 117 15l-23 -88q-20 -13 -62 -25t-75 -12q-64 0 -109 18.5t-84 63.5q-120 133 -272 444z" />
+<glyph unicode="l" horiz-adv-x="571" d="M131 96q0 51 27 174l170 779q39 178 39 245q0 42 -16.5 59t-59.5 17q-33 0 -90 -10l14 82q54 27 112 41t97 14q51 0 78.5 -21t27.5 -77q0 -48 -61 -328l-160 -729q-28 -122 -28 -170q0 -36 16.5 -53t58.5 -17q70 0 140 19l-21 -86q-114 -53 -219 -53q-54 0 -89.5 26 t-35.5 88z" />
+<glyph unicode="m" horiz-adv-x="1677" d="M111 813l16 80q104 59 192 59q101 0 101 -116q0 -26 -4 -66q72 86 168.5 136t199.5 50q180 0 183 -178q70 83 165.5 130.5t198.5 47.5q85 0 133.5 -41.5t48.5 -126.5q0 -77 -24 -176l-64 -266q-26 -113 -26 -174q0 -36 17 -53t57 -17q71 0 137 19l-19 -86 q-111 -53 -219 -53q-123 0 -123 112q0 53 27 176l76 330q16 74 16 115q0 61 -28.5 84.5t-86.5 23.5q-136 0 -295 -139q-2 -16 -10.5 -52.5t-9.5 -41.5l-139 -590h-133l141 600q14 65 14 115q0 61 -27 84.5t-85 23.5q-132 0 -301 -141q-10 -69 -33 -176l-119 -506h-131 l113 512q38 171 38 229q0 43 -21.5 61.5t-66.5 18.5q-37 0 -77 -8z" />
+<glyph unicode="n" horiz-adv-x="1146" d="M111 813l16 80q109 59 192 59q48 0 74.5 -26t26.5 -92q0 -46 -4 -64q71 85 172 135.5t205 50.5q89 0 140.5 -41t51.5 -127q0 -79 -24 -178l-64 -264q-31 -135 -31 -174q0 -36 17.5 -53t58.5 -17q72 0 139 19l-20 -86q-111 -53 -219 -53q-121 0 -121 112q0 67 24 176 l76 328q17 66 17 117q0 61 -31 84.5t-90 23.5q-143 0 -305 -139q-11 -69 -33 -164l-123 -520h-131l113 508q38 171 38 231q0 45 -20.5 63.5t-65.5 18.5q-39 0 -79 -8z" />
+<glyph unicode="o" horiz-adv-x="1054" d="M94 358q0 114 34.5 231t104.5 204q133 168 371 168q179 0 273 -94.5t94 -262.5q0 -133 -37 -260t-117 -219q-61 -73 -155 -113.5t-189 -40.5q-179 0 -279 97.5t-100 289.5zM238 371q0 -279 254 -279q71 0 129 30.5t96 79.5t64 115t37 134t11 139q0 252 -243 252 q-163 0 -248 -119q-50 -67 -75 -161t-25 -191z" />
+<glyph unicode="p" horiz-adv-x="1136" d="M6 -535l234 1057q34 157 34 217q0 45 -20.5 63.5t-65.5 18.5q-39 0 -79 -8l16 80q109 59 192 59q101 0 101 -116q0 -42 -4 -58q66 71 167 124.5t201 53.5q136 0 200.5 -77.5t64.5 -216.5q0 -135 -38.5 -267.5t-121.5 -234.5q-148 -180 -420 -180q-112 0 -211 24 l-117 -539h-133zM289 135q68 -37 209 -37q174 0 290 152q52 66 80.5 167.5t28.5 194.5q0 104 -40.5 158.5t-141.5 54.5q-76 0 -159 -39t-150 -98q-10 -75 -33 -180z" />
+<glyph unicode="q" horiz-adv-x="1150" d="M90 303q0 142 58.5 286.5t162.5 235.5q157 138 396 138q62 0 153 -18t164 -58q-40 -151 -86 -361l-233 -1061h-136l150 666q-68 -76 -154 -116t-176 -40q-154 0 -226.5 88.5t-72.5 239.5zM238 330q0 -115 46.5 -170.5t151.5 -55.5q81 0 162 43t143 105l121 555 q-64 37 -207 37q-148 0 -252 -101q-70 -69 -117.5 -187.5t-47.5 -225.5z" />
+<glyph unicode="r" horiz-adv-x="821" d="M100 813l17 80q109 59 192 59q101 0 101 -114q0 -48 -4 -68q50 71 128 128.5t164 57.5q113 0 113 -84q0 -64 -33 -159h-76q-4 49 -24 69.5t-62 20.5q-97 0 -213 -129q-20 -132 -45 -240l-102 -434h-131l108 483q33 161 33 252q0 45 -20.5 65.5t-65.5 20.5q-40 0 -80 -8z " />
+<glyph unicode="s" horiz-adv-x="909" d="M84 137q3 75 18 162h80q2 -98 45 -152q48 -57 181 -57q101 0 160 35.5t59 97.5q0 43 -23.5 77t-79.5 65l-172 98q-151 85 -151 219q0 73 30.5 128t84.5 87t119.5 48t142.5 16q130 0 200 -37q53 -26 53 -93q0 -65 -22 -159h-78q-6 63 -15.5 93.5t-29.5 45.5 q-52 37 -147 37q-87 0 -145 -33t-58 -104q0 -41 29 -75.5t96 -72.5l157 -88q148 -80 148 -213q0 -63 -21 -113.5t-56 -83t-85 -54.5t-105 -31t-118 -9q-133 0 -231 54q-38 20 -52 47t-14 65z" />
+<glyph unicode="t" horiz-adv-x="671" d="M111 807l16 80q82 18 119 33q41 17 65 61q18 32 42.5 92t29.5 70q19 43 63 43q46 0 46 -37q0 -21 -48 -234q152 0 250 -4l-16 -98q-132 -6 -258 -6l-74 -377q-31 -151 -31 -223q0 -107 103 -107q73 0 166 35l28 -92q-128 -68 -258 -68q-85 0 -135.5 44.5t-50.5 136.5 q0 55 12 116q11 63 28 147t42 201.5t39 186.5h-178z" />
+<glyph unicode="u" horiz-adv-x="1191" d="M131 813l16 80q103 57 203 57q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-78 -326q-14 -68 -14 -117q0 -61 31 -85.5t90 -24.5q71 0 151.5 38.5t155.5 104.5q7 55 33 174l116 506h135l-112 -506q-39 -180 -39 -246q0 -41 19.5 -60.5t62.5 -19.5q15 0 64.5 7.5 t64.5 11.5l-19 -84q-110 -55 -213 -55q-48 0 -84 29t-36 87q0 41 4 64q-73 -87 -169.5 -136t-199.5 -49q-88 0 -145.5 48t-57.5 133q0 65 25 168l65 274q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8z" />
+<glyph unicode="v" horiz-adv-x="1116" d="M106 813l15 80q53 29 110.5 44t94.5 15q50 0 76 -22t26 -78q0 -52 -25 -190l-63 -334q-14 -72 -14 -117q0 -56 22 -82.5t72 -26.5q94 0 182 62t147 154.5t94.5 197.5t35.5 193q0 63 -24 88.5t-85 25.5q-48 0 -82 -6l17 82q94 53 178 53q74 0 102.5 -48.5t28.5 -137.5 q0 -130 -64.5 -293.5t-161.5 -279.5q-91 -108 -207.5 -164t-207.5 -56q-87 0 -138 44.5t-51 129.5q0 62 19 170l49 277q20 105 20 154q0 43 -17.5 58t-61.5 15q-47 0 -87 -8z" />
+<glyph unicode="w" horiz-adv-x="1622" d="M106 813l15 80q110 59 205 59q50 0 76 -22t26 -78q0 -52 -25 -190l-61 -328q-16 -78 -16 -123q0 -59 17 -84t71 -25q58 0 121 46t114 116q60 83 99 166l81 467h134l-84 -502q-21 -118 -21 -184q0 -56 22 -82.5t72 -26.5q125 0 256 152q77 89 126.5 221t49.5 234 q0 64 -23.5 89t-84.5 25q-50 0 -80 -6l14 82q94 53 179 53q76 0 104.5 -48.5t28.5 -137.5q0 -131 -63.5 -293.5t-160.5 -277.5q-94 -110 -202 -166t-195 -56q-172 0 -172 181q0 55 8 102q-76 -135 -181.5 -209t-188.5 -74q-88 0 -136.5 45.5t-48.5 131.5q0 60 19 165l51 279 q22 121 22 154q0 43 -18 58t-63 15q-47 0 -87 -8z" />
+<glyph unicode="x" horiz-adv-x="1097" d="M4 70q0 77 14 131h80q3 -82 64 -82q63 0 117 65q65 79 215 295q-19 53 -95 250q-23 61 -44 77.5t-60 16.5q-19 0 -54.5 -8.5t-54.5 -17.5l15 80q105 73 182 73q52 0 79 -24.5t52 -91.5q16 -41 28.5 -80.5t27 -86t24.5 -77.5q129 193 194 260q98 98 197 98 q56 0 84.5 -22.5t28.5 -61.5q0 -58 -13 -131h-81q-5 66 -60 66q-53 0 -117 -66q-50 -53 -196 -262q99 -252 123 -303q19 -42 42.5 -56t61.5 -14q77 0 137 35l-18 -88q-82 -65 -195 -65q-112 0 -155 116q-55 143 -92 269q-144 -220 -213 -295q-88 -97 -203 -97 q-58 0 -86.5 28.5t-28.5 68.5z" />
+<glyph unicode="y" horiz-adv-x="1191" d="M90 -438q0 68 27 174h84v-47q0 -69 32 -97q47 -43 146 -43q76 0 135.5 30.5t91.5 86.5q35 64 60.5 146.5t49.5 191.5t38 156q-167 -185 -375 -185q-89 0 -139 43t-50 129q0 73 23 179l61 272q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8l16 80q103 57 203 57 q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-72 -326q-14 -68 -14 -117q0 -63 24.5 -86.5t83.5 -23.5q72 0 157 44.5t165 116.5l139 662h137q-38 -178 -100 -499.5t-92 -467.5q-33 -163 -71.5 -256t-92.5 -147q-123 -123 -336 -123q-147 0 -217 47q-45 30 -45 76z" />
+<glyph unicode="z" horiz-adv-x="1028" d="M18 0l7 51l716 785q-283 0 -352 -7q-33 -3 -50.5 -10.5t-31.5 -27.5q-22 -27 -49 -134h-86q1 8 4 74t8 100q9 52 29 76.5t76 24.5h672l-9 -58l-712 -774q74 -4 194 -4q49 0 78.5 0.5t65 2t56 4.5t45 8.5t37.5 13t29.5 19.5t26 26t21 34t19.5 43t17 54h86 q-14 -131 -34 -217q-10 -41 -37 -62.5t-88 -21.5h-738z" />
+<glyph unicode="{" horiz-adv-x="618" d="M33 582l14 80q118 10 164.5 74t81.5 243l45 233q14 75 31.5 127t50 101t79 78t118.5 46t169 17l-18 -90q-70 0 -116.5 -12t-82.5 -45t-58.5 -88.5t-39.5 -143.5l-57 -297q-30 -150 -76 -208t-160 -81q74 -18 104.5 -56.5t30.5 -108.5q0 -59 -14 -136l-63 -323 q-13 -73 -13 -115q0 -88 46 -125t153 -37l-16 -88q-168 0 -242 57t-74 179q0 63 12 117l62 309q16 82 16 133q0 75 -34.5 114t-112.5 46z" />
+<glyph unicode="|" horiz-adv-x="530" d="M29 -375l381 1950h118l-381 -1950h-118z" />
+<glyph unicode="}" horiz-adv-x="618" d="M-135 -373l16 90q139 0 200.5 58.5t96.5 230.5l60 297q30 150 75 208t156 81q-72 19 -103.5 58t-31.5 108q0 47 16 135l64 324q12 67 12 114q0 87 -46 123.5t-151 36.5l17 90q165 0 239 -57t74 -176q0 -52 -12 -117l-60 -311q-18 -92 -18 -136q0 -74 34.5 -112t114.5 -45 l-16 -80q-119 -10 -166.5 -75t-79.5 -241l-45 -235q-14 -75 -31.5 -127t-49.5 -101t-78.5 -78t-118 -46t-168.5 -17z" />
+<glyph unicode="~" horiz-adv-x="1179" d="M135 551q78 106 149.5 151.5t151.5 45.5q47 0 92.5 -17t135.5 -76q100 -65 157 -65q53 0 103 32.5t112 114.5l78 -80q-147 -200 -297 -200q-88 0 -203 73q-77 51 -117.5 68.5t-74.5 17.5q-55 0 -102 -32t-109 -111z" />
+<glyph unicode="&#xa1;" horiz-adv-x="583" d="M18 -328q0 5 1 14t3 20t3 15q14 70 229 867h76q-89 -709 -117 -881q-11 -59 -36 -87t-77 -28q-40 0 -61 22.5t-21 57.5zM219 909q0 58 35.5 96.5t91.5 38.5q53 0 86 -31.5t33 -86.5q0 -53 -35.5 -92t-91.5 -39q-52 0 -85.5 31t-33.5 83z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1030" d="M154 346q0 136 47.5 255.5t136.5 203.5q121 112 295 129l41 207h96l-39 -203q71 -3 141 -20q82 -22 82 -101q0 -17 -4 -45.5t-11.5 -61.5t-16.5 -57h-84q0 95 -26 130.5t-103 39.5l-140 -714q127 7 277 108l43 -82q-69 -57 -158.5 -93.5t-183.5 -45.5l-45 -232h-94 l43 230q-138 10 -217.5 105t-79.5 247zM303 362q0 -212 172 -247l137 706q-76 -9 -136 -51t-97 -106t-56.5 -141.5t-19.5 -160.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1185" d="M0 0l20 111q324 58 359 442h-201l27 111h180q0 17 -2 94t-2 104q0 239 127.5 374.5t378.5 135.5q114 0 190 -26q43 -15 60.5 -42t17.5 -73q0 -70 -31 -180h-82q0 126 -39 165t-159 39q-153 0 -229.5 -92t-79.5 -264q0 -31 -1.5 -122.5t-1.5 -112.5h326l-24 -111h-308 q-5 -62 -18.5 -115t-40.5 -108.5t-75.5 -105t-115.5 -89.5q184 4 398 4q111 0 167.5 7t80.5 28q39 34 79 131h80q-26 -162 -53 -233q-25 -72 -133 -72h-895z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1150" d="M119 240l137 135q-92 114 -92 280q0 163 90 275l-135 137l84 90l137 -139q54 43 126 66.5t144 23.5q154 0 269 -90l131 139l88 -88l-131 -139q88 -118 88 -275q0 -153 -88 -274l135 -141l-90 -88l-133 139q-117 -86 -273 -86q-162 0 -268 82l-135 -135zM283 659 q0 -150 91.5 -248t235.5 -98q139 0 230.5 97t91.5 245q0 142 -92.5 240t-229.5 98q-142 0 -234.5 -94.5t-92.5 -239.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1282" d="M176 1249l19 92q113 -2 223 -2q144 0 250 2l-17 -92q-77 -3 -113.5 -10t-44.5 -16t-8 -29q0 -49 47 -174q15 -41 65.5 -168t74.5 -199q135 188 299 394q96 123 96 159q0 24 -27.5 32t-119.5 11l16 92q88 -2 248 -2q112 0 198 2l-16 -92q-63 -5 -98 -26q-24 -14 -130 -145 q-7 -9 -11.5 -14t-11.5 -14t-13 -16l-244 -297h264l-18 -90h-318l-79 -100l-9 -55h375l-16 -91h-377l-33 -174q-10 -48 -10 -73q1 -21 9 -31t49 -19t126 -12l-16 -94q-208 4 -264 4q-77 0 -265 -4l17 94q104 9 133.5 16.5t42.5 26.5q20 23 31 86l35 180h-349l19 91h348 l10 53l-41 102h-286l16 90h235l-135 357q-6 15 -15 39.5t-12.5 33.5t-9.5 22t-11.5 19.5t-12.5 12.5q-23 21 -115 28z" />
+<glyph unicode="&#xa6;" horiz-adv-x="530" d="M55 -244l135 690h117l-133 -690h-119zM248 752l135 692h119l-135 -692h-119z" />
+<glyph unicode="&#xa7;" horiz-adv-x="952" d="M16 -256q0 46 23 168h84q0 -70 12.5 -106t38.5 -60q18 -17 57.5 -29t73.5 -12q93 0 164.5 51t71.5 144q0 110 -144 280l-147 174q-123 147 -123 267q0 122 76.5 199.5t214.5 129.5q-74 104 -74 211q0 140 106 227t273 87q47 0 105.5 -10t89.5 -25q43 -22 43 -80 q0 -20 -10.5 -75.5t-22.5 -92.5h-82q0 116 -41 149q-13 10 -45 17.5t-62 7.5q-98 0 -157.5 -43.5t-59.5 -138.5q0 -109 119 -236l119 -129q106 -115 135 -176.5t29 -132.5q0 -200 -293 -334q96 -130 96 -235q0 -149 -108.5 -244.5t-288.5 -95.5q-75 0 -139 15.5t-91 37.5 q-43 36 -43 90zM266 651q0 -80 84 -182l92 -111q80 -93 97 -118q202 97 202 237q0 51 -22 100t-84 113l-98 105q-52 55 -76 90q-99 -44 -147 -99.5t-48 -134.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M49 1268q0 42 27.5 72t70.5 30q39 0 62.5 -25t23.5 -63q0 -45 -26.5 -76.5t-73.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5zM362 1268q0 42 27 72t68 30q40 0 64 -25t24 -63q0 -45 -27 -76.5t-72 -31.5q-37 0 -60.5 26.5t-23.5 67.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M109 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t228.5 -151.5t152 -227t56.5 -278q0 -153 -55.5 -289t-150.5 -233t-227 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM203 694q0 -133 49.5 -252.5t134 -206t202.5 -137.5t251 -51q172 0 313 84.5 t221 231.5t80 325q0 181 -78.5 328.5t-220.5 233t-319 85.5q-133 0 -251 -50t-201.5 -136t-132 -204.5t-48.5 -250.5zM410 606q0 228 138 377.5t367 149.5q146 0 213 -29q30 -12 41 -28.5t11 -45.5q0 -19 -8 -67t-17 -78h-76q-3 91 -22 110q-35 41 -160 41 q-110 0 -190.5 -58t-119 -151t-38.5 -209q0 -133 73 -203.5t185 -70.5q128 0 170 45q40 45 63 105h82q-17 -100 -35 -146q-19 -45 -94 -69q-91 -31 -219 -31q-168 0 -266 97t-98 261z" />
+<glyph unicode="&#xaa;" horiz-adv-x="706" d="M86 758q0 85 44 181.5t114 158.5q105 88 248 88q65 0 129 -31l22 45h84l-82 -317q-37 -143 -37 -195q0 -45 58 -45q30 0 84 14l-11 -67q-86 -35 -147 -35q-54 0 -72 26t-18 87q-106 -115 -223 -115q-193 0 -193 205zM199 768q0 -53 27.5 -87t76.5 -34q54 0 108.5 28 t96.5 70q6 34 31 127l55 195q-64 33 -125 33q-80 0 -141 -51q-52 -42 -90.5 -122t-38.5 -159z" />
+<glyph unicode="&#xab;" horiz-adv-x="903" d="M66 453q0 42 53 86l391 309l51 -62l-342 -331l209 -340l-70 -52l-272 332q-20 24 -20 58zM412 453q0 42 53 86l393 309l51 -62l-342 -331l209 -340l-69 -52l-273 332q-22 26 -22 58z" />
+<glyph unicode="&#xac;" horiz-adv-x="1185" d="M137 580l29 129h907l-125 -551h-121l97 422h-787z" />
+<glyph unicode="&#xad;" horiz-adv-x="540" d="M55 434l25 131h418l-27 -131h-416z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M109 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t228.5 -151.5t152 -227t56.5 -278q0 -153 -55.5 -289t-150.5 -233t-227 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM203 694q0 -133 49.5 -252.5t134 -206t202.5 -137.5t251 -51q172 0 313 84.5 t221 231.5t80 325q0 181 -78.5 328.5t-220.5 233t-319 85.5q-133 0 -251 -50t-201.5 -136t-132 -204.5t-48.5 -250.5zM412 303l14 78q79 3 98 16q10 6 15 19.5t12 54.5l94 500q6 41 6 53q0 7 -3.5 12.5t-10 9t-14 5.5t-19 3t-20.5 1.5t-23 1t-22 0.5l12 71h252 q159 0 221 -18q154 -42 154 -180q0 -109 -65 -173t-175 -89q78 -161 139 -224q32 -35 58 -49t73 -14l-12 -76q-10 -2 -57 -2q-97 0 -160 59q-41 38 -76 102t-90 187q-82 0 -102 2l-35 -176q-6 -31 -6 -57q0 -8 3.5 -14.5t11 -10.5t14.5 -6.5t20 -3.5t20.5 -1.5t23 -1.5 t21.5 -1l-16 -78q-114 4 -195 4q-43 0 -161 -4zM725 741q20 -2 72 -2q47 0 86.5 7t78 24.5t60.5 52t22 84.5q0 86 -73 109q-49 18 -133 18h-56z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M33 1145l22 123h506l-22 -123h-506z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M217 1157q0 125 81.5 202t197.5 77q111 0 182.5 -67t71.5 -191q0 -129 -78 -205t-197 -76q-111 0 -184.5 69.5t-73.5 190.5zM309 1165q0 -80 44 -131t126 -51q84 0 133.5 51.5t49.5 128.5q0 86 -44 136.5t-129 50.5q-78 0 -129 -52t-51 -133z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1185" d="M43 27l31 125h909l-31 -125h-909zM186 721l27 121h395l94 413h123l-94 -413h393l-28 -121h-389l-99 -414h-121l93 414h-394z" />
+<glyph unicode="&#xb2;" horiz-adv-x="759" d="M125 860l12 76q28 20 77.5 52.5t88.5 58t89.5 62t89 67.5t78 70.5t65 75t41.5 77t16 80.5q0 57 -34.5 96t-108.5 39q-93 0 -133 -35q-28 -24 -46 -98h-67q0 5 1 14q1 32 2 46.5t4.5 36t8.5 32t14.5 24.5t23.5 23.5t34 19.5q68 35 186 35q122 0 182 -57.5t60 -153.5 q0 -48 -16.5 -96.5t-42.5 -90t-66 -84t-80 -76t-92.5 -70t-95 -63t-94.5 -56.5q59 2 213 2q30 1 49 1.5t38 3.5t29.5 5t22 8.5t17 12t14 18.5t14 23.5t14.5 31.5h64q-20 -94 -43 -160q-20 -51 -95 -51h-534z" />
+<glyph unicode="&#xb3;" horiz-adv-x="759" d="M188 942q0 56 25 133h68q3 -67 24 -92q27 -39 131 -39q94 0 158.5 39.5t64.5 124.5q0 55 -44.5 92t-133.5 43q-58 4 -92 4l14 86q64 0 97 4q80 12 135 54t55 114q0 49 -29.5 81t-93.5 32q-86 0 -131 -33q-31 -27 -49 -96h-68q0 82 16 123t68 67q72 35 179 35 q116 0 175.5 -53.5t59.5 -128.5q0 -184 -231 -232q94 -9 145 -57t51 -119q0 -72 -28.5 -127t-79.5 -87t-114 -48t-138 -16q-111 0 -184 31q-50 24 -50 65z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M106 1124l218 277q34 43 55.5 59.5t44.5 16.5q27 0 50.5 -21t23.5 -53q0 -26 -18 -49t-58 -56l-264 -223z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1224" d="M51 -436q0 13 10 53l228 981q24 105 24 150q0 43 -18 58t-64 15t-86 -8l17 80q53 29 109 43t94 14q52 0 80 -21.5t28 -76.5q0 -30 -35 -190l-78 -326q-14 -57 -14 -119q0 -59 31 -83.5t88 -24.5q140 0 307 143q7 39 39 174l115 506h133l-113 -506q-39 -178 -39 -246 q0 -41 19.5 -60.5t62.5 -19.5q14 0 64 7.5t67 11.5l-22 -84q-107 -55 -211 -55q-47 0 -82.5 29t-36.5 89q0 39 2 62q-69 -85 -159 -130.5t-189 -45.5q-97 0 -133 49q-77 -427 -80 -441q-9 -45 -29.5 -65.5t-60.5 -20.5q-35 0 -51.5 16.5t-16.5 41.5z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1114" d="M166 805q0 181 88.5 313.5t239.5 199t346 66.5h368l-16 -92q-88 -4 -119 -10t-45 -18q-16 -14 -25 -43t-22 -101q-30 -155 -82 -440.5t-78 -413.5q-65 -308 -80 -356q-38 -112 -93 -188t-155 -137t-251 -99l-25 90q181 59 268.5 143.5t124.5 219.5q34 121 86 387l9 43 q-23 -2 -70 -2q-204 0 -336.5 119t-132.5 319z" />
+<glyph unicode="&#xb7;" horiz-adv-x="432" d="M90 496q0 52 34.5 91.5t90.5 39.5q54 0 87.5 -32.5t33.5 -84.5q0 -58 -36 -97.5t-93 -39.5q-52 0 -84.5 33.5t-32.5 89.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M111 -473q118 24 178.5 59t60.5 95q0 32 -19 55t-61 47q-30 18 -30 53q0 48 71 174h74q-45 -75 -45 -104q0 -30 27 -43q67 -34 91.5 -68t24.5 -88q0 -71 -51 -127t-131 -88.5t-180 -44.5z" />
+<glyph unicode="&#xb9;" horiz-adv-x="759" d="M281 860l14 72q108 8 129 22q16 13 25 68l69 348q27 147 27 172q0 35 -29 35q-34 0 -104 -16l-17 65q106 49 187 72q54 18 69 18q19 0 31 -10.5t12 -30.5q0 -11 -8 -57q-4 -26 -14 -73t-21.5 -101.5t-15.5 -73.5l-64 -332q-8 -58 -8 -63q0 -9 4.5 -16t14.5 -11.5t19 -7 t25.5 -4t26.5 -2.5t29 -1q4 0 6 -0.5t5.5 -0.5h6.5l-12 -72q-114 4 -215 4q-78 0 -192 -4z" />
+<glyph unicode="&#xba;" horiz-adv-x="817" d="M170 807q0 85 32 169t97 140q96 80 233 80q115 0 184.5 -59.5t69.5 -175.5q0 -181 -100 -295q-101 -113 -250 -113q-114 0 -190 67.5t-76 186.5zM276 819q0 -77 46 -124.5t127 -47.5q72 0 126 46.5t78.5 114t24.5 142.5q0 77 -43.5 115.5t-120.5 38.5q-91 0 -145 -51 q-44 -42 -68.5 -105.5t-24.5 -128.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="903" d="M-4 127l342 330l-209 340l72 51l270 -332q23 -32 23 -57q0 -42 -54 -84l-393 -312zM342 127l342 330l-209 340l74 51l270 -332q21 -25 21 -57q0 -42 -54 -84l-391 -312z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1683" d="M199 514l12 74q108 5 127 20q18 15 27 68l69 350q27 143 27 170q0 35 -27 35q-34 0 -108 -17l-13 66q62 32 183 74q46 16 73 16q41 0 41 -41q0 -15 -8 -55q-3 -16 -14 -70.5t-21 -103.5t-14 -74l-64 -332q-10 -62 -10 -63q0 -17 8.5 -24.5t28.5 -10.5q26 -5 100 -8 l-14 -74q-165 6 -215 6q-23 0 -188 -6zM436 27l764 1353l76 -41l-760 -1355zM840 225l10 66l465 506q32 34 51 46.5t47 12.5q21 0 34 -12.5t13 -38.5q0 -28 -90 -481h133l-18 -99h-133l-13 -63q-8 -33 -8 -51q0 -29 29 -33q32 -7 90 -10l-12 -68q-106 4 -203 4 q-58 0 -168 -4l12 68q92 5 115 24q3 2 5 4.5t4 6t3.5 6t3 7.5t2.5 7.5t2.5 8.5t2 9t2 11t2.5 12l14 61h-395zM983 319h268q62 296 84 388z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1683" d="M178 514l12 74q108 5 127 20q18 15 27 68l70 350q26 137 26 170q0 35 -26 35q-35 0 -109 -17l-12 66q64 33 182 74q46 16 74 16q41 0 41 -41q0 -15 -8 -55q-2 -10 -23 -112t-27 -136l-63 -332q-10 -62 -10 -63q0 -17 8.5 -24.5t28.5 -10.5q26 -5 100 -8l-14 -74 q-165 6 -215 6q-24 0 -189 -6zM414 27l764 1353l75 -41l-759 -1355zM889 0l12 76q28 20 77.5 52.5t88.5 58t89.5 62t89 67.5t78 70t65 75t41.5 77t16 80q0 58 -34.5 97t-108.5 39q-94 0 -134 -35q-27 -23 -45 -98h-67q0 5 1 14q1 32 2 46.5t4.5 36t8.5 32t14.5 24.5 t23.5 23.5t34 19.5q68 35 186 35q62 0 109 -16t76 -44.5t43 -66.5t14 -84q0 -48 -16.5 -96.5t-42.5 -90t-66.5 -84t-80.5 -76.5t-92.5 -70.5t-95 -63t-94.5 -56.5q59 2 213 2q40 1 63 2t44.5 6.5t31.5 10.5t22 19t18.5 27t19.5 40h64q-20 -94 -43 -160q-20 -51 -95 -51h-534 z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1683" d="M156 596q0 63 20 133h70q4 -83 34 -107t123 -24q58 0 105.5 14.5t82 53t34.5 96.5q0 55 -44.5 94t-131.5 43q-29 2 -97 2l19 88q55 0 102.5 8t90.5 26t68 53t25 83q0 50 -30 81.5t-95 31.5q-84 0 -129 -33q-30 -27 -51 -94h-67q0 84 15 123t69 65q72 35 178 35 q118 0 176.5 -52.5t58.5 -127.5q0 -184 -231 -234q94 -7 146.5 -55.5t52.5 -118.5q0 -73 -29 -128t-80 -87.5t-114.5 -48.5t-139.5 -16q-116 0 -182 32q-49 21 -49 64zM489 27l764 1353l76 -41l-760 -1355zM872 225l11 66l465 506q32 34 51 46.5t47 12.5q21 0 34 -12.5 t13 -38.5q0 -28 -90 -481h133l-18 -99h-134l-12 -63q-8 -33 -8 -51q0 -29 29 -33q32 -7 90 -10l-13 -68q-106 4 -202 4q-58 0 -168 -4l12 68q92 5 115 24q4 3 7 8t5 8.5t4 11.5l3 12t3.5 15.5t3.5 16.5l15 61h-396zM1016 319h268q62 296 84 388z" />
+<glyph unicode="&#xbf;" horiz-adv-x="796" d="M-37 -127q0 49 9.5 92.5t26 80t42.5 70t55 61t67 54t76 48.5t85 45q22 11 38.5 23t28.5 24t21 28t15 30t12 35.5t9.5 39t10 45.5t12.5 51h86q-9 -147 -20 -209q-8 -53 -43 -86.5t-101 -66.5q-47 -24 -82 -46t-71 -53t-59 -64.5t-37.5 -78.5t-14.5 -96q0 -32 9.5 -62.5 t29 -58.5t56 -45.5t85.5 -18.5q125 0 170 33q40 26 68 152h88q0 -89 -10 -148q-9 -46 -38.5 -73.5t-84.5 -45.5q-116 -34 -219 -34q-152 1 -236 76t-84 198zM418 909q0 58 35 96.5t94 38.5q50 0 82.5 -31.5t32.5 -84.5q0 -55 -35 -94t-92 -39q-51 0 -84 31.5t-33 82.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1433" d="M-76 -2l21 94q98 5 137 33q21 15 41.5 43.5t71.5 114.5l620 1063q44 73 107 73q67 0 77 -71l175 -1092q9 -63 18.5 -91.5t26.5 -45.5q20 -23 139 -27l-21 -94q-136 4 -268 4q-112 0 -260 -4l20 94q82 0 132 12q36 9 49.5 26t13.5 50q0 55 -8 99l-35 223h-520l-127 -213 q-60 -100 -60 -137q0 -25 17 -37q28 -17 174 -23l-19 -94q-126 4 -290 4q-100 0 -232 -4zM518 614h449q-25 157 -95 627q-105 -196 -354 -627zM672 1786q0 33 23.5 55.5t54.5 22.5q21 0 42 -17.5t58 -62.5l207 -260l-51 -51l-263 208q-71 59 -71 105z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1433" d="M-76 -2l21 94q98 5 137 33q21 15 41.5 43.5t71.5 114.5l620 1063q44 73 107 73q67 0 77 -71l175 -1092q9 -63 18.5 -91.5t26.5 -45.5q20 -23 139 -27l-21 -94q-136 4 -268 4q-112 0 -260 -4l20 94q82 0 132 12q36 9 49.5 26t13.5 50q0 55 -8 99l-35 223h-520l-127 -213 q-60 -100 -60 -137q0 -25 17 -37q28 -17 174 -23l-19 -94q-126 4 -290 4q-100 0 -232 -4zM518 614h449q-25 157 -95 627q-105 -196 -354 -627zM743 1530l258 229q38 35 62 48.5t49 13.5q27 0 45.5 -23.5t18.5 -54.5q0 -47 -93 -103l-297 -170z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1433" d="M-76 -2l21 94q98 5 137 33q21 15 41.5 43.5t71.5 114.5l620 1063q44 73 107 73q67 0 77 -71l175 -1092q9 -63 18.5 -91.5t26.5 -45.5q20 -23 139 -27l-21 -94q-136 4 -268 4q-112 0 -260 -4l20 94q82 0 132 12q36 9 49.5 26t13.5 50q0 55 -8 99l-35 223h-520l-127 -213 q-60 -100 -60 -137q0 -25 17 -37q28 -17 174 -23l-19 -94q-126 4 -290 4q-100 0 -232 -4zM518 614h449q-25 157 -95 627q-105 -196 -354 -627zM602 1520l277 270q41 41 77 41q22 0 37 -9t29 -34l174 -277l-51 -47l-211 209l-287 -209z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1433" d="M-76 -2l21 94q98 5 137 33q21 15 41.5 43.5t71.5 114.5l620 1063q44 73 107 73q67 0 77 -71l175 -1092q9 -63 18.5 -91.5t26.5 -45.5q20 -23 139 -27l-21 -94q-136 4 -268 4q-112 0 -260 -4l20 94q82 0 132 12q36 9 49.5 26t13.5 50q0 55 -8 99l-35 223h-520l-127 -213 q-60 -100 -60 -137q0 -25 17 -37q28 -17 174 -23l-19 -94q-126 4 -290 4q-100 0 -232 -4zM518 614h449q-25 157 -95 627q-105 -196 -354 -627zM610 1526q36 93 88.5 152t116.5 59q39 0 111 -33l55 -27q52 -22 88 -22q31 0 56 26t55 82l69 -24q-81 -217 -188 -217 q-47 0 -127 37l-51 22q-57 25 -86 25q-35 0 -62.5 -25.5t-58.5 -83.5z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1433" d="M-76 -2l21 94q98 5 137 33q21 15 41.5 43.5t71.5 114.5l620 1063q44 73 107 73q67 0 77 -71l175 -1092q9 -63 18.5 -91.5t26.5 -45.5q20 -23 139 -27l-21 -94q-136 4 -268 4q-112 0 -260 -4l20 94q82 0 132 12q36 9 49.5 26t13.5 50q0 55 -8 99l-35 223h-520l-127 -213 q-60 -100 -60 -137q0 -25 17 -37q28 -17 174 -23l-19 -94q-126 4 -290 4q-100 0 -232 -4zM518 614h449q-25 157 -95 627q-105 -196 -354 -627zM666 1616q0 41 27 70.5t69 29.5q39 0 62.5 -24.5t23.5 -61.5q0 -45 -26.5 -77.5t-71.5 -32.5q-37 0 -60.5 27.5t-23.5 68.5z M1014 1616q0 41 27.5 70.5t68.5 29.5q42 0 65 -24t23 -62q0 -45 -26.5 -77.5t-71.5 -32.5q-38 0 -62 27t-24 69z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1433" d="M-76 -2l21 94q98 5 137 33q21 15 41.5 43.5t71.5 114.5l620 1063q44 73 107 73q67 0 77 -71l175 -1092q9 -63 18.5 -91.5t26.5 -45.5q20 -23 139 -27l-21 -94q-136 4 -268 4q-112 0 -260 -4l20 94q82 0 132 12q36 9 49.5 26t13.5 50q0 55 -8 99l-35 223h-520l-127 -213 q-60 -100 -60 -137q0 -25 17 -37q28 -17 174 -23l-19 -94q-126 4 -290 4q-100 0 -232 -4zM518 614h449q-25 157 -95 627q-105 -196 -354 -627zM748 1618q0 90 59 148.5t145 58.5q74 0 123 -46.5t49 -121.5q0 -88 -55.5 -147.5t-148.5 -59.5q-71 0 -121.5 47t-50.5 121z M827 1626q0 -46 28.5 -75t70.5 -29q54 0 86 34.5t32 98.5q0 45 -29 70.5t-71 25.5q-53 0 -85 -32.5t-32 -92.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2076" d="M-12 -2l18 92q66 5 100 12t54 23q26 19 52.5 44.5t46.5 48t50 58.5l729 863q66 78 66 112q0 15 -9.5 23t-35.5 12q-47 7 -139 10l16 88h1003q61 0 86 -20t25 -57q0 -88 -35 -246h-86q0 96 -8 129.5t-27 46.5q-25 18 -74.5 25.5t-177.5 7.5h-202l-99 -494h164 q62 0 95.5 2.5t54 9.5t35.5 21q17 16 29 44t30 85h86q-56 -223 -84 -428h-82v49q0 36 -6.5 56t-27.5 32.5t-53.5 16.5t-90.5 4h-170l-82 -420q-10 -70 -10 -74q0 -25 9 -37.5t32 -15.5q53 -6 196 -6q147 0 218.5 15t105.5 42q50 38 121 180h82q-15 -90 -38.5 -171 t-47.5 -124q-34 -57 -166 -57h-881l19 90q109 7 147 19q33 9 43 41q12 38 29 131l47 237h-481l-201 -235q-51 -60 -65.5 -85t-14.5 -55q0 -12 6 -20.5t19.5 -14t26 -9t34.5 -5.5t35 -2.5t37 -0.5q18 -1 26 -1l-16 -92q-196 4 -291 4q-76 0 -272 -4zM748 629h415l119 602 q1 4 1.5 7.5t1 5.5l1 4t0.5 3q0 11 -10 11q-2 0 -4 -1t-5 -3.5t-5 -4.5t-6 -7t-7 -9q-76 -96 -501 -608z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1353" d="M133 545q0 170 56 328.5t167 285.5q228 258 617 258q176 0 301 -47q78 -30 78 -117q0 -43 -31 -213h-88q0 132 -39 187q-52 65 -252 65q-144 0 -268 -56t-213 -167q-81 -102 -124.5 -235.5t-43.5 -268.5q0 -234 125.5 -352.5t335.5 -118.5q180 0 284 74q57 43 119 170h88 q-8 -54 -27.5 -114.5t-35.5 -92.5q-46 -84 -140 -115q-153 -45 -319 -45h-29q-24 -50 -24 -69q0 -33 26 -49q69 -38 94 -73t25 -91q0 -75 -52 -133.5t-133.5 -91.5t-183.5 -46l-10 84q118 26 181 63t63 97q0 34 -18.5 58t-63.5 53q-31 22 -31 57q0 47 56 147 q-228 28 -359 177.5t-131 390.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1212" d="M-4 0l20 92q141 3 172 31l6 6t5.5 8t4.5 9.5t4 12.5t3.5 13.5t4 17t4 19t4.5 23t5 24.5l172 883q15 77 15 98q0 37 -45 45q-39 8 -133 12l16 90h821q113 0 113 -75q0 -89 -35 -248h-84q0 42 -4 104q-5 54 -35 74q-26 17 -74.5 24t-171.5 7h-209l-94 -494h162 q89 0 124.5 6.5t57.5 26.5q31 31 60 129h86q-32 -125 -82 -428h-82q4 20 4 53q0 84 -57 96q-44 9 -136 9h-157l-90 -455q-1 -6 -3.5 -20.5t-2.5 -20.5q0 -45 43 -51q53 -6 208 -6q143 0 210.5 15t103.5 44q56 48 117 178h86q-15 -91 -39.5 -172.5t-49.5 -122.5 q-29 -57 -167 -57h-881zM506 1784q0 33 23.5 55.5t54.5 22.5q21 0 42 -17.5t58 -62.5l207 -260l-51 -52l-262 209q-72 60 -72 105z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1212" d="M-4 0l20 92q141 3 172 31l6 6t5.5 8t4.5 9.5t4 12.5t3.5 13.5t4 17t4 19t4.5 23t5 24.5l172 883q15 77 15 98q0 37 -45 45q-39 8 -133 12l16 90h821q113 0 113 -75q0 -89 -35 -248h-84q0 42 -4 104q-5 54 -35 74q-26 17 -74.5 24t-171.5 7h-209l-94 -494h162 q89 0 124.5 6.5t57.5 26.5q31 31 60 129h86q-32 -125 -82 -428h-82q4 20 4 53q0 84 -57 96q-44 9 -136 9h-157l-90 -455q-1 -6 -3.5 -20.5t-2.5 -20.5q0 -45 43 -51q53 -6 208 -6q143 0 210.5 15t103.5 44q56 48 117 178h86q-15 -91 -39.5 -172.5t-49.5 -122.5 q-29 -57 -167 -57h-881zM643 1530l258 229q38 35 62 48.5t49 13.5q27 0 45 -23t18 -55q0 -48 -92 -103l-297 -170z" />
+<glyph unicode="&#xca;" horiz-adv-x="1212" d="M-4 0l20 92q141 3 172 31l6 6t5.5 8t4.5 9.5t4 12.5t3.5 13.5t4 17t4 19t4.5 23t5 24.5l172 883q15 77 15 98q0 37 -45 45q-39 8 -133 12l16 90h821q113 0 113 -75q0 -89 -35 -248h-84q0 42 -4 104q-5 54 -35 74q-26 17 -74.5 24t-171.5 7h-209l-94 -494h162 q89 0 124.5 6.5t57.5 26.5q31 31 60 129h86q-32 -125 -82 -428h-82q4 20 4 53q0 84 -57 96q-44 9 -136 9h-157l-90 -455q-1 -6 -3.5 -20.5t-2.5 -20.5q0 -45 43 -51q53 -6 208 -6q143 0 210.5 15t103.5 44q56 48 117 178h86q-15 -91 -39.5 -172.5t-49.5 -122.5 q-29 -57 -167 -57h-881zM449 1520l276 270q41 41 78 41q21 0 36 -9t29 -34l174 -277l-51 -47l-211 209l-286 -209z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1212" d="M-4 0l20 92q141 3 172 31l6 6t5.5 8t4.5 9.5t4 12.5t3.5 13.5t4 17t4 19t4.5 23t5 24.5l172 883q15 77 15 98q0 37 -45 45q-39 8 -133 12l16 90h821q113 0 113 -75q0 -89 -35 -248h-84q0 42 -4 104q-5 54 -35 74q-26 17 -74.5 24t-171.5 7h-209l-94 -494h162 q89 0 124.5 6.5t57.5 26.5q31 31 60 129h86q-32 -125 -82 -428h-82q4 20 4 53q0 84 -57 96q-44 9 -136 9h-157l-90 -455q-1 -6 -3.5 -20.5t-2.5 -20.5q0 -45 43 -51q53 -6 208 -6q143 0 210.5 15t103.5 44q56 48 117 178h86q-15 -91 -39.5 -172.5t-49.5 -122.5 q-29 -57 -167 -57h-881zM492 1618q0 41 27 70.5t69 29.5q39 0 62.5 -24.5t23.5 -61.5q0 -45 -27 -77.5t-72 -32.5q-36 0 -59.5 27t-23.5 69zM840 1618q0 41 27.5 70.5t68.5 29.5q42 0 65 -24t23 -62q0 -45 -26.5 -77.5t-71.5 -32.5q-38 0 -62 27t-24 69z" />
+<glyph unicode="&#xcc;" horiz-adv-x="704" d="M-4 -2l20 92q147 10 174 35q11 9 18.5 33.5t20.5 95.5l172 885q15 88 15 98q0 21 -11 30.5t-36 14.5q-46 8 -131 14l16 90q246 -6 258 -6q5 0 281 6l-19 -90q-160 -12 -184 -36q-19 -22 -37 -119l-172 -887q-16 -79 -16 -104q0 -36 51 -46q50 -8 139 -14l-20 -92 q-172 4 -283 4q-76 0 -256 -4zM274 1784q0 33 23.5 55.5t54.5 22.5q21 0 42.5 -17.5t58.5 -62.5l206 -260l-51 -52l-262 209q-72 60 -72 105z" />
+<glyph unicode="&#xcd;" horiz-adv-x="704" d="M-4 -2l20 92q147 10 174 35q11 9 18.5 33.5t20.5 95.5l172 885q15 88 15 98q0 21 -11 30.5t-36 14.5q-46 8 -131 14l16 90q246 -6 258 -6q5 0 281 6l-19 -90q-160 -12 -184 -36q-19 -22 -37 -119l-172 -887q-16 -79 -16 -104q0 -36 51 -46q50 -8 139 -14l-20 -92 q-172 4 -283 4q-76 0 -256 -4zM406 1530l258 229q38 35 61.5 48.5t48.5 13.5q27 0 45.5 -23.5t18.5 -54.5q0 -47 -93 -103l-296 -170z" />
+<glyph unicode="&#xce;" horiz-adv-x="704" d="M-4 -2l20 92q147 10 174 35q11 9 18.5 33.5t20.5 95.5l172 885q15 88 15 98q0 21 -11 30.5t-36 14.5q-46 8 -131 14l16 90q246 -6 258 -6q5 0 281 6l-19 -90q-160 -12 -184 -36q-19 -22 -37 -119l-172 -887q-16 -79 -16 -104q0 -36 51 -46q50 -8 139 -14l-20 -92 q-172 4 -283 4q-76 0 -256 -4zM252 1520l276 270q41 41 78 41q22 0 37 -9t29 -34l174 -277l-51 -47l-211 209l-287 -209z" />
+<glyph unicode="&#xcf;" horiz-adv-x="704" d="M-4 -2l20 92q147 10 174 35q11 9 18.5 33.5t20.5 95.5l172 885q15 88 15 98q0 21 -11 30.5t-36 14.5q-46 8 -131 14l16 90q246 -6 258 -6q5 0 281 6l-19 -90q-160 -12 -184 -36q-19 -22 -37 -119l-172 -887q-16 -79 -16 -104q0 -36 51 -46q50 -8 139 -14l-20 -92 q-172 4 -283 4q-76 0 -256 -4zM289 1618q0 41 27 70.5t69 29.5q39 0 62.5 -24.5t23.5 -61.5q0 -45 -26.5 -77.5t-71.5 -32.5q-37 0 -60.5 27.5t-23.5 68.5zM637 1618q0 41 27.5 70.5t68.5 29.5q42 0 65 -24t23 -62q0 -45 -26.5 -77.5t-71.5 -32.5q-38 0 -62 27t-24 69z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1478" d="M-4 0l20 90q93 8 126.5 14.5t47.5 20.5q12 10 18 32t19 89l82 426h-200l20 106h201l71 361q15 81 15 100q0 33 -47 43q-27 7 -131 14l16 88h330q206 0 339 -16.5t201 -42.5t129 -72q81 -61 126.5 -166.5t45.5 -224.5q0 -503 -338 -731q-101 -69 -244 -100t-358 -31h-489z M365 180q0 -48 51 -57q49 -8 178 -8q163 0 291 53.5t210 149.5t124.5 224.5t42.5 282.5q0 124 -45 223.5t-123 145.5q-128 76 -387 76h-134l-96 -492h391l-22 -106h-389l-86 -449q-6 -30 -6 -43z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1501" d="M-4 -2l20 92q148 8 177 41q11 13 19.5 46.5t25.5 121.5q11 55 46 234.5t65.5 334.5t43.5 215q21 114 21 146q0 47 -58 55q-37 7 -131 12l21 90q86 -4 194 -4q80 0 154 4q494 -1055 536 -1153q19 105 56.5 308.5t65 354t32.5 185.5q19 127 19 148q0 41 -37 49 q-71 16 -142 18l19 90q218 -4 264 -4q16 0 242 4l-19 -90q-85 -4 -115.5 -11.5t-50.5 -22.5q-15 -13 -25.5 -48t-29.5 -131q-106 -528 -197 -1026q-12 -73 -82 -73q-50 0 -73 51q-485 1050 -531 1147q-32 -166 -96 -519.5t-65 -359.5q-23 -118 -23 -149q0 -23 14 -34t41 -16 q55 -8 135 -14l-20 -92q-204 4 -272 4q-26 0 -244 -4zM680 1526q36 93 88.5 152t116.5 59q38 0 110 -33l56 -27q52 -22 88 -22q31 0 55.5 26t54.5 82l70 -24q-81 -217 -189 -217q-46 0 -126 37l-52 22q-57 25 -86 25q-35 0 -62.5 -25.5t-58.5 -83.5z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1431" d="M133 532q0 172 53 348t156 300q199 235 522 235q258 0 387 -138.5t129 -379.5q0 -199 -52 -384t-169 -323q-89 -104 -219 -160.5t-266 -56.5q-259 0 -400 141.5t-141 417.5zM289 543q0 -449 393 -449q110 0 201.5 45.5t156.5 126.5q90 118 133.5 284.5t43.5 340.5 q0 199 -97 301t-282 102q-121 0 -220.5 -53t-166.5 -145q-77 -110 -119.5 -259t-42.5 -294zM614 1784q0 33 23.5 55.5t54.5 22.5q21 0 42.5 -17.5t58.5 -62.5l206 -260l-51 -52l-262 209q-72 60 -72 105z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1431" d="M133 532q0 172 53 348t156 300q199 235 522 235q258 0 387 -138.5t129 -379.5q0 -199 -52 -384t-169 -323q-89 -104 -219 -160.5t-266 -56.5q-259 0 -400 141.5t-141 417.5zM289 543q0 -449 393 -449q110 0 201.5 45.5t156.5 126.5q90 118 133.5 284.5t43.5 340.5 q0 199 -97 301t-282 102q-121 0 -220.5 -53t-166.5 -145q-77 -110 -119.5 -259t-42.5 -294zM717 1530l258 229q38 35 61.5 48.5t48.5 13.5q27 0 45.5 -23.5t18.5 -54.5q0 -48 -92 -103l-297 -170z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1431" d="M133 532q0 172 53 348t156 300q199 235 522 235q258 0 387 -138.5t129 -379.5q0 -199 -52 -384t-169 -323q-89 -104 -219 -160.5t-266 -56.5q-259 0 -400 141.5t-141 417.5zM289 543q0 -449 393 -449q110 0 201.5 45.5t156.5 126.5q90 118 133.5 284.5t43.5 340.5 q0 199 -97 301t-282 102q-121 0 -220.5 -53t-166.5 -145q-77 -110 -119.5 -259t-42.5 -294zM586 1520l276 270q41 41 78 41q22 0 37 -9t29 -34l174 -277l-52 -47l-210 209l-287 -209z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1431" d="M133 532q0 172 53 348t156 300q199 235 522 235q258 0 387 -138.5t129 -379.5q0 -199 -52 -384t-169 -323q-89 -104 -219 -160.5t-266 -56.5q-259 0 -400 141.5t-141 417.5zM289 543q0 -449 393 -449q110 0 201.5 45.5t156.5 126.5q90 118 133.5 284.5t43.5 340.5 q0 199 -97 301t-282 102q-121 0 -220.5 -53t-166.5 -145q-77 -110 -119.5 -259t-42.5 -294zM582 1526q36 93 88 152t116 59q39 0 111 -33l55 -27q52 -22 88 -22q31 0 56 26t55 82l70 -24q-81 -217 -189 -217q-47 0 -127 37l-51 22q-57 25 -86 25q-35 0 -62.5 -25.5 t-58.5 -83.5z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1431" d="M133 532q0 172 53 348t156 300q199 235 522 235q258 0 387 -138.5t129 -379.5q0 -199 -52 -384t-169 -323q-89 -104 -219 -160.5t-266 -56.5q-259 0 -400 141.5t-141 417.5zM289 543q0 -449 393 -449q110 0 201.5 45.5t156.5 126.5q90 118 133.5 284.5t43.5 340.5 q0 199 -97 301t-282 102q-121 0 -220.5 -53t-166.5 -145q-77 -110 -119.5 -259t-42.5 -294zM641 1618q0 41 27 70.5t69 29.5q39 0 62.5 -24.5t23.5 -61.5q0 -45 -26.5 -77.5t-71.5 -32.5q-37 0 -60.5 27.5t-23.5 68.5zM989 1618q0 41 27.5 70.5t68.5 29.5q42 0 65.5 -24 t23.5 -62q0 -45 -27 -77.5t-72 -32.5q-38 0 -62 27t-24 69z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1224" d="M215 344l352 305l-231 303l98 86l228 -301l342 301l73 -96l-352 -305l231 -305l-94 -84l-231 305l-346 -301z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1431" d="M86 4l141 168q-94 139 -94 360q0 172 53 348t156 300q199 235 522 235q206 0 334 -92l127 150l74 -64l-129 -154q110 -134 110 -358q0 -199 -52 -384t-169 -323q-89 -104 -219 -160.5t-266 -56.5q-245 0 -383 123l-131 -155zM289 543q0 -151 43 -248l770 913 q-97 88 -264 88q-121 0 -220.5 -53.5t-166.5 -146.5q-77 -110 -119.5 -259t-42.5 -294zM385 207q97 -115 297 -115q110 0 201.5 46t156.5 128q90 118 133.5 284.5t43.5 340.5q0 145 -54 239z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1538" d="M213 1296l20 90q160 -4 277 -4q94 0 258 4l-16 -90q-99 -6 -130 -13t-47 -23q-18 -20 -38 -109q-57 -255 -109 -518q-35 -172 -35 -271q0 -266 328 -266q113 0 208 36t144 97q51 63 84 162t66 262q15 69 90 486q10 56 10 90q0 26 -9 35t-34 16q-15 3 -139 16l16 90 q74 -2 260 -2q20 0 112 1t132 1l-19 -90q-93 -3 -129.5 -13.5t-46.5 -29.5q-17 -33 -36 -133l-99 -504q-40 -203 -80.5 -310.5t-109.5 -176.5q-163 -160 -465 -160q-68 0 -129 10.5t-118.5 36t-99 64.5t-66.5 99.5t-25 137.5q0 114 36 291q15 73 56 269.5t55 265.5 q12 67 12 88q0 20 -7.5 31t-29.5 18q-34 13 -147 16zM647 1784q0 33 23.5 55.5t54.5 22.5q21 0 42 -17.5t58 -62.5l207 -260l-51 -52l-262 209q-72 60 -72 105z" />
+<glyph unicode="&#xda;" horiz-adv-x="1538" d="M213 1296l20 90q160 -4 277 -4q94 0 258 4l-16 -90q-99 -6 -130 -13t-47 -23q-18 -20 -38 -109q-57 -255 -109 -518q-35 -172 -35 -271q0 -266 328 -266q113 0 208 36t144 97q51 63 84 162t66 262q15 69 90 486q10 56 10 90q0 26 -9 35t-34 16q-15 3 -139 16l16 90 q74 -2 260 -2q20 0 112 1t132 1l-19 -90q-93 -3 -129.5 -13.5t-46.5 -29.5q-17 -33 -36 -133l-99 -504q-40 -203 -80.5 -310.5t-109.5 -176.5q-163 -160 -465 -160q-68 0 -129 10.5t-118.5 36t-99 64.5t-66.5 99.5t-25 137.5q0 114 36 291q15 73 56 269.5t55 265.5 q12 67 12 88q0 20 -7.5 31t-29.5 18q-34 13 -147 16zM797 1530l258 229q38 35 61.5 48.5t48.5 13.5q27 0 45.5 -23.5t18.5 -54.5q0 -48 -92 -103l-297 -170z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1538" d="M213 1296l20 90q160 -4 277 -4q94 0 258 4l-16 -90q-99 -6 -130 -13t-47 -23q-18 -20 -38 -109q-57 -255 -109 -518q-35 -172 -35 -271q0 -266 328 -266q113 0 208 36t144 97q51 63 84 162t66 262q15 69 90 486q10 56 10 90q0 26 -9 35t-34 16q-15 3 -139 16l16 90 q74 -2 260 -2q20 0 112 1t132 1l-19 -90q-93 -3 -129.5 -13.5t-46.5 -29.5q-17 -33 -36 -133l-99 -504q-40 -203 -80.5 -310.5t-109.5 -176.5q-163 -160 -465 -160q-68 0 -129 10.5t-118.5 36t-99 64.5t-66.5 99.5t-25 137.5q0 114 36 291q15 73 56 269.5t55 265.5 q12 67 12 88q0 20 -7.5 31t-29.5 18q-34 13 -147 16zM672 1520l276 270q41 41 78 41q22 0 37 -9t29 -34l174 -277l-52 -47l-210 209l-287 -209z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1538" d="M213 1296l20 90q160 -4 277 -4q94 0 258 4l-16 -90q-99 -6 -130 -13t-47 -23q-18 -20 -38 -109q-57 -255 -109 -518q-35 -172 -35 -271q0 -266 328 -266q113 0 208 36t144 97q51 63 84 162t66 262q15 69 90 486q10 56 10 90q0 26 -9 35t-34 16q-15 3 -139 16l16 90 q74 -2 260 -2q20 0 112 1t132 1l-19 -90q-93 -3 -129.5 -13.5t-46.5 -29.5q-17 -33 -36 -133l-99 -504q-40 -203 -80.5 -310.5t-109.5 -176.5q-163 -160 -465 -160q-68 0 -129 10.5t-118.5 36t-99 64.5t-66.5 99.5t-25 137.5q0 114 36 291q15 73 56 269.5t55 265.5 q12 67 12 88q0 20 -7.5 31t-29.5 18q-34 13 -147 16zM692 1618q0 41 27 70.5t69 29.5q39 0 62.5 -24.5t23.5 -61.5q0 -45 -26.5 -77.5t-71.5 -32.5q-37 0 -60.5 27.5t-23.5 68.5zM1040 1618q0 40 28 70t69 30q42 0 65 -24t23 -62q0 -45 -27 -77.5t-72 -32.5q-38 0 -62 27 t-24 69z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1251" d="M160 1296l18 90q230 -4 246 -4q38 0 250 4l-21 -90q-108 0 -139 -10q-39 -10 -39 -51q0 -34 25 -98q156 -412 174 -461q190 249 364 469q60 74 60 112q0 14 -11 22.5t-36.5 12t-41.5 4t-49 0.5h-16l21 90q94 -4 260 -4q100 0 190 4l-20 -90q-59 -3 -99 -28 q-8 -5 -17.5 -13.5t-22 -23t-21.5 -25t-25 -30.5t-22 -27l-469 -578l-68 -338q-12 -64 -12 -90q0 -34 33 -39q36 -8 149 -14l-16 -92q-212 4 -262 4q-80 0 -264 -4l16 92q98 4 127.5 11t44.5 24q19 23 35 102l65 342l-225 561q-9 21 -19 46.5t-15 37t-11 25t-12 20t-13 11.5 q-33 23 -112 26zM674 1530l258 229q38 35 61.5 48.5t48.5 13.5q27 0 45.5 -23.5t18.5 -54.5q0 -48 -92 -103l-297 -170z" />
+<glyph unicode="&#xde;" horiz-adv-x="1169" d="M-4 -2l20 92q137 8 172 33q12 9 19.5 34.5t21.5 98.5l172 885q15 88 15 96q0 21 -12 30.5t-39 14.5q-47 8 -127 14l16 90q234 -6 254 -6q13 0 283 6l-19 -90q-98 -7 -135 -14.5t-49 -19.5q-22 -26 -35 -109l-8 -41q280 0 366 -14q131 -23 193.5 -105t62.5 -194 q0 -131 -47.5 -228t-134 -154t-197.5 -84.5t-249 -27.5q-107 0 -150 2l-10 -57q-17 -87 -17 -96q0 -40 44 -48q42 -9 163 -16l-18 -92q-172 4 -299 4q-76 0 -256 -4zM408 410q33 -2 116 -2q51 0 94.5 3t93.5 13t90 26.5t78.5 45t64 66t41 92.5t15.5 122q0 59 -18 101.5 t-47.5 67t-78.5 38.5t-99 18.5t-121 4.5h-113z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1212" d="M-268 -453q0 65 26 154h80q0 -89 21 -122.5t88 -33.5q45 0 85.5 25t65.5 68q49 84 82 270l158 899h-178l18 80q90 11 141 41q24 14 34.5 34t25.5 82q22 94 46 159.5t52.5 107t52.5 64t62 48.5q104 74 274 74q158 0 238 -73.5t80 -180.5q0 -57 -13.5 -102t-44 -84.5 t-65 -70t-92.5 -71.5q-13 -9 -37.5 -27t-35 -26t-28 -21.5t-25 -22t-16.5 -19.5t-12.5 -21t-3.5 -20q0 -29 25 -60q8 -12 22.5 -28t27 -28.5t45 -44.5t52.5 -52q65 -67 98 -128t33 -128q0 -148 -107.5 -233t-273.5 -85q-141 0 -223 47q-53 31 -53 103q0 61 26 141h76 q3 -98 37 -127q51 -51 166 -51q96 0 154 44.5t59 121.5q0 87 -131 221q-89 92 -125 133q-47 56 -47 121q0 56 28.5 97t102.5 98q141 106 192.5 162.5t51.5 131.5q0 77 -50 123.5t-155 46.5q-148 0 -228 -102q-59 -76 -102 -295l-201 -1081q-25 -134 -55 -216t-74 -134 q-106 -119 -268 -119q-79 0 -137 28q-45 23 -45 82z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1144" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q111 0 201 -53l35 76h110l-124 -492q-54 -211 -54 -309q0 -34 19 -52t67 -18q57 0 127 19l-20 -86q-103 -53 -209 -53q-72 0 -97.5 42t-25.5 130q-156 -179 -350 -179q-144 0 -214.5 81.5t-70.5 230.5zM238 297 q0 -103 42 -152t134 -49q151 0 317 162q18 99 45 207l84 321q-82 50 -192 50q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247zM496 1421q0 33 24.5 54.5t54.5 21.5q25 0 46 -17.5t53 -66.5l186 -297l-55 -41l-242 244q-37 37 -52 58t-15 44z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1144" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q111 0 201 -53l35 76h110l-124 -492q-54 -211 -54 -309q0 -34 19 -52t67 -18q57 0 127 19l-20 -86q-103 -53 -209 -53q-72 0 -97.5 42t-25.5 130q-156 -179 -350 -179q-144 0 -214.5 81.5t-70.5 230.5zM238 297 q0 -103 42 -152t134 -49q151 0 317 162q18 99 45 207l84 321q-82 50 -192 50q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247zM621 1124l217 277q34 43 55.5 59.5t44.5 16.5q27 0 50.5 -21t23.5 -53q0 -26 -18 -49t-58 -56l-264 -223z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1144" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q111 0 201 -53l35 76h110l-124 -492q-54 -211 -54 -309q0 -34 19 -52t67 -18q57 0 127 19l-20 -86q-103 -53 -209 -53q-72 0 -97.5 42t-25.5 130q-156 -179 -350 -179q-144 0 -214.5 81.5t-70.5 230.5zM238 297 q0 -103 42 -152t134 -49q151 0 317 162q18 99 45 207l84 321q-82 50 -192 50q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247zM444 1094l254 305q34 41 74 41q52 0 70 -39l145 -322l-65 -35l-166 236l-264 -236z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1144" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q111 0 201 -53l35 76h110l-124 -492q-54 -211 -54 -309q0 -34 19 -52t67 -18q57 0 127 19l-20 -86q-103 -53 -209 -53q-72 0 -97.5 42t-25.5 130q-156 -179 -350 -179q-144 0 -214.5 81.5t-70.5 230.5zM238 297 q0 -103 42 -152t134 -49q151 0 317 162q18 99 45 207l84 321q-82 50 -192 50q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247zM446 1139q77 209 191 209q43 0 106 -29l43 -21q61 -26 86 -26q52 0 109 106l66 -22q-71 -213 -177 -213q-47 0 -125 37l-36 16q-61 23 -86 23 q-32 0 -53.5 -22.5t-55.5 -82.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1144" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q111 0 201 -53l35 76h110l-124 -492q-54 -211 -54 -309q0 -34 19 -52t67 -18q57 0 127 19l-20 -86q-103 -53 -209 -53q-72 0 -97.5 42t-25.5 130q-156 -179 -350 -179q-144 0 -214.5 81.5t-70.5 230.5zM238 297 q0 -103 42 -152t134 -49q151 0 317 162q18 99 45 207l84 321q-82 50 -192 50q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247zM537 1268q0 42 27.5 72t70.5 30q39 0 62.5 -25t23.5 -63q0 -45 -26.5 -76.5t-73.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5zM850 1268q0 42 26.5 72 t67.5 30q40 0 64 -25t24 -63q0 -45 -26.5 -76.5t-71.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1144" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q111 0 201 -53l35 76h110l-124 -492q-54 -211 -54 -309q0 -34 19 -52t67 -18q57 0 127 19l-20 -86q-103 -53 -209 -53q-72 0 -97.5 42t-25.5 130q-156 -179 -350 -179q-144 0 -214.5 81.5t-70.5 230.5zM238 297 q0 -103 42 -152t134 -49q151 0 317 162q18 99 45 207l84 321q-82 50 -192 50q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247zM578 1243q0 88 59 146.5t145 58.5q74 0 123 -47t49 -123q0 -86 -56 -145.5t-148 -59.5q-72 0 -122 45.5t-50 124.5zM657 1249q0 -46 28.5 -75 t70.5 -29q54 0 86 34t32 97q0 47 -29 73.5t-71 26.5q-52 0 -84.5 -34t-32.5 -93z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1589" d="M92 287q0 132 64 284.5t170 243.5q153 135 372 135q46 0 99.5 -12.5t87.5 -36.5l37 80h102l-43 -158q63 70 150.5 104t160.5 34q130 0 195 -63.5t65 -152.5q0 -161 -162.5 -243t-482.5 -82q-6 -38 -6 -78q0 -105 60 -175.5t178 -70.5q151 0 338 121l43 -72 q-100 -85 -199 -129.5t-234 -44.5q-110 0 -193.5 57.5t-111.5 172.5q-184 -226 -407 -226q-283 0 -283 312zM238 297q0 -201 174 -201q78 0 173.5 56.5t180.5 150.5q0 96 84 485q-85 48 -182 48q-127 0 -244 -99q-79 -69 -132.5 -193t-53.5 -247zM922 518q243 7 367 64 t124 145q0 58 -32 90.5t-117 32.5q-40 0 -97.5 -22t-95.5 -54q-121 -100 -149 -256z" />
+<glyph unicode="&#xe7;" horiz-adv-x="948" d="M94 340q0 148 54 282.5t161 221.5q140 117 336 117q91 0 158 -25q45 -18 62.5 -44t17.5 -65q0 -28 -9.5 -81t-21.5 -89h-82q0 115 -33 148q-42 39 -125 39q-134 0 -227 -90q-66 -66 -106.5 -172t-40.5 -209q0 -275 243 -275q146 0 314 119l53 -84q-181 -153 -391 -162 q-23 -44 -23 -65q0 -30 27 -43q68 -35 92.5 -68.5t24.5 -87.5q0 -71 -51.5 -127t-131.5 -88.5t-180 -44.5l-10 80q118 24 178.5 59t60.5 95q0 32 -18.5 55t-60.5 47q-31 19 -31 53q0 46 51 137q-137 15 -214 113t-77 254z" />
+<glyph unicode="&#xe8;" horiz-adv-x="913" d="M94 326q0 182 67 327.5t185 226.5t266 81q134 0 199.5 -64t65.5 -152q0 -325 -637 -325q-4 -25 -4 -76q0 -106 58.5 -176t178.5 -70q87 0 160 27t176 94l51 -84q-100 -81 -201 -122.5t-237 -41.5q-64 0 -121.5 21.5t-104.5 63.5t-74.5 111.5t-27.5 158.5zM254 518 q246 7 364.5 64t118.5 149q0 60 -33 89.5t-108 29.5q-116 0 -212 -89t-130 -243zM336 1421q0 33 25 54.5t55 21.5q25 0 45.5 -17.5t52.5 -66.5l186 -297l-55 -41l-242 244q-37 37 -52 58t-15 44z" />
+<glyph unicode="&#xe9;" horiz-adv-x="913" d="M94 326q0 182 67 327.5t185 226.5t266 81q134 0 199.5 -64t65.5 -152q0 -325 -637 -325q-4 -25 -4 -76q0 -106 58.5 -176t178.5 -70q87 0 160 27t176 94l51 -84q-100 -81 -201 -122.5t-237 -41.5q-64 0 -121.5 21.5t-104.5 63.5t-74.5 111.5t-27.5 158.5zM254 518 q246 7 364.5 64t118.5 149q0 60 -33 89.5t-108 29.5q-116 0 -212 -89t-130 -243zM508 1124l217 277q34 43 55.5 59.5t44.5 16.5q27 0 50.5 -21t23.5 -53q0 -26 -18 -49t-58 -56l-264 -223z" />
+<glyph unicode="&#xea;" horiz-adv-x="913" d="M94 326q0 182 67 327.5t185 226.5t266 81q134 0 199.5 -64t65.5 -152q0 -325 -637 -325q-4 -25 -4 -76q0 -106 58.5 -176t178.5 -70q87 0 160 27t176 94l51 -84q-100 -81 -201 -122.5t-237 -41.5q-64 0 -121.5 21.5t-104.5 63.5t-74.5 111.5t-27.5 158.5zM254 518 q246 7 364.5 64t118.5 149q0 60 -33 89.5t-108 29.5q-116 0 -212 -89t-130 -243zM352 1094l254 305q34 41 74 41q52 0 70 -39l145 -322l-66 -35l-165 236l-265 -236z" />
+<glyph unicode="&#xeb;" horiz-adv-x="913" d="M94 326q0 182 67 327.5t185 226.5t266 81q134 0 199.5 -64t65.5 -152q0 -325 -637 -325q-4 -25 -4 -76q0 -106 58.5 -176t178.5 -70q87 0 160 27t176 94l51 -84q-100 -81 -201 -122.5t-237 -41.5q-64 0 -121.5 21.5t-104.5 63.5t-74.5 111.5t-27.5 158.5zM254 518 q246 7 364.5 64t118.5 149q0 60 -33 89.5t-108 29.5q-116 0 -212 -89t-130 -243zM422 1268q0 42 27.5 72t70.5 30q39 0 62.5 -25t23.5 -63q0 -45 -26.5 -76.5t-73.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5zM735 1268q0 42 26.5 72t67.5 30q40 0 64.5 -25t24.5 -63 q0 -45 -27 -76.5t-72 -31.5q-37 0 -60.5 26.5t-23.5 67.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="604" d="M100 1421q0 33 25 54.5t55 21.5q25 0 46 -17.5t53 -66.5l186 -297l-55 -41l-242 244q-38 38 -53 58.5t-15 43.5zM117 813l16 80q109 59 201 59q108 0 108 -104q0 -48 -49 -268l-59 -238q-29 -126 -29 -170q0 -37 16.5 -53.5t59.5 -16.5q69 0 139 19l-18 -86 q-116 -53 -219 -53q-127 0 -127 114q0 46 28 174l58 252q43 187 43 230q0 39 -17.5 54t-62.5 15q-42 0 -88 -8z" />
+<glyph unicode="&#xed;" horiz-adv-x="604" d="M117 813l16 80q109 59 201 59q108 0 108 -104q0 -48 -49 -268l-59 -238q-29 -126 -29 -170q0 -37 16.5 -53.5t59.5 -16.5q69 0 139 19l-18 -86q-116 -53 -219 -53q-127 0 -127 114q0 46 28 174l58 252q43 187 43 230q0 39 -17.5 54t-62.5 15q-42 0 -88 -8zM240 1124 l217 277q34 43 55.5 59.5t44.5 16.5q27 0 50.5 -21t23.5 -53q0 -26 -18 -49t-58 -56l-264 -223z" />
+<glyph unicode="&#xee;" horiz-adv-x="604" d="M86 1094l254 305q34 41 74 41q51 0 69 -39l146 -322l-66 -35l-166 236l-264 -236zM117 813l16 80q109 59 201 59q108 0 108 -104q0 -48 -49 -268l-59 -238q-29 -126 -29 -170q0 -37 16.5 -53.5t59.5 -16.5q69 0 139 19l-18 -86q-116 -53 -219 -53q-127 0 -127 114 q0 46 28 174l58 252q43 187 43 230q0 39 -17.5 54t-62.5 15q-42 0 -88 -8z" />
+<glyph unicode="&#xef;" horiz-adv-x="604" d="M117 813l16 80q109 59 201 59q108 0 108 -104q0 -48 -49 -268l-59 -238q-29 -126 -29 -170q0 -37 16.5 -53.5t59.5 -16.5q69 0 139 19l-18 -86q-116 -53 -219 -53q-127 0 -127 114q0 46 28 174l58 252q43 187 43 230q0 39 -17.5 54t-62.5 15q-42 0 -88 -8zM150 1268 q0 42 27.5 72t70.5 30q39 0 62.5 -25t23.5 -63q0 -45 -27 -76.5t-74 -31.5q-37 0 -60 26.5t-23 67.5zM463 1268q0 42 26.5 72t67.5 30q40 0 64 -25t24 -63q0 -45 -26.5 -76.5t-71.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1054" d="M94 358q0 249 137 418q63 75 158.5 116.5t204.5 41.5q151 0 227 -88q-11 70 -45.5 158t-70.5 133l-256 -142l-43 76l245 135q-44 66 -120.5 125t-153.5 94l49 80q203 -83 334 -229l196 104l41 -77l-184 -99q158 -226 158 -557q0 -161 -32.5 -288t-123.5 -234 q-61 -73 -154 -113.5t-188 -40.5q-179 0 -279 97.5t-100 289.5zM238 371q0 -277 254 -277q87 0 154 43.5t105.5 115.5t58 154.5t19.5 170.5q0 247 -243 247q-161 0 -248 -120q-100 -135 -100 -334z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1146" d="M111 813l16 80q109 59 192 59q48 0 74.5 -26t26.5 -92q0 -46 -4 -64q71 85 172 135.5t205 50.5q89 0 140.5 -41t51.5 -127q0 -79 -24 -178l-64 -264q-31 -135 -31 -174q0 -36 17.5 -53t58.5 -17q72 0 139 19l-20 -86q-111 -53 -219 -53q-121 0 -121 112q0 67 24 176 l76 328q17 66 17 117q0 61 -31 84.5t-90 23.5q-143 0 -305 -139q-11 -69 -33 -164l-123 -520h-131l113 508q38 171 38 231q0 45 -20.5 63.5t-65.5 18.5q-39 0 -79 -8zM379 1139q77 209 190 209q44 0 107 -29l43 -21q61 -26 86 -26q51 0 108 106l66 -22q-71 -213 -176 -213 q-47 0 -125 37l-37 16q-61 23 -86 23q-32 0 -53.5 -22.5t-55.5 -82.5z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1054" d="M94 358q0 114 34.5 231t104.5 204q133 168 371 168q179 0 273 -94.5t94 -262.5q0 -133 -37 -260t-117 -219q-61 -73 -155 -113.5t-189 -40.5q-179 0 -279 97.5t-100 289.5zM238 371q0 -279 254 -279q71 0 129 30.5t96 79.5t64 115t37 134t11 139q0 252 -243 252 q-163 0 -248 -119q-50 -67 -75 -161t-25 -191zM395 1421q0 33 25 54.5t55 21.5q25 0 45.5 -17.5t52.5 -66.5l187 -297l-55 -41l-242 244q-38 38 -53 58.5t-15 43.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1054" d="M94 358q0 114 34.5 231t104.5 204q133 168 371 168q179 0 273 -94.5t94 -262.5q0 -133 -37 -260t-117 -219q-61 -73 -155 -113.5t-189 -40.5q-179 0 -279 97.5t-100 289.5zM238 371q0 -279 254 -279q71 0 129 30.5t96 79.5t64 115t37 134t11 139q0 252 -243 252 q-163 0 -248 -119q-50 -67 -75 -161t-25 -191zM514 1124l217 277q34 43 55.5 59.5t44.5 16.5q27 0 50.5 -21t23.5 -53q0 -26 -18 -49t-58 -56l-264 -223z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1054" d="M94 358q0 114 34.5 231t104.5 204q133 168 371 168q179 0 273 -94.5t94 -262.5q0 -133 -37 -260t-117 -219q-61 -73 -155 -113.5t-189 -40.5q-179 0 -279 97.5t-100 289.5zM238 371q0 -279 254 -279q71 0 129 30.5t96 79.5t64 115t37 134t11 139q0 252 -243 252 q-163 0 -248 -119q-50 -67 -75 -161t-25 -191zM367 1094l254 305q34 41 73 41q52 0 70 -39l145 -322l-65 -35l-166 236l-264 -236z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1054" d="M94 358q0 114 34.5 231t104.5 204q133 168 371 168q179 0 273 -94.5t94 -262.5q0 -133 -37 -260t-117 -219q-61 -73 -155 -113.5t-189 -40.5q-179 0 -279 97.5t-100 289.5zM238 371q0 -279 254 -279q71 0 129 30.5t96 79.5t64 115t37 134t11 139q0 252 -243 252 q-163 0 -248 -119q-50 -67 -75 -161t-25 -191zM346 1139q77 209 191 209q43 0 106 -29l43 -21q61 -26 86 -26q52 0 109 106l65 -22q-71 -213 -176 -213q-47 0 -125 37l-37 16q-61 23 -86 23q-31 0 -52.5 -22.5t-55.5 -82.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1054" d="M94 358q0 114 34.5 231t104.5 204q133 168 371 168q179 0 273 -94.5t94 -262.5q0 -133 -37 -260t-117 -219q-61 -73 -155 -113.5t-189 -40.5q-179 0 -279 97.5t-100 289.5zM238 371q0 -279 254 -279q71 0 129 30.5t96 79.5t64 115t37 134t11 139q0 252 -243 252 q-163 0 -248 -119q-50 -67 -75 -161t-25 -191zM420 1268q0 42 27.5 72t70.5 30q39 0 62.5 -25t23.5 -63q0 -45 -26.5 -76.5t-73.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5zM733 1268q0 42 26.5 72t67.5 30q40 0 64 -25t24 -63q0 -45 -26.5 -76.5t-71.5 -31.5q-37 0 -60.5 26.5 t-23.5 67.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1183" d="M156 573l24 132h910l-27 -132h-907zM457 305q2 50 30.5 82.5t71.5 32.5q38 0 59 -24t21 -66q-2 -47 -31.5 -80t-72.5 -33q-36 0 -57 25t-21 63zM602 946q0 46 31.5 78.5t73.5 32.5q39 0 59 -24.5t20 -67.5q0 -45 -31.5 -77t-74.5 -32q-34 0 -56 25t-22 65z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1054" d="M49 -8l107 123q-62 89 -62 243q0 114 34.5 231t104.5 204q133 168 371 168q145 0 236 -66l106 121l68 -62l-109 -123q66 -87 66 -227q0 -132 -38 -259t-118 -220q-61 -72 -154.5 -112t-187.5 -40q-159 0 -260 78l-98 -112zM238 371q0 -84 20 -140l494 564q-62 47 -166 47 q-163 0 -248 -119q-50 -67 -75 -161t-25 -191zM307 156q62 -62 185 -62q68 0 127 28.5t98 78.5q57 74 84.5 177t27.5 212q0 73 -22 131z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1191" d="M131 813l16 80q103 57 203 57q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-78 -326q-14 -68 -14 -117q0 -61 31 -85.5t90 -24.5q71 0 151.5 38.5t155.5 104.5q7 55 33 174l116 506h135l-112 -506q-39 -180 -39 -246q0 -41 19.5 -60.5t62.5 -19.5q15 0 64.5 7.5 t64.5 11.5l-19 -84q-110 -55 -213 -55q-48 0 -84 29t-36 87q0 41 4 64q-73 -87 -169.5 -136t-199.5 -49q-88 0 -145.5 48t-57.5 133q0 65 25 168l65 274q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8zM412 1421q0 33 25 54.5t55 21.5q25 0 45.5 -17.5t52.5 -66.5 l186 -297l-55 -41l-242 244q-37 37 -52 58t-15 44z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1191" d="M131 813l16 80q103 57 203 57q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-78 -326q-14 -68 -14 -117q0 -61 31 -85.5t90 -24.5q71 0 151.5 38.5t155.5 104.5q7 55 33 174l116 506h135l-112 -506q-39 -180 -39 -246q0 -41 19.5 -60.5t62.5 -19.5q15 0 64.5 7.5 t64.5 11.5l-19 -84q-110 -55 -213 -55q-48 0 -84 29t-36 87q0 41 4 64q-73 -87 -169.5 -136t-199.5 -49q-88 0 -145.5 48t-57.5 133q0 65 25 168l65 274q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8zM553 1124l217 277q34 43 55.5 59.5t44.5 16.5q27 0 50.5 -21 t23.5 -53q0 -26 -18 -49t-58 -56l-264 -223z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1191" d="M131 813l16 80q103 57 203 57q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-78 -326q-14 -68 -14 -117q0 -61 31 -85.5t90 -24.5q71 0 151.5 38.5t155.5 104.5q7 55 33 174l116 506h135l-112 -506q-39 -180 -39 -246q0 -41 19.5 -60.5t62.5 -19.5q15 0 64.5 7.5 t64.5 11.5l-19 -84q-110 -55 -213 -55q-48 0 -84 29t-36 87q0 41 4 64q-73 -87 -169.5 -136t-199.5 -49q-88 0 -145.5 48t-57.5 133q0 65 25 168l65 274q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8zM410 1094l254 305q34 41 73 41q52 0 70 -39l145 -322l-65 -35 l-166 236l-264 -236z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1191" d="M131 813l16 80q103 57 203 57q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-78 -326q-14 -68 -14 -117q0 -61 31 -85.5t90 -24.5q71 0 151.5 38.5t155.5 104.5q7 55 33 174l116 506h135l-112 -506q-39 -180 -39 -246q0 -41 19.5 -60.5t62.5 -19.5q15 0 64.5 7.5 t64.5 11.5l-19 -84q-110 -55 -213 -55q-48 0 -84 29t-36 87q0 41 4 64q-73 -87 -169.5 -136t-199.5 -49q-88 0 -145.5 48t-57.5 133q0 65 25 168l65 274q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8zM451 1268q0 42 27.5 72t70.5 30q39 0 62.5 -25t23.5 -63 q0 -45 -26.5 -76.5t-73.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5zM764 1268q0 42 26.5 72t67.5 30q40 0 64 -25t24 -63q0 -45 -26.5 -76.5t-71.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1191" d="M90 -438q0 68 27 174h84v-47q0 -69 32 -97q47 -43 146 -43q76 0 135.5 30.5t91.5 86.5q35 64 60.5 146.5t49.5 191.5t38 156q-167 -185 -375 -185q-89 0 -139 43t-50 129q0 73 23 179l61 272q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8l16 80q103 57 203 57 q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-72 -326q-14 -68 -14 -117q0 -63 24.5 -86.5t83.5 -23.5q72 0 157 44.5t165 116.5l139 662h137q-38 -178 -100 -499.5t-92 -467.5q-33 -163 -71.5 -256t-92.5 -147q-123 -123 -336 -123q-147 0 -217 47q-45 30 -45 76zM549 1124 l217 277q34 43 55.5 59.5t44.5 16.5q27 0 50.5 -21t23.5 -53q0 -26 -18 -49t-58 -56l-264 -223z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1136" d="M-4 -535l350 1596q11 50 23 129t12 108q0 41 -18 56.5t-64 15.5q-27 0 -84 -10l18 82q110 55 211 55q103 0 103 -96q0 -34 -17 -117q-87 -383 -120 -502q69 72 165.5 123t198.5 51q136 0 200 -77t64 -217q0 -136 -38 -268.5t-123 -233.5q-148 -180 -420 -180 q-112 0 -211 24l-115 -539h-135zM276 135q66 -37 211 -37q93 0 170.5 44.5t127 118t77 164.5t27.5 187q0 213 -189 213q-68 0 -148.5 -40.5t-150.5 -102.5z" />
+<glyph unicode="&#xff;" horiz-adv-x="1191" d="M90 -438q0 68 27 174h84v-47q0 -69 32 -97q47 -43 146 -43q76 0 135.5 30.5t91.5 86.5q35 64 60.5 146.5t49.5 191.5t38 156q-167 -185 -375 -185q-89 0 -139 43t-50 129q0 73 23 179l61 272q25 105 25 150q0 43 -18 58t-62 15q-42 0 -88 -8l16 80q103 57 203 57 q52 0 80.5 -21.5t28.5 -76.5q0 -30 -35 -190l-72 -326q-14 -68 -14 -117q0 -63 24.5 -86.5t83.5 -23.5q72 0 157 44.5t165 116.5l139 662h137q-38 -178 -100 -499.5t-92 -467.5q-33 -163 -71.5 -256t-92.5 -147q-123 -123 -336 -123q-147 0 -217 47q-45 30 -45 76zM465 1268 q0 42 27.5 72t70.5 30q39 0 62.5 -25t23.5 -63q0 -45 -26.5 -76.5t-73.5 -31.5q-37 0 -60.5 26.5t-23.5 67.5zM778 1268q0 42 26.5 72t67.5 30q40 0 64.5 -25t24.5 -63q0 -45 -27 -76.5t-72 -31.5q-37 0 -60.5 26.5t-23.5 67.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="1992" d="M137 530q0 390 275 668q96 97 237 150t307 53q55 0 194.5 -8.5t203.5 -8.5h499q113 0 113 -75q0 -105 -35 -248h-86q0 73 -2 104q-5 54 -37 74q-24 17 -71.5 24t-171.5 7h-207l-96 -494h161q90 0 126.5 6.5t58.5 26.5q29 26 59 129h86q-37 -149 -84 -428h-82q2 18 2 53 q0 85 -55 96q-44 9 -135 9h-160l-88 -455q-4 -32 -4 -41q0 -46 41 -51q53 -6 209 -6q143 0 211 15t104 44q51 43 117 178h82q-29 -192 -88 -295q-29 -57 -166 -57h-576q-43 0 -191 -6t-222 -6q-133 0 -236 43t-166 118t-95 171.5t-32 209.5zM295 551q0 -197 103.5 -321 t293.5 -124q241 0 287 68q13 19 39 125l151 770q17 90 17 121q0 58 -68 74q-82 16 -200 16q-120 0 -227 -45.5t-185 -130.5q-101 -106 -156 -254.5t-55 -298.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="1611" d="M94 358q0 114 34.5 231t104.5 204q133 168 371 168q262 0 322 -218q63 100 165.5 159t223.5 59q131 0 195.5 -64t64.5 -152q0 -325 -633 -325q-4 -25 -4 -76q0 -107 57 -177.5t176 -70.5q152 0 336 121l45 -72q-98 -85 -196 -129.5t-230 -44.5q-62 0 -119 20.5t-106.5 69 t-69.5 117.5q-54 -98 -148 -151.5t-210 -53.5q-179 0 -279 96.5t-100 288.5zM238 371q0 -277 254 -277q86 0 152 45.5t103 120.5t55.5 158.5t18.5 171.5q0 128 -57 190t-178 62q-163 0 -248 -119q-50 -67 -75 -161t-25 -191zM956 518q244 7 363 64t119 145q0 59 -32.5 91 t-117.5 32q-38 0 -93 -21.5t-93 -54.5q-106 -88 -146 -256z" />
+<glyph unicode="&#x178;" horiz-adv-x="1251" d="M160 1296l18 90q230 -4 246 -4q38 0 250 4l-21 -90q-108 0 -139 -10q-39 -10 -39 -51q0 -34 25 -98q156 -412 174 -461q190 249 364 469q60 74 60 112q0 14 -11 22.5t-36.5 12t-41.5 4t-49 0.5h-16l21 90q94 -4 260 -4q100 0 190 4l-20 -90q-59 -3 -99 -28 q-8 -5 -17.5 -13.5t-22 -23t-21.5 -25t-25 -30.5t-22 -27l-469 -578l-68 -338q-12 -64 -12 -90q0 -34 33 -39q36 -8 149 -14l-16 -92q-212 4 -262 4q-80 0 -264 -4l16 92q98 4 127.5 11t44.5 24q19 23 35 102l65 342l-225 561q-9 21 -19 46.5t-15 37t-11 25t-12 20t-13 11.5 q-33 23 -112 26zM565 1618q0 41 27.5 70.5t69.5 29.5q39 0 62.5 -24.5t23.5 -61.5q0 -45 -27 -77.5t-72 -32.5q-37 0 -60.5 27.5t-23.5 68.5zM913 1618q0 40 28 70t69 30q42 0 65 -24t23 -62q0 -45 -27 -77.5t-72 -32.5q-38 0 -62 27t-24 69z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M29 1094l254 305q34 41 73 41q52 0 70 -39l145 -322l-65 -35l-166 236l-264 -236z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-2 1139q77 209 190 209q44 0 107 -29l43 -21q61 -26 86 -26q51 0 108 106l66 -22q-71 -213 -176 -213q-47 0 -125 37l-37 16q-61 23 -86 23q-31 0 -52.5 -22.5t-55.5 -82.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="932" />
+<glyph unicode="&#x2001;" horiz-adv-x="1864" />
+<glyph unicode="&#x2002;" horiz-adv-x="932" />
+<glyph unicode="&#x2003;" horiz-adv-x="1864" />
+<glyph unicode="&#x2004;" horiz-adv-x="621" />
+<glyph unicode="&#x2005;" horiz-adv-x="466" />
+<glyph unicode="&#x2006;" horiz-adv-x="310" />
+<glyph unicode="&#x2007;" horiz-adv-x="310" />
+<glyph unicode="&#x2008;" horiz-adv-x="233" />
+<glyph unicode="&#x2009;" horiz-adv-x="372" />
+<glyph unicode="&#x200a;" horiz-adv-x="103" />
+<glyph unicode="&#x2010;" horiz-adv-x="540" d="M55 434l25 131h418l-27 -131h-416z" />
+<glyph unicode="&#x2011;" horiz-adv-x="540" d="M55 434l25 131h418l-27 -131h-416z" />
+<glyph unicode="&#x2012;" horiz-adv-x="540" d="M55 434l25 131h418l-27 -131h-416z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1193" d="M76 440l24 121h998l-25 -121h-997z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M76 440l24 121h1485l-26 -121h-1483z" />
+<glyph unicode="&#x2018;" horiz-adv-x="395" d="M156 1067q0 241 352 391l33 -67q-112 -53 -171 -111t-59 -104q0 -47 39 -64q32 -16 49 -36.5t17 -55.5q0 -46 -33 -77.5t-88 -31.5q-61 0 -100 44t-39 112z" />
+<glyph unicode="&#x2019;" horiz-adv-x="395" d="M92 971q111 51 170.5 109t59.5 104q0 45 -39 63q-68 33 -68 92q0 48 33.5 79.5t89.5 31.5q61 0 100 -44.5t39 -113.5t-29 -131t-81 -110t-111 -84t-131 -66z" />
+<glyph unicode="&#x201a;" horiz-adv-x="393" d="M-129 -274q111 50 169 107.5t58 105.5q0 43 -39 63q-65 30 -65 90q0 48 33 79.5t88 31.5q61 0 101 -44t40 -112q0 -245 -354 -391z" />
+<glyph unicode="&#x201c;" horiz-adv-x="747" d="M156 1067q0 241 352 391l33 -67q-112 -53 -171 -111t-59 -104q0 -47 39 -64q66 -29 66 -92q0 -46 -33 -77.5t-88 -31.5q-61 0 -100 44t-39 112zM510 1067q0 241 352 391l31 -67q-111 -53 -170 -111t-59 -104t38 -64q68 -28 68 -92q0 -46 -33 -77.5t-88 -31.5 q-62 0 -100.5 44t-38.5 112z" />
+<glyph unicode="&#x201d;" horiz-adv-x="747" d="M92 971q111 51 170.5 109t59.5 104q0 45 -39 63q-68 33 -68 92q0 48 33.5 79.5t89.5 31.5q61 0 100 -44.5t39 -113.5t-29 -131t-81 -110t-111 -84t-131 -66zM446 971q111 51 170.5 109t59.5 104q0 45 -39 63q-68 33 -68 92q0 48 33.5 79.5t89.5 31.5q61 0 99 -44.5 t38 -113.5t-29 -131t-80 -110t-110 -84t-131 -66z" />
+<glyph unicode="&#x201e;" horiz-adv-x="747" d="M-129 -274q111 50 169 107.5t58 105.5q0 43 -39 63q-65 30 -65 90q0 48 33 79.5t88 31.5q61 0 101 -44t40 -112q0 -245 -354 -391zM225 -274q111 50 170.5 108t59.5 105q0 44 -39 63q-68 33 -68 90q0 48 33 79.5t88 31.5q62 0 100.5 -44t38.5 -112q0 -244 -350 -391z" />
+<glyph unicode="&#x2022;" horiz-adv-x="692" d="M111 549q0 116 74 200.5t194 84.5q111 0 183.5 -71t72.5 -183q0 -122 -76.5 -206.5t-198.5 -84.5q-108 0 -178.5 72t-70.5 188z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1710" d="M80 98q0 55 34.5 94t92.5 39q52 0 85.5 -32t33.5 -84q0 -57 -36 -96t-93 -39q-52 0 -84.5 32.5t-32.5 85.5zM647 98q0 55 35 94t92 39q53 0 86 -32t33 -84q0 -57 -35.5 -96t-93.5 -39q-52 0 -84.5 32.5t-32.5 85.5zM1217 98q0 55 35.5 94t93.5 39q53 0 85.5 -32t32.5 -84 q0 -57 -35.5 -96t-93.5 -39q-53 0 -85.5 32t-32.5 86z" />
+<glyph unicode="&#x202f;" horiz-adv-x="372" />
+<glyph unicode="&#x2039;" horiz-adv-x="557" d="M66 453q0 42 53 86l391 309l51 -62l-342 -331l209 -340l-70 -52l-272 332q-20 24 -20 58z" />
+<glyph unicode="&#x203a;" horiz-adv-x="557" d="M-4 127l342 330l-209 340l72 51l270 -332q23 -32 23 -57q0 -42 -54 -84l-393 -312z" />
+<glyph unicode="&#x205f;" horiz-adv-x="466" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1396" d="M164 506l14 90h146q11 91 26 156h-147l14 90h158q70 212 215 352q187 178 452 178q159 0 265 -45q79 -32 79 -113q0 -30 -10 -97.5t-22 -110.5h-88q-9 147 -33 178q-46 67 -217 67q-195 0 -332 -143q-106 -109 -158 -266h518l-14 -90h-530q-16 -69 -23 -156h527l-15 -90 h-516v-6q0 -206 93.5 -305t262.5 -99q99 0 168.5 21t102.5 51q47 41 98 158h92q-29 -147 -51 -199q-36 -77 -135 -113q-49 -16 -136.5 -29.5t-179.5 -13.5q-222 0 -345.5 132.5t-123.5 377.5v25h-155z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1501" d="M211 1217q1 13 3.5 38.5t4.5 44.5t4 29q4 26 16.5 40.5t47.5 14.5h444q49 0 49 -36q0 -32 -22 -131h-43q0 70 -19 86q-12 8 -37 10t-112 2l-80 -406q-6 -41 -6 -45q0 -10 5 -16t17 -9t19.5 -4.5t26 -2.5t22.5 -1l-10 -55q-39 2 -144 2q-100 0 -141 -2l12 55q65 2 82 15 q13 10 21 59l80 410q-90 0 -116 -2t-38 -10q-25 -20 -43 -86h-43zM737 776l11 55q25 1 35.5 1.5t23.5 4.5t16.5 6.5t9 13t7.5 18.5t6 29l1.5 6t1 5.5t1.5 6.5q19 85 35 163.5t23.5 113.5t11.5 50q8 31 8 47q0 6 -1.5 10.5t-4.5 8t-6.5 5.5t-9.5 3.5t-10.5 2.5t-12.5 1h-12.5 h-14h-14.5l12 57q59 -2 123 -2q59 0 84 2q24 -106 44.5 -194.5t29 -125t14.5 -67.5q27 47 242 387q33 -2 104 -2q55 0 102 2l-12 -57q-64 -2 -76 -14q-9 -9 -18 -47q-9 -26 -66 -346q-8 -46 -8 -54q0 -23 25 -28q35 -7 61 -7l-10 -55q-41 2 -135 2q-80 0 -135 -2l12 55 q59 4 72 17q10 10 18 49q33 172 76 381q-13 -22 -33 -53t-82 -127t-133 -207q-17 -25 -37 -25q-29 0 -37 27q-65 265 -88 383q-8 -50 -36.5 -196t-32.5 -175q-4 -24 -4 -43q0 -9 5.5 -15.5t17 -9t20 -3.5t24.5 -2t21 -1l-13 -55q-37 2 -121 2q-90 0 -135 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="952" d="M0 0v952h952v-952h-952z" />
+<hkern u1="&#x20;" u2="&#x201c;" k="4" />
+<hkern u1="&#x20;" u2="&#x2018;" k="4" />
+<hkern u1="&#x20;" u2="&#xef;" k="61" />
+<hkern u1="&#x20;" u2="&#xee;" k="61" />
+<hkern u1="&#x20;" u2="&#xed;" k="61" />
+<hkern u1="&#x20;" u2="&#xec;" k="61" />
+<hkern u1="&#x20;" u2="i" k="61" />
+<hkern u1="&#x21;" u2="&#x2026;" k="-51" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-51" />
+<hkern u1="&#x21;" u2="]" k="-51" />
+<hkern u1="&#x21;" u2="&#x3a;" k="-41" />
+<hkern u1="&#x21;" u2="&#x2e;" k="-51" />
+<hkern u1="&#x21;" u2="&#x2c;" k="-51" />
+<hkern u1="&#x21;" u2="&#x29;" k="-51" />
+<hkern u1="&#x22;" g2="uniFB04" k="20" />
+<hkern u1="&#x22;" g2="uniFB03" k="20" />
+<hkern u1="&#x22;" g2="uniFB02" k="20" />
+<hkern u1="&#x22;" g2="uniFB01" k="20" />
+<hkern u1="&#x22;" u2="&#xdf;" k="20" />
+<hkern u1="&#x22;" u2="f" k="20" />
+<hkern u1="&#x22;" u2="&#x31;" k="184" />
+<hkern u1="&#x24;" u2="&#x33;" k="-41" />
+<hkern u1="&#x27;" u2="&#x31;" k="225" />
+<hkern u1="&#x28;" u2="W" k="-68" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="233" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="348" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="233" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="348" />
+<hkern u1="&#x2c;" u2="&#x38;" k="18" />
+<hkern u1="&#x2d;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2d;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="266" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="266" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2014;" k="41" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="41" />
+<hkern u1="&#x2e;" u2="&#x38;" k="23" />
+<hkern u1="&#x2e;" u2="&#x2d;" k="41" />
+<hkern u1="&#x2f;" g2="uniFB04" k="41" />
+<hkern u1="&#x2f;" g2="uniFB03" k="41" />
+<hkern u1="&#x2f;" g2="uniFB02" k="41" />
+<hkern u1="&#x2f;" g2="uniFB01" k="41" />
+<hkern u1="&#x2f;" u2="&#x153;" k="119" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-29" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="119" />
+<hkern u1="&#x2f;" u2="&#xef;" k="61" />
+<hkern u1="&#x2f;" u2="&#xee;" k="61" />
+<hkern u1="&#x2f;" u2="&#xed;" k="61" />
+<hkern u1="&#x2f;" u2="&#xec;" k="61" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="119" />
+<hkern u1="&#x2f;" u2="&#xea;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="100" />
+<hkern u1="&#x2f;" u2="&#xdf;" k="41" />
+<hkern u1="&#x2f;" u2="&#xde;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="82" />
+<hkern u1="&#x2f;" u2="q" k="100" />
+<hkern u1="&#x2f;" u2="o" k="119" />
+<hkern u1="&#x2f;" u2="l" k="-29" />
+<hkern u1="&#x2f;" u2="k" k="-29" />
+<hkern u1="&#x2f;" u2="i" k="61" />
+<hkern u1="&#x2f;" u2="h" k="-29" />
+<hkern u1="&#x2f;" u2="f" k="41" />
+<hkern u1="&#x2f;" u2="e" k="119" />
+<hkern u1="&#x2f;" u2="d" k="119" />
+<hkern u1="&#x2f;" u2="c" k="119" />
+<hkern u1="&#x2f;" u2="b" k="-29" />
+<hkern u1="&#x2f;" u2="a" k="100" />
+<hkern u1="&#x2f;" u2="V" k="-25" />
+<hkern u1="&#x2f;" u2="R" k="18" />
+<hkern u1="&#x2f;" u2="P" k="18" />
+<hkern u1="&#x2f;" u2="N" k="18" />
+<hkern u1="&#x2f;" u2="M" k="18" />
+<hkern u1="&#x2f;" u2="L" k="18" />
+<hkern u1="&#x2f;" u2="K" k="18" />
+<hkern u1="&#x2f;" u2="I" k="18" />
+<hkern u1="&#x2f;" u2="H" k="18" />
+<hkern u1="&#x2f;" u2="F" k="18" />
+<hkern u1="&#x2f;" u2="E" k="18" />
+<hkern u1="&#x2f;" u2="D" k="18" />
+<hkern u1="&#x2f;" u2="B" k="18" />
+<hkern u1="&#x2f;" u2="A" k="82" />
+<hkern u1="&#x2f;" u2="&#x35;" k="23" />
+<hkern u1="&#x30;" u2="&#x153;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-61" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-61" />
+<hkern u1="&#x30;" u2="&#xea;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-61" />
+<hkern u1="&#x30;" u2="o" k="-61" />
+<hkern u1="&#x30;" u2="e" k="-61" />
+<hkern u1="&#x30;" u2="d" k="-61" />
+<hkern u1="&#x30;" u2="c" k="-61" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-102" />
+<hkern u1="&#x30;" u2="&#x25;" k="-76" />
+<hkern u1="&#x31;" u2="&#x2026;" k="143" />
+<hkern u1="&#x31;" u2="&#x2f;" k="102" />
+<hkern u1="&#x31;" u2="&#x2e;" k="143" />
+<hkern u1="&#x31;" u2="&#x2c;" k="143" />
+<hkern u1="&#x31;" u2="&#x27;" k="287" />
+<hkern u1="&#x31;" u2="&#x22;" k="287" />
+<hkern u1="&#x32;" u2="&#x2026;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2e;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2c;" k="-102" />
+<hkern u1="&#x33;" g2="uniFB04" k="-78" />
+<hkern u1="&#x33;" g2="uniFB03" k="-78" />
+<hkern u1="&#x33;" g2="uniFB02" k="-78" />
+<hkern u1="&#x33;" g2="uniFB01" k="-78" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-78" />
+<hkern u1="&#x33;" u2="f" k="-78" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-102" />
+<hkern u1="&#x34;" u2="r" k="-102" />
+<hkern u1="&#x34;" u2="p" k="-102" />
+<hkern u1="&#x34;" u2="n" k="-102" />
+<hkern u1="&#x34;" u2="m" k="-102" />
+<hkern u1="&#x35;" u2="&#x2014;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2013;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2d;" k="-102" />
+<hkern u1="&#x37;" u2="&#x2026;" k="229" />
+<hkern u1="&#x37;" u2="&#x2e;" k="229" />
+<hkern u1="&#x37;" u2="&#x2c;" k="229" />
+<hkern u1="&#x38;" u2="&#x2026;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2014;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2013;" k="-61" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-14" />
+<hkern u1="&#x38;" u2="&#x2e;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2d;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2c;" k="-61" />
+<hkern u1="&#x3a;" u2="&#x31;" k="123" />
+<hkern u1="&#x3f;" u2="&#x2026;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2e;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="61" />
+<hkern u1="&#x3f;" u2="&#x20;" k="2" />
+<hkern u1="A" u2="b" k="80" />
+<hkern u1="A" u2="W" k="137" />
+<hkern u1="A" u2="&#x2f;" k="-51" />
+<hkern u1="A" u2="&#x21;" k="82" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="C" u2="&#xee;" k="31" />
+<hkern u1="C" u2="W" k="80" />
+<hkern u1="D" u2="&#xd0;" k="-25" />
+<hkern u1="D" u2="W" k="57" />
+<hkern u1="E" u2="W" k="66" />
+<hkern u1="F" u2="&#x2026;" k="154" />
+<hkern u1="F" u2="&#x178;" k="43" />
+<hkern u1="F" u2="&#x153;" k="80" />
+<hkern u1="F" u2="&#xff;" k="98" />
+<hkern u1="F" u2="&#xfe;" k="25" />
+<hkern u1="F" u2="&#xfd;" k="98" />
+<hkern u1="F" u2="&#xfc;" k="115" />
+<hkern u1="F" u2="&#xfb;" k="115" />
+<hkern u1="F" u2="&#xfa;" k="115" />
+<hkern u1="F" u2="&#xf9;" k="115" />
+<hkern u1="F" u2="&#xf8;" k="80" />
+<hkern u1="F" u2="&#xf6;" k="80" />
+<hkern u1="F" u2="&#xf5;" k="80" />
+<hkern u1="F" u2="&#xf4;" k="80" />
+<hkern u1="F" u2="&#xf3;" k="80" />
+<hkern u1="F" u2="&#xf2;" k="80" />
+<hkern u1="F" u2="&#xf1;" k="80" />
+<hkern u1="F" u2="&#xf0;" k="80" />
+<hkern u1="F" u2="&#xef;" k="2" />
+<hkern u1="F" u2="&#xee;" k="10" />
+<hkern u1="F" u2="&#xed;" k="53" />
+<hkern u1="F" u2="&#xec;" k="-12" />
+<hkern u1="F" u2="&#xeb;" k="80" />
+<hkern u1="F" u2="&#xea;" k="80" />
+<hkern u1="F" u2="&#xe9;" k="80" />
+<hkern u1="F" u2="&#xe8;" k="80" />
+<hkern u1="F" u2="&#xe7;" k="80" />
+<hkern u1="F" u2="&#xe6;" k="102" />
+<hkern u1="F" u2="&#xe5;" k="102" />
+<hkern u1="F" u2="&#xe4;" k="102" />
+<hkern u1="F" u2="&#xe3;" k="102" />
+<hkern u1="F" u2="&#xe2;" k="102" />
+<hkern u1="F" u2="&#xe1;" k="102" />
+<hkern u1="F" u2="&#xe0;" k="102" />
+<hkern u1="F" u2="&#xdd;" k="43" />
+<hkern u1="F" u2="&#xc6;" k="225" />
+<hkern u1="F" u2="&#xc5;" k="76" />
+<hkern u1="F" u2="&#xc4;" k="76" />
+<hkern u1="F" u2="&#xc3;" k="76" />
+<hkern u1="F" u2="&#xc2;" k="76" />
+<hkern u1="F" u2="&#xc1;" k="76" />
+<hkern u1="F" u2="&#xc0;" k="76" />
+<hkern u1="F" u2="z" k="102" />
+<hkern u1="F" u2="y" k="98" />
+<hkern u1="F" u2="x" k="125" />
+<hkern u1="F" u2="w" k="94" />
+<hkern u1="F" u2="v" k="98" />
+<hkern u1="F" u2="u" k="115" />
+<hkern u1="F" u2="t" k="63" />
+<hkern u1="F" u2="s" k="102" />
+<hkern u1="F" u2="r" k="80" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="80" />
+<hkern u1="F" u2="o" k="80" />
+<hkern u1="F" u2="n" k="80" />
+<hkern u1="F" u2="m" k="80" />
+<hkern u1="F" u2="l" k="25" />
+<hkern u1="F" u2="k" k="25" />
+<hkern u1="F" u2="j" k="23" />
+<hkern u1="F" u2="i" k="53" />
+<hkern u1="F" u2="h" k="25" />
+<hkern u1="F" u2="g" k="102" />
+<hkern u1="F" u2="e" k="80" />
+<hkern u1="F" u2="d" k="80" />
+<hkern u1="F" u2="c" k="80" />
+<hkern u1="F" u2="b" k="25" />
+<hkern u1="F" u2="a" k="102" />
+<hkern u1="F" u2="Y" k="43" />
+<hkern u1="F" u2="X" k="68" />
+<hkern u1="F" u2="J" k="20" />
+<hkern u1="F" u2="A" k="76" />
+<hkern u1="F" u2="&#x2f;" k="61" />
+<hkern u1="F" u2="&#x2e;" k="154" />
+<hkern u1="F" u2="&#x2c;" k="154" />
+<hkern u1="G" u2="&#xd0;" k="-27" />
+<hkern u1="G" u2="W" k="53" />
+<hkern u1="H" u2="&#xef;" k="-6" />
+<hkern u1="H" u2="&#xec;" k="-8" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="H" u2="&#x2f;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-6" />
+<hkern u1="I" u2="&#xec;" k="-33" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#x2f;" k="-20" />
+<hkern u1="J" u2="&#xef;" k="-12" />
+<hkern u1="J" u2="&#xec;" k="-74" />
+<hkern u1="J" u2="&#xd0;" k="-27" />
+<hkern u1="K" u2="&#xef;" k="18" />
+<hkern u1="K" u2="&#xec;" k="-45" />
+<hkern u1="K" u2="b" k="45" />
+<hkern u1="K" u2="W" k="76" />
+<hkern u1="L" u2="W" k="231" />
+<hkern u1="M" u2="&#xd0;" k="-27" />
+<hkern u1="N" u2="&#xef;" k="-66" />
+<hkern u1="N" u2="&#xec;" k="-66" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="N" u2="&#x2f;" k="-20" />
+<hkern u1="O" u2="&#xd0;" k="-25" />
+<hkern u1="O" u2="W" k="57" />
+<hkern u1="P" u2="&#xd0;" k="-20" />
+<hkern u1="P" u2="W" k="66" />
+<hkern u1="Q" u2="&#xd0;" k="-35" />
+<hkern u1="Q" u2="W" k="57" />
+<hkern u1="Q" u2="J" k="-246" />
+<hkern u1="Q" u2="&#x2c;" k="-184" />
+<hkern u1="R" u2="W" k="104" />
+<hkern u1="S" u2="W" k="74" />
+<hkern u1="T" u2="&#x2019;" k="-61" />
+<hkern u1="T" u2="&#xef;" k="2" />
+<hkern u1="T" u2="&#xee;" k="-4" />
+<hkern u1="T" u2="&#xec;" k="20" />
+<hkern u1="T" u2="&#x3f;" k="-25" />
+<hkern u1="T" u2="&#x3b;" k="76" />
+<hkern u1="T" u2="&#x3a;" k="104" />
+<hkern u1="T" u2="&#x21;" k="-8" />
+<hkern u1="U" u2="&#xef;" k="-12" />
+<hkern u1="U" u2="&#xec;" k="-74" />
+<hkern u1="U" u2="&#xd0;" k="-27" />
+<hkern u1="V" u2="&#xf6;" k="129" />
+<hkern u1="V" u2="&#xef;" k="-82" />
+<hkern u1="V" u2="&#xee;" k="27" />
+<hkern u1="V" u2="&#xec;" k="-78" />
+<hkern u1="V" u2="&#xe8;" k="109" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="88" />
+<hkern u1="W" u2="&#x201d;" k="-43" />
+<hkern u1="W" u2="&#x2019;" k="-49" />
+<hkern u1="W" u2="&#xff;" k="109" />
+<hkern u1="W" u2="&#xfd;" k="109" />
+<hkern u1="W" u2="&#xf6;" k="129" />
+<hkern u1="W" u2="&#xef;" k="-82" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="70" />
+<hkern u1="W" u2="&#xec;" k="-78" />
+<hkern u1="W" u2="&#xe8;" k="109" />
+<hkern u1="W" u2="y" k="109" />
+<hkern u1="W" u2="x" k="176" />
+<hkern u1="W" u2="w" k="152" />
+<hkern u1="W" u2="v" k="158" />
+<hkern u1="W" u2="t" k="102" />
+<hkern u1="W" u2="s" k="168" />
+<hkern u1="W" u2="j" k="66" />
+<hkern u1="W" u2="&#x3b;" k="102" />
+<hkern u1="W" u2="&#x3a;" k="88" />
+<hkern u1="X" u2="&#xef;" k="4" />
+<hkern u1="X" u2="&#xec;" k="-31" />
+<hkern u1="Y" u2="&#xef;" k="-80" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="66" />
+<hkern u1="Y" u2="&#xec;" k="-109" />
+<hkern u1="Y" u2="&#xe8;" k="115" />
+<hkern u1="Y" u2="W" k="27" />
+<hkern u1="Y" u2="&#x3b;" k="133" />
+<hkern u1="Y" u2="&#x3a;" k="123" />
+<hkern u1="Y" u2="&#x30;" k="-4" />
+<hkern u1="Y" u2="&#x21;" k="61" />
+<hkern u1="Z" u2="&#xef;" k="35" />
+<hkern u1="Z" u2="&#xec;" k="12" />
+<hkern u1="Z" u2="&#xd0;" k="-20" />
+<hkern u1="Z" u2="W" k="78" />
+<hkern u1="[" u2="W" k="-68" />
+<hkern u1="a" u2="&#x3f;" k="27" />
+<hkern u1="a" u2="&#x3b;" k="-16" />
+<hkern u1="a" u2="&#x2f;" k="-70" />
+<hkern u1="c" u2="&#x2019;" k="-20" />
+<hkern u1="c" u2="k" k="39" />
+<hkern u1="e" u2="&#x3a;" k="-20" />
+<hkern u1="f" u2="&#x2019;" k="-190" />
+<hkern u1="f" u2="&#xf2;" k="-14" />
+<hkern u1="f" u2="&#xf1;" k="-2" />
+<hkern u1="f" u2="&#xef;" k="-193" />
+<hkern u1="f" u2="&#xee;" k="-152" />
+<hkern u1="f" u2="&#xed;" k="-25" />
+<hkern u1="f" u2="&#xec;" k="-223" />
+<hkern u1="f" u2="&#xe8;" k="-25" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="W" k="-205" />
+<hkern u1="f" u2="&#x3f;" k="-199" />
+<hkern u1="f" u2="&#x3a;" k="-6" />
+<hkern u1="f" u2="&#x2f;" k="-20" />
+<hkern u1="f" u2="&#x2a;" k="-184" />
+<hkern u1="f" u2="&#x27;" k="-221" />
+<hkern u1="f" u2="&#x22;" k="-205" />
+<hkern u1="f" u2="&#x21;" k="-94" />
+<hkern u1="g" u2="y" k="16" />
+<hkern u1="g" u2="&#x3b;" k="-23" />
+<hkern u1="g" u2="&#x2c;" k="-96" />
+<hkern u1="h" u2="&#x3f;" k="27" />
+<hkern u1="h" u2="&#x3b;" k="-16" />
+<hkern u1="h" u2="&#x2f;" k="-70" />
+<hkern u1="i" u2="q" k="-14" />
+<hkern u1="k" u2="e" k="10" />
+<hkern u1="k" u2="&#x3a;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-47" />
+<hkern u1="m" u2="&#x3f;" k="27" />
+<hkern u1="m" u2="&#x3b;" k="-16" />
+<hkern u1="m" u2="&#x2f;" k="-70" />
+<hkern u1="n" u2="&#x3f;" k="27" />
+<hkern u1="n" u2="&#x3b;" k="-16" />
+<hkern u1="n" u2="&#x2f;" k="-70" />
+<hkern u1="q" u2="&#x2026;" k="72" />
+<hkern u1="q" u2="&#xff;" k="14" />
+<hkern u1="q" u2="&#xfd;" k="14" />
+<hkern u1="q" u2="&#xfc;" k="10" />
+<hkern u1="q" u2="&#xfb;" k="10" />
+<hkern u1="q" u2="&#xfa;" k="10" />
+<hkern u1="q" u2="&#xf9;" k="10" />
+<hkern u1="q" u2="&#xf1;" k="6" />
+<hkern u1="q" u2="&#x7d;" k="-8" />
+<hkern u1="q" u2="y" k="14" />
+<hkern u1="q" u2="x" k="35" />
+<hkern u1="q" u2="w" k="14" />
+<hkern u1="q" u2="v" k="14" />
+<hkern u1="q" u2="u" k="10" />
+<hkern u1="q" u2="r" k="6" />
+<hkern u1="q" u2="p" k="6" />
+<hkern u1="q" u2="n" k="6" />
+<hkern u1="q" u2="m" k="6" />
+<hkern u1="q" u2="j" k="-117" />
+<hkern u1="q" u2="]" k="-8" />
+<hkern u1="q" u2="&#x2e;" k="72" />
+<hkern u1="q" u2="&#x2c;" k="72" />
+<hkern u1="q" u2="&#x29;" k="-8" />
+<hkern u1="r" u2="&#x2019;" k="-27" />
+<hkern u1="r" u2="&#x3b;" k="-14" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="v" u2="&#x3b;" k="6" />
+<hkern u1="v" u2="&#x3a;" k="6" />
+<hkern u1="w" u2="&#x2019;" k="41" />
+<hkern u1="w" u2="&#x3b;" k="10" />
+<hkern u1="w" u2="&#x3a;" k="10" />
+<hkern u1="x" u2="&#x2026;" k="-61" />
+<hkern u1="x" u2="&#x153;" k="8" />
+<hkern u1="x" u2="&#xf8;" k="8" />
+<hkern u1="x" u2="&#xf6;" k="8" />
+<hkern u1="x" u2="&#xf5;" k="8" />
+<hkern u1="x" u2="&#xf4;" k="8" />
+<hkern u1="x" u2="&#xf3;" k="8" />
+<hkern u1="x" u2="&#xf2;" k="8" />
+<hkern u1="x" u2="&#xf0;" k="8" />
+<hkern u1="x" u2="&#xeb;" k="8" />
+<hkern u1="x" u2="&#xea;" k="8" />
+<hkern u1="x" u2="&#xe9;" k="8" />
+<hkern u1="x" u2="&#xe8;" k="8" />
+<hkern u1="x" u2="&#xe7;" k="8" />
+<hkern u1="x" u2="&#xe6;" k="2" />
+<hkern u1="x" u2="&#xe5;" k="2" />
+<hkern u1="x" u2="&#xe4;" k="2" />
+<hkern u1="x" u2="&#xe3;" k="2" />
+<hkern u1="x" u2="&#xe2;" k="2" />
+<hkern u1="x" u2="&#xe1;" k="2" />
+<hkern u1="x" u2="&#xe0;" k="2" />
+<hkern u1="x" u2="q" k="2" />
+<hkern u1="x" u2="o" k="8" />
+<hkern u1="x" u2="g" k="74" />
+<hkern u1="x" u2="e" k="8" />
+<hkern u1="x" u2="d" k="8" />
+<hkern u1="x" u2="c" k="8" />
+<hkern u1="x" u2="a" k="2" />
+<hkern u1="x" u2="&#x2e;" k="-61" />
+<hkern u1="x" u2="&#x2c;" k="-61" />
+<hkern u1="y" u2="&#xef;" k="16" />
+<hkern u1="y" u2="&#xee;" k="16" />
+<hkern u1="y" u2="&#xed;" k="16" />
+<hkern u1="y" u2="&#xec;" k="16" />
+<hkern u1="y" u2="i" k="16" />
+<hkern u1="y" u2="&#x3b;" k="6" />
+<hkern u1="y" u2="&#x3a;" k="6" />
+<hkern u1="&#x7b;" u2="W" k="-68" />
+<hkern u1="&#xa1;" u2="&#x178;" k="270" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="270" />
+<hkern u1="&#xa1;" u2="&#xc5;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc4;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc3;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc2;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc1;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc0;" k="61" />
+<hkern u1="&#xa1;" u2="Y" k="270" />
+<hkern u1="&#xa1;" u2="W" k="102" />
+<hkern u1="&#xa1;" u2="V" k="160" />
+<hkern u1="&#xa1;" u2="T" k="170" />
+<hkern u1="&#xa1;" u2="A" k="61" />
+<hkern u1="&#xa3;" u2="&#x35;" k="-25" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-45" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-72" />
+<hkern u1="&#xab;" u2="W" k="61" />
+<hkern u1="&#xbb;" u2="W" k="123" />
+<hkern u1="&#xbf;" u2="T" k="143" />
+<hkern u1="&#xbf;" u2="S" k="27" />
+<hkern u1="&#xc0;" u2="b" k="80" />
+<hkern u1="&#xc0;" u2="W" k="137" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc0;" u2="&#x21;" k="82" />
+<hkern u1="&#xc1;" u2="b" k="80" />
+<hkern u1="&#xc1;" u2="W" k="137" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc1;" u2="&#x21;" k="82" />
+<hkern u1="&#xc2;" u2="b" k="80" />
+<hkern u1="&#xc2;" u2="W" k="137" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc2;" u2="&#x21;" k="82" />
+<hkern u1="&#xc3;" u2="b" k="80" />
+<hkern u1="&#xc3;" u2="W" k="137" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc3;" u2="&#x21;" k="82" />
+<hkern u1="&#xc4;" u2="b" k="80" />
+<hkern u1="&#xc4;" u2="W" k="137" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc4;" u2="&#x21;" k="82" />
+<hkern u1="&#xc5;" u2="b" k="80" />
+<hkern u1="&#xc5;" u2="W" k="137" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc5;" u2="&#x21;" k="82" />
+<hkern u1="&#xc6;" u2="W" k="66" />
+<hkern u1="&#xc7;" u2="&#xee;" k="31" />
+<hkern u1="&#xc7;" u2="W" k="80" />
+<hkern u1="&#xc8;" u2="W" k="66" />
+<hkern u1="&#xc9;" u2="W" k="66" />
+<hkern u1="&#xca;" u2="W" k="66" />
+<hkern u1="&#xcb;" u2="W" k="66" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcc;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-6" />
+<hkern u1="&#xce;" u2="&#xec;" k="-8" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd0;" u2="W" k="57" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-6" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-8" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd1;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd2;" u2="W" k="57" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd3;" u2="W" k="57" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd4;" u2="W" k="57" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd5;" u2="W" k="57" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd6;" u2="W" k="57" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd8;" u2="W" k="57" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-74" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xda;" u2="&#xef;" k="-12" />
+<hkern u1="&#xda;" u2="&#xec;" k="-74" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-12" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-80" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="66" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-109" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="115" />
+<hkern u1="&#xdd;" u2="W" k="27" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="133" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="123" />
+<hkern u1="&#xdd;" u2="&#x30;" k="-4" />
+<hkern u1="&#xdd;" u2="&#x21;" k="61" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xde;" u2="W" k="57" />
+<hkern u1="&#xdf;" u2="&#x2026;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-61" />
+<hkern u1="&#xdf;" u2="&#x2e;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2c;" k="-41" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe7;" u2="&#x2019;" k="-20" />
+<hkern u1="&#xe7;" u2="k" k="39" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xec;" u2="q" k="-14" />
+<hkern u1="&#xed;" u2="q" k="-14" />
+<hkern u1="&#xee;" u2="q" k="-14" />
+<hkern u1="&#xef;" u2="q" k="-14" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xfd;" u2="&#x3b;" k="6" />
+<hkern u1="&#xfd;" u2="&#x3a;" k="6" />
+<hkern u1="&#xff;" u2="&#x3b;" k="6" />
+<hkern u1="&#xff;" u2="&#x3a;" k="6" />
+<hkern u1="&#x152;" u2="W" k="66" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-20" />
+<hkern u1="&#x178;" u2="&#xef;" k="-80" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="66" />
+<hkern u1="&#x178;" u2="&#xec;" k="-109" />
+<hkern u1="&#x178;" u2="&#xe8;" k="115" />
+<hkern u1="&#x178;" u2="W" k="27" />
+<hkern u1="&#x178;" u2="&#x3b;" k="133" />
+<hkern u1="&#x178;" u2="&#x3a;" k="123" />
+<hkern u1="&#x178;" u2="&#x30;" k="-4" />
+<hkern u1="&#x178;" u2="&#x21;" k="61" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2014;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2014;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2018;" u2="d" k="143" />
+<hkern u1="&#x2018;" u2="c" k="143" />
+<hkern u1="&#x2018;" u2="X" k="20" />
+<hkern u1="&#x2018;" u2="W" k="-49" />
+<hkern u1="&#x2018;" u2="J" k="-31" />
+<hkern u1="&#x2019;" u2="&#x20;" k="-29" />
+<hkern u1="&#x201a;" u2="W" k="246" />
+<hkern u1="&#x201c;" u2="d" k="143" />
+<hkern u1="&#x201c;" u2="W" k="-49" />
+<hkern u1="&#x201e;" u2="W" k="246" />
+<hkern u1="&#x2039;" u2="W" k="61" />
+<hkern u1="&#x203a;" u2="W" k="123" />
+<hkern u1="&#x20ac;" u2="&#x36;" k="-59" />
+<hkern g1="uniFB01" u2="q" k="-14" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-47" />
+<hkern g1="uniFB03" u2="q" k="-14" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-47" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="6" />
+<hkern g1="d" 	g2="w" 	k="18" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-45" />
+<hkern g1="d" 	g2="quoteright,quotedblright" 	k="41" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="g" 	k="25" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,ellipsis" 	k="-6" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="z" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="t" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-104" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-117" />
+<hkern g1="f" 	g2="x" 	k="37" />
+<hkern g1="f" 	g2="g" 	k="27" />
+<hkern g1="f" 	g2="comma,period,ellipsis" 	k="20" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-211" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-197" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-221" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-178" />
+<hkern g1="f" 	g2="z" 	k="20" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-59" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-102" />
+<hkern g1="f" 	g2="T" 	k="-186" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-184" />
+<hkern g1="f" 	g2="V" 	k="-207" />
+<hkern g1="f" 	g2="X" 	k="-147" />
+<hkern g1="f" 	g2="Z" 	k="-145" />
+<hkern g1="f" 	g2="j" 	k="-59" />
+<hkern g1="f" 	g2="s" 	k="4" />
+<hkern g1="f" 	g2="m,n,p,r,ntilde" 	k="-10" />
+<hkern g1="g" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="g" 	g2="w" 	k="-8" />
+<hkern g1="g" 	g2="x" 	k="12" />
+<hkern g1="g" 	g2="g" 	k="-8" />
+<hkern g1="g" 	g2="comma,period,ellipsis" 	k="12" />
+<hkern g1="g" 	g2="quoteleft,quotedblleft" 	k="2" />
+<hkern g1="g" 	g2="quoteright,quotedblright" 	k="-63" />
+<hkern g1="g" 	g2="parenright,bracketright,braceright" 	k="-139" />
+<hkern g1="g" 	g2="j" 	k="-53" />
+<hkern g1="g" 	g2="s" 	k="35" />
+<hkern g1="g" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="g" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-84" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="comma,period,ellipsis" 	k="-68" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="z" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="s" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="k" 	g2="w" 	k="8" />
+<hkern g1="k" 	g2="g" 	k="23" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="k" 	g2="t" 	k="16" />
+<hkern g1="k" 	g2="j" 	k="14" />
+<hkern g1="k" 	g2="s" 	k="8" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="10" />
+<hkern g1="k" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="g" 	k="12" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteright,quotedblright" 	k="-2" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-49" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-76" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotleft,guilsinglleft" 	k="-143" />
+<hkern g1="j" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="j" 	g2="w" 	k="8" />
+<hkern g1="j" 	g2="x" 	k="25" />
+<hkern g1="j" 	g2="comma,period,ellipsis" 	k="43" />
+<hkern g1="j" 	g2="s" 	k="14" />
+<hkern g1="j" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="x" 	k="4" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="66" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-106" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="s" 	k="18" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotleft,guilsinglleft" 	k="-102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="25" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="49" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="158" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="z" 	k="31" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-6" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="72" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="33" />
+<hkern g1="r" 	g2="w" 	k="29" />
+<hkern g1="r" 	g2="x" 	k="66" />
+<hkern g1="r" 	g2="g" 	k="92" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="156" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-41" />
+<hkern g1="r" 	g2="t" 	k="20" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="r" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
+<hkern g1="r" 	g2="j" 	k="43" />
+<hkern g1="r" 	g2="s" 	k="18" />
+<hkern g1="r" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="r" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="r" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="61" />
+<hkern g1="r" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="8" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="s" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="s" 	g2="z" 	k="14" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-86" />
+<hkern g1="s" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="s" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="s" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="t" 	g2="g" 	k="16" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="x" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="53" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="76" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="137" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="72" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="33" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-25" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="12" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="w" 	g2="w" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="94" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="127" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="w" 	g2="s" 	k="12" />
+<hkern g1="z" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="z" 	g2="g" 	k="12" />
+<hkern g1="z" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="z" 	g2="t" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="78" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="47" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="g" 	k="68" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="238" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="244" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="213" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotright,guilsinglright" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="168" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="70" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="145" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="25" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="66" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="s" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-61" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="x" 	k="41" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="150" />
+<hkern g1="B" 	g2="z" 	k="47" />
+<hkern g1="B" 	g2="V" 	k="66" />
+<hkern g1="B" 	g2="X" 	k="25" />
+<hkern g1="B" 	g2="Z" 	k="4" />
+<hkern g1="B" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-4" />
+<hkern g1="B" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-8" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="B" 	g2="AE" 	k="145" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="98" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="59" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-20" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="88" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="61" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="27" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="76" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="113" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="72" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="86" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="55" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="94" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="51" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="66" />
+<hkern g1="G" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="G" 	g2="g" 	k="10" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="111" />
+<hkern g1="G" 	g2="T" 	k="90" />
+<hkern g1="G" 	g2="V" 	k="102" />
+<hkern g1="G" 	g2="X" 	k="72" />
+<hkern g1="G" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="G" 	g2="S" 	k="6" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="G" 	g2="AE" 	k="123" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="b,h,k,l,thorn" 	k="-2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="27" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-63" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="X" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="s" 	k="14" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="49" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="25" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="166" />
+<hkern g1="K" 	g2="w" 	k="168" />
+<hkern g1="K" 	g2="x" 	k="25" />
+<hkern g1="K" 	g2="g" 	k="72" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-49" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="84" />
+<hkern g1="K" 	g2="z" 	k="72" />
+<hkern g1="K" 	g2="t" 	k="111" />
+<hkern g1="K" 	g2="guillemotright,guilsinglright" 	k="102" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="K" 	g2="T" 	k="80" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="80" />
+<hkern g1="K" 	g2="V" 	k="47" />
+<hkern g1="K" 	g2="X" 	k="39" />
+<hkern g1="K" 	g2="Z" 	k="41" />
+<hkern g1="K" 	g2="s" 	k="98" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="90" />
+<hkern g1="K" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="109" />
+<hkern g1="K" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="106" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="172" />
+<hkern g1="K" 	g2="J" 	k="4" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="K" 	g2="S" 	k="135" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="2" />
+<hkern g1="K" 	g2="AE" 	k="20" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="123" />
+<hkern g1="L" 	g2="w" 	k="115" />
+<hkern g1="L" 	g2="x" 	k="47" />
+<hkern g1="L" 	g2="g" 	k="88" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-66" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="281" />
+<hkern g1="L" 	g2="z" 	k="61" />
+<hkern g1="L" 	g2="t" 	k="102" />
+<hkern g1="L" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="96" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
+<hkern g1="L" 	g2="T" 	k="270" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="172" />
+<hkern g1="L" 	g2="V" 	k="268" />
+<hkern g1="L" 	g2="X" 	k="59" />
+<hkern g1="L" 	g2="Z" 	k="53" />
+<hkern g1="L" 	g2="s" 	k="41" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="86" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="L" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
+<hkern g1="L" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="98" />
+<hkern g1="L" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="L" 	g2="J" 	k="-25" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="L" 	g2="S" 	k="102" />
+<hkern g1="L" 	g2="AE" 	k="20" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="M" 	g2="w" 	k="20" />
+<hkern g1="M" 	g2="x" 	k="12" />
+<hkern g1="M" 	g2="g" 	k="31" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="M" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="M" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="M" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="57" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="b,h,k,l,thorn" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="x" 	k="18" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="g" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-184" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="72" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="59" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="90" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="125" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="P" 	g2="w" 	k="12" />
+<hkern g1="P" 	g2="x" 	k="76" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="P" 	g2="z" 	k="76" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="T" 	k="47" />
+<hkern g1="P" 	g2="V" 	k="39" />
+<hkern g1="P" 	g2="X" 	k="121" />
+<hkern g1="P" 	g2="Z" 	k="25" />
+<hkern g1="P" 	g2="s" 	k="23" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="P" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="P" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="90" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
+<hkern g1="P" 	g2="J" 	k="23" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-6" />
+<hkern g1="P" 	g2="S" 	k="12" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
+<hkern g1="P" 	g2="AE" 	k="205" />
+<hkern g1="R" 	g2="b,h,k,l,thorn" 	k="88" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="R" 	g2="w" 	k="72" />
+<hkern g1="R" 	g2="x" 	k="8" />
+<hkern g1="R" 	g2="g" 	k="66" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-94" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="R" 	g2="z" 	k="33" />
+<hkern g1="R" 	g2="t" 	k="66" />
+<hkern g1="R" 	g2="guillemotright,guilsinglright" 	k="8" />
+<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-10" />
+<hkern g1="R" 	g2="T" 	k="125" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="111" />
+<hkern g1="R" 	g2="V" 	k="119" />
+<hkern g1="R" 	g2="X" 	k="39" />
+<hkern g1="R" 	g2="Z" 	k="23" />
+<hkern g1="R" 	g2="j" 	k="37" />
+<hkern g1="R" 	g2="s" 	k="25" />
+<hkern g1="R" 	g2="m,n,p,r,ntilde" 	k="33" />
+<hkern g1="R" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="R" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="R" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="66" />
+<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="R" 	g2="J" 	k="-4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="R" 	g2="S" 	k="61" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="S" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="S" 	g2="z" 	k="25" />
+<hkern g1="S" 	g2="T" 	k="33" />
+<hkern g1="S" 	g2="V" 	k="61" />
+<hkern g1="S" 	g2="X" 	k="55" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="S" 	g2="AE" 	k="61" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="70" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="113" />
+<hkern g1="T" 	g2="w" 	k="102" />
+<hkern g1="T" 	g2="x" 	k="150" />
+<hkern g1="T" 	g2="g" 	k="199" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="172" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="T" 	g2="z" 	k="123" />
+<hkern g1="T" 	g2="t" 	k="123" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="6" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="129" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
+<hkern g1="T" 	g2="X" 	k="55" />
+<hkern g1="T" 	g2="j" 	k="111" />
+<hkern g1="T" 	g2="s" 	k="164" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="123" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="129" />
+<hkern g1="T" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="139" />
+<hkern g1="T" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="190" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="119" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="162" />
+<hkern g1="T" 	g2="AE" 	k="190" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="88" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="18" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="49" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="S" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="31" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="31" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="156" />
+<hkern g1="V,W" 	g2="w" 	k="131" />
+<hkern g1="V,W" 	g2="x" 	k="156" />
+<hkern g1="V,W" 	g2="g" 	k="211" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="238" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-80" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="27" />
+<hkern g1="V,W" 	g2="z" 	k="170" />
+<hkern g1="V,W" 	g2="t" 	k="123" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="47" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="49" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="X" 	k="25" />
+<hkern g1="V,W" 	g2="Z" 	k="41" />
+<hkern g1="V,W" 	g2="j" 	k="23" />
+<hkern g1="V,W" 	g2="s" 	k="147" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="139" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="V,W" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="121" />
+<hkern g1="V,W" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="154" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="V,W" 	g2="J" 	k="18" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V,W" 	g2="S" 	k="63" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="102" />
+<hkern g1="V,W" 	g2="AE" 	k="225" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="211" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="166" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-68" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="197" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="72" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="66" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="31" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="92" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="172" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="131" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="104" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="223" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="137" />
+<hkern g1="X" 	g2="w" 	k="129" />
+<hkern g1="X" 	g2="x" 	k="88" />
+<hkern g1="X" 	g2="g" 	k="84" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="39" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="X" 	g2="z" 	k="51" />
+<hkern g1="X" 	g2="t" 	k="88" />
+<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="102" />
+<hkern g1="X" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="X" 	g2="T" 	k="74" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="8" />
+<hkern g1="X" 	g2="V" 	k="27" />
+<hkern g1="X" 	g2="j" 	k="68" />
+<hkern g1="X" 	g2="s" 	k="88" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="109" />
+<hkern g1="X" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
+<hkern g1="X" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="102" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="106" />
+<hkern g1="X" 	g2="guillemotleft,guilsinglleft" 	k="180" />
+<hkern g1="X" 	g2="J" 	k="18" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="X" 	g2="S" 	k="111" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="47" />
+<hkern g1="Z" 	g2="w" 	k="76" />
+<hkern g1="Z" 	g2="g" 	k="8" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-133" />
+<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="94" />
+<hkern g1="Z" 	g2="t" 	k="82" />
+<hkern g1="Z" 	g2="guillemotright,guilsinglright" 	k="-43" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="Z" 	g2="T" 	k="12" />
+<hkern g1="Z" 	g2="V" 	k="35" />
+<hkern g1="Z" 	g2="X" 	k="41" />
+<hkern g1="Z" 	g2="s" 	k="61" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="45" />
+<hkern g1="Z" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="61" />
+<hkern g1="Z" 	g2="J" 	k="-6" />
+<hkern g1="Z" 	g2="S" 	k="35" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-2" />
+<hkern g1="Z" 	g2="AE" 	k="23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-45" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-119" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-76" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="252" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-25" />
+<hkern g1="guillemotright,guilsinglright" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="164" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-61" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-96" />
+<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-53" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-45" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-41" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-82" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="143" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="270" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="352" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="246" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="190" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="307" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-143" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="82" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-68" />
+<hkern g1="hyphen,endash,emdash" 	g2="t" 	k="-41" />
+<hkern g1="hyphen,endash,emdash" 	g2="s" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-12" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-66" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-25" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-125" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-225" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-162" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-41" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..534db89c1010fcc7c8630cd4cf5a7d77cc6b355d
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.woff
new file mode 100755
index 0000000000000000000000000000000000000000..4a872cd082a7ce509da52d19b65bbba31418ac60
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaLigIta.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.eot
new file mode 100755
index 0000000000000000000000000000000000000000..4e4f85cad63445c3d0abdc39a3b5b8e64c5159e9
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.svg
new file mode 100755
index 0000000000000000000000000000000000000000..f17c5a0b2a963e0195b22ee7a0ce4a46be94a6d7
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.svg
@@ -0,0 +1,2076 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-mediumregular" horiz-adv-x="1175" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1312" d="M43 762v125q65 13 109 41q25 19 36 45.5t17 85.5q13 121 58.5 202t119.5 138q59 45 153.5 71.5t200.5 26.5q153 0 240 -33q72 -26 72 -108q0 -88 -13 -199h-149q-11 108 -51 135q-28 25 -119 25q-65 0 -122.5 -20.5t-92.5 -57.5q-72 -79 -72 -240v-79h397q108 41 172 41 q54 0 83.5 -29t29.5 -111q0 -79 -3 -266t-3 -276q0 -94 16 -115q20 -23 135 -31v-135q-176 4 -270 4q-162 0 -252 -4v135q111 10 131 33q17 17 17 110v349q0 53 -6.5 76.5t-22.5 39.5q-28 21 -133 21h-291v-459q0 -103 21 -137q9 -10 19 -15t46 -10.5t100 -7.5v-135 q-184 4 -274 4q-97 0 -289 -4v135q117 7 142 35q14 16 14 100v494h-166z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1329" d="M43 762v125q65 13 109 41q26 20 38 47t15 84q9 124 49 203.5t113 138.5q58 45 143.5 70.5t177.5 25.5q114 0 205 -24q64 24 127 24q53 0 79.5 -32t26.5 -109q0 -42 -1 -202t-1 -230v-645q0 -97 21 -115q20 -23 131 -31v-135q-180 4 -270 4q-166 0 -258 -4v135 q111 7 133 33q20 17 20 108v598q0 179 -4 279q-3 90 -43 127q-57 39 -162 39q-140 0 -205 -78q-57 -67 -57 -219v-98q116 0 266 -7v-145q-120 -8 -266 -8v-459q0 -103 21 -137q12 -15 46 -22.5t124 -10.5v-135q-184 4 -279 4q-97 0 -289 -4v135q117 7 142 35q14 16 14 100 v494h-166z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="2019" d="M43 762v125q65 13 109 41q26 20 37.5 46.5t15.5 84.5q10 117 44.5 191.5t100.5 127.5q108 86 275 86q96 0 161 -22q76 -28 76 -113q0 -91 -18 -186h-121q-7 95 -25 120t-90 25q-102 0 -140 -70.5t-38 -216.5v-86h318q103 0 129 29q12 9 19 26.5t9 33.5t6 55 q23 222 179 340q59 45 153.5 71.5t200.5 26.5q152 0 239 -33q72 -26 72 -108q0 -99 -12 -201h-150q-11 108 -51 135q-28 25 -119 25q-65 0 -122.5 -20.5t-92.5 -57.5q-71 -78 -71 -238v-79h397q108 41 172 41q54 0 83.5 -28.5t29.5 -109.5q0 -78 -3.5 -266.5t-3.5 -277.5 q0 -92 17 -115q23 -23 135 -31v-135q-176 4 -270 4q-156 0 -248 -4v135q64 5 90.5 10.5t36.5 18.5q16 19 16 114v349q0 53 -6 76.5t-22 39.5q-28 21 -134 21h-290v-459q0 -104 20 -137q25 -29 172 -33v-135q-184 4 -280 4q-97 0 -289 -4v135q116 7 141 35q14 16 14 100v494 h-485v-459q0 -103 21 -137q13 -14 48.5 -22t133.5 -11v-135q-184 4 -291 4q-97 0 -289 -4v135q117 7 142 35q14 16 14 100v494h-166z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="2035" d="M43 762v125q65 13 109 41q26 20 37.5 46.5t15.5 84.5q10 117 44.5 191.5t100.5 127.5q108 86 275 86q96 0 161 -22q76 -28 76 -113q0 -91 -18 -186h-121q-7 95 -25 120t-90 25q-102 0 -140 -70.5t-38 -216.5v-86h318q103 0 129 29q17 13 24 38.5t10 76.5q10 125 49.5 204 t112.5 138q58 45 144 70.5t178 25.5q113 0 204 -24q65 24 127 24q53 0 80 -32.5t27 -108.5q0 -42 -1 -206.5t-1 -234.5v-636q0 -97 20 -115q20 -23 131 -31v-135q-180 4 -270 4q-164 0 -254 -4v135q106 7 129 33q21 18 21 108v598q0 177 -4 277q-3 90 -43 127 q-57 39 -162 39q-140 0 -205 -78q-57 -67 -57 -219v-96q115 0 266 -7v-145q-120 -8 -266 -8v-459q0 -104 20 -137q13 -14 48 -22t132 -11v-135q-184 4 -288 4q-97 0 -289 -4v135q116 7 141 35q14 16 14 100v494h-485v-459q0 -103 21 -137q13 -14 48.5 -22t133.5 -11v-135 q-184 4 -291 4q-97 0 -289 -4v135q117 7 142 35q14 16 14 100v494h-166z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="606" d="M195 129q0 65 41 108.5t104 43.5q64 0 106.5 -41.5t42.5 -104.5q0 -72 -40.5 -112.5t-106.5 -40.5q-64 0 -105.5 41t-41.5 106zM211 1296q0 61 34.5 102.5t108.5 41.5q70 0 104 -39.5t34 -102.5q0 -18 -3 -56t-12 -120t-17 -155t-26 -233.5t-31 -282.5h-108 q-84 776 -84 845z" />
+<glyph unicode="&#x22;" horiz-adv-x="673" d="M70 1350q0 106 104 106q107 0 107 -106q0 -10 -0.5 -20.5t-2 -26.5t-3 -30t-5 -40t-6.5 -46.5t-9 -60.5t-10.5 -70.5t-12.5 -87.5t-15 -102h-90q-57 421 -57 484zM395 1350q0 106 105 106q106 0 106 -106q0 -18 -1.5 -38.5t-7.5 -64t-11.5 -81.5t-18.5 -130t-24 -170h-90 q-58 428 -58 484z" />
+<glyph unicode="#" horiz-adv-x="1155" d="M86 418v172h246l45 213h-207v178h240l77 391h109l-82 -391h242l82 391h106l-80 -391h205v-178h-240l-45 -213h197v-172h-231l-88 -445h-107l90 445h-242l-90 -445h-104l86 445h-209zM436 590h244l41 213h-240z" />
+<glyph unicode="$" horiz-adv-x="1159" d="M125 256q0 99 8 164h125q21 -134 78 -184q57 -61 205 -70v403l-115 45q-276 104 -276 353q0 152 98 255.5t293 127.5v215h108v-209q177 0 289 -56q72 -32 72 -135q0 -57 -17 -202h-125q-11 136 -67 180q-47 35 -152 41v-393l131 -50q142 -55 210.5 -141t68.5 -209 q0 -173 -110.5 -273.5t-299.5 -119.5v-234h-108v230q-190 3 -289 53q-74 33 -100.5 81.5t-26.5 127.5zM385 1014q0 -62 33.5 -105t122.5 -78v349q-81 -13 -118.5 -58t-37.5 -108zM649 170q83 15 126.5 60.5t43.5 109.5q0 67 -34 108t-113 72l-23 8v-358z" />
+<glyph unicode="%" horiz-adv-x="1789" d="M59 930q0 211 93.5 324.5t263.5 113.5q181 0 258.5 -107t77.5 -313q0 -230 -95 -339t-251 -109q-179 0 -263 107.5t-84 322.5zM248 946q0 -167 39.5 -238t120.5 -71q157 0 157 303q0 158 -37.5 225.5t-117.5 67.5q-162 0 -162 -287zM551 23l596 1363l106 -43l-594 -1368z M1038 414q0 211 93.5 324.5t263.5 113.5q182 0 259 -107t77 -315q0 -229 -95 -337.5t-252 -108.5q-178 0 -262 107t-84 323zM1227 428q0 -165 39 -236t120 -71q156 0 156 301q0 158 -36.5 225.5t-114.5 67.5q-164 0 -164 -287z" />
+<glyph unicode="&#x26;" horiz-adv-x="1613" d="M88 375q0 143 81 239.5t243 163.5q-47 80 -70 148t-23 143q0 52 11.5 99t41.5 93.5t76 79.5t121 53.5t170 20.5q165 0 258 -76t93 -204q0 -129 -88 -213.5t-283 -167.5q117 -178 336 -369q46 48 82 141q18 30 18 76q0 12 -4.5 21.5t-14.5 15t-19 9.5t-26 6t-26.5 2.5 t-29.5 1.5t-27 1v138q122 -4 254 -4q192 0 262 4v-138q-92 -3 -123 -28q-26 -17 -76 -121q-78 -152 -145 -227q63 -50 138 -80.5t144 -30.5q38 0 58 2v-184q-47 -8 -113 -8q-232 0 -387 116q-183 -125 -428 -125q-228 0 -366 112.5t-138 289.5zM346 410q0 -105 79.5 -177.5 t205.5 -72.5q138 0 229 59q-215 197 -362 410q-81 -39 -116.5 -92t-35.5 -127zM563 1085q0 -89 82 -202q244 96 244 229q0 60 -40 95.5t-110 35.5q-89 0 -132.5 -43.5t-43.5 -114.5z" />
+<glyph unicode="'" horiz-adv-x="348" d="M70 1350q0 106 104 106q107 0 107 -106q0 -10 -0.5 -20.5t-2 -26.5t-3 -30t-5 -40t-6.5 -46.5t-9 -60.5t-10.5 -70.5t-12.5 -87.5t-15 -102h-90q-57 421 -57 484z" />
+<glyph unicode="(" horiz-adv-x="657" d="M80 594q0 337 123.5 583t371.5 416l64 -80q-90 -86 -153.5 -172t-112.5 -196t-73 -246.5t-24 -304.5q0 -199 49.5 -372.5t128 -299t191.5 -239.5l-67 -80q-240 157 -369 406t-129 585z" />
+<glyph unicode=")" horiz-adv-x="657" d="M12 1518l66 75q240 -156 370 -405t130 -582q0 -337 -124 -583.5t-372 -419.5l-66 84q90 86 153.5 172t113 196t74 246.5t24.5 304.5q0 291 -97.5 512t-271.5 400z" />
+<glyph unicode="*" horiz-adv-x="835" d="M76 1147q0 38 23.5 68t62.5 30q24 0 72 -29.5t155 -107.5l-20 68q-39 125 -39 174q0 84 88 84q86 0 86 -84q0 -49 -37 -201l-12 -43q104 79 149 107t76 28q38 0 59 -25t21 -65t-18 -62t-62 -28q-104 -15 -156 -17l-61 -2q126 -94 165.5 -136.5t39.5 -82.5 q0 -34 -29.5 -58t-60.5 -24q-50 0 -76.5 44t-85.5 210q-37 -108 -65.5 -163.5t-51 -73t-53.5 -17.5q-26 0 -55 25t-29 59q0 36 42.5 83.5t168.5 133.5q-96 3 -215 23q-42 7 -62 24t-20 58z" />
+<glyph unicode="+" horiz-adv-x="1234" d="M160 557v160h381v420h153v-420h379v-160h-379v-418h-153v418h-381z" />
+<glyph unicode="," horiz-adv-x="466" d="M27 -299q192 131 192 246q0 52 -47 65q-45 16 -69.5 44.5t-24.5 84.5q0 58 42.5 99t110.5 41q82 0 129.5 -54.5t47.5 -146.5q0 -263 -322 -467z" />
+<glyph unicode="-" horiz-adv-x="561" d="M57 422v168h441v-168h-441z" />
+<glyph unicode="." horiz-adv-x="450" d="M78 129q0 65 41 108.5t102 43.5q66 0 109 -41.5t43 -104.5q0 -72 -42 -112.5t-108 -40.5q-63 0 -104 41.5t-41 105.5z" />
+<glyph unicode="/" horiz-adv-x="694" d="M43 -133l479 1630l127 -33l-481 -1630z" />
+<glyph unicode="0" d="M76 666q0 345 137 525.5t391 180.5q138 0 235 -45t154.5 -134.5t83 -211t25.5 -287.5q0 -193 -39.5 -335.5t-110.5 -225.5t-161.5 -122.5t-202.5 -39.5q-264 0 -388 172t-124 523zM324 694q0 -196 32 -316t89 -170t145 -50q129 0 196.5 134t67.5 388q0 276 -62.5 393 t-197.5 117t-202.5 -128t-67.5 -368z" />
+<glyph unicode="1" d="M223 1221q65 38 293 131q68 22 119 22q96 0 96 -121q0 -34 -1 -176.5t-1 -253.5v-538q0 -87 16 -113q21 -31 205 -39v-135q-168 4 -342 4t-346 -4v135q175 7 209 37q21 21 21 115v530q0 177 -9 254q-5 51 -51 51q-58 0 -170 -35z" />
+<glyph unicode="2" d="M74 0v143q181 148 300 257t204 209t123 183.5t38 163.5q0 234 -229 234q-121 0 -176 -55q-35 -35 -43 -158h-133q-19 140 -19 184q0 57 25.5 93t85.5 65q117 53 303 53q217 0 327.5 -99t110.5 -282q0 -374 -606 -792q45 0 161.5 1t145.5 1q94 0 138.5 9.5t64.5 35.5 q26 34 53 127h121q-8 -198 -25 -289q-14 -84 -137 -84h-833z" />
+<glyph unicode="3" d="M119 160q0 99 14 209h135q11 -112 51 -152q52 -59 209 -59q131 0 198 59.5t67 157.5q0 100 -64.5 154t-208.5 67q-70 6 -149 6v168q12 1 42.5 1.5t54 1.5t46.5 5q112 17 168.5 77.5t56.5 148.5q0 85 -46 136.5t-150 51.5q-133 0 -187 -47q-36 -31 -51 -156h-133 q-12 98 -12 172q0 54 20 89t70 59q47 24 133 43.5t184 19.5q114 0 197 -25.5t130 -72t69 -104.5t22 -130q0 -112 -67.5 -200.5t-219.5 -132.5q175 -23 258.5 -105t83.5 -225q0 -195 -139 -300.5t-387 -105.5q-173 0 -291 43q-104 36 -104 146z" />
+<glyph unicode="4" d="M74 360v129l532 771q43 64 80.5 89t99.5 25q50 0 83.5 -32.5t33.5 -110.5q0 -46 -1 -157t-1 -146v-381h205v-185h-205v-79q0 -89 17 -113q22 -33 178 -41v-131q-168 4 -334 4q-121 0 -293 -4v131q160 11 184 41q17 28 17 117v73h-596zM287 541h383q0 313 8 575z" />
+<glyph unicode="5" d="M123 156q0 112 12 204h139q8 -112 45 -149q49 -59 191 -59q144 0 216.5 73t72.5 189q0 121 -70 188.5t-219 67.5q-36 0 -113 -15q-87 -18 -98 -18q-96 0 -96 98q0 45 6 94l49 510h723v-202h-563l-29 -301q92 30 221 30q94 0 172 -24.5t138 -73t93.5 -128.5t33.5 -185 q0 -121 -41.5 -215t-115.5 -152t-171.5 -87.5t-214.5 -29.5q-156 0 -279 43q-56 25 -79 57t-23 85z" />
+<glyph unicode="6" d="M113 602q0 169 31 301.5t84 219.5t129.5 144t162.5 81t187 24q148 0 237 -35q49 -20 72.5 -50.5t23.5 -82.5q0 -105 -14 -194h-137q-11 113 -47 143q-42 37 -144 37q-69 0 -126 -24.5t-104.5 -76t-76 -142.5t-33.5 -214q40 60 131 98.5t181 38.5q103 0 182.5 -34 t127.5 -94t72.5 -134.5t24.5 -161.5q0 -215 -131 -345t-344 -130q-229 0 -359 160t-130 471zM358 547q0 -73 7 -131q15 -129 77.5 -194.5t163.5 -65.5q108 0 173 70t65 200t-63.5 191t-174.5 61q-72 0 -140 -34.5t-108 -96.5z" />
+<glyph unicode="7" d="M96 1225q0 54 27.5 84t95.5 30h844v-137l-510 -1196q-30 -72 -92 -72q-45 0 -79 22.5t-34 59.5q0 30 17 68l475 1053h-293q-212 0 -254 -13q-30 -10 -45 -49t-27 -117h-108q-17 154 -17 267z" />
+<glyph unicode="8" d="M96 328q0 108 65.5 198.5t207.5 147.5q-127 75 -174.5 159.5t-47.5 178.5q0 74 28 138t83 114t143.5 79t200.5 29q207 0 314.5 -89t107.5 -236q0 -105 -58 -179t-182 -137q71 -34 121.5 -70t81.5 -70t49 -73.5t24.5 -75.5t6.5 -82q0 -165 -133 -278t-367 -113 q-220 0 -345.5 97t-125.5 262zM326 346q0 -89 66 -144t179 -55q114 0 175 50.5t61 136.5q0 83 -66 137t-237 123q-99 -62 -138.5 -117t-39.5 -131zM391 1038q0 -70 56 -124.5t190 -110.5q158 104 158 227q0 75 -52.5 122.5t-144.5 47.5q-97 0 -152 -45.5t-55 -116.5z" />
+<glyph unicode="9" d="M98 899q0 215 132.5 344t349.5 129q229 0 356 -159.5t127 -467.5q0 -774 -590 -774q-137 0 -242 37q-100 38 -100 142q0 110 10 192h138q10 -102 51 -139q45 -45 159 -45q67 0 122 24t100 75.5t72.5 142.5t33.5 216q-42 -59 -132 -96t-181 -37q-83 0 -150.5 21.5 t-114.5 59.5t-79 90.5t-47 114t-15 130.5zM332 920q0 -246 237 -246q71 0 139 32.5t109 94.5q0 87 -6 137q-17 124 -79 188t-165 64q-109 0 -172 -68.5t-63 -201.5z" />
+<glyph unicode=":" horiz-adv-x="493" d="M121 129q0 65 41 108.5t102 43.5q67 0 109.5 -41.5t42.5 -104.5q0 -72 -41.5 -112.5t-108.5 -40.5q-63 0 -104 41.5t-41 105.5zM121 774q0 65 41 107.5t102 42.5q67 0 109.5 -40.5t42.5 -103.5q0 -73 -41 -114t-109 -41q-63 0 -104 42t-41 107z" />
+<glyph unicode=";" horiz-adv-x="499" d="M70 -299q192 131 192 246q0 52 -47 65q-45 16 -69.5 44.5t-24.5 84.5q0 58 42.5 99t110.5 41q82 0 129.5 -54.5t47.5 -146.5q0 -261 -322 -467zM121 774q0 65 41 107.5t102 42.5q67 0 109.5 -40.5t42.5 -103.5q0 -73 -41 -114t-109 -41q-63 0 -104 42t-41 107z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1234" d="M195 563v170l796 422v-186l-631 -320l631 -319v-193z" />
+<glyph unicode="=" horiz-adv-x="1234" d="M150 383v164h933v-164h-933zM150 764v162h933v-162h-933z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1234" d="M242 137v189l632 321l-632 316v192l794 -422v-168z" />
+<glyph unicode="?" horiz-adv-x="913" d="M119 1253q0 93 100 133q103 41 256 41q212 -1 312 -92.5t100 -251.5q0 -133 -77 -228.5t-273 -186.5q-20 -10 -34 -24.5t-21.5 -27t-12.5 -38.5t-6.5 -39t-4 -49t-3.5 -50h-115q-18 144 -18 226q0 55 34.5 89.5t98.5 65.5q184 88 184 244q0 193 -178 195q-109 0 -146 -29 q-35 -28 -41 -141h-137q-18 97 -18 163zM256 129q0 65 42 108.5t105 43.5q64 0 106 -41.5t42 -104.5q0 -72 -39.5 -112.5t-105.5 -40.5q-65 0 -107.5 41.5t-42.5 105.5z" />
+<glyph unicode="@" horiz-adv-x="1662" d="M86 426q0 178 62.5 337.5t172.5 277t270 186.5t345 69q161 0 286.5 -47.5t201.5 -128.5t114.5 -181t38.5 -212q0 -328 -234 -530q-51 -44 -120 -72.5t-127 -28.5q-61 0 -92 22t-43 72q-2 8 -4 27.5t-3 22.5q-137 -144 -290 -144q-116 0 -181 73t-65 208q0 107 53 232.5 t139 209.5q71 68 144 97.5t166 29.5q96 0 184 -45l33 60h131l-107 -422q-41 -164 -41 -242q0 -53 47 -53q57 0 127 73q64 67 104 170.5t40 227.5q0 224 -138.5 344.5t-365.5 120.5q-203 0 -362 -98t-246.5 -271t-87.5 -389q0 -172 78 -305t219 -206t323 -73q325 0 588 189 l61 -101q-139 -105 -309.5 -162t-355.5 -57q-221 0 -393 88.5t-267.5 252.5t-95.5 378zM592 395q0 -83 35 -119t102 -36q49 0 113.5 30t111.5 72q10 67 33 160l70 272q-80 37 -152 37q-103 0 -174 -76q-57 -60 -98 -159.5t-41 -180.5z" />
+<glyph unicode="A" horiz-adv-x="1492" d="M10 -2v137q100 3 140 37q21 18 39 52.5t51 121.5l360 948q47 125 158 125q57 0 92 -28t57 -88l371 -1000q25 -65 41 -93t41 -48q32 -24 123 -27v-137q-164 4 -273 4q-180 0 -360 -4v137q94 4 135 19q43 12 43 51q0 45 -27 119l-53 139h-467l-49 -129q-31 -81 -31 -127 q0 -38 31 -49q48 -19 156 -23v-137q-164 4 -330 4q-92 0 -248 -4zM530 639h359q-16 49 -93.5 263.5t-84.5 240.5q-7 -23 -43 -123.5t-80.5 -223t-57.5 -157.5z" />
+<glyph unicode="B" horiz-adv-x="1306" d="M57 -2v137q122 2 154 25q20 11 25.5 32t5.5 95v815q0 98 -19 117q-12 15 -42.5 20t-123.5 10v137h439q208 0 340 -16q153 -21 229 -101.5t76 -205.5q0 -123 -70 -207t-207 -117q171 -20 260.5 -108.5t89.5 -229.5q0 -230 -196 -335q-122 -68 -330 -68q-40 0 -176 2 t-190 2q-113 0 -265 -4zM485 236q0 -33 10 -47t37 -19q31 -6 119 -6q143 0 219 60t76 179q0 65 -29.5 115t-78.5 76q-75 41 -281 41h-72v-399zM487 807h76q114 0 172 16q150 43 150 191q0 134 -131 174q-65 18 -189 18h-78v-399z" />
+<glyph unicode="C" horiz-adv-x="1382" d="M90 668q0 350 198 549.5t541 199.5q224 0 338 -49q105 -44 105 -131q0 -78 -25 -244h-139q-11 135 -45 174q-58 64 -246 64q-96 0 -179.5 -33t-149.5 -97.5t-104 -170.5t-38 -242q0 -114 27 -205.5t71.5 -150.5t106 -98.5t127.5 -56.5t139 -17q174 0 248 63q42 45 80 166 h141q-6 -194 -33 -258q-23 -72 -131 -108q-138 -52 -338 -52q-319 0 -506.5 182t-187.5 515z" />
+<glyph unicode="D" horiz-adv-x="1490" d="M57 0v135q144 5 166 33q11 13 15 36.5t4 84.5v805q0 91 -9 112q-12 24 -43 31t-133 12v135h381q308 0 459 -24t250 -84q254 -158 254 -557q0 -433 -285 -606q-180 -113 -549 -113h-510zM485 262q0 -31 9 -45.5t34 -21.5q47 -17 146 -17q235 0 351 128t116 396 q0 350 -217 445q-125 53 -330 53h-109v-938z" />
+<glyph unicode="E" horiz-adv-x="1261" d="M57 0v135q141 8 166 33q13 11 16 37.5t3 93.5v795q0 100 -13 118q-13 17 -46.5 24t-125.5 13v135h926q139 0 139 -102q0 -73 -20 -256h-139q-16 130 -52 152q-43 32 -196 32h-230v-417h113q73 0 106 6.5t50 27.5q29 32 39 119h127q-2 -51 -2 -231q0 -152 2 -236h-121 q-5 34 -9.5 53.5t-10 38.5t-16.5 28t-22.5 17t-34.5 10.5t-46.5 3.5t-63.5 1h-111v-359q0 -44 12.5 -63.5t43.5 -24.5q53 -8 176 -8q126 0 187.5 14t90.5 41q34 32 74 158h129q-4 -239 -37 -321q-10 -32 -57.5 -50t-116.5 -18h-930z" />
+<glyph unicode="F" horiz-adv-x="1202" d="M57 -2v137q88 4 121 12t45 23q11 9 15 36t4 93v795q0 100 -13 118q-13 17 -46.5 24t-125.5 13v135h944q72 0 100.5 -25.5t28.5 -74.5q0 -44 -5.5 -129t-10.5 -129h-137q-7 38 -13 64t-12.5 44t-13.5 28.5t-16 15.5q-21 16 -62 24t-131 8h-244v-448h146q68 0 102 7.5 t53 27.5q30 43 39 125h121q-2 -51 -2 -236q0 -158 4 -242h-117q-4 24 -6.5 39.5t-6.5 32t-8 26t-11 20t-13.5 15.5t-18.5 10.5t-24 7.5t-30.5 4t-37.5 2.5t-46 0.5h-144v-289q0 -106 23 -137q29 -33 203 -41v-137q-176 4 -344 4q-130 0 -310 -4z" />
+<glyph unicode="G" horiz-adv-x="1468" d="M90 668q0 171 53.5 311.5t150 236.5t234 148.5t303.5 52.5q255 0 379 -57q90 -39 90 -127q0 -42 -6.5 -115.5t-15.5 -126.5h-141q-13 134 -47 176q-55 64 -254 64q-76 0 -145 -17.5t-133 -58t-110 -101.5t-74 -155t-28 -211t28 -209.5t74 -151t108.5 -97t127.5 -54.5 t135 -16q170 0 213 43q17 20 17 80v129q0 73 -23 90q-33 17 -162 24v138q142 -5 299 -5q74 0 254 5v-138h-4q-21 -1 -30.5 -2t-24.5 -2.5t-21 -3t-16 -5t-13 -7.5t-8.5 -10.5t-7 -14t-3.5 -18.5t-2.5 -23.5t-0.5 -29.5v-254q0 -46 -16.5 -70.5t-57.5 -42.5 q-191 -74 -430 -74q-152 0 -278.5 46t-218.5 133t-143.5 220t-51.5 300z" />
+<glyph unicode="H" horiz-adv-x="1560" d="M57 -2v137q145 7 166 35q19 16 19 129v797q0 101 -17 118q-9 15 -44.5 23t-123.5 12v137q258 -6 299 -6q54 0 312 6v-137q-90 -4 -124 -13t-44 -24q-15 -21 -15 -118v-279h588v277q0 106 -14 122q-12 15 -47.5 23t-122.5 12v137q270 -6 305 -6q43 0 307 6v-137 q-90 -4 -124 -12.5t-44 -24.5q-14 -16 -14 -118v-791q0 -116 14 -133q10 -10 21.5 -15.5t48 -11t98.5 -8.5v-137q-176 4 -301 4q-131 0 -311 -4v137q141 7 170 33q9 10 11.5 36t2.5 95v334h-588v-330q0 -113 15 -131q27 -30 168 -37v-137q-176 4 -306 4q-125 0 -305 -4z" />
+<glyph unicode="I" horiz-adv-x="727" d="M57 -2v137q145 7 166 35q19 16 19 129v797q0 101 -17 118q-9 15 -44.5 23t-123.5 12v137q198 -6 301 -6q58 0 310 6v-137q-90 -4 -124 -13t-44 -24q-15 -21 -15 -118v-791q0 -108 15 -129q14 -16 48 -25.5t120 -13.5v-137q-176 4 -306 4q-125 0 -305 -4z" />
+<glyph unicode="J" horiz-adv-x="698" d="M-12 -197q170 96 209 211q39 125 39 328v754q0 101 -17 118q-9 15 -46.5 23t-125.5 12v137q204 -6 303 -6q53 0 305 6v-137q-89 -4 -119.5 -12.5t-41.5 -24.5q-15 -21 -15 -118v-748q0 -135 -16 -231t-57 -172q-44 -81 -140 -154t-207 -117z" />
+<glyph unicode="K" horiz-adv-x="1431" d="M57 -2v137q88 4 121 11t45 22q11 11 15 37t4 92v799q0 102 -17 121q-9 14 -44.5 21t-123.5 11v137q258 -6 299 -6q52 0 316 6v-137q-91 -4 -126.5 -12t-45.5 -23q-15 -21 -15 -120v-793q0 -111 15 -129q27 -30 172 -37v-137q-176 4 -310 4q-125 0 -305 -4zM512 698 q183 180 369 387q65 74 65 117q0 24 -24.5 33.5t-102.5 13.5v137q90 -4 301 -4q168 0 256 4v-137q-70 -5 -96 -16q-60 -26 -154 -127q-36 -40 -188 -197t-168 -174q102 -147 223.5 -295t196.5 -215q53 -48 113 -71q49 -19 106 -19v-135q-68 -8 -156 -8q-77 0 -149 24 t-121 66q-85 74 -219.5 251.5t-251.5 364.5z" />
+<glyph unicode="L" horiz-adv-x="1247" d="M57 0v135q141 8 166 33q13 11 16 37.5t3 93.5v797q0 102 -17 121q-9 14 -44 21t-124 11v137q198 -6 301 -6q64 0 316 6v-137q-154 -7 -174 -37q-15 -21 -15 -118v-822q0 -44 12.5 -63.5t43.5 -24.5q53 -8 176 -8q128 0 186.5 13.5t85.5 41.5q37 37 72 166h119 q-2 -93 -11.5 -189t-25.5 -140q-25 -68 -164 -68h-922z" />
+<glyph unicode="M" horiz-adv-x="1830" d="M55 -2v137q133 3 158 31q24 27 27 170q14 793 14 811q0 60 -14 74q-12 12 -44 18.5t-126 9.5v137q92 -4 282 -4q162 0 217 4q244 -575 340 -845q85 225 357 845q144 -4 239 -4q182 0 252 4v-137q-92 -3 -124.5 -9.5t-41.5 -22.5q-16 -18 -16 -113q0 -98 6 -780 q0 -124 16 -152q11 -16 44.5 -23.5t130.5 -13.5v-137q-196 4 -304 4q-81 0 -319 -4v137q148 7 170 37q14 20 14 107q0 632 4 843q-74 -203 -360 -850q-28 -71 -107 -71q-42 0 -66 18t-38 55q-269 650 -346 852v-870q0 -72 20 -92q13 -13 44.5 -19t119.5 -10v-137 q-172 4 -237 4q-108 0 -312 -4z" />
+<glyph unicode="N" horiz-adv-x="1542" d="M49 1249v137q90 -4 270 -4q121 0 193 4q552 -813 666 -1001q-4 125 -7.5 372.5t-5.5 280.5q-5 145 -18 172q-24 34 -174 39v137q218 -4 284 -4q49 0 267 4v-137q-82 -4 -112.5 -11.5t-49.5 -23.5q-14 -12 -18.5 -47t-4.5 -129q-2 -147 -2 -587q0 -42 1 -177t1 -176 q0 -60 -27.5 -89t-90.5 -29q-78 0 -129 77q-666 1013 -682 1039q1 -120 3 -297t3.5 -303.5t1.5 -149.5q2 -97 5 -130t13 -46q14 -15 48 -22t126 -13v-137q-222 4 -280 4q-69 0 -277 -4v137q91 4 128 13.5t48 27.5q13 26 13 172q6 339 6 688q0 140 -15 164q-16 31 -63 39 q-48 10 -121 10z" />
+<glyph unicode="O" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q334 0 492.5 -183t158.5 -517q0 -185 -51.5 -329t-143 -233.5t-211.5 -135.5t-263 -46q-166 0 -294 52t-209 147.5t-122 225.5t-41 290zM348 715q0 -292 107 -423.5t305 -131.5q196 0 300.5 137.5t104.5 402.5 q0 277 -100 404t-303 127q-199 0 -306.5 -137t-107.5 -379z" />
+<glyph unicode="P" horiz-adv-x="1249" d="M57 -2v137q130 5 158 27q16 10 21.5 33.5t5.5 95.5v809q0 62 -4.5 85t-16.5 34q-11 13 -44 19.5t-120 10.5v135h445q262 0 362 -18q161 -32 241.5 -129t80.5 -246q0 -231 -147 -345t-408 -114q-87 0 -146 5v-238q0 -109 17 -129q30 -30 184 -35v-137q-192 4 -346 4 q-79 0 -283 -4zM485 711q31 -2 101 -2q60 0 106.5 5.5t93 22.5t76.5 45t49 76t19 113q0 171 -156 215q-60 16 -201 16h-88v-491z" />
+<glyph unicode="Q" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q334 0 492.5 -183t158.5 -517q0 -283 -117.5 -462t-316.5 -245q100 -91 219 -145q67 -32 158 -50t164 -18q33 0 45 2v-139q-71 -12 -158 -12q-99 0 -196 15t-154 38q-104 41 -186.5 99.5t-216.5 176.5 q-190 18 -321 113.5t-193 246.5t-62 351zM348 715q0 -292 107 -423.5t305 -131.5q196 0 300.5 137.5t104.5 402.5q0 277 -100 404t-303 127q-199 0 -306.5 -137t-107.5 -379z" />
+<glyph unicode="R" horiz-adv-x="1363" d="M57 -2v137q126 5 158 27q16 10 21.5 33.5t5.5 95.5v813q0 56 -5 79t-16 36q-23 23 -164 30v135h445q232 0 352 -20q153 -27 231 -121.5t78 -241.5q0 -156 -75.5 -256.5t-215.5 -144.5q93 -144 148.5 -219t114.5 -133q73 -67 114 -86q46 -22 94 -25v-137q-24 -4 -92 -4 q-175 0 -297 102q-75 64 -146 169t-183 298q-29 0 -140 6v-272q0 -66 3.5 -91.5t13.5 -37.5q14 -16 49 -24t115 -11v-137q-188 4 -326 4q-79 0 -283 -4zM485 745q31 -2 113 -2q68 0 121 11t97.5 37.5t68.5 76.5t24 121q0 73 -35.5 124t-99.5 71q-64 18 -207 18h-82v-457z " />
+<glyph unicode="S" horiz-adv-x="1187" d="M111 252q0 74 8 176h127q13 -84 34 -128t50 -75q68 -71 262 -71q126 0 191 52t65 132q0 70 -37 114.5t-119 77.5l-262 101q-86 32 -145.5 75.5t-90 93.5t-43 98.5t-12.5 105.5q0 88 31.5 161.5t93.5 130t164.5 88t235.5 31.5q201 0 311 -55q40 -22 57 -56t17 -92 q0 -62 -17 -219h-127q-13 92 -28.5 135t-40.5 64q-48 43 -209 43q-124 0 -183 -51.5t-59 -130.5q0 -66 37.5 -111t138.5 -84l246 -96q154 -61 224.5 -149t70.5 -218q0 -205 -144 -314.5t-385 -109.5q-91 0 -181.5 16t-145.5 42q-81 36 -108 86.5t-27 136.5z" />
+<glyph unicode="T" horiz-adv-x="1366" d="M72 1260q0 60 27 92t100 32h966q73 0 102 -29t29 -83q0 -152 -10 -295h-121q-9 97 -22 141.5t-35 59.5q-26 20 -78 25t-219 5v-901q0 -111 12 -133q10 -15 47 -24t134 -15v-137q-168 4 -308 4q-151 0 -323 -4v137q93 4 128.5 13t47.5 24q10 12 13 38t3 91v907 q-166 0 -221 -5t-82 -23q-47 -30 -61 -203h-119q-10 143 -10 283z" />
+<glyph unicode="U" horiz-adv-x="1579" d="M43 1249v137q164 -4 291 -4q178 0 338 4v-137q-93 -3 -129.5 -11.5t-48.5 -25.5q-16 -23 -19 -104q-2 -109 -2 -471q0 -229 35 -322q59 -157 315 -157q103 0 184 31t119 87q39 59 51.5 147t12.5 228q0 283 -8 439q-3 65 -8.5 92t-18.5 37q-17 14 -51.5 19.5t-114.5 10.5 v137q76 -2 297 -2q20 0 116.5 1t135.5 1v-137q-92 -6 -128 -16t-44 -29q-12 -24 -12 -131v-463q0 -190 -26.5 -297t-88.5 -182q-66 -80 -186.5 -121t-270.5 -41q-171 0 -295.5 51t-181.5 142q-44 68 -62 166.5t-18 300.5q0 103 3 267t3 198q0 88 -14 112q-11 20 -47.5 29.5 t-126.5 13.5z" />
+<glyph unicode="V" horiz-adv-x="1482" d="M10 1249v137q160 -4 324 -4q131 0 311 4v-137q-10 0 -28.5 -0.5t-29 -1t-27 -1.5t-26.5 -3t-23 -5.5t-20 -8.5t-14.5 -11.5t-10.5 -16t-3 -21.5q0 -28 31 -119q94 -268 176 -498t108 -307q63 189 275 799q26 83 26 131q0 38 -28 49q-33 10 -158 14v137q164 -4 266 -4 q158 0 314 4v-137q-113 -3 -144 -32q-29 -23 -74 -146l-364 -989q-23 -60 -60.5 -86.5t-95.5 -26.5q-59 0 -94 24.5t-57 82.5l-371 1005q-27 69 -43 98.5t-39 47.5q-21 18 -121 22z" />
+<glyph unicode="W" horiz-adv-x="2105" d="M45 1249v137q258 -4 315 -4q228 0 310 4v-137q-82 -1 -125.5 -12.5t-54.5 -27.5t-11 -44q0 -31 15 -100q124 -522 176 -764q69 267 282 973q35 117 144 117q60 0 87.5 -25t47.5 -88q221 -743 282 -979q50 258 170 754q17 78 17 112q0 31 -10 45.5t-53 25t-132 13.5v137 q204 -4 312 -4q104 0 256 4v-137q-103 -6 -129 -32q-21 -16 -34.5 -49.5t-29.5 -96.5l-256 -983q-15 -62 -50.5 -90.5t-96.5 -28.5q-60 0 -93.5 24.5t-52.5 84.5q-80 271 -134 461t-97 349.5t-45 166.5q-60 -241 -279 -967q-19 -63 -54.5 -91t-94.5 -28q-117 0 -142 109 l-256 1024q-17 64 -32.5 91t-48.5 40.5t-103 15.5z" />
+<glyph unicode="X" horiz-adv-x="1509" d="M31 -2v137q113 0 151 31q44 39 80 88l340 473l-303 414q-19 26 -29 39t-24 26.5t-29 22.5q-34 16 -129 20v137q127 -4 315 -4q268 0 336 4v-137q-89 -1 -118 -14t-29 -41t39 -86l186 -264l170 243q19 27 33 59t14 50q0 27 -28 38t-117 15v137q74 -4 295 -4q157 0 243 4 v-137q-92 -3 -124 -24q-28 -23 -89 -103l-301 -409l338 -469q38 -50 76 -80q19 -16 50 -21.5t100 -7.5v-137q-270 4 -318 4q-96 0 -342 -4v137q90 4 121 18t31 42q0 19 -33 71l-231 320l-207 -301q-41 -64 -41 -90q0 -31 35.5 -44t136.5 -16v-137q-234 4 -316 4 q-159 0 -282 -4z" />
+<glyph unicode="Y" horiz-adv-x="1325" d="M10 1249v137q234 -4 279 -4q99 0 307 4v-137q-92 -3 -119.5 -15.5t-27.5 -39.5q0 -42 38 -100q54 -90 218 -379q88 150 225 391q37 60 37 94q0 25 -29.5 36.5t-118.5 12.5v137q96 -4 299 -4q111 0 197 4v-137q-63 -3 -98 -30q-31 -24 -111 -152l-326 -512v-279 q0 -79 8 -98t46 -29t141 -14v-137q-222 4 -309 4q-114 0 -318 -4v137q101 6 131.5 13.5t42.5 23.5q13 21 13 104v277l-324 534q-8 14 -21.5 36t-19 31t-14.5 22.5t-14.5 20t-12.5 13.5t-14 11q-37 23 -105 28z" />
+<glyph unicode="Z" horiz-adv-x="1318" d="M53 0v78l801 1134q-299 0 -386.5 -3.5t-119.5 -14.5q-31 -14 -48.5 -61t-29.5 -150h-143q-14 161 -14 291q0 52 35.5 81t105.5 29h958v-77l-794 -1123q63 -6 262 -6q273 0 330 51q48 42 86 185h149q-9 -241 -31 -336q-10 -40 -38 -59t-91 -19h-1032z" />
+<glyph unicode="[" horiz-adv-x="638" d="M188 -348v1894h418v-108h-237v-1678h237v-108h-418z" />
+<glyph unicode="\" horiz-adv-x="694" d="M55 1464l125 35l482 -1630l-125 -37z" />
+<glyph unicode="]" horiz-adv-x="638" d="M35 -240h237v1678h-237v108h416v-1894h-416v108z" />
+<glyph unicode="^" horiz-adv-x="1234" d="M209 733l332 713h157l326 -711h-166l-244 522l-239 -524h-166z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-4 -164h1014v-119h-1014v119z" />
+<glyph unicode="`" horiz-adv-x="604" d="M106 1415q0 37 31 63.5t66 26.5q30 0 53.5 -19t60.5 -77l179 -287l-74 -57l-246 233q-70 65 -70 117z" />
+<glyph unicode="a" horiz-adv-x="1073" d="M78 262q0 56 14.5 99.5t48 79.5t87.5 59.5t135.5 36t189.5 12.5q77 0 106 -4v63q0 98 -24 135q-33 56 -152 56q-98 0 -139 -35q-35 -25 -41 -137h-133q-18 97 -18 170q0 93 100 133q118 47 256 47q233 0 311 -92q60 -66 60 -226q0 -31 -1 -203t-1 -180q0 -73 19 -99.5 t62 -26.5q39 0 78 8v-142q-85 -32 -188 -32q-29 0 -52 4.5t-46.5 15.5t-41 35t-26.5 59q-115 -121 -285 -121q-61 0 -116 17t-101.5 50.5t-74 89.5t-27.5 128zM305 279q0 -70 44.5 -99.5t109.5 -29.5q114 0 200 59v182q-44 6 -108 6q-137 0 -191.5 -30t-54.5 -88z" />
+<glyph unicode="b" horiz-adv-x="1185" d="M23 1300v127q137 70 268 70q58 0 84 -35.5t26 -118.5q0 -290 -2 -499q148 133 332 133q96 0 168 -36t116 -101.5t65.5 -151.5t21.5 -192q0 -152 -57.5 -267.5t-177 -183.5t-287.5 -68q-102 0 -216.5 18.5t-189.5 51.5q2 96 2 266v748q0 199 -24 223q-29 23 -76 23 q-7 0 -27 -3t-26 -4zM399 193q67 -29 191 -29q134 0 203 85t69 224q0 144 -57 229.5t-182 85.5q-121 0 -224 -67v-528z" />
+<glyph unicode="c" horiz-adv-x="999" d="M84 455q0 120 36.5 218t102.5 164.5t160 103t207 36.5q101 0 196 -25q60 -18 87.5 -47t27.5 -84q0 -100 -16 -184h-137q-8 98 -42.5 130t-127.5 32q-122 0 -191.5 -84t-69.5 -246q0 -154 72.5 -231.5t202.5 -77.5q135 0 278 90l74 -131q-79 -69 -185.5 -108.5 t-217.5 -39.5q-202 0 -329.5 130t-127.5 354z" />
+<glyph unicode="d" horiz-adv-x="1230" d="M84 442q0 115 30.5 210t91.5 167t160 112t228 40q133 0 211 -41q0 26 -1 103.5t-1 101.5q0 37 -1.5 58.5t-6.5 46t-15.5 37.5t-29 21.5t-45.5 8.5q-8 0 -29.5 -3t-26.5 -4v127q132 70 269 70q60 0 86 -35.5t26 -107.5q0 -34 -1 -212.5t-1 -244.5v-639q0 -57 18.5 -82.5 t61.5 -25.5q42 0 78 8v-142q-92 -32 -195 -32q-68 0 -105.5 28.5t-51.5 87.5q-116 -125 -310 -125q-203 0 -321.5 130.5t-118.5 336.5zM317 469q0 -148 74.5 -229.5t200.5 -81.5q59 0 118 18.5t95 48.5v527q-33 20 -87.5 31.5t-107.5 11.5q-137 0 -215 -85t-78 -241z" />
+<glyph unicode="e" horiz-adv-x="1046" d="M84 455q0 125 37 225t103 164.5t155 98.5t194 34t183 -31.5t123 -87t66.5 -123.5t21.5 -149q0 -92 -27 -123q-29 -25 -94 -25h-533v-16q0 -112 73 -186t208 -74q148 0 321 98l76 -133q-86 -73 -199 -114.5t-237 -41.5q-219 0 -345 134t-126 350zM317 596l433 8v23 q0 80 -46.5 127t-148.5 47q-95 0 -161.5 -50.5t-76.5 -154.5z" />
+<glyph unicode="f" horiz-adv-x="696" d="M43 762v125q65 13 109 41q27 20 38.5 46t14.5 81q7 134 44 219.5t109 140.5q34 26 81.5 45.5t93 28t85.5 8.5q114 0 187 -24q38 -15 55 -42.5t17 -72.5q0 -62 -15 -189h-133q-7 93 -30.5 122.5t-96.5 29.5q-36 0 -71.5 -16.5t-57.5 -49.5q-43 -65 -43 -231v-102 q146 0 246 -4v-148q-120 -8 -246 -8v-459q0 -103 21 -137q13 -14 48.5 -22t133.5 -11v-135q-184 4 -291 4q-97 0 -289 -4v135q117 7 142 35q14 16 14 100v494h-166z" />
+<glyph unicode="g" horiz-adv-x="1087" d="M14 -283q0 112 92 177q60 46 144 79q-96 44 -96 140q0 95 127 184q-199 89 -199 309q0 164 115.5 267.5t312.5 103.5q161 0 252 -55q194 0 301 -7v-145q-101 -8 -174 -8q17 -20 27 -62t10 -77q0 -176 -114.5 -273.5t-311.5 -97.5q-71 0 -101 6q-55 -35 -55 -74 q0 -16 21.5 -31.5t66.5 -23.5q43 -8 163 -24t198 -29q137 -24 195.5 -92.5t58.5 -184.5q0 -166 -145 -267t-386 -101q-247 0 -374.5 80.5t-127.5 205.5zM231 -236q0 -63 73 -108t233 -45q144 0 209 45t65 108q0 43 -41 72t-149 43q-226 32 -265 45q-69 -41 -97 -79t-28 -81z M307 621q0 -103 55 -151t148 -48q88 0 143.5 49.5t55.5 138.5q0 193 -203 193q-92 0 -145.5 -50.5t-53.5 -131.5z" />
+<glyph unicode="h" horiz-adv-x="1228" d="M41 1300v127q137 70 268 70q60 0 87.5 -35.5t27.5 -118.5q0 -68 -2 -237t-2 -281q65 67 162 106.5t192 39.5q125 0 191 -66q36 -36 51.5 -99.5t15.5 -172.5v-357q0 -78 12 -102q8 -16 38 -25t110 -16v-135q-172 4 -252 4q-86 0 -266 -4v135q100 7 119 33q18 18 18 115 v297q0 109 -32.5 152.5t-129.5 43.5q-121 0 -227 -61v-434q0 -99 16 -115q21 -24 117 -31v-135q-180 4 -254 4q-166 0 -258 -4v135q120 10 137 33q19 16 19 108v807q0 103 -6 146.5t-23 56.5q-26 23 -74 23q-6 0 -25 -3t-30 -4z" />
+<glyph unicode="i" horiz-adv-x="636" d="M53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 264 68q57 0 89 -32t32 -118q0 -78 -4 -262.5t-4 -273.5q0 -90 19 -115q20 -23 135 -31v-135q-176 4 -271 4q-170 0 -260 -4zM147 1317q0 63 40 104t104 41 q72 0 106.5 -38.5t34.5 -102.5t-39.5 -105.5t-107.5 -41.5q-61 0 -99.5 41.5t-38.5 101.5z" />
+<glyph unicode="j" horiz-adv-x="579" d="M-27 -446q140 72 183 157q39 77 39 316v594q0 93 -19.5 123t-85.5 30q-25 0 -53 -4v127q130 68 262 68q57 0 87 -31.5t30 -118.5q0 -79 2 -386t2 -392q0 -145 -14 -228.5t-58 -150.5q-47 -74 -138 -133.5t-187 -87.5zM131 1317q0 64 38.5 104.5t102.5 40.5 q73 0 108.5 -38.5t35.5 -102.5t-39 -105.5t-109 -41.5q-63 0 -100 41t-37 102z" />
+<glyph unicode="k" horiz-adv-x="1179" d="M53 1303v124q140 70 269 70q59 0 86.5 -33t27.5 -112q0 -41 -2 -149.5t-2 -172.5v-751q0 -89 21 -117q10 -13 38 -18.5t93 -10.5v-135q-176 4 -269 4q-168 0 -260 -4v135q117 10 140 33q14 14 14 108v846q0 35 -0.5 52.5t-2.5 41.5t-6 35.5t-11 25t-18 19t-27 9.5t-38 4 q-37 0 -53 -4zM453 479q96 75 192 168q94 89 94 129q0 20 -25 30t-100 13v129q102 -4 258 -4q158 0 252 4v-131q-65 0 -98 -18q-32 -14 -96.5 -69.5t-141.5 -127.5t-96 -88q133 -170 221 -258q79 -68 111 -86q21 -12 62 -23t77 -12v-135q-70 -4 -123 -4q-165 0 -258 78 q-34 28 -67.5 63t-73.5 85.5t-61 78.5t-68.5 95.5t-58.5 82.5z" />
+<glyph unicode="l" horiz-adv-x="636" d="M53 1303v124q137 70 269 70q59 0 86.5 -33t27.5 -112q0 -42 -2 -200t-2 -228v-645q0 -91 21 -115q20 -23 131 -31v-135q-176 4 -269 4q-168 0 -260 -4v135q117 10 140 33q14 14 14 108v762q0 124 -6.5 179.5t-24.5 72.5q-24 19 -72 19q-37 0 -53 -4z" />
+<glyph unicode="m" horiz-adv-x="1826" d="M53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 256 68q52 0 83.5 -30t35.5 -110q66 67 159 106.5t187 39.5q190 0 234 -152q71 69 168 110.5t190 41.5q130 0 193 -66q35 -36 50 -100t15 -172v-357q0 -77 14 -102 q10 -16 38.5 -25t107.5 -16v-135q-176 4 -254 4q-82 0 -258 -4v135q93 8 112 33q19 16 19 115v297q0 109 -32 152.5t-128 43.5q-107 0 -219 -61q4 -46 4 -84v-353q0 -84 10 -104q16 -29 129 -39v-135q-168 4 -233 4q-88 0 -264 -4v135q99 8 118 33q15 15 15 115v297 q0 117 -27 153q-37 43 -129 43q-108 0 -217 -61v-434q0 -98 19 -115q21 -24 116 -31v-135q-184 4 -241 4q-181 0 -271 -4z" />
+<glyph unicode="n" horiz-adv-x="1245" d="M53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 256 68q52 0 83.5 -30t35.5 -110q65 67 162 106.5t192 39.5q130 0 193 -66q37 -38 52 -99t15 -171v-359q0 -80 11 -102q10 -16 39 -25t108 -16v-135q-172 4 -252 4 q-92 0 -268 -4v135q101 8 121 31q18 15 18 117v297q0 109 -32 152.5t-128 43.5q-120 0 -229 -61v-434q0 -98 19 -117q10 -13 35 -18.5t87 -10.5v-135q-180 4 -258 4q-170 0 -260 -4z" />
+<glyph unicode="o" horiz-adv-x="1144" d="M84 469q0 233 139 370.5t363 137.5q239 0 357 -129.5t118 -358.5q0 -126 -38 -226t-105 -163t-155.5 -96t-191.5 -33q-240 0 -363.5 135t-123.5 363zM317 489q0 -179 65.5 -258t190.5 -79q256 0 256 321q0 169 -63 247.5t-191 78.5q-126 0 -192 -80t-66 -230z" />
+<glyph unicode="p" horiz-adv-x="1193" d="M33 768v129q130 68 256 68q25 0 43 -5t35.5 -18.5t28 -41.5t12.5 -69q64 62 150.5 104t180.5 42q97 0 169.5 -36t116.5 -101.5t65.5 -151.5t21.5 -192q0 -90 -20.5 -169t-63 -143.5t-104.5 -111t-147.5 -72t-188.5 -25.5q-50 0 -176 23v-221q0 -46 2 -72t7 -44.5 t15 -29.5q6 -6 13.5 -10t25.5 -9t52.5 -8.5t86.5 -6.5v-134q-235 5 -290 5q-54 0 -289 -5v134q33 3 50.5 4.5t37.5 6t28 7t17.5 13t11.5 16.5t5 25t3 32v44v1v872q0 110 -28 134q-30 20 -74 20q-21 0 -53 -4zM410 193q64 -29 192 -29q133 0 201.5 84t68.5 225 q0 311 -241 311q-54 0 -114 -21t-107 -54v-516z" />
+<glyph unicode="q" horiz-adv-x="1216" d="M84 442q0 254 135 394.5t404 140.5q231 0 409 -64q-4 -80 -4 -272v-895v-9v-41.5t3 -30.5t5 -24t11.5 -15.5t17 -11.5t27.5 -6.5t37 -6l51 -4.5v-134q-235 5 -287 5q-56 0 -291 -5v134q67 4 106 9.5t50.5 10.5t21.5 14q23 29 23 146q0 264 2 299q-104 -101 -281 -101 q-203 0 -321.5 130.5t-118.5 336.5zM317 469q0 -148 74.5 -227.5t200.5 -79.5q57 0 116.5 17.5t96.5 45.5v537q-71 35 -195 35q-137 0 -215 -85.5t-78 -242.5z" />
+<glyph unicode="r" horiz-adv-x="851" d="M53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 256 68q51 0 82.5 -29t36.5 -113q42 61 112 104.5t138 43.5q58 0 90.5 -24.5t32.5 -86.5q0 -64 -21 -190h-129q-10 59 -28 78.5t-54 19.5q-32 0 -71 -17t-68 -44v-426 q0 -95 21 -119q17 -22 159 -29v-135q-180 4 -297 4q-170 0 -260 -4z" />
+<glyph unicode="s" horiz-adv-x="948" d="M90 178q0 104 6 160h123q10 -64 25.5 -93.5t40.5 -47.5q56 -50 182 -50q164 0 164 93q0 33 -21 52.5t-78 41.5l-188 69q-134 51 -183.5 118.5t-49.5 164.5q0 128 104.5 209.5t306.5 81.5q144 0 232 -39q65 -30 65 -115q0 -82 -16 -176h-123q-7 60 -19 84.5t-34 40.5 q-47 29 -144 29q-153 0 -153 -92q0 -33 22.5 -52.5t87.5 -44.5l185 -69q136 -49 184.5 -114.5t48.5 -162.5q0 -140 -114 -217.5t-295 -77.5q-144 0 -244 35q-115 43 -115 172z" />
+<glyph unicode="t" horiz-adv-x="729" d="M31 762v125q53 12 106 35q39 20 56 59q13 38 40 156q15 69 101 69q84 0 84 -82v-202q130 0 244 -7v-145q-109 -8 -246 -8v-309q0 -148 6 -191q14 -104 117 -104q74 0 147 18l33 -135q-58 -32 -137.5 -49t-143.5 -17q-117 0 -182.5 62t-65.5 211q0 65 2.5 241.5t2.5 272.5 h-164z" />
+<glyph unicode="u" horiz-adv-x="1212" d="M27 768v129q128 68 258 68q60 0 90.5 -32t30.5 -120q0 -30 -2.5 -205.5t-2.5 -251.5q0 -105 40 -146.5t128 -41.5q125 0 226 70v380q0 112 -31 134q-27 20 -74 20q-21 0 -57 -4v129q125 68 270 68q56 0 87.5 -34t31.5 -124q0 -25 -4 -235.5t-4 -288.5q0 -79 17.5 -106 t70.5 -27q36 0 69 8v-140q-88 -36 -215 -36q-58 0 -100 30.5t-53 100.5q-133 -140 -332 -140q-79 0 -142 28.5t-96 80.5q-55 88 -55 246v290q0 117 -26 134q-26 20 -70 20q-7 0 -28 -2t-27 -2z" />
+<glyph unicode="v" horiz-adv-x="1128" d="M8 811v137q140 -4 299 -4q75 0 219 4v-137q-10 -1 -24.5 -2.5t-25 -2.5t-23.5 -3.5t-21.5 -6t-16.5 -9t-12 -14.5t-4 -21q0 -36 21 -86q35 -81 188 -451q138 358 178 453q2 5 5.5 14.5t5.5 16t5 15.5t5 16t3 15t1 15q0 16 -9 26t-26 14.5t-32 6t-37 2.5t-31 2v137 q132 -4 225 -4q91 0 217 4v-137q-74 -7 -94 -27q-12 -11 -23.5 -29t-18 -32t-24.5 -53l-276 -629q-29 -72 -115 -72q-92 0 -123 72l-272 629q-23 52 -38 78t-32 38q-20 17 -94 25z" />
+<glyph unicode="w" horiz-adv-x="1632" d="M25 811v137q92 -4 254 -4q170 0 272 4v-137q-150 0 -150 -57q0 -18 15 -80q92 -336 114 -418q85 266 213 612q14 40 40 62t79 22q44 0 67 -20.5t38 -61.5q87 -233 209 -620q3 10 118 422q17 70 17 82q0 36 -35 45q-39 9 -113 12v137q84 -4 252 -4q119 0 197 4v-137 q-30 -3 -47.5 -5t-33.5 -10t-22.5 -12t-16.5 -23.5t-14 -31t-16 -47.5l-207 -639q-22 -74 -110 -74q-94 0 -119 74q-158 465 -203 610q-71 -222 -221 -612q-28 -72 -113 -72q-96 0 -118 74l-201 647q-25 72 -41 90q-13 16 -34.5 22t-69.5 9z" />
+<glyph unicode="x" horiz-adv-x="1189" d="M33 0v133q55 1 79.5 9t47.5 24q27 19 76 74l213 245l-211 244q-47 51 -76 66q-40 16 -92 16v137q104 -4 256 -4q156 0 260 4v-137q-88 0 -88 -37q0 -22 37 -65l102 -121l94 117q31 45 31 71q0 18 -16.5 25t-71.5 10v137q84 -4 233 -4q137 0 205 4v-137q-69 -5 -102 -27 q-25 -15 -86 -82l-193 -219l221 -245q56 -63 86 -80q33 -22 117 -25v-133q-59 0 -162 1t-127 1q-155 0 -268 -2v133q63 3 83.5 13t20.5 30q0 16 -12.5 33.5t-48.5 56.5l-98 109l-80 -103q-32 -42 -42.5 -60t-10.5 -36q0 -41 112 -43v-133q-200 4 -264 4q-65 0 -225 -4z" />
+<glyph unicode="y" horiz-adv-x="1128" d="M10 811v137q136 -4 297 -4q79 0 223 4v-137q-12 -2 -28.5 -3.5t-31 -3t-24.5 -3.5q-26 -3 -35.5 -15.5t-9.5 -35.5q0 -32 29 -103q16 -37 50.5 -112t55 -121.5t48.5 -111t49 -118.5q14 43 147 439q33 109 33 137q0 16 -9 26.5t-26 14.5t-32.5 5.5t-38 2.5t-33.5 2v137 q132 -4 227 -4q91 0 217 4v-137q-70 -7 -90 -25q-10 -7 -17.5 -16t-17.5 -31t-15.5 -36.5t-21.5 -55.5l-235 -629q-67 -180 -105 -272t-75 -156q-87 -151 -256 -151q-98 0 -152.5 35.5t-54.5 119.5q0 53 12 127h129q7 -62 22.5 -85t63.5 -23q59 0 105 72q52 89 133 311 q-64 0 -101 82l-266 594q-44 96 -74 114q-22 17 -92 25z" />
+<glyph unicode="z" horiz-adv-x="999" d="M33 0v82l565 719q-200 0 -279 -6q-31 -3 -49 -12t-28 -29q-20 -38 -31 -127h-131q-14 124 -14 200q0 57 26 88t88 31h735v-90l-567 -709q70 -6 168 -6q152 0 215 23q19 6 37 25.5t27 43.5q25 45 41 117h122q0 -118 -14 -262q-10 -88 -127 -88h-784z" />
+<glyph unicode="{" horiz-adv-x="636" d="M33 549v104q118 10 152 72t34 238v245q0 87 18.5 151t62.5 116t126 79t201 27v-106q-136 0 -183 -59t-47 -230v-297q0 -140 -47 -199t-166 -88q76 -17 120 -44.5t68.5 -87t24.5 -157.5v-305q0 -151 49 -212.5t181 -61.5v-109q-216 0 -310 81t-94 263v293q0 146 -39 211.5 t-151 75.5z" />
+<glyph unicode="|" horiz-adv-x="542" d="M193 -375v1950h157v-1950h-157z" />
+<glyph unicode="}" horiz-adv-x="636" d="M23 -270q136 0 183.5 59.5t47.5 228.5v297q0 95 22.5 152.5t65.5 86.5t121 50q-113 23 -162 83.5t-49 205.5v303q0 152 -48.5 214.5t-180.5 62.5v108q214 0 307.5 -81.5t93.5 -264.5v-293q0 -145 40 -210.5t152 -74.5v-106q-62 -5 -98 -21.5t-56.5 -54.5t-27 -90 t-6.5 -141v-248q0 -69 -11 -122.5t-38.5 -101.5t-72.5 -79.5t-116.5 -49.5t-166.5 -18v105z" />
+<glyph unicode="~" horiz-adv-x="1234" d="M119 539q72 103 144 150.5t155 47.5q47 0 93.5 -16.5t143.5 -75.5q100 -63 158 -63q49 0 94.5 31t102.5 110l106 -107q-138 -200 -299 -200q-89 0 -196 69q-88 51 -125.5 67.5t-73.5 16.5q-57 0 -102.5 -33t-88.5 -110z" />
+<glyph unicode="&#xa1;" horiz-adv-x="606" d="M98 893q0 68 41.5 109.5t106.5 41.5q66 0 107.5 -40.5t41.5 -108.5q0 -66 -42 -108t-107 -42q-63 0 -105.5 42t-42.5 106zM115 -272q0 111 86 847h106q88 -780 88 -849q0 -64 -35.5 -102t-105.5 -38q-73 0 -106 41.5t-33 100.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1021" d="M121 449q0 200 104 329.5t281 157.5v217h108v-209q90 -3 172 -24q56 -16 83.5 -44t27.5 -79q0 -65 -16 -179h-133q-8 97 -41 123q-37 26 -93 29v-600q121 3 254 84l66 -123q-132 -116 -320 -135v-232h-108v230q-173 14 -279 134.5t-106 320.5zM344 463q0 -229 162 -281 v576q-76 -26 -119 -100t-43 -195z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1241" d="M63 0v147q138 25 206.5 107.5t68.5 230.5q0 8 -1 28t-1 32h-201v145h184q-38 176 -38 266q0 195 122.5 305.5t356.5 110.5q66 0 135 -10t106 -25q51 -18 72 -48t21 -89q0 -111 -15 -207h-125q-11 113 -43 154q-48 45 -166 45q-116 0 -169.5 -62t-53.5 -186 q0 -34 13.5 -132t15.5 -122h313v-145h-299v-25q0 -207 -174 -327q184 4 332 4q71 0 105.5 0.5t72 7t51 14t31 29.5t25 45.5t20.5 68.5h117q-5 -178 -27 -290q-15 -72 -123 -72h-932z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1212" d="M90 254l139 141q-88 107 -88 271q0 153 84 272l-135 139l115 119l135 -137q116 84 268 84q146 0 264 -84l134 137l114 -119l-133 -139q84 -106 84 -272q0 -154 -84 -269l135 -143l-116 -119l-134 141q-110 -81 -266 -81q-163 0 -266 79l-135 -141zM303 670 q0 -139 85.5 -230.5t219.5 -91.5q128 0 212.5 91t84.5 227q0 134 -85 225.5t-212 91.5q-132 0 -218.5 -89.5t-86.5 -223.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1351" d="M41 1204v137q115 -2 268 -2q203 0 309 2v-137q-62 -3 -95 -10.5t-41.5 -16.5t-8.5 -24q0 -38 62 -139q23 -39 88 -149.5t98 -168.5q28 51 60.5 107.5t73 125t60.5 103.5q50 82 50 127q0 24 -31 33.5t-109 11.5v137q90 -2 285 -2q115 0 199 2v-137q-69 -3 -101 -28 q-18 -13 -45 -52t-88 -135l-157 -248h225v-108h-291l-61 -98v-39h352v-109h-352v-119q0 -56 8 -84q10 -22 46.5 -33.5t137.5 -15.5v-137q-218 4 -305 4q-121 0 -309 -4v137q98 8 128 17t42 26q12 21 12 90v119h-336v109h336v39l-59 98h-277v108h209l-184 310 q-36 62 -53 86.5t-37 40.5q-30 20 -109 26z" />
+<glyph unicode="&#xa6;" horiz-adv-x="542" d="M193 -244v690h157v-690h-157zM193 752v692h157v-692h-157z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1009" d="M76 627q0 95 59.5 172t177.5 123q-64 61 -89 119t-25 130q0 58 22.5 111t66 97t117 70t166.5 26q129 0 213 -35q74 -29 74 -107q0 -70 -16 -180h-125q-6 58 -16 85.5t-31 45.5q-39 31 -105 31q-80 0 -119.5 -33t-39.5 -86q0 -55 32.5 -97.5t132.5 -123.5l129 -105 q141 -115 190.5 -190t49.5 -170q0 -83 -57.5 -162.5t-190.5 -136.5q88 -86 116 -145.5t28 -139.5q0 -139 -108 -232t-300 -93q-140 0 -227 41q-40 21 -58 47.5t-18 70.5q0 72 12 174h129q10 -95 53 -135q17 -14 51 -25.5t70 -11.5q88 0 133 35t45 94q0 51 -37 102t-143 148 l-180 162q-109 99 -145.5 170.5t-36.5 153.5zM272 690q0 -52 27.5 -94t101.5 -113l99 -94q8 -7 47.5 -41t60.5 -55q125 71 125 151q0 48 -32 100.5t-123 131.5l-103 88q-17 16 -49 41.5t-41 32.5q-113 -59 -113 -148z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M14 1268q0 49 32 81.5t85 32.5q51 0 82 -32.5t31 -81.5q0 -51 -32 -85t-85 -34q-47 0 -80 33.5t-33 85.5zM358 1268q0 48 32 81t83 33q50 0 81.5 -33t31.5 -81q0 -51 -32 -85t-85 -34q-47 0 -79 33.5t-32 85.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM188 694q0 -131 48.5 -250t132 -204.5t200 -136t246.5 -50.5 q168 0 307 84t218 229.5t79 321.5q0 179 -78 325.5t-217.5 231t-312.5 84.5q-175 0 -318 -84t-224 -229.5t-81 -321.5zM381 672q0 210 122 330t337 120q145 0 213 -30q65 -22 65 -80q0 -75 -14 -152h-105q-9 78 -28 101q-35 38 -137 38q-116 0 -191.5 -79t-75.5 -234 q0 -84 23 -146t62 -96.5t84.5 -50.5t97.5 -16q96 0 141 39q25 22 47 98h104q-3 -125 -18 -166q-18 -40 -84 -63q-92 -33 -211 -33q-199 0 -315.5 111.5t-116.5 308.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="727" d="M72 739q0 90 71 136.5t240 46.5q45 0 63 -2v45q0 66 -24.5 91t-87.5 25q-55 0 -84 -20q-20 -23 -25 -90h-92q-14 54 -14 110q0 63 63 88q74 31 172 31q154 0 207 -57q37 -42 37 -152q0 -22 -1 -126.5t-1 -110.5q0 -45 12.5 -63.5t38.5 -18.5q13 0 49 4v-96 q-66 -25 -129 -25q-83 0 -104 74q-35 -35 -84 -55.5t-100 -20.5q-85 0 -146 47t-61 139zM231 750q0 -40 29 -61t66 -21q57 0 123 32v123q-18 2 -66 2q-152 0 -152 -75z" />
+<glyph unicode="&#xab;" horiz-adv-x="958" d="M51 459q0 41 43 84l350 323l86 -80l-268 -323l266 -338l-90 -82l-352 336q-35 35 -35 80zM436 459q0 50 43 84l346 323l88 -80l-268 -323l264 -338l-88 -82l-352 336q-33 33 -33 80z" />
+<glyph unicode="&#xac;" horiz-adv-x="1234" d="M141 557v162h897v-567h-151v405h-746z" />
+<glyph unicode="&#xad;" horiz-adv-x="561" d="M57 422v168h441v-168h-441z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM188 694q0 -131 48.5 -250t132 -204.5t200 -136t246.5 -50.5 q168 0 307 84t218 229.5t79 321.5q0 179 -78 325.5t-217.5 231t-312.5 84.5q-175 0 -318 -84t-224 -229.5t-81 -321.5zM438 301v94q71 3 92 15q10 5 13.5 18.5t3.5 56.5v453q0 62 -10 70q-17 14 -99 16v92h281q147 0 217 -12q94 -17 142 -73t48 -146q0 -179 -172 -236 q81 -122 148 -184q33 -33 69 -53q28 -12 60 -15v-96q-3 0 -25.5 -1t-36.5 -1q-67 0 -110.5 17.5t-81.5 48.5q-45 36 -86.5 95.5t-104.5 166.5q-57 0 -75 2v-137q0 -66 10 -76q22 -19 100 -21v-94q-35 0 -116.5 1t-90.5 1q-17 0 -80 -1t-96 -1zM711 745q27 -2 71 -2 q172 0 172 134q0 78 -77 104q-31 10 -121 10h-45v-246z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M31 1133v147h536v-147h-536z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M84 1163q0 124 79 199.5t195 75.5q115 0 191 -71.5t76 -201.5q0 -123 -78 -195.5t-193 -72.5q-117 0 -193.5 70.5t-76.5 195.5zM190 1165q0 -76 44 -125t120 -49q79 0 123.5 48.5t44.5 123.5q0 80 -44.5 128t-123.5 48q-74 0 -119 -48t-45 -126z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1234" d="M160 0v158h913v-158h-913zM160 696v156h381v403h153v-403h379v-156h-379v-401h-153v401h-381z" />
+<glyph unicode="&#xb2;" horiz-adv-x="813" d="M59 860v111q242 186 335 287t93 190q0 127 -141 127q-73 0 -104 -27q-25 -29 -29 -102h-100q-13 89 -13 129q0 66 76 102q85 35 205 35q145 0 219 -63t74 -176q0 -116 -96 -230.5t-291 -238.5q28 0 101 2t91 2q60 0 87.5 5.5t39.5 22.5q17 24 29 78h92q-11 -167 -16 -199 q-11 -55 -95 -55h-557z" />
+<glyph unicode="&#xb3;" horiz-adv-x="813" d="M88 969q0 71 10 139h105q3 -68 30 -92q35 -35 127 -35q162 0 162 119q0 113 -164 119q-31 2 -96 2v125q61 0 96 4q64 10 96.5 43t32.5 82q0 46 -29 73t-89 27q-76 0 -115 -27q-28 -24 -33 -92h-100q-8 62 -8 117q0 70 61 94q32 17 91 31t124 14q283 0 283 -211 q0 -147 -178 -205q112 -15 163.5 -65t51.5 -135q0 -122 -93.5 -187t-259.5 -65q-118 0 -196 24q-72 29 -72 101z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M109 1122l178 287q36 58 59 77t55 19q34 0 64.5 -26t30.5 -62q0 -53 -72 -119l-246 -233z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1243" d="M66 768v129q128 68 258 68q60 0 90 -32t30 -120q0 -30 -2 -205.5t-2 -251.5q0 -105 40 -146.5t128 -41.5q125 0 226 70v380q0 112 -31 134q-27 20 -74 20q-21 0 -57 -4v129q125 68 270 68q56 0 87.5 -34t31.5 -124q0 -25 -4 -235.5t-4 -288.5q0 -79 17.5 -106t70.5 -27 q36 0 69 8v-140q-88 -36 -215 -36q-58 0 -100 30.5t-53 100.5q-58 -66 -123 -97.5t-156 -31.5q-36 0 -77 13.5t-62 39.5q27 -423 27 -432q0 -51 -30.5 -79t-86.5 -28q-66 0 -91.5 31t-25.5 82v1007q0 96 -16 125t-80 29q-7 0 -28 -2t-27 -2z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1128" d="M100 848q0 115 41.5 212t120 169.5t201.5 113.5t278 41h336v-139q-88 -3 -117.5 -8.5t-41.5 -19.5q-12 -13 -15.5 -43t-3.5 -99q0 -174 3 -413.5t3 -352.5q0 -250 -20 -399q-42 -325 -436 -436l-37 131q144 55 215 142.5t82 217.5q10 122 10 330v43q-23 -2 -70 -2 q-89 0 -169.5 19t-150.5 59.5t-120.5 100t-79.5 145t-29 188.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="450" d="M78 504q0 64 40.5 106.5t102.5 42.5q66 0 109 -40.5t43 -104.5q0 -71 -42 -112.5t-108 -41.5q-63 0 -104 42t-41 108z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M111 -467q109 23 160 55.5t51 87.5t-89 107q-40 21 -40 59q0 46 51 168h104q-31 -78 -31 -98q0 -34 37 -49q76 -42 105.5 -78.5t29.5 -91.5q0 -107 -97 -172t-261 -90z" />
+<glyph unicode="&#xb9;" horiz-adv-x="813" d="M156 1618q85 42 200 78q54 18 86 18q31 0 51.5 -20.5t20.5 -63.5q0 -30 -1 -114t-1 -146v-313q0 -62 12 -74q16 -20 133 -25v-100q-110 4 -233 4q-128 0 -242 -4v100q108 4 140 27q12 12 12 74v299q0 94 -6 141q-3 33 -33 33q-37 0 -111 -19z" />
+<glyph unicode="&#xba;" horiz-adv-x="802" d="M74 874q0 151 88.5 238.5t236.5 87.5q156 0 234 -83t78 -230q0 -160 -90 -247t-232 -87q-156 0 -235.5 87.5t-79.5 233.5zM236 887q0 -205 153 -205q158 0 158 192q0 105 -37 152t-115 47q-159 0 -159 -186z" />
+<glyph unicode="&#xbb;" horiz-adv-x="958" d="M45 123l268 323l-266 338l90 82l352 -336q35 -35 35 -81q0 -48 -45 -87l-348 -319zM426 123l270 323l-266 338l90 82l350 -336q35 -35 35 -81q0 -41 -43 -84l-348 -322z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1779" d="M129 1276q75 34 201 78q48 16 86 16q31 0 51 -20t20 -64q0 -30 -1 -113t-1 -145v-315q0 -58 13 -74q14 -18 133 -23v-102q-165 6 -234 6q-70 0 -241 -6v102q110 5 139 25q12 14 12 74v299q0 94 -6 143q-3 33 -33 33q-29 0 -110 -21zM528 23l594 1363l109 -43l-592 -1368z M918 223v92l333 455q35 48 62.5 66t77.5 18q37 0 62.5 -24.5t25.5 -79.5q0 -27 -1 -98.5t-1 -94.5v-201h133v-133h-133v-39q0 -50 10 -63q15 -22 117 -25v-98q-106 4 -230 4q-91 0 -205 -4v98q103 5 119 25q15 15 15 63v39h-385zM1073 350h230q0 182 4 322z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1779" d="M106 1276q75 34 201 78q48 16 86 16q31 0 51.5 -20t20.5 -64q0 -30 -1 -113t-1 -145v-315q0 -60 12 -74q14 -18 133 -23v-102q-165 6 -233 6q-71 0 -242 -6v102q110 5 139 25q13 16 13 74v299q0 94 -6 143q-3 33 -33 33t-111 -21zM498 23l594 1363l108 -43l-592 -1368z M997 0v111q242 186 335 287t93 190q0 127 -141 127q-73 0 -104 -27q-25 -29 -29 -102h-100q-13 89 -13 129q0 66 76 102q85 35 205 35q145 0 219 -63.5t74 -176.5q0 -116 -96 -230.5t-291 -238.5q28 0 101 2t91 2q59 0 87 6t40 23q17 24 29 78h92q-11 -167 -16 -199 q-11 -55 -95 -55h-557z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1779" d="M129 625q0 71 10 139h105q3 -65 30 -92q39 -35 127 -35q162 0 162 119q0 112 -164 118q-46 3 -96 3v124q52 0 96 5q64 12 96.5 44.5t32.5 79.5t-29 75t-89 28q-73 0 -115 -29q-27 -20 -33 -90h-100q-8 62 -8 117q0 70 61 94q94 43 215 43q283 0 283 -209 q0 -149 -178 -207q112 -13 163.5 -63t51.5 -137q0 -122 -93.5 -187t-259.5 -65q-124 0 -196 26t-72 99zM582 23l594 1363l108 -43l-592 -1368zM954 223v92l334 455q35 48 62 66t77 18q37 0 63 -24.5t26 -79.5q0 -27 -1.5 -98.5t-1.5 -94.5v-201h134v-133h-134v-39 q0 -49 11 -63q15 -22 116 -25v-98q-106 4 -229 4q-91 0 -205 -4v98q103 5 119 25q14 14 14 63v39h-385zM1110 350h229q0 182 4 322z" />
+<glyph unicode="&#xbf;" horiz-adv-x="915" d="M27 -57q0 125 63 214t223 171q77 39 103.5 64.5t32.5 80.5q2 16 10 113h114q19 -152 19 -224q0 -56 -34.5 -91t-98.5 -66q-185 -92 -185 -242q0 -196 179 -196q107 0 145 30q35 28 41 140h137q19 -102 19 -166q0 -52 -32.5 -88.5t-89 -54t-113 -24.5t-122.5 -7 q-212 1 -311.5 93t-99.5 253zM362 893q0 71 40.5 112.5t105.5 41.5t107 -42t42 -108q0 -65 -42 -108.5t-105 -43.5q-65 0 -106.5 41t-41.5 107z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1492" d="M10 -2v137q100 3 140 37q21 18 39 52.5t51 121.5l360 948q47 125 158 125q57 0 92 -28t57 -88l371 -1000q25 -65 41 -93t41 -48q32 -24 123 -27v-137q-164 4 -273 4q-180 0 -360 -4v137q94 4 135 19q43 12 43 51q0 45 -27 119l-53 139h-467l-49 -129q-31 -81 -31 -127 q0 -38 31 -49q48 -19 156 -23v-137q-164 4 -330 4q-92 0 -248 -4zM473 1774q0 38 26 65t60 27q29 0 54 -14.5t69 -59.5l242 -252l-60 -70l-301 189q-90 58 -90 115zM530 639h359q-16 49 -93.5 263.5t-84.5 240.5q-7 -23 -43 -123.5t-80.5 -223t-57.5 -157.5z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1492" d="M10 -2v137q100 3 140 37q21 18 39 52.5t51 121.5l360 948q47 125 158 125q57 0 92 -28t57 -88l371 -1000q25 -65 41 -93t41 -48q32 -24 123 -27v-137q-164 4 -273 4q-180 0 -360 -4v137q94 4 135 19q43 12 43 51q0 45 -27 119l-53 139h-467l-49 -129q-31 -81 -31 -127 q0 -38 31 -49q48 -19 156 -23v-137q-164 4 -330 4q-92 0 -248 -4zM530 639h359q-16 49 -93.5 263.5t-84.5 240.5q-7 -23 -43 -123.5t-80.5 -223t-57.5 -157.5zM575 1538l242 252q42 45 67.5 59.5t55.5 14.5q35 0 60.5 -27t25.5 -65q0 -57 -90 -115l-301 -189z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1492" d="M10 -2v137q100 3 140 37q21 18 39 52.5t51 121.5l360 948q47 125 158 125q57 0 92 -28t57 -88l371 -1000q25 -65 41 -93t41 -48q32 -24 123 -27v-137q-164 4 -273 4q-180 0 -360 -4v137q94 4 135 19q43 12 43 51q0 45 -27 119l-53 139h-467l-49 -129q-31 -81 -31 -127 q0 -38 31 -49q48 -19 156 -23v-137q-164 4 -330 4q-92 0 -248 -4zM438 1526l240 274q46 49 84 49q49 0 86 -49l231 -272l-67 -64l-256 193l-256 -193zM530 639h359q-16 49 -93.5 263.5t-84.5 240.5q-7 -23 -43 -123.5t-80.5 -223t-57.5 -157.5z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1492" d="M10 -2v137q100 3 140 37q21 18 39 52.5t51 121.5l360 948q47 125 158 125q57 0 92 -28t57 -88l371 -1000q25 -65 41 -93t41 -48q32 -24 123 -27v-137q-164 4 -273 4q-180 0 -360 -4v137q94 4 135 19q43 12 43 51q0 45 -27 119l-53 139h-467l-49 -129q-31 -81 -31 -127 q0 -38 31 -49q48 -19 156 -23v-137q-164 4 -330 4q-92 0 -248 -4zM424 1528q17 65 40.5 115t63 87t86.5 37q34 0 119 -32l70 -29q68 -27 96 -27q27 0 48.5 25t47.5 82l86 -27q-27 -115 -71 -178t-103 -63q-55 0 -139 34l-68 29q-50 23 -86 23q-34 0 -55.5 -22t-52.5 -81z M530 639h359q-16 49 -93.5 263.5t-84.5 240.5q-7 -23 -43 -123.5t-80.5 -223t-57.5 -157.5z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1492" d="M10 -2v137q100 3 140 37q21 18 39 52.5t51 121.5l360 948q47 125 158 125q57 0 92 -28t57 -88l371 -1000q25 -65 41 -93t41 -48q32 -24 123 -27v-137q-164 4 -273 4q-180 0 -360 -4v137q94 4 135 19q43 12 43 51q0 45 -27 119l-53 139h-467l-49 -129q-31 -81 -31 -127 q0 -38 31 -49q48 -19 156 -23v-137q-164 4 -330 4q-92 0 -248 -4zM453 1638q0 47 31.5 81t82.5 34q50 0 82.5 -34t32.5 -81q0 -50 -32.5 -84t-84.5 -34q-50 0 -81 33t-31 85zM530 639h359q-16 49 -93.5 263.5t-84.5 240.5q-7 -23 -43 -123.5t-80.5 -223t-57.5 -157.5z M819 1638q0 47 33 81t84 34q48 0 80.5 -34t32.5 -81q0 -50 -32.5 -84t-82.5 -34t-82.5 33t-32.5 85z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1492" d="M10 -2v137q100 3 140 37q21 18 39 52.5t51 121.5l360 948q47 125 158 125q57 0 92 -28t57 -88l371 -1000q25 -65 41 -93t41 -48q32 -24 123 -27v-137q-164 4 -273 4q-180 0 -360 -4v137q94 4 135 19q43 12 43 51q0 45 -27 119l-53 139h-467l-49 -129q-31 -81 -31 -127 q0 -38 31 -49q48 -19 156 -23v-137q-164 4 -330 4q-92 0 -248 -4zM530 639h359q-16 49 -93.5 263.5t-84.5 240.5q-7 -23 -43 -123.5t-80.5 -223t-57.5 -157.5zM561 1640q0 82 57 137.5t136 55.5q86 0 139 -52t53 -136t-56 -139.5t-138 -55.5q-80 0 -135.5 53t-55.5 137z M651 1645q0 -50 28 -80.5t73 -30.5q46 0 74 29t28 82q0 51 -29.5 78.5t-72.5 27.5q-42 0 -71.5 -28t-29.5 -78z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2099" d="M14 -2v137q116 3 162 37q30 24 56 57.5t61 87.5l500 777q38 58 38 102q0 13 -7 22.5t-20.5 15t-28 9t-35.5 4.5t-37.5 1.5t-38 0.5h-33.5v135h1188q139 0 139 -102q0 -63 -21 -256h-139q-9 72 -21 106.5t-30 45.5q-19 15 -60 20.5t-137 5.5h-229v-411h115q29 0 48.5 1 t37.5 3t29.5 5.5t21 9.5t16.5 15q29 32 39 119h127q-2 -51 -2 -231q0 -152 2 -236h-121q-4 30 -7.5 48t-9.5 36t-11.5 27t-17.5 18t-23 12.5t-32.5 6.5t-42.5 3.5t-56 0.5h-113v-359q0 -44 12 -64t43 -24q55 -8 176 -8q87 0 144.5 7t86.5 18.5t48 29.5q34 32 74 158h129 q-4 -239 -37 -321q-24 -68 -174 -68h-924v135q7 0 26.5 1.5t27 2t24.5 2.5t24.5 4t20.5 5t19.5 7.5t14 11t11.5 14.5t6 18q4 23 4 108v164h-465l-104 -158q-47 -73 -47 -118q0 -48 77 -57q19 -3 99 -5v-137q-200 4 -322 4q-105 0 -301 -4zM713 647h364v522q0 29 -14 29 q-10 0 -18 -8t-19 -29q-62 -110 -313 -514z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1382" d="M90 668q0 350 198 549.5t541 199.5q224 0 338 -49q105 -44 105 -131q0 -78 -25 -244h-139q-11 135 -45 174q-58 64 -246 64q-96 0 -179.5 -33t-149.5 -97.5t-104 -170.5t-38 -242q0 -114 27 -205.5t71.5 -150.5t106 -98.5t127.5 -56.5t139 -17q174 0 248 63q42 45 80 166 h141q-6 -194 -33 -258q-23 -72 -131 -108q-138 -52 -338 -52h-6q-16 -43 -16 -65q0 -33 39 -49q79 -44 110 -82t31 -97q0 -113 -102 -181t-273 -91l-22 105q114 24 167.5 58.5t53.5 90.5q0 64 -90 111q-43 24 -43 65q0 52 39 141q-271 31 -426.5 210t-155.5 481z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1261" d="M57 0v135q141 8 166 33q13 11 16 37.5t3 93.5v795q0 100 -13 118q-13 17 -46.5 24t-125.5 13v135h926q139 0 139 -102q0 -73 -20 -256h-139q-16 130 -52 152q-43 32 -196 32h-230v-417h113q73 0 106 6.5t50 27.5q29 32 39 119h127q-2 -51 -2 -231q0 -152 2 -236h-121 q-5 34 -9.5 53.5t-10 38.5t-16.5 28t-22.5 17t-34.5 10.5t-46.5 3.5t-63.5 1h-111v-359q0 -44 12.5 -63.5t43.5 -24.5q53 -8 176 -8q126 0 187.5 14t90.5 41q34 32 74 158h129q-4 -239 -37 -321q-10 -32 -57.5 -50t-116.5 -18h-930zM336 1772q0 38 26 65t60 27 q29 0 54 -14.5t69 -59.5l241 -252l-59 -70l-301 189q-90 58 -90 115z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1261" d="M57 0v135q141 8 166 33q13 11 16 37.5t3 93.5v795q0 100 -13 118q-13 17 -46.5 24t-125.5 13v135h926q139 0 139 -102q0 -73 -20 -256h-139q-16 130 -52 152q-43 32 -196 32h-230v-417h113q73 0 106 6.5t50 27.5q29 32 39 119h127q-2 -51 -2 -231q0 -152 2 -236h-121 q-5 34 -9.5 53.5t-10 38.5t-16.5 28t-22.5 17t-34.5 10.5t-46.5 3.5t-63.5 1h-111v-359q0 -44 12.5 -63.5t43.5 -24.5q53 -8 176 -8q126 0 187.5 14t90.5 41q34 32 74 158h129q-4 -239 -37 -321q-10 -32 -57.5 -50t-116.5 -18h-930zM459 1538l241 252q42 45 67.5 59.5 t55.5 14.5q35 0 60.5 -27t25.5 -65q0 -57 -90 -115l-301 -189z" />
+<glyph unicode="&#xca;" horiz-adv-x="1261" d="M57 0v135q141 8 166 33q13 11 16 37.5t3 93.5v795q0 100 -13 118q-13 17 -46.5 24t-125.5 13v135h926q139 0 139 -102q0 -73 -20 -256h-139q-16 130 -52 152q-43 32 -196 32h-230v-417h113q73 0 106 6.5t50 27.5q29 32 39 119h127q-2 -51 -2 -231q0 -152 2 -236h-121 q-5 34 -9.5 53.5t-10 38.5t-16.5 28t-22.5 17t-34.5 10.5t-46.5 3.5t-63.5 1h-111v-359q0 -44 12.5 -63.5t43.5 -24.5q53 -8 176 -8q126 0 187.5 14t90.5 41q34 32 74 158h129q-4 -239 -37 -321q-10 -32 -57.5 -50t-116.5 -18h-930zM311 1526l240 274q46 49 84 49 q49 0 86 -49l231 -272l-67 -64l-256 193l-256 -193z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1261" d="M57 0v135q141 8 166 33q13 11 16 37.5t3 93.5v795q0 100 -13 118q-13 17 -46.5 24t-125.5 13v135h926q139 0 139 -102q0 -73 -20 -256h-139q-16 130 -52 152q-43 32 -196 32h-230v-417h113q73 0 106 6.5t50 27.5q29 32 39 119h127q-2 -51 -2 -231q0 -152 2 -236h-121 q-5 34 -9.5 53.5t-10 38.5t-16.5 28t-22.5 17t-34.5 10.5t-46.5 3.5t-63.5 1h-111v-359q0 -44 12.5 -63.5t43.5 -24.5q53 -8 176 -8q126 0 187.5 14t90.5 41q34 32 74 158h129q-4 -239 -37 -321q-10 -32 -57.5 -50t-116.5 -18h-930zM346 1640q0 47 32 81t83 34q50 0 82 -34 t32 -81q0 -50 -32 -84t-84 -34q-50 0 -81.5 33t-31.5 85zM713 1640q0 47 32.5 81t83.5 34q48 0 80.5 -34t32.5 -81q0 -50 -32.5 -84t-82.5 -34t-82 33t-32 85z" />
+<glyph unicode="&#xcc;" horiz-adv-x="727" d="M57 -2v137q145 7 166 35q19 16 19 129v797q0 101 -17 118q-9 15 -44.5 23t-123.5 12v137q198 -6 301 -6q58 0 310 6v-137q-90 -4 -124 -13t-44 -24q-15 -21 -15 -118v-791q0 -108 15 -129q14 -16 48 -25.5t120 -13.5v-137q-176 4 -306 4q-125 0 -305 -4zM86 1772 q0 38 26 65t60 27q29 0 54 -14.5t69 -59.5l242 -252l-60 -70l-301 189q-90 58 -90 115z" />
+<glyph unicode="&#xcd;" horiz-adv-x="727" d="M57 -2v137q145 7 166 35q19 16 19 129v797q0 101 -17 118q-9 15 -44.5 23t-123.5 12v137q198 -6 301 -6q58 0 310 6v-137q-90 -4 -124 -13t-44 -24q-15 -21 -15 -118v-791q0 -108 15 -129q14 -16 48 -25.5t120 -13.5v-137q-176 4 -306 4q-125 0 -305 -4zM174 1538 l242 252q42 45 67.5 59.5t55.5 14.5q35 0 60.5 -27t25.5 -65q0 -57 -90 -115l-302 -189z" />
+<glyph unicode="&#xce;" horiz-adv-x="727" d="M47 1526l240 274q46 49 84 49q49 0 86 -49l231 -272l-67 -64l-256 193l-256 -193zM57 -2v137q145 7 166 35q19 16 19 129v797q0 101 -17 118q-9 15 -44.5 23t-123.5 12v137q198 -6 301 -6q58 0 310 6v-137q-90 -4 -124 -13t-44 -24q-15 -21 -15 -118v-791q0 -108 15 -129 q14 -16 48 -25.5t120 -13.5v-137q-176 4 -306 4q-125 0 -305 -4z" />
+<glyph unicode="&#xcf;" horiz-adv-x="727" d="M57 -2v137q145 7 166 35q19 16 19 129v797q0 101 -17 118q-9 15 -44.5 23t-123.5 12v137q198 -6 301 -6q58 0 310 6v-137q-90 -4 -124 -13t-44 -24q-15 -21 -15 -118v-791q0 -108 15 -129q14 -16 48 -25.5t120 -13.5v-137q-176 4 -306 4q-125 0 -305 -4zM70 1640 q0 47 31.5 81t82.5 34q50 0 82.5 -34t32.5 -81q0 -50 -32.5 -84t-84.5 -34q-50 0 -81 33t-31 85zM436 1640q0 47 33 81t84 34q48 0 80.5 -34t32.5 -81q0 -50 -32.5 -84t-82.5 -34t-82.5 33t-32.5 85z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1490" d="M49 659v132h193v303q0 91 -9 112q-12 24 -43 31t-133 12v135h381q308 0 459 -24t250 -84q254 -158 254 -557q0 -433 -285 -606q-180 -113 -549 -113h-510v135q144 5 166 33q11 13 15 36.5t4 84.5v370h-193zM485 266q0 -31 9.5 -47.5t33.5 -23.5q53 -19 142 -19 q237 0 354 129t117 397q0 350 -217 445q-125 53 -330 53h-109v-409h357v-132h-357v-393z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1542" d="M49 1249v137q90 -4 270 -4q121 0 193 4q552 -813 666 -1001q-4 125 -7.5 372.5t-5.5 280.5q-5 145 -18 172q-24 34 -174 39v137q218 -4 284 -4q49 0 267 4v-137q-82 -4 -112.5 -11.5t-49.5 -23.5q-14 -12 -18.5 -47t-4.5 -129q-2 -147 -2 -587q0 -42 1 -177t1 -176 q0 -60 -27.5 -89t-90.5 -29q-78 0 -129 77q-666 1013 -682 1039q1 -120 3 -297t3.5 -303.5t1.5 -149.5q2 -97 5 -130t13 -46q14 -15 48 -22t126 -13v-137q-222 4 -280 4q-69 0 -277 -4v137q91 4 128 13.5t48 27.5q13 26 13 172q6 339 6 688q0 140 -15 164q-16 31 -63 39 q-48 10 -121 10zM479 1528q27 102 74.5 170.5t116.5 68.5q33 0 118 -32l70 -29q67 -27 96 -27q27 0 49 25.5t48 81.5l86 -27q-27 -115 -71 -178t-103 -63q-56 0 -140 34l-67 29q-50 23 -86 23q-34 0 -56 -22t-53 -81z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q334 0 492.5 -183t158.5 -517q0 -185 -51.5 -329t-143 -233.5t-211.5 -135.5t-263 -46q-166 0 -294 52t-209 147.5t-122 225.5t-41 290zM348 715q0 -292 107 -423.5t305 -131.5q196 0 300.5 137.5t104.5 402.5 q0 277 -100 404t-303 127q-199 0 -306.5 -137t-107.5 -379zM473 1772q0 38 26 65t60 27q29 0 54 -14.5t69 -59.5l242 -252l-60 -70l-301 189q-90 58 -90 115z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q334 0 492.5 -183t158.5 -517q0 -185 -51.5 -329t-143 -233.5t-211.5 -135.5t-263 -46q-166 0 -294 52t-209 147.5t-122 225.5t-41 290zM348 715q0 -292 107 -423.5t305 -131.5q196 0 300.5 137.5t104.5 402.5 q0 277 -100 404t-303 127q-199 0 -306.5 -137t-107.5 -379zM578 1538l241 252q42 45 67.5 59.5t55.5 14.5q35 0 60.5 -27t25.5 -65q0 -57 -90 -115l-301 -189z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q334 0 492.5 -183t158.5 -517q0 -185 -51.5 -329t-143 -233.5t-211.5 -135.5t-263 -46q-166 0 -294 52t-209 147.5t-122 225.5t-41 290zM348 715q0 -292 107 -423.5t305 -131.5q196 0 300.5 137.5t104.5 402.5 q0 277 -100 404t-303 127q-199 0 -306.5 -137t-107.5 -379zM449 1526l239 274q46 49 84 49q49 0 86 -49l232 -272l-68 -64l-256 193l-256 -193z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q334 0 492.5 -183t158.5 -517q0 -185 -51.5 -329t-143 -233.5t-211.5 -135.5t-263 -46q-166 0 -294 52t-209 147.5t-122 225.5t-41 290zM348 715q0 -292 107 -423.5t305 -131.5q196 0 300.5 137.5t104.5 402.5 q0 277 -100 404t-303 127q-199 0 -306.5 -137t-107.5 -379zM432 1528q27 102 74.5 170.5t116.5 68.5q33 0 118 -32l70 -29q68 -27 96 -27q27 0 49 25.5t48 81.5l86 -27q-27 -115 -71.5 -178t-103.5 -63q-55 0 -139 34l-67 29q-50 23 -86 23q-34 0 -56 -22t-53 -81z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q334 0 492.5 -183t158.5 -517q0 -185 -51.5 -329t-143 -233.5t-211.5 -135.5t-263 -46q-166 0 -294 52t-209 147.5t-122 225.5t-41 290zM348 715q0 -292 107 -423.5t305 -131.5q196 0 300.5 137.5t104.5 402.5 q0 277 -100 404t-303 127q-199 0 -306.5 -137t-107.5 -379zM473 1640q0 47 32 81t83 34q50 0 82 -34t32 -81q0 -50 -32 -84t-84 -34q-50 0 -81.5 33t-31.5 85zM840 1640q0 47 32.5 81t83.5 34q48 0 80.5 -34t32.5 -81q0 -50 -32.5 -84t-82.5 -34t-82 33t-32 85z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1204" d="M199 961l108 112l297 -313l291 315l104 -106l-292 -320l297 -319l-107 -113l-295 313l-295 -313l-104 107l297 321z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1517" d="M90 686q0 169 49.5 306.5t139.5 230t216.5 142.5t278.5 50q209 0 359 -78l112 158l101 -72l-113 -157q192 -178 192 -551q0 -185 -51.5 -329t-143 -233.5t-211.5 -135.5t-263 -46q-226 0 -379 95l-115 -160l-100 69l119 166q-191 188 -191 545zM348 715q0 -242 74 -375 l586 821q-93 72 -246 72q-199 0 -306.5 -138t-107.5 -380zM502 242q97 -84 258 -84q196 0 300.5 138t104.5 404q0 236 -75 365z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1579" d="M43 1249v137q164 -4 291 -4q178 0 338 4v-137q-93 -3 -129.5 -11.5t-48.5 -25.5q-16 -23 -19 -104q-2 -109 -2 -471q0 -229 35 -322q59 -157 315 -157q103 0 184 31t119 87q39 59 51.5 147t12.5 228q0 283 -8 439q-3 65 -8.5 92t-18.5 37q-17 14 -51.5 19.5t-114.5 10.5 v137q76 -2 297 -2q20 0 116.5 1t135.5 1v-137q-92 -6 -128 -16t-44 -29q-12 -24 -12 -131v-463q0 -190 -26.5 -297t-88.5 -182q-66 -80 -186.5 -121t-270.5 -41q-171 0 -295.5 51t-181.5 142q-44 68 -62 166.5t-18 300.5q0 103 3 267t3 198q0 88 -14 112q-11 20 -47.5 29.5 t-126.5 13.5zM516 1772q0 38 26 65t60 27q29 0 54 -14.5t69 -59.5l242 -252l-60 -70l-301 189q-90 58 -90 115z" />
+<glyph unicode="&#xda;" horiz-adv-x="1579" d="M43 1249v137q164 -4 291 -4q178 0 338 4v-137q-93 -3 -129.5 -11.5t-48.5 -25.5q-16 -23 -19 -104q-2 -109 -2 -471q0 -229 35 -322q59 -157 315 -157q103 0 184 31t119 87q39 59 51.5 147t12.5 228q0 283 -8 439q-3 65 -8.5 92t-18.5 37q-17 14 -51.5 19.5t-114.5 10.5 v137q76 -2 297 -2q20 0 116.5 1t135.5 1v-137q-92 -6 -128 -16t-44 -29q-12 -24 -12 -131v-463q0 -190 -26.5 -297t-88.5 -182q-66 -80 -186.5 -121t-270.5 -41q-171 0 -295.5 51t-181.5 142q-44 68 -62 166.5t-18 300.5q0 103 3 267t3 198q0 88 -14 112q-11 20 -47.5 29.5 t-126.5 13.5zM649 1538l242 252q42 45 67.5 59.5t55.5 14.5q35 0 60.5 -27t25.5 -65q0 -57 -90 -115l-301 -189z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1579" d="M43 1249v137q164 -4 291 -4q178 0 338 4v-137q-93 -3 -129.5 -11.5t-48.5 -25.5q-16 -23 -19 -104q-2 -109 -2 -471q0 -229 35 -322q59 -157 315 -157q103 0 184 31t119 87q39 59 51.5 147t12.5 228q0 283 -8 439q-3 65 -8.5 92t-18.5 37q-17 14 -51.5 19.5t-114.5 10.5 v137q76 -2 297 -2q20 0 116.5 1t135.5 1v-137q-92 -6 -128 -16t-44 -29q-12 -24 -12 -131v-463q0 -190 -26.5 -297t-88.5 -182q-66 -80 -186.5 -121t-270.5 -41q-171 0 -295.5 51t-181.5 142q-44 68 -62 166.5t-18 300.5q0 103 3 267t3 198q0 88 -14 112q-11 20 -47.5 29.5 t-126.5 13.5zM473 1526l240 274q46 49 84 49q49 0 86 -49l231 -272l-67 -64l-256 193l-256 -193z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1579" d="M43 1249v137q164 -4 291 -4q178 0 338 4v-137q-93 -3 -129.5 -11.5t-48.5 -25.5q-16 -23 -19 -104q-2 -109 -2 -471q0 -229 35 -322q59 -157 315 -157q103 0 184 31t119 87q39 59 51.5 147t12.5 228q0 283 -8 439q-3 65 -8.5 92t-18.5 37q-17 14 -51.5 19.5t-114.5 10.5 v137q76 -2 297 -2q20 0 116.5 1t135.5 1v-137q-92 -6 -128 -16t-44 -29q-12 -24 -12 -131v-463q0 -190 -26.5 -297t-88.5 -182q-66 -80 -186.5 -121t-270.5 -41q-171 0 -295.5 51t-181.5 142q-44 68 -62 166.5t-18 300.5q0 103 3 267t3 198q0 88 -14 112q-11 20 -47.5 29.5 t-126.5 13.5zM506 1640q0 47 32 81t83 34q50 0 82 -34t32 -81q0 -50 -32.5 -84t-84.5 -34q-50 0 -81 33t-31 85zM872 1640q0 47 33 81t84 34q48 0 80.5 -34t32.5 -81q0 -50 -32.5 -84t-82.5 -34t-82.5 33t-32.5 85z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1325" d="M10 1249v137q234 -4 279 -4q99 0 307 4v-137q-92 -3 -119.5 -15.5t-27.5 -39.5q0 -42 38 -100q54 -90 218 -379q88 150 225 391q37 60 37 94q0 25 -29.5 36.5t-118.5 12.5v137q96 -4 299 -4q111 0 197 4v-137q-63 -3 -98 -30q-31 -24 -111 -152l-326 -512v-279 q0 -79 8 -98t46 -29t141 -14v-137q-222 4 -309 4q-114 0 -318 -4v137q101 6 131.5 13.5t42.5 23.5q13 21 13 104v277l-324 534q-8 14 -21.5 36t-19 31t-14.5 22.5t-14.5 20t-12.5 13.5t-14 11q-37 23 -105 28zM547 1538l241 252q42 45 67.5 59.5t55.5 14.5q35 0 60.5 -27 t25.5 -65q0 -57 -90 -115l-301 -189z" />
+<glyph unicode="&#xde;" horiz-adv-x="1249" d="M57 -2v137q87 4 121 12t45 23q11 9 15 35.5t4 93.5v797q0 101 -17 118q-9 15 -44.5 23t-123.5 12v137q198 -6 301 -6q58 0 310 6v-137q-95 -4 -127 -10.5t-43 -21.5q-13 -19 -13 -80v-27h58q206 0 319 -20q160 -30 239 -121.5t79 -231.5q0 -221 -144.5 -327.5 t-404.5 -106.5q-99 0 -146 4v-39q0 -77 15 -96q30 -30 182 -37v-137q-176 4 -320 4q-125 0 -305 -4zM485 467q31 -2 101 -2q60 0 106 5.5t92.5 21.5t76.5 43.5t48.5 74t18.5 109.5q0 57 -19 98t-50 64.5t-80 37.5t-98.5 18.5t-117.5 4.5h-78v-475z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1257" d="M43 762v125q103 24 131 61q25 21 31 90q10 144 42.5 225.5t90.5 137.5q62 60 150.5 87.5t170.5 27.5q182 0 273.5 -78.5t91.5 -204.5q0 -148 -137 -275q-63 -57 -85 -88.5t-22 -56.5q0 -39 45 -76q28 -26 97 -77.5t112 -88.5q76 -63 104.5 -126.5t28.5 -139.5 q0 -155 -100 -244.5t-283 -89.5q-110 0 -198 39q-66 34 -66 127t8 156h111q18 -88 53 -115q36 -28 105 -28q62 0 101.5 30t39.5 84q0 78 -86 148q-136 105 -203 163q-86 75 -86 173t103 204q69 71 104 124.5t35 113.5q0 68 -45 107.5t-123 39.5q-31 0 -56.5 -5.5t-45 -19.5 t-34.5 -27.5t-26 -39t-19 -45t-13 -54t-7.5 -56.5t-4 -63.5t-1.5 -64v-67.5v-8v-613q0 -80 8 -276q-86 4 -149 4q-96 0 -236 -4v135q110 3 140 33q16 21 16 102v494h-166z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1073" d="M78 262q0 56 14.5 99.5t48 79.5t87.5 59.5t135.5 36t189.5 12.5q77 0 106 -4v63q0 98 -24 135q-33 56 -152 56q-98 0 -139 -35q-35 -25 -41 -137h-133q-18 97 -18 170q0 93 100 133q118 47 256 47q233 0 311 -92q60 -66 60 -226q0 -31 -1 -203t-1 -180q0 -73 19 -99.5 t62 -26.5q39 0 78 8v-142q-85 -32 -188 -32q-29 0 -52 4.5t-46.5 15.5t-41 35t-26.5 59q-115 -121 -285 -121q-61 0 -116 17t-101.5 50.5t-74 89.5t-27.5 128zM256 1415q0 37 30.5 63.5t65.5 26.5q30 0 54 -19t61 -77l178 -287l-74 -57l-245 233q-70 65 -70 117zM305 279 q0 -70 44.5 -99.5t109.5 -29.5q114 0 200 59v182q-44 6 -108 6q-137 0 -191.5 -30t-54.5 -88z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1073" d="M78 262q0 56 14.5 99.5t48 79.5t87.5 59.5t135.5 36t189.5 12.5q77 0 106 -4v63q0 98 -24 135q-33 56 -152 56q-98 0 -139 -35q-35 -25 -41 -137h-133q-18 97 -18 170q0 93 100 133q118 47 256 47q233 0 311 -92q60 -66 60 -226q0 -31 -1 -203t-1 -180q0 -73 19 -99.5 t62 -26.5q39 0 78 8v-142q-85 -32 -188 -32q-29 0 -52 4.5t-46.5 15.5t-41 35t-26.5 59q-115 -121 -285 -121q-61 0 -116 17t-101.5 50.5t-74 89.5t-27.5 128zM305 279q0 -70 44.5 -99.5t109.5 -29.5q114 0 200 59v182q-44 6 -108 6q-137 0 -191.5 -30t-54.5 -88zM385 1122 l178 287q36 58 59.5 77t55.5 19q34 0 64 -25.5t30 -62.5q0 -53 -72 -119l-245 -233z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1073" d="M78 262q0 56 14.5 99.5t48 79.5t87.5 59.5t135.5 36t189.5 12.5q77 0 106 -4v63q0 98 -24 135q-33 56 -152 56q-98 0 -139 -35q-35 -25 -41 -137h-133q-18 97 -18 170q0 93 100 133q118 47 256 47q233 0 311 -92q60 -66 60 -226q0 -31 -1 -203t-1 -180q0 -73 19 -99.5 t62 -26.5q39 0 78 8v-142q-85 -32 -188 -32q-29 0 -52 4.5t-46.5 15.5t-41 35t-26.5 59q-115 -121 -285 -121q-61 0 -116 17t-101.5 50.5t-74 89.5t-27.5 128zM219 1096l217 315q34 49 84 49q55 0 86 -47l207 -313l-74 -60l-225 222l-223 -222zM305 279q0 -70 44.5 -99.5 t109.5 -29.5q114 0 200 59v182q-44 6 -108 6q-137 0 -191.5 -30t-54.5 -88z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1073" d="M78 262q0 56 14.5 99.5t48 79.5t87.5 59.5t135.5 36t189.5 12.5q77 0 106 -4v63q0 98 -24 135q-33 56 -152 56q-98 0 -139 -35q-35 -25 -41 -137h-133q-18 97 -18 170q0 93 100 133q118 47 256 47q233 0 311 -92q60 -66 60 -226q0 -31 -1 -203t-1 -180q0 -73 19 -99.5 t62 -26.5q39 0 78 8v-142q-85 -32 -188 -32q-29 0 -52 4.5t-46.5 15.5t-41 35t-26.5 59q-115 -121 -285 -121q-61 0 -116 17t-101.5 50.5t-74 89.5t-27.5 128zM205 1130q25 101 72.5 170.5t113.5 69.5q47 0 119 -33l55 -24q56 -29 94 -29q26 0 48.5 26.5t48.5 82.5l84 -27 q-25 -116 -70 -180t-104 -64q-52 0 -136 37l-53 25q-61 22 -88 22q-32 0 -53 -22.5t-49 -79.5zM305 279q0 -70 44.5 -99.5t109.5 -29.5q114 0 200 59v182q-44 6 -108 6q-137 0 -191.5 -30t-54.5 -88z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1073" d="M78 262q0 56 14.5 99.5t48 79.5t87.5 59.5t135.5 36t189.5 12.5q77 0 106 -4v63q0 98 -24 135q-33 56 -152 56q-98 0 -139 -35q-35 -25 -41 -137h-133q-18 97 -18 170q0 93 100 133q118 47 256 47q233 0 311 -92q60 -66 60 -226q0 -31 -1 -203t-1 -180q0 -73 19 -99.5 t62 -26.5q39 0 78 8v-142q-85 -32 -188 -32q-29 0 -52 4.5t-46.5 15.5t-41 35t-26.5 59q-115 -121 -285 -121q-61 0 -116 17t-101.5 50.5t-74 89.5t-27.5 128zM223 1268q0 49 32 81.5t85 32.5q51 0 82 -32.5t31 -81.5q0 -51 -32 -85t-85 -34q-47 0 -80 33.5t-33 85.5z M305 279q0 -70 44.5 -99.5t109.5 -29.5q114 0 200 59v182q-44 6 -108 6q-137 0 -191.5 -30t-54.5 -88zM567 1268q0 48 32 81t83 33q50 0 81.5 -33t31.5 -81q0 -51 -32 -85t-85 -34q-47 0 -79 33.5t-32 85.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1073" d="M78 262q0 56 14.5 99.5t48 79.5t87.5 59.5t135.5 36t189.5 12.5q77 0 106 -4v63q0 98 -24 135q-33 56 -152 56q-98 0 -139 -35q-35 -25 -41 -137h-133q-18 97 -18 170q0 93 100 133q118 47 256 47q233 0 311 -92q60 -66 60 -226q0 -31 -1 -203t-1 -180q0 -73 19 -99.5 t62 -26.5q39 0 78 8v-142q-85 -32 -188 -32q-29 0 -52 4.5t-46.5 15.5t-41 35t-26.5 59q-115 -121 -285 -121q-61 0 -116 17t-101.5 50.5t-74 89.5t-27.5 128zM305 279q0 -70 44.5 -99.5t109.5 -29.5q114 0 200 59v182q-44 6 -108 6q-137 0 -191.5 -30t-54.5 -88zM328 1255 q0 85 56 140t136 55q87 0 140 -52t53 -138q0 -83 -56.5 -138t-138.5 -55q-80 0 -135 52.5t-55 135.5zM418 1260q0 -47 28 -78t72 -31q45 0 74 29.5t29 79.5q0 52 -30 80t-73 28q-42 0 -71 -28.5t-29 -79.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1585" d="M78 276q0 69 25.5 121t82.5 91.5t154.5 60t234.5 20.5h76v47q0 86 -26 127q-33 56 -142 56q-96 0 -139 -35q-35 -28 -41 -127h-135q-18 97 -18 160q0 98 100 133q115 47 250 47q127 0 203.5 -33t107.5 -108q44 66 127 103.5t182 37.5q103 0 180 -35t121 -95.5t65 -132 t21 -153.5q0 -93 -26 -119t-97 -26h-518v-15q0 -106 70.5 -173.5t206.5 -67.5q78 0 149.5 24t163.5 76l74 -131q-193 -158 -420 -158q-218 0 -342 140q-155 -136 -365 -136q-61 0 -117.5 18t-104 53t-75.5 94.5t-28 135.5zM305 285q0 -75 47.5 -108.5t116.5 -33.5 q116 0 229 78q-41 65 -41 195h-90q-146 0 -204 -32t-58 -99zM872 573l418 7v16q0 91 -46 146t-148 55q-93 0 -155 -53.5t-69 -170.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="999" d="M84 455q0 120 36.5 218t102.5 164.5t160 103t207 36.5q101 0 196 -25q60 -18 87.5 -47t27.5 -84q0 -100 -16 -184h-137q-8 98 -42.5 130t-127.5 32q-122 0 -191.5 -84t-69.5 -246q0 -154 72.5 -231.5t202.5 -77.5q135 0 278 90l74 -131q-74 -64 -172 -103t-199 -43 q-16 -43 -16 -61q0 -34 37 -49q76 -42 105.5 -78.5t29.5 -91.5q0 -107 -97 -172t-261 -90l-21 102q109 23 160 55.5t51 87.5q0 56 -88 107q-41 21 -41 59q0 43 37 133q-174 22 -279.5 149.5t-105.5 330.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1046" d="M84 455q0 125 37 225t103 164.5t155 98.5t194 34t183 -31.5t123 -87t66.5 -123.5t21.5 -149q0 -92 -27 -123q-29 -25 -94 -25h-533v-16q0 -112 73 -186t208 -74q148 0 321 98l76 -133q-86 -73 -199 -114.5t-237 -41.5q-219 0 -345 134t-126 350zM317 596l433 8v23 q0 80 -46.5 127t-148.5 47q-95 0 -161.5 -50.5t-76.5 -154.5zM317 1415q0 37 31 63.5t66 26.5q30 0 53.5 -19t60.5 -77l179 -287l-74 -57l-246 233q-70 65 -70 117z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1046" d="M84 455q0 125 37 225t103 164.5t155 98.5t194 34t183 -31.5t123 -87t66.5 -123.5t21.5 -149q0 -92 -27 -123q-29 -25 -94 -25h-533v-16q0 -112 73 -186t208 -74q148 0 321 98l76 -133q-86 -73 -199 -114.5t-237 -41.5q-219 0 -345 134t-126 350zM317 596l433 8v23 q0 80 -46.5 127t-148.5 47q-95 0 -161.5 -50.5t-76.5 -154.5zM432 1122l178 287q36 58 59.5 77t55.5 19q34 0 64 -25.5t30 -62.5q0 -54 -71 -119l-246 -233z" />
+<glyph unicode="&#xea;" horiz-adv-x="1046" d="M84 455q0 125 37 225t103 164.5t155 98.5t194 34t183 -31.5t123 -87t66.5 -123.5t21.5 -149q0 -92 -27 -123q-29 -25 -94 -25h-533v-16q0 -112 73 -186t208 -74q148 0 321 98l76 -133q-86 -73 -199 -114.5t-237 -41.5q-219 0 -345 134t-126 350zM258 1096l217 315 q34 49 84 49q55 0 86 -47l207 -313l-74 -60l-225 222l-223 -222zM317 596l433 8v23q0 80 -46.5 127t-148.5 47q-95 0 -161.5 -50.5t-76.5 -154.5z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1046" d="M84 455q0 125 37 225t103 164.5t155 98.5t194 34t183 -31.5t123 -87t66.5 -123.5t21.5 -149q0 -92 -27 -123q-29 -25 -94 -25h-533v-16q0 -112 73 -186t208 -74q148 0 321 98l76 -133q-86 -73 -199 -114.5t-237 -41.5q-219 0 -345 134t-126 350zM270 1268q0 49 32 81.5 t85 32.5q51 0 82 -32.5t31 -81.5q0 -51 -32 -85t-85 -34q-47 0 -80 33.5t-33 85.5zM317 596l433 8v23q0 80 -46.5 127t-148.5 47q-95 0 -161.5 -50.5t-76.5 -154.5zM614 1268q0 48 32 81t83 33q50 0 81.5 -33t31.5 -81q0 -51 -32 -85t-85 -34q-47 0 -79 33.5t-32 85.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="636" d="M37 1415q0 37 30.5 63.5t65.5 26.5q31 0 54.5 -19t60.5 -77l178 -287l-74 -57l-246 233q-69 64 -69 117zM53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 264 68q57 0 89 -32t32 -118q0 -78 -4 -262.5t-4 -273.5 q0 -90 19 -115q20 -23 135 -31v-135q-176 4 -271 4q-170 0 -260 -4z" />
+<glyph unicode="&#xed;" horiz-adv-x="636" d="M53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 264 68q57 0 89 -32t32 -118q0 -78 -4 -262.5t-4 -273.5q0 -90 19 -115q20 -23 135 -31v-135q-176 4 -271 4q-170 0 -260 -4zM125 1122l178 287q36 58 59.5 77t55.5 19 q34 0 64 -25.5t30 -62.5q0 -53 -72 -119l-245 -233z" />
+<glyph unicode="&#xee;" horiz-adv-x="636" d="M-12 1096l217 315q34 49 84 49q55 0 86 -47l207 -313l-74 -60l-225 222l-224 -222zM53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 264 68q57 0 89 -32t32 -118q0 -78 -4 -262.5t-4 -273.5q0 -90 19 -115 q20 -23 135 -31v-135q-176 4 -271 4q-170 0 -260 -4z" />
+<glyph unicode="&#xef;" horiz-adv-x="636" d="M-2 1268q0 49 32 81.5t85 32.5q51 0 81.5 -32.5t30.5 -81.5q0 -51 -31.5 -85t-84.5 -34q-47 0 -80 33.5t-33 85.5zM53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 264 68q57 0 89 -32t32 -118q0 -78 -4 -262.5 t-4 -273.5q0 -90 19 -115q20 -23 135 -31v-135q-176 4 -271 4q-170 0 -260 -4zM342 1268q0 48 32 81t83 33q50 0 81 -33t31 -81q0 -51 -31.5 -85t-84.5 -34q-47 0 -79 33.5t-32 85.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1126" d="M84 438q0 137 53 245t158 171.5t246 63.5q59 0 117.5 -22t91.5 -65q-45 151 -146 273l-223 -129l-55 92l211 125q-57 64 -130.5 114.5t-142.5 79.5l80 127q208 -79 358 -217l170 103l56 -96l-148 -89q132 -143 197 -317t65 -397q0 -246 -133 -387.5t-356 -141.5 q-220 0 -344.5 131.5t-124.5 335.5zM317 479q0 -162 68 -242.5t182 -80.5q109 0 176.5 73.5t67.5 206.5q0 318 -250 318q-108 0 -176 -74.5t-68 -200.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1245" d="M53 -2v135q117 10 140 33q16 16 16 110v342q0 112 -31 134q-27 20 -69 20q-24 0 -56 -4v129q130 68 256 68q52 0 83.5 -30t35.5 -110q65 67 162 106.5t192 39.5q130 0 193 -66q37 -38 52 -99t15 -171v-359q0 -80 11 -102q10 -16 39 -25t108 -16v-135q-172 4 -252 4 q-92 0 -268 -4v135q101 8 121 31q18 15 18 117v297q0 109 -32 152.5t-128 43.5q-120 0 -229 -61v-434q0 -98 19 -117q10 -13 35 -18.5t87 -10.5v-135q-180 4 -258 4q-170 0 -260 -4zM303 1130q25 101 72.5 170.5t113.5 69.5q47 0 119 -33l56 -24q56 -29 94 -29 q25 0 47.5 26.5t48.5 82.5l84 -27q-25 -116 -70 -180t-104 -64q-51 0 -135 37l-54 25q-61 22 -88 22q-32 0 -53 -22.5t-49 -79.5z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1144" d="M84 469q0 233 139 370.5t363 137.5q239 0 357 -129.5t118 -358.5q0 -126 -38 -226t-105 -163t-155.5 -96t-191.5 -33q-240 0 -363.5 135t-123.5 363zM317 489q0 -179 65.5 -258t190.5 -79q256 0 256 321q0 169 -63 247.5t-191 78.5q-126 0 -192 -80t-66 -230zM332 1415 q0 37 30.5 63.5t65.5 26.5q30 0 54 -19t61 -77l178 -287l-74 -57l-246 233q-69 64 -69 117z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1144" d="M84 469q0 233 139 370.5t363 137.5q239 0 357 -129.5t118 -358.5q0 -126 -38 -226t-105 -163t-155.5 -96t-191.5 -33q-240 0 -363.5 135t-123.5 363zM317 489q0 -179 65.5 -258t190.5 -79q256 0 256 321q0 169 -63 247.5t-191 78.5q-126 0 -192 -80t-66 -230zM453 1122 l178 287q36 58 59 77t55 19q34 0 64.5 -26t30.5 -62q0 -53 -72 -119l-246 -233z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1144" d="M84 469q0 233 139 370.5t363 137.5q239 0 357 -129.5t118 -358.5q0 -126 -38 -226t-105 -163t-155.5 -96t-191.5 -33q-240 0 -363.5 135t-123.5 363zM285 1096l217 315q34 49 84 49q55 0 86 -47l207 -313l-74 -60l-225 222l-224 -222zM317 489q0 -179 65.5 -258 t190.5 -79q256 0 256 321q0 169 -63 247.5t-191 78.5q-126 0 -192 -80t-66 -230z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1144" d="M84 469q0 233 139 370.5t363 137.5q239 0 357 -129.5t118 -358.5q0 -126 -38 -226t-105 -163t-155.5 -96t-191.5 -33q-240 0 -363.5 135t-123.5 363zM258 1130q25 101 72.5 170.5t113.5 69.5q47 0 119 -33l55 -24q56 -29 95 -29q25 0 47.5 26.5t48.5 82.5l84 -27 q-25 -116 -70 -180t-104 -64q-51 0 -135 37l-54 25q-61 22 -88 22q-32 0 -53 -22.5t-49 -79.5zM317 489q0 -179 65.5 -258t190.5 -79q256 0 256 321q0 169 -63 247.5t-191 78.5q-126 0 -192 -80t-66 -230z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1144" d="M84 469q0 233 139 370.5t363 137.5q239 0 357 -129.5t118 -358.5q0 -126 -38 -226t-105 -163t-155.5 -96t-191.5 -33q-240 0 -363.5 135t-123.5 363zM293 1268q0 49 32 81.5t85 32.5q51 0 81.5 -32.5t30.5 -81.5q0 -51 -31.5 -85t-84.5 -34q-47 0 -80 33.5t-33 85.5z M317 489q0 -179 65.5 -258t190.5 -79q256 0 256 321q0 169 -63 247.5t-191 78.5q-126 0 -192 -80t-66 -230zM637 1268q0 48 32 81t83 33q50 0 81 -33t31 -81q0 -51 -31.5 -85t-84.5 -34q-47 0 -79 33.5t-32 85.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1234" d="M150 571v166h933v-166h-933zM500 319q0 53 32 88t82 35t83.5 -35.5t33.5 -89.5q0 -51 -33.5 -85.5t-83.5 -34.5q-52 0 -83 34.5t-31 87.5zM500 989q0 51 32 87t82 36t83.5 -35.5t33.5 -89.5t-33.5 -88.5t-83.5 -34.5q-52 0 -83 35t-31 90z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1144" d="M84 469q0 233 139 370.5t363 137.5q139 0 239 -47l93 131l92 -66l-90 -127q141 -123 141 -379q0 -126 -38 -226t-105 -163t-155.5 -96t-191.5 -33q-146 0 -254 54l-86 -123l-94 61l88 125q-141 132 -141 381zM317 489q0 -137 41 -217l349 492q-56 29 -129 29 q-126 0 -193.5 -78t-67.5 -226zM434 188q54 -32 139 -32q256 0 256 317q0 134 -41 211z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1212" d="M27 768v129q128 68 258 68q60 0 90.5 -32t30.5 -120q0 -30 -2.5 -205.5t-2.5 -251.5q0 -105 40 -146.5t128 -41.5q125 0 226 70v380q0 112 -31 134q-27 20 -74 20q-21 0 -57 -4v129q125 68 270 68q56 0 87.5 -34t31.5 -124q0 -25 -4 -235.5t-4 -288.5q0 -79 17.5 -106 t70.5 -27q36 0 69 8v-140q-88 -36 -215 -36q-58 0 -100 30.5t-53 100.5q-133 -140 -332 -140q-79 0 -142 28.5t-96 80.5q-55 88 -55 246v290q0 117 -26 134q-26 20 -70 20q-7 0 -28 -2t-27 -2zM330 1415q0 37 30.5 63.5t65.5 26.5q31 0 54.5 -19t60.5 -77l178 -287l-74 -57 l-246 233q-69 64 -69 117z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1212" d="M27 768v129q128 68 258 68q60 0 90.5 -32t30.5 -120q0 -30 -2.5 -205.5t-2.5 -251.5q0 -105 40 -146.5t128 -41.5q125 0 226 70v380q0 112 -31 134q-27 20 -74 20q-21 0 -57 -4v129q125 68 270 68q56 0 87.5 -34t31.5 -124q0 -25 -4 -235.5t-4 -288.5q0 -79 17.5 -106 t70.5 -27q36 0 69 8v-140q-88 -36 -215 -36q-58 0 -100 30.5t-53 100.5q-133 -140 -332 -140q-79 0 -142 28.5t-96 80.5q-55 88 -55 246v290q0 117 -26 134q-26 20 -70 20q-7 0 -28 -2t-27 -2zM457 1122l178 287q36 58 59.5 77t55.5 19q34 0 64 -25.5t30 -62.5 q0 -53 -72 -119l-246 -233z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1212" d="M27 768v129q128 68 258 68q60 0 90.5 -32t30.5 -120q0 -30 -2.5 -205.5t-2.5 -251.5q0 -105 40 -146.5t128 -41.5q125 0 226 70v380q0 112 -31 134q-27 20 -74 20q-21 0 -57 -4v129q125 68 270 68q56 0 87.5 -34t31.5 -124q0 -25 -4 -235.5t-4 -288.5q0 -79 17.5 -106 t70.5 -27q36 0 69 8v-140q-88 -36 -215 -36q-58 0 -100 30.5t-53 100.5q-133 -140 -332 -140q-79 0 -142 28.5t-96 80.5q-55 88 -55 246v290q0 117 -26 134q-26 20 -70 20q-7 0 -28 -2t-27 -2zM281 1096l217 315q34 49 84 49q55 0 86 -47l206 -313l-73 -60l-226 222 l-223 -222z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1212" d="M27 768v129q128 68 258 68q60 0 90.5 -32t30.5 -120q0 -30 -2.5 -205.5t-2.5 -251.5q0 -105 40 -146.5t128 -41.5q125 0 226 70v380q0 112 -31 134q-27 20 -74 20q-21 0 -57 -4v129q125 68 270 68q56 0 87.5 -34t31.5 -124q0 -25 -4 -235.5t-4 -288.5q0 -79 17.5 -106 t70.5 -27q36 0 69 8v-140q-88 -36 -215 -36q-58 0 -100 30.5t-53 100.5q-133 -140 -332 -140q-79 0 -142 28.5t-96 80.5q-55 88 -55 246v290q0 117 -26 134q-26 20 -70 20q-7 0 -28 -2t-27 -2zM293 1268q0 49 32 81.5t85 32.5q51 0 81.5 -32.5t30.5 -81.5q0 -51 -31.5 -85 t-84.5 -34q-47 0 -80 33.5t-33 85.5zM637 1268q0 48 32 81t83 33q50 0 81 -33t31 -81q0 -51 -31.5 -85t-84.5 -34q-47 0 -79 33.5t-32 85.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1128" d="M10 811v137q136 -4 297 -4q79 0 223 4v-137q-12 -2 -28.5 -3.5t-31 -3t-24.5 -3.5q-26 -3 -35.5 -15.5t-9.5 -35.5q0 -32 29 -103q16 -37 50.5 -112t55 -121.5t48.5 -111t49 -118.5q14 43 147 439q33 109 33 137q0 16 -9 26.5t-26 14.5t-32.5 5.5t-38 2.5t-33.5 2v137 q132 -4 227 -4q91 0 217 4v-137q-70 -7 -90 -25q-10 -7 -17.5 -16t-17.5 -31t-15.5 -36.5t-21.5 -55.5l-235 -629q-67 -180 -105 -272t-75 -156q-87 -151 -256 -151q-98 0 -152.5 35.5t-54.5 119.5q0 53 12 127h129q7 -62 22.5 -85t63.5 -23q59 0 105 72q52 89 133 311 q-64 0 -101 82l-266 594q-44 96 -74 114q-22 17 -92 25zM481 1122l178 287q36 58 59.5 77t55.5 19q34 0 64 -25.5t30 -62.5q0 -54 -71 -119l-246 -233z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1193" d="M12 1300v127q140 70 271 70q60 0 87 -35.5t27 -118.5q0 -79 -3.5 -244.5t-4.5 -262.5q157 141 334 141q128 0 213 -64t121.5 -169t36.5 -248q0 -232 -135 -373t-388 -141q-93 0 -176 18v-223q0 -117 23 -146q8 -8 20.5 -13.5t51 -11t106.5 -9.5v-134q-235 5 -291 5 q-49 0 -289 -5v134q119 10 142 36q12 18 12 113v1358q0 87 -6 127t-23 53q-26 23 -71 23q-8 0 -28 -3t-30 -4zM391 190q69 -26 193 -26q135 0 203.5 84t68.5 225q0 93 -22.5 160.5t-78 109t-141.5 41.5q-54 0 -114.5 -20t-108.5 -53v-521z" />
+<glyph unicode="&#xff;" horiz-adv-x="1128" d="M10 811v137q136 -4 297 -4q79 0 223 4v-137q-12 -2 -28.5 -3.5t-31 -3t-24.5 -3.5q-26 -3 -35.5 -15.5t-9.5 -35.5q0 -32 29 -103q16 -37 50.5 -112t55 -121.5t48.5 -111t49 -118.5q14 43 147 439q33 109 33 137q0 16 -9 26.5t-26 14.5t-32.5 5.5t-38 2.5t-33.5 2v137 q132 -4 227 -4q91 0 217 4v-137q-70 -7 -90 -25q-10 -7 -17.5 -16t-17.5 -31t-15.5 -36.5t-21.5 -55.5l-235 -629q-67 -180 -105 -272t-75 -156q-87 -151 -256 -151q-98 0 -152.5 35.5t-54.5 119.5q0 53 12 127h129q7 -62 22.5 -85t63.5 -23q59 0 105 72q52 89 133 311 q-64 0 -101 82l-266 594q-44 96 -74 114q-22 17 -92 25zM311 1268q0 49 32 81.5t85 32.5q51 0 82 -32.5t31 -81.5q0 -51 -32 -85t-85 -34q-47 0 -80 33.5t-33 85.5zM655 1268q0 48 32 81t83 33q50 0 81.5 -33t31.5 -81q0 -51 -32 -85t-85 -34q-47 0 -79 33.5t-32 85.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="2048" d="M88 674q0 152 44.5 283t130 230.5t220 156.5t303.5 57q60 0 195.5 -8.5t175.5 -8.5h612q78 0 109 -26t31 -76q0 -63 -21 -256h-139q-15 127 -51 152q-20 15 -61 20.5t-136 5.5h-229v-411h112q73 0 106 6.5t50 27.5q29 32 39 119h127q-2 -51 -2 -231q0 -152 2 -236h-121 q-5 34 -9.5 53.5t-10 38.5t-16.5 28t-22.5 17t-34.5 10.5t-46.5 3.5t-63.5 1h-110v-359q0 -44 12 -64t43 -24q53 -8 176 -8q128 0 189.5 13.5t89.5 41.5q36 36 73 158h130q-5 -239 -37 -321q-22 -68 -168 -68h-631q-44 0 -181 -6t-212 -6q-170 0 -299.5 50.5t-209.5 143 t-119.5 216.5t-39.5 276zM348 696q0 -246 110.5 -388t332.5 -142q190 0 221 63q16 23 16 111v694q0 47 -2.5 76t-13.5 51.5t-23 33t-42.5 17.5t-60.5 8t-87 1q-146 0 -249.5 -69.5t-152.5 -186.5t-49 -269z" />
+<glyph unicode="&#x153;" horiz-adv-x="1751" d="M84 469q0 234 135.5 371t358.5 137q263 0 362 -172q53 83 144.5 127.5t203.5 44.5q103 0 179.5 -31t120.5 -86.5t64.5 -123.5t20.5 -150q0 -93 -26 -123q-29 -25 -97 -25h-510v-16q0 -112 72 -187t201 -75q80 0 151 24.5t160 75.5l74 -131q-190 -158 -424 -158 q-123 0 -213.5 46.5t-138.5 129.5q-122 -176 -359 -176q-239 0 -359 134.5t-120 363.5zM317 489q0 -177 63.5 -257t184.5 -80q120 0 184 80.5t64 240.5q0 168 -58.5 247t-183.5 79q-124 0 -189 -80.5t-65 -229.5zM1047 596l409 8v12q0 185 -194 185q-89 0 -146 -51t-69 -154 z" />
+<glyph unicode="&#x178;" horiz-adv-x="1325" d="M10 1249v137q234 -4 279 -4q99 0 307 4v-137q-92 -3 -119.5 -15.5t-27.5 -39.5q0 -42 38 -100q54 -90 218 -379q88 150 225 391q37 60 37 94q0 25 -29.5 36.5t-118.5 12.5v137q96 -4 299 -4q111 0 197 4v-137q-63 -3 -98 -30q-31 -24 -111 -152l-326 -512v-279 q0 -79 8 -98t46 -29t141 -14v-137q-222 4 -309 4q-114 0 -318 -4v137q101 6 131.5 13.5t42.5 23.5q13 21 13 104v277l-324 534q-8 14 -21.5 36t-19 31t-14.5 22.5t-14.5 20t-12.5 13.5t-14 11q-37 23 -105 28zM377 1640q0 47 32 81t83 34q50 0 82 -34t32 -81 q0 -50 -32.5 -84t-84.5 -34q-50 0 -81 33t-31 85zM743 1640q0 47 33 81t84 34q48 0 80.5 -34t32.5 -81q0 -50 -32.5 -84t-82.5 -34t-82.5 33t-32.5 85z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M0 1096l217 315q34 49 84 49q55 0 86 -47l207 -313l-74 -60l-225 222l-223 -222z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-18 1130q25 101 72.5 170.5t113.5 69.5q47 0 119 -33l55 -24q56 -29 94 -29q25 0 47.5 26.5t48.5 82.5l84 -27q-25 -116 -70 -180t-104 -64q-51 0 -135 37l-53 25q-61 22 -88 22q-32 0 -53.5 -22.5t-49.5 -79.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="933" />
+<glyph unicode="&#x2001;" horiz-adv-x="1866" />
+<glyph unicode="&#x2002;" horiz-adv-x="933" />
+<glyph unicode="&#x2003;" horiz-adv-x="1866" />
+<glyph unicode="&#x2004;" horiz-adv-x="622" />
+<glyph unicode="&#x2005;" horiz-adv-x="466" />
+<glyph unicode="&#x2006;" horiz-adv-x="311" />
+<glyph unicode="&#x2007;" horiz-adv-x="311" />
+<glyph unicode="&#x2008;" horiz-adv-x="233" />
+<glyph unicode="&#x2009;" horiz-adv-x="373" />
+<glyph unicode="&#x200a;" horiz-adv-x="103" />
+<glyph unicode="&#x2010;" horiz-adv-x="561" d="M57 422v168h441v-168h-441z" />
+<glyph unicode="&#x2011;" horiz-adv-x="561" d="M57 422v168h441v-168h-441z" />
+<glyph unicode="&#x2012;" horiz-adv-x="561" d="M57 422v168h441v-168h-441z" />
+<glyph unicode="&#x2013;" d="M80 430v156h1014v-156h-1014z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M80 430v156h1519v-156h-1519z" />
+<glyph unicode="&#x2018;" horiz-adv-x="454" d="M59 1038q0 242 314 447l59 -84q-188 -126 -188 -236q0 -47 47 -61q45 -16 69.5 -43t24.5 -80q0 -55 -42 -94t-107 -39q-83 0 -130 51.5t-47 138.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="454" d="M18 911q191 126 191 236q0 47 -47 61q-45 16 -69.5 43t-24.5 80q0 55 42 94t107 39q81 0 127.5 -51t46.5 -139q0 -248 -311 -445z" />
+<glyph unicode="&#x201a;" horiz-adv-x="454" d="M18 -326q191 124 191 234q0 47 -47 61q-46 18 -70 44t-24 79q0 56 42 94.5t107 38.5q83 0 128.5 -50.5t45.5 -139.5q0 -248 -311 -445z" />
+<glyph unicode="&#x201c;" horiz-adv-x="851" d="M59 1038q0 242 314 447l59 -84q-188 -126 -188 -236q0 -47 47 -61q45 -16 69.5 -43t24.5 -80q0 -55 -42 -94t-107 -39q-83 0 -130 51.5t-47 138.5zM459 1038q0 246 313 447l57 -84q-188 -128 -188 -236q0 -46 49 -61q44 -16 68 -43t24 -80q0 -55 -42.5 -94t-108.5 -39 q-79 0 -125.5 51.5t-46.5 138.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="851" d="M18 911q191 126 191 236q0 47 -47 61q-45 16 -69.5 43t-24.5 80q0 55 42 94t107 39q83 0 128.5 -50.5t45.5 -139.5q0 -248 -311 -445zM418 911q188 128 188 236q0 46 -49 61q-44 16 -68 43t-24 80q0 55 42.5 94t108.5 39q79 0 125.5 -51t46.5 -139q0 -250 -313 -445z" />
+<glyph unicode="&#x201e;" horiz-adv-x="851" d="M18 -326q191 124 191 234q0 47 -47 61q-46 18 -70 44t-24 79q0 56 42 94.5t107 38.5q83 0 128.5 -50.5t45.5 -139.5q0 -248 -311 -445zM418 -326q188 125 188 234q0 46 -49 61q-45 18 -68.5 44t-23.5 79q0 56 42.5 94.5t108.5 38.5q82 0 127 -50.5t45 -139.5 q0 -250 -313 -445z" />
+<glyph unicode="&#x2022;" horiz-adv-x="743" d="M76 567q0 128 82.5 212.5t208.5 84.5q132 0 216.5 -83.5t84.5 -207.5q0 -140 -83.5 -225.5t-213.5 -85.5q-128 0 -211.5 87.5t-83.5 217.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1763" d="M147 129q0 65 41.5 108.5t102.5 43.5q66 0 108.5 -41.5t42.5 -104.5q0 -72 -41.5 -112.5t-107.5 -40.5q-63 0 -104.5 41.5t-41.5 105.5zM733 129q0 65 41.5 108.5t102.5 43.5q66 0 108.5 -41.5t42.5 -104.5q0 -72 -41.5 -112.5t-107.5 -40.5q-63 0 -104.5 41.5 t-41.5 105.5zM1321 129q0 65 41 108.5t104 43.5q65 0 107.5 -41.5t42.5 -104.5q0 -72 -40.5 -112.5t-107.5 -40.5q-64 0 -105.5 41t-41.5 106z" />
+<glyph unicode="&#x202f;" horiz-adv-x="373" />
+<glyph unicode="&#x2039;" horiz-adv-x="575" d="M51 459q0 41 43 84l350 323l86 -80l-268 -323l266 -338l-90 -82l-352 336q-35 35 -35 80z" />
+<glyph unicode="&#x203a;" horiz-adv-x="575" d="M45 123l268 323l-266 338l90 82l352 -336q35 -35 35 -81q0 -47 -43 -84l-350 -322z" />
+<glyph unicode="&#x205f;" horiz-adv-x="466" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1435" d="M133 500v108h143v37q0 59 5 100h-148v109h162q48 246 206.5 382t407.5 136q182 0 299 -49q101 -43 101 -129q0 -48 -21 -233h-131q-10 127 -43 163q-54 64 -215 64q-136 0 -230 -83.5t-128 -250.5h436v-109h-453q-2 -27 -2 -83v-54h455v-108h-442q30 -178 127 -259 t235 -81q165 0 221 59q34 34 72 158h133q-9 -183 -31 -248q-23 -70 -123 -111q-125 -47 -301 -47q-245 0 -396.5 136.5t-186.5 392.5h-152z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1556" d="M63 1325q0 28 12.5 43.5t47.5 15.5h461q61 0 61 -53q0 -26 -6 -137h-59q-8 78 -27 92q-19 12 -133 12v-378q0 -52 6 -60q12 -12 82 -16v-68q-45 2 -146 2q-116 0 -157 -2v68q70 2 80 16q8 8 8 58v380q-118 0 -135 -12q-26 -15 -33 -92h-57q-5 92 -5 131zM700 776v68 q62 3 73 14.5t11 73.5q1 81 2 144t2 96t1.5 54.5t1 30.5t0.5 13q0 20 -9 33q-10 10 -73 12v69q51 -2 135 -2q79 0 110 2q118 -285 138 -344q34 90 143 344q39 -2 121 -2q80 0 121 2v-69q-67 -3 -72 -12q-8 -11 -8 -50q0 -40 4 -327q0 -57 6 -66q4 -7 18.5 -10t59.5 -6v-68 q-45 2 -144 2q-100 0 -153 -2v68q69 5 76 16q8 8 8 47q0 244 2 348q-29 -75 -152 -358q-16 -37 -51 -37q-36 0 -51 39q-114 274 -146 358q0 -59 1.5 -208t1.5 -152q0 -13 0.5 -20.5t3.5 -14t5 -9t10.5 -4.5t14 -2t22 -1t28.5 -2v-68q-41 2 -121 2q-95 0 -140 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="952" d="M0 0v952h952v-952h-952z" />
+<hkern u1="&#x20;" u2="&#x2026;" k="102" />
+<hkern u1="&#x20;" u2="&#x178;" k="29" />
+<hkern u1="&#x20;" u2="&#xdd;" k="29" />
+<hkern u1="&#x20;" u2="&#xc5;" k="45" />
+<hkern u1="&#x20;" u2="&#xc4;" k="45" />
+<hkern u1="&#x20;" u2="&#xc3;" k="45" />
+<hkern u1="&#x20;" u2="&#xc2;" k="45" />
+<hkern u1="&#x20;" u2="&#xc1;" k="45" />
+<hkern u1="&#x20;" u2="&#xc0;" k="45" />
+<hkern u1="&#x20;" u2="Y" k="29" />
+<hkern u1="&#x20;" u2="W" k="166" />
+<hkern u1="&#x20;" u2="V" k="-29" />
+<hkern u1="&#x20;" u2="A" k="45" />
+<hkern u1="&#x20;" u2="&#x2e;" k="102" />
+<hkern u1="&#x20;" u2="&#x2c;" k="102" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-25" />
+<hkern u1="&#x21;" u2="]" k="-25" />
+<hkern u1="&#x21;" u2="&#x29;" k="-25" />
+<hkern u1="&#x22;" u2="&#x31;" k="109" />
+<hkern u1="&#x26;" u2="[" k="57" />
+<hkern u1="&#x27;" u2="&#x31;" k="109" />
+<hkern u1="&#x28;" u2="y" k="-41" />
+<hkern u1="&#x28;" u2="W" k="-61" />
+<hkern u1="&#x28;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="127" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="127" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2d;" u2="W" k="102" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="147" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="147" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="109" />
+<hkern u1="&#x2f;" u2="&#x153;" k="121" />
+<hkern u1="&#x2f;" u2="&#x152;" k="82" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-41" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="121" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="121" />
+<hkern u1="&#x2f;" u2="&#xea;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="102" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd8;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd6;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc7;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="133" />
+<hkern u1="&#x2f;" u2="&#x7b;" k="102" />
+<hkern u1="&#x2f;" u2="q" k="121" />
+<hkern u1="&#x2f;" u2="o" k="121" />
+<hkern u1="&#x2f;" u2="l" k="-41" />
+<hkern u1="&#x2f;" u2="k" k="-41" />
+<hkern u1="&#x2f;" u2="h" k="-41" />
+<hkern u1="&#x2f;" u2="e" k="121" />
+<hkern u1="&#x2f;" u2="d" k="121" />
+<hkern u1="&#x2f;" u2="c" k="121" />
+<hkern u1="&#x2f;" u2="b" k="-41" />
+<hkern u1="&#x2f;" u2="a" k="102" />
+<hkern u1="&#x2f;" u2="V" k="-59" />
+<hkern u1="&#x2f;" u2="R" k="-18" />
+<hkern u1="&#x2f;" u2="Q" k="82" />
+<hkern u1="&#x2f;" u2="P" k="-18" />
+<hkern u1="&#x2f;" u2="O" k="82" />
+<hkern u1="&#x2f;" u2="N" k="-18" />
+<hkern u1="&#x2f;" u2="M" k="-18" />
+<hkern u1="&#x2f;" u2="L" k="-18" />
+<hkern u1="&#x2f;" u2="K" k="-18" />
+<hkern u1="&#x2f;" u2="I" k="-18" />
+<hkern u1="&#x2f;" u2="H" k="-18" />
+<hkern u1="&#x2f;" u2="G" k="82" />
+<hkern u1="&#x2f;" u2="F" k="-18" />
+<hkern u1="&#x2f;" u2="E" k="-18" />
+<hkern u1="&#x2f;" u2="D" k="-18" />
+<hkern u1="&#x2f;" u2="C" k="82" />
+<hkern u1="&#x2f;" u2="B" k="-18" />
+<hkern u1="&#x2f;" u2="A" k="133" />
+<hkern u1="&#x30;" u2="&#x153;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-70" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-70" />
+<hkern u1="&#x30;" u2="&#xea;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-70" />
+<hkern u1="&#x30;" u2="q" k="-70" />
+<hkern u1="&#x30;" u2="o" k="-70" />
+<hkern u1="&#x30;" u2="e" k="-70" />
+<hkern u1="&#x30;" u2="d" k="-70" />
+<hkern u1="&#x30;" u2="c" k="-70" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-61" />
+<hkern u1="&#x30;" u2="&#x25;" k="-100" />
+<hkern u1="&#x31;" u2="&#x2f;" k="41" />
+<hkern u1="&#x31;" u2="&#x27;" k="223" />
+<hkern u1="&#x31;" u2="&#x22;" k="223" />
+<hkern u1="&#x33;" g2="uniFB04" k="-61" />
+<hkern u1="&#x33;" g2="uniFB03" k="-61" />
+<hkern u1="&#x33;" g2="uniFB02" k="-61" />
+<hkern u1="&#x33;" g2="uniFB01" k="-61" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-61" />
+<hkern u1="&#x33;" u2="&#x7d;" k="41" />
+<hkern u1="&#x33;" u2="f" k="-61" />
+<hkern u1="&#x33;" u2="]" k="41" />
+<hkern u1="&#x33;" u2="&#x29;" k="41" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-131" />
+<hkern u1="&#x34;" u2="r" k="-131" />
+<hkern u1="&#x34;" u2="p" k="-131" />
+<hkern u1="&#x34;" u2="n" k="-131" />
+<hkern u1="&#x34;" u2="m" k="-131" />
+<hkern u1="&#x35;" u2="&#xe6;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe5;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe4;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe3;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe2;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe1;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe0;" k="-41" />
+<hkern u1="&#x35;" u2="a" k="-41" />
+<hkern u1="&#x36;" u2="]" k="-41" />
+<hkern u1="&#x37;" u2="&#x2026;" k="285" />
+<hkern u1="&#x37;" u2="&#xb0;" k="-61" />
+<hkern u1="&#x37;" u2="&#x2e;" k="285" />
+<hkern u1="&#x37;" u2="&#x2c;" k="305" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-82" />
+<hkern u1="&#x3a;" u2="&#x33;" k="-63" />
+<hkern u1="&#x3a;" u2="&#x31;" k="109" />
+<hkern u1="&#x3f;" u2="&#x203a;" k="-20" />
+<hkern u1="&#x3f;" u2="&#xbb;" k="-20" />
+<hkern u1="&#x3f;" u2="&#x3b;" k="-37" />
+<hkern u1="&#x3f;" u2="&#x3a;" k="-31" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="109" />
+<hkern u1="A" u2="&#xb5;" k="20" />
+<hkern u1="A" u2="W" k="86" />
+<hkern u1="A" u2="G" k="47" />
+<hkern u1="A" u2="&#x2f;" k="-100" />
+<hkern u1="B" u2="&#xee;" k="-12" />
+<hkern u1="B" u2="&#xec;" k="-6" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="y" k="27" />
+<hkern u1="B" u2="W" k="47" />
+<hkern u1="C" u2="&#xef;" k="-16" />
+<hkern u1="C" u2="&#xee;" k="-43" />
+<hkern u1="C" u2="&#xec;" k="8" />
+<hkern u1="C" u2="y" k="66" />
+<hkern u1="C" u2="e" k="37" />
+<hkern u1="C" u2="d" k="51" />
+<hkern u1="C" u2="W" k="14" />
+<hkern u1="C" u2="C" k="41" />
+<hkern u1="D" u2="&#xef;" k="-10" />
+<hkern u1="D" u2="&#xee;" k="-41" />
+<hkern u1="D" u2="&#xec;" k="-47" />
+<hkern u1="D" u2="&#xd0;" k="-20" />
+<hkern u1="D" u2="&#xc6;" k="184" />
+<hkern u1="D" u2="&#xc5;" k="76" />
+<hkern u1="D" u2="&#xc4;" k="76" />
+<hkern u1="D" u2="&#xc3;" k="76" />
+<hkern u1="D" u2="&#xc2;" k="76" />
+<hkern u1="D" u2="&#xc1;" k="76" />
+<hkern u1="D" u2="&#xc0;" k="76" />
+<hkern u1="D" u2="W" k="55" />
+<hkern u1="D" u2="A" k="76" />
+<hkern u1="E" u2="&#xb5;" k="20" />
+<hkern u1="E" u2="y" k="61" />
+<hkern u1="E" u2="W" k="33" />
+<hkern u1="F" g2="uniFB04" k="41" />
+<hkern u1="F" g2="uniFB03" k="41" />
+<hkern u1="F" g2="uniFB02" k="41" />
+<hkern u1="F" g2="uniFB01" k="41" />
+<hkern u1="F" u2="&#x2026;" k="285" />
+<hkern u1="F" u2="&#x201d;" k="-8" />
+<hkern u1="F" u2="&#x2019;" k="-8" />
+<hkern u1="F" u2="&#x178;" k="33" />
+<hkern u1="F" u2="&#x153;" k="133" />
+<hkern u1="F" u2="&#x152;" k="20" />
+<hkern u1="F" u2="&#xff;" k="106" />
+<hkern u1="F" u2="&#xfe;" k="49" />
+<hkern u1="F" u2="&#xfd;" k="106" />
+<hkern u1="F" u2="&#xfc;" k="76" />
+<hkern u1="F" u2="&#xfb;" k="76" />
+<hkern u1="F" u2="&#xfa;" k="76" />
+<hkern u1="F" u2="&#xf9;" k="76" />
+<hkern u1="F" u2="&#xf8;" k="133" />
+<hkern u1="F" u2="&#xf6;" k="133" />
+<hkern u1="F" u2="&#xf5;" k="133" />
+<hkern u1="F" u2="&#xf4;" k="133" />
+<hkern u1="F" u2="&#xf3;" k="133" />
+<hkern u1="F" u2="&#xf2;" k="133" />
+<hkern u1="F" u2="&#xf1;" k="94" />
+<hkern u1="F" u2="&#xf0;" k="133" />
+<hkern u1="F" u2="&#xef;" k="-4" />
+<hkern u1="F" u2="&#xee;" k="-2" />
+<hkern u1="F" u2="&#xed;" k="88" />
+<hkern u1="F" u2="&#xec;" k="49" />
+<hkern u1="F" u2="&#xeb;" k="133" />
+<hkern u1="F" u2="&#xea;" k="133" />
+<hkern u1="F" u2="&#xe9;" k="133" />
+<hkern u1="F" u2="&#xe8;" k="133" />
+<hkern u1="F" u2="&#xe7;" k="133" />
+<hkern u1="F" u2="&#xe6;" k="129" />
+<hkern u1="F" u2="&#xe5;" k="129" />
+<hkern u1="F" u2="&#xe4;" k="129" />
+<hkern u1="F" u2="&#xe3;" k="129" />
+<hkern u1="F" u2="&#xe2;" k="129" />
+<hkern u1="F" u2="&#xe1;" k="129" />
+<hkern u1="F" u2="&#xe0;" k="129" />
+<hkern u1="F" u2="&#xdf;" k="41" />
+<hkern u1="F" u2="&#xde;" k="4" />
+<hkern u1="F" u2="&#xdd;" k="33" />
+<hkern u1="F" u2="&#xd8;" k="20" />
+<hkern u1="F" u2="&#xd6;" k="20" />
+<hkern u1="F" u2="&#xd5;" k="20" />
+<hkern u1="F" u2="&#xd4;" k="20" />
+<hkern u1="F" u2="&#xd3;" k="20" />
+<hkern u1="F" u2="&#xd2;" k="20" />
+<hkern u1="F" u2="&#xd1;" k="4" />
+<hkern u1="F" u2="&#xd0;" k="4" />
+<hkern u1="F" u2="&#xcf;" k="4" />
+<hkern u1="F" u2="&#xce;" k="4" />
+<hkern u1="F" u2="&#xcd;" k="4" />
+<hkern u1="F" u2="&#xcc;" k="4" />
+<hkern u1="F" u2="&#xcb;" k="4" />
+<hkern u1="F" u2="&#xca;" k="4" />
+<hkern u1="F" u2="&#xc9;" k="4" />
+<hkern u1="F" u2="&#xc8;" k="4" />
+<hkern u1="F" u2="&#xc7;" k="20" />
+<hkern u1="F" u2="&#xc6;" k="231" />
+<hkern u1="F" u2="&#xc5;" k="150" />
+<hkern u1="F" u2="&#xc4;" k="150" />
+<hkern u1="F" u2="&#xc3;" k="150" />
+<hkern u1="F" u2="&#xc2;" k="150" />
+<hkern u1="F" u2="&#xc1;" k="150" />
+<hkern u1="F" u2="&#xc0;" k="150" />
+<hkern u1="F" u2="z" k="94" />
+<hkern u1="F" u2="y" k="61" />
+<hkern u1="F" u2="x" k="96" />
+<hkern u1="F" u2="w" k="82" />
+<hkern u1="F" u2="v" k="106" />
+<hkern u1="F" u2="u" k="76" />
+<hkern u1="F" u2="t" k="20" />
+<hkern u1="F" u2="s" k="59" />
+<hkern u1="F" u2="r" k="94" />
+<hkern u1="F" u2="q" k="133" />
+<hkern u1="F" u2="p" k="94" />
+<hkern u1="F" u2="o" k="133" />
+<hkern u1="F" u2="n" k="94" />
+<hkern u1="F" u2="m" k="94" />
+<hkern u1="F" u2="l" k="49" />
+<hkern u1="F" u2="k" k="49" />
+<hkern u1="F" u2="j" k="27" />
+<hkern u1="F" u2="i" k="63" />
+<hkern u1="F" u2="h" k="49" />
+<hkern u1="F" u2="g" k="121" />
+<hkern u1="F" u2="f" k="41" />
+<hkern u1="F" u2="e" k="133" />
+<hkern u1="F" u2="d" k="133" />
+<hkern u1="F" u2="c" k="133" />
+<hkern u1="F" u2="b" k="49" />
+<hkern u1="F" u2="a" k="129" />
+<hkern u1="F" u2="Z" k="41" />
+<hkern u1="F" u2="Y" k="33" />
+<hkern u1="F" u2="X" k="43" />
+<hkern u1="F" u2="W" k="35" />
+<hkern u1="F" u2="T" k="25" />
+<hkern u1="F" u2="S" k="16" />
+<hkern u1="F" u2="R" k="4" />
+<hkern u1="F" u2="Q" k="20" />
+<hkern u1="F" u2="P" k="4" />
+<hkern u1="F" u2="O" k="20" />
+<hkern u1="F" u2="N" k="4" />
+<hkern u1="F" u2="M" k="4" />
+<hkern u1="F" u2="L" k="4" />
+<hkern u1="F" u2="K" k="4" />
+<hkern u1="F" u2="J" k="27" />
+<hkern u1="F" u2="I" k="4" />
+<hkern u1="F" u2="H" k="4" />
+<hkern u1="F" u2="G" k="20" />
+<hkern u1="F" u2="F" k="4" />
+<hkern u1="F" u2="E" k="4" />
+<hkern u1="F" u2="D" k="4" />
+<hkern u1="F" u2="C" k="20" />
+<hkern u1="F" u2="B" k="4" />
+<hkern u1="F" u2="A" k="150" />
+<hkern u1="F" u2="&#x2f;" k="121" />
+<hkern u1="F" u2="&#x2e;" k="285" />
+<hkern u1="F" u2="&#x2c;" k="285" />
+<hkern u1="G" u2="&#xee;" k="-14" />
+<hkern u1="G" u2="&#xd0;" k="-20" />
+<hkern u1="G" u2="y" k="41" />
+<hkern u1="G" u2="W" k="41" />
+<hkern u1="G" u2="M" k="25" />
+<hkern u1="H" u2="&#xef;" k="-12" />
+<hkern u1="H" u2="&#xee;" k="-18" />
+<hkern u1="H" u2="&#xec;" k="-18" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-12" />
+<hkern u1="I" u2="&#xee;" k="-18" />
+<hkern u1="I" u2="&#xec;" k="-18" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xf1;" k="43" />
+<hkern u1="J" u2="&#xef;" k="-20" />
+<hkern u1="J" u2="&#xee;" k="-20" />
+<hkern u1="J" u2="&#xec;" k="-31" />
+<hkern u1="J" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xc6;" k="82" />
+<hkern u1="J" u2="y" k="25" />
+<hkern u1="K" u2="&#xef;" k="-29" />
+<hkern u1="K" u2="&#xec;" k="-12" />
+<hkern u1="K" u2="y" k="115" />
+<hkern u1="K" u2="W" k="29" />
+<hkern u1="L" u2="&#xf8;" k="27" />
+<hkern u1="L" u2="y" k="129" />
+<hkern u1="L" u2="b" k="27" />
+<hkern u1="L" u2="W" k="203" />
+<hkern u1="L" u2="&#x20;" k="82" />
+<hkern u1="M" u2="&#xf8;" k="-6" />
+<hkern u1="M" u2="&#xef;" k="-2" />
+<hkern u1="M" u2="&#xec;" k="-33" />
+<hkern u1="M" u2="&#xdd;" k="29" />
+<hkern u1="M" u2="&#xd0;" k="-20" />
+<hkern u1="M" u2="y" k="20" />
+<hkern u1="M" u2="W" k="20" />
+<hkern u1="N" u2="&#xf8;" k="-10" />
+<hkern u1="N" u2="&#xef;" k="-57" />
+<hkern u1="N" u2="&#xee;" k="-10" />
+<hkern u1="N" u2="&#xec;" k="-35" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="&#xef;" k="-10" />
+<hkern u1="O" u2="&#xee;" k="-6" />
+<hkern u1="O" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="W" k="55" />
+<hkern u1="P" u2="&#xef;" k="-14" />
+<hkern u1="P" u2="&#xee;" k="-25" />
+<hkern u1="P" u2="&#xec;" k="-2" />
+<hkern u1="P" u2="&#xe5;" k="78" />
+<hkern u1="P" u2="c" k="61" />
+<hkern u1="P" u2="W" k="20" />
+<hkern u1="P" u2="M" k="25" />
+<hkern u1="Q" u2="&#xef;" k="-10" />
+<hkern u1="Q" u2="&#xee;" k="-6" />
+<hkern u1="Q" u2="&#xd0;" k="-20" />
+<hkern u1="Q" u2="W" k="55" />
+<hkern u1="Q" u2="N" k="-14" />
+<hkern u1="Q" u2="&#x2c;" k="-104" />
+<hkern u1="R" u2="y" k="53" />
+<hkern u1="R" u2="W" k="80" />
+<hkern u1="S" u2="&#xf8;" k="-10" />
+<hkern u1="S" u2="&#xef;" k="-10" />
+<hkern u1="S" u2="&#xee;" k="-18" />
+<hkern u1="S" u2="&#xec;" k="-20" />
+<hkern u1="S" u2="y" k="61" />
+<hkern u1="S" u2="W" k="14" />
+<hkern u1="T" u2="&#x203a;" k="94" />
+<hkern u1="T" u2="&#x2039;" k="203" />
+<hkern u1="T" u2="&#xff;" k="152" />
+<hkern u1="T" u2="&#xf6;" k="121" />
+<hkern u1="T" u2="&#xf5;" k="147" />
+<hkern u1="T" u2="&#xf4;" k="147" />
+<hkern u1="T" u2="&#xf2;" k="147" />
+<hkern u1="T" u2="&#xf1;" k="147" />
+<hkern u1="T" u2="&#xef;" k="-43" />
+<hkern u1="T" u2="&#xee;" k="-29" />
+<hkern u1="T" u2="&#xed;" k="98" />
+<hkern u1="T" u2="&#xec;" k="-31" />
+<hkern u1="T" u2="&#xeb;" k="156" />
+<hkern u1="T" u2="&#xea;" k="145" />
+<hkern u1="T" u2="&#xe8;" k="137" />
+<hkern u1="T" u2="&#xe4;" k="129" />
+<hkern u1="T" u2="&#xe3;" k="113" />
+<hkern u1="T" u2="&#xcf;" k="33" />
+<hkern u1="T" u2="&#xce;" k="37" />
+<hkern u1="T" u2="&#xcc;" k="37" />
+<hkern u1="T" u2="y" k="125" />
+<hkern u1="T" u2="]" k="-61" />
+<hkern u1="T" u2="M" k="57" />
+<hkern u1="T" u2="&#x3f;" k="-20" />
+<hkern u1="T" u2="&#x2c;" k="203" />
+<hkern u1="U" u2="&#xf1;" k="43" />
+<hkern u1="U" u2="&#xef;" k="-18" />
+<hkern u1="U" u2="&#xee;" k="-10" />
+<hkern u1="U" u2="&#xec;" k="-37" />
+<hkern u1="U" u2="&#xd0;" k="-20" />
+<hkern u1="U" u2="y" k="25" />
+<hkern u1="V" u2="&#x203a;" k="61" />
+<hkern u1="V" u2="&#x2039;" k="86" />
+<hkern u1="V" u2="&#xef;" k="-74" />
+<hkern u1="V" u2="&#xee;" k="20" />
+<hkern u1="V" u2="&#xed;" k="88" />
+<hkern u1="V" u2="&#xec;" k="-63" />
+<hkern u1="V" u2="&#xe4;" k="113" />
+<hkern u1="V" u2="&#xe3;" k="92" />
+<hkern u1="V" u2="&#xe0;" k="92" />
+<hkern u1="V" u2="y" k="121" />
+<hkern u1="V" u2="M" k="23" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="102" />
+<hkern u1="W" g2="uniFB04" k="90" />
+<hkern u1="W" g2="uniFB03" k="90" />
+<hkern u1="W" g2="uniFB02" k="90" />
+<hkern u1="W" g2="uniFB01" k="90" />
+<hkern u1="W" u2="&#x203a;" k="82" />
+<hkern u1="W" u2="&#x2039;" k="84" />
+<hkern u1="W" u2="&#x2026;" k="279" />
+<hkern u1="W" u2="&#x153;" k="86" />
+<hkern u1="W" u2="&#x152;" k="33" />
+<hkern u1="W" u2="&#xff;" k="80" />
+<hkern u1="W" u2="&#xfe;" k="41" />
+<hkern u1="W" u2="&#xfd;" k="104" />
+<hkern u1="W" u2="&#xfc;" k="86" />
+<hkern u1="W" u2="&#xfb;" k="96" />
+<hkern u1="W" u2="&#xfa;" k="96" />
+<hkern u1="W" u2="&#xf9;" k="96" />
+<hkern u1="W" u2="&#xf8;" k="86" />
+<hkern u1="W" u2="&#xf6;" k="86" />
+<hkern u1="W" u2="&#xf5;" k="86" />
+<hkern u1="W" u2="&#xf4;" k="86" />
+<hkern u1="W" u2="&#xf3;" k="86" />
+<hkern u1="W" u2="&#xf2;" k="86" />
+<hkern u1="W" u2="&#xf1;" k="82" />
+<hkern u1="W" u2="&#xf0;" k="86" />
+<hkern u1="W" u2="&#xef;" k="-33" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="115" />
+<hkern u1="W" u2="&#xec;" k="-57" />
+<hkern u1="W" u2="&#xeb;" k="176" />
+<hkern u1="W" u2="&#xea;" k="115" />
+<hkern u1="W" u2="&#xe9;" k="86" />
+<hkern u1="W" u2="&#xe8;" k="150" />
+<hkern u1="W" u2="&#xe7;" k="86" />
+<hkern u1="W" u2="&#xe6;" k="152" />
+<hkern u1="W" u2="&#xe5;" k="152" />
+<hkern u1="W" u2="&#xe4;" k="115" />
+<hkern u1="W" u2="&#xe3;" k="72" />
+<hkern u1="W" u2="&#xe2;" k="152" />
+<hkern u1="W" u2="&#xe1;" k="152" />
+<hkern u1="W" u2="&#xe0;" k="72" />
+<hkern u1="W" u2="&#xdf;" k="90" />
+<hkern u1="W" u2="&#xde;" k="20" />
+<hkern u1="W" u2="&#xd8;" k="33" />
+<hkern u1="W" u2="&#xd6;" k="33" />
+<hkern u1="W" u2="&#xd5;" k="33" />
+<hkern u1="W" u2="&#xd4;" k="33" />
+<hkern u1="W" u2="&#xd3;" k="33" />
+<hkern u1="W" u2="&#xd2;" k="33" />
+<hkern u1="W" u2="&#xd1;" k="20" />
+<hkern u1="W" u2="&#xd0;" k="20" />
+<hkern u1="W" u2="&#xcf;" k="20" />
+<hkern u1="W" u2="&#xce;" k="20" />
+<hkern u1="W" u2="&#xcd;" k="20" />
+<hkern u1="W" u2="&#xcc;" k="20" />
+<hkern u1="W" u2="&#xcb;" k="20" />
+<hkern u1="W" u2="&#xca;" k="20" />
+<hkern u1="W" u2="&#xc9;" k="20" />
+<hkern u1="W" u2="&#xc8;" k="20" />
+<hkern u1="W" u2="&#xc7;" k="33" />
+<hkern u1="W" u2="&#xc6;" k="215" />
+<hkern u1="W" u2="&#xc5;" k="143" />
+<hkern u1="W" u2="&#xc4;" k="143" />
+<hkern u1="W" u2="&#xc3;" k="143" />
+<hkern u1="W" u2="&#xc2;" k="143" />
+<hkern u1="W" u2="&#xc1;" k="143" />
+<hkern u1="W" u2="&#xc0;" k="143" />
+<hkern u1="W" u2="&#xbb;" k="121" />
+<hkern u1="W" u2="&#xab;" k="121" />
+<hkern u1="W" u2="z" k="123" />
+<hkern u1="W" u2="y" k="113" />
+<hkern u1="W" u2="x" k="121" />
+<hkern u1="W" u2="w" k="47" />
+<hkern u1="W" u2="v" k="80" />
+<hkern u1="W" u2="u" k="96" />
+<hkern u1="W" u2="t" k="78" />
+<hkern u1="W" u2="s" k="133" />
+<hkern u1="W" u2="r" k="104" />
+<hkern u1="W" u2="q" k="86" />
+<hkern u1="W" u2="p" k="82" />
+<hkern u1="W" u2="o" k="86" />
+<hkern u1="W" u2="n" k="82" />
+<hkern u1="W" u2="m" k="82" />
+<hkern u1="W" u2="l" k="41" />
+<hkern u1="W" u2="k" k="41" />
+<hkern u1="W" u2="j" k="51" />
+<hkern u1="W" u2="i" k="61" />
+<hkern u1="W" u2="h" k="41" />
+<hkern u1="W" u2="g" k="143" />
+<hkern u1="W" u2="f" k="90" />
+<hkern u1="W" u2="e" k="147" />
+<hkern u1="W" u2="d" k="129" />
+<hkern u1="W" u2="c" k="127" />
+<hkern u1="W" u2="b" k="43" />
+<hkern u1="W" u2="a" k="152" />
+<hkern u1="W" u2="X" k="31" />
+<hkern u1="W" u2="W" k="-8" />
+<hkern u1="W" u2="R" k="20" />
+<hkern u1="W" u2="Q" k="33" />
+<hkern u1="W" u2="P" k="20" />
+<hkern u1="W" u2="O" k="33" />
+<hkern u1="W" u2="N" k="20" />
+<hkern u1="W" u2="M" k="23" />
+<hkern u1="W" u2="L" k="20" />
+<hkern u1="W" u2="K" k="20" />
+<hkern u1="W" u2="J" k="47" />
+<hkern u1="W" u2="I" k="20" />
+<hkern u1="W" u2="H" k="20" />
+<hkern u1="W" u2="G" k="33" />
+<hkern u1="W" u2="F" k="10" />
+<hkern u1="W" u2="E" k="20" />
+<hkern u1="W" u2="D" k="20" />
+<hkern u1="W" u2="C" k="33" />
+<hkern u1="W" u2="B" k="20" />
+<hkern u1="W" u2="A" k="143" />
+<hkern u1="W" u2="&#x3b;" k="141" />
+<hkern u1="W" u2="&#x3a;" k="141" />
+<hkern u1="W" u2="&#x2e;" k="279" />
+<hkern u1="W" u2="&#x2c;" k="244" />
+<hkern u1="X" u2="&#xef;" k="-2" />
+<hkern u1="X" u2="&#xee;" k="-4" />
+<hkern u1="X" u2="&#xed;" k="18" />
+<hkern u1="X" u2="&#xec;" k="-8" />
+<hkern u1="X" u2="y" k="111" />
+<hkern u1="X" u2="W" k="35" />
+<hkern u1="Y" u2="&#x203a;" k="100" />
+<hkern u1="Y" u2="&#x2039;" k="102" />
+<hkern u1="Y" u2="&#xf5;" k="205" />
+<hkern u1="Y" u2="&#xf2;" k="188" />
+<hkern u1="Y" u2="&#xef;" k="-37" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="129" />
+<hkern u1="Y" u2="&#xec;" k="-47" />
+<hkern u1="Y" u2="&#xe9;" k="184" />
+<hkern u1="Y" u2="&#xe8;" k="147" />
+<hkern u1="Y" u2="&#xe4;" k="111" />
+<hkern u1="Y" u2="&#xe3;" k="104" />
+<hkern u1="Y" u2="&#xe0;" k="106" />
+<hkern u1="Y" u2="&#xb5;" k="209" />
+<hkern u1="Y" u2="y" k="184" />
+<hkern u1="Y" u2="e" k="178" />
+<hkern u1="Y" u2="b" k="2" />
+<hkern u1="Y" u2="M" k="43" />
+<hkern u1="Y" u2="&#x3b;" k="121" />
+<hkern u1="Y" u2="&#x3a;" k="121" />
+<hkern u1="Y" u2="&#x2c;" k="244" />
+<hkern u1="Z" u2="&#xef;" k="-14" />
+<hkern u1="Z" u2="&#xee;" k="-6" />
+<hkern u1="Z" u2="&#xec;" k="-16" />
+<hkern u1="Z" u2="y" k="104" />
+<hkern u1="Z" u2="W" k="20" />
+<hkern u1="[" u2="&#x153;" k="-100" />
+<hkern u1="[" u2="&#xfe;" k="-61" />
+<hkern u1="[" u2="&#xf8;" k="-100" />
+<hkern u1="[" u2="&#xf6;" k="-100" />
+<hkern u1="[" u2="&#xf5;" k="-100" />
+<hkern u1="[" u2="&#xf4;" k="-100" />
+<hkern u1="[" u2="&#xf3;" k="-100" />
+<hkern u1="[" u2="&#xf2;" k="-100" />
+<hkern u1="[" u2="&#xf0;" k="-100" />
+<hkern u1="[" u2="&#xeb;" k="-100" />
+<hkern u1="[" u2="&#xea;" k="-100" />
+<hkern u1="[" u2="&#xe9;" k="-100" />
+<hkern u1="[" u2="&#xe8;" k="-100" />
+<hkern u1="[" u2="&#xe7;" k="-100" />
+<hkern u1="[" u2="y" k="-41" />
+<hkern u1="[" u2="q" k="-100" />
+<hkern u1="[" u2="o" k="-100" />
+<hkern u1="[" u2="l" k="-61" />
+<hkern u1="[" u2="k" k="-61" />
+<hkern u1="[" u2="j" k="-100" />
+<hkern u1="[" u2="h" k="-61" />
+<hkern u1="[" u2="e" k="-100" />
+<hkern u1="[" u2="d" k="-100" />
+<hkern u1="[" u2="c" k="-100" />
+<hkern u1="[" u2="b" k="-61" />
+<hkern u1="[" u2="W" k="-61" />
+<hkern u1="[" u2="J" k="-90" />
+<hkern u1="[" u2="&#x3f;" k="-55" />
+<hkern u1="a" u2="&#x2019;" k="61" />
+<hkern u1="a" u2="&#x2018;" k="162" />
+<hkern u1="a" u2="&#xff;" k="39" />
+<hkern u1="a" u2="&#xfd;" k="39" />
+<hkern u1="a" u2="y" k="47" />
+<hkern u1="a" u2="v" k="39" />
+<hkern u1="a" u2="&#x3f;" k="61" />
+<hkern u1="a" u2="&#x2f;" k="-59" />
+<hkern u1="a" u2="&#x21;" k="-6" />
+<hkern u1="b" u2="&#x2018;" k="41" />
+<hkern u1="b" u2="&#xff;" k="20" />
+<hkern u1="b" u2="&#xfd;" k="20" />
+<hkern u1="b" u2="y" k="20" />
+<hkern u1="b" u2="v" k="20" />
+<hkern u1="b" u2="&#x3f;" k="53" />
+<hkern u1="d" u2="&#xec;" k="-20" />
+<hkern u1="d" u2="y" k="49" />
+<hkern u1="e" u2="y" k="23" />
+<hkern u1="f" u2="&#x2018;" k="-182" />
+<hkern u1="f" u2="&#xef;" k="-217" />
+<hkern u1="f" u2="&#xee;" k="-156" />
+<hkern u1="f" u2="&#xec;" k="-174" />
+<hkern u1="f" u2="&#xe4;" k="-27" />
+<hkern u1="f" u2="y" k="-20" />
+<hkern u1="f" u2="l" k="-113" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="]" k="-227" />
+<hkern u1="f" u2="W" k="-225" />
+<hkern u1="f" u2="M" k="-100" />
+<hkern u1="f" u2="&#x3f;" k="-201" />
+<hkern u1="f" u2="&#x3a;" k="-25" />
+<hkern u1="f" u2="&#x2f;" k="-78" />
+<hkern u1="f" u2="&#x2c;" k="20" />
+<hkern u1="f" u2="&#x2a;" k="-182" />
+<hkern u1="f" u2="&#x27;" k="-203" />
+<hkern u1="f" u2="&#x22;" k="-203" />
+<hkern u1="f" u2="&#x21;" k="-102" />
+<hkern u1="f" u2="&#x20;" k="-63" />
+<hkern u1="g" u2="&#x2026;" k="-41" />
+<hkern u1="g" u2="&#x201d;" k="-74" />
+<hkern u1="g" u2="&#x201c;" k="-23" />
+<hkern u1="g" u2="&#x2019;" k="-74" />
+<hkern u1="g" u2="&#x2018;" k="-23" />
+<hkern u1="g" u2="&#x153;" k="2" />
+<hkern u1="g" u2="&#xff;" k="-6" />
+<hkern u1="g" u2="&#xfd;" k="-6" />
+<hkern u1="g" u2="&#xf8;" k="2" />
+<hkern u1="g" u2="&#xf6;" k="2" />
+<hkern u1="g" u2="&#xf5;" k="2" />
+<hkern u1="g" u2="&#xf4;" k="2" />
+<hkern u1="g" u2="&#xf3;" k="2" />
+<hkern u1="g" u2="&#xf2;" k="2" />
+<hkern u1="g" u2="&#xf1;" k="-4" />
+<hkern u1="g" u2="&#xf0;" k="2" />
+<hkern u1="g" u2="&#xeb;" k="2" />
+<hkern u1="g" u2="&#xea;" k="2" />
+<hkern u1="g" u2="&#xe9;" k="2" />
+<hkern u1="g" u2="&#xe8;" k="2" />
+<hkern u1="g" u2="&#xe7;" k="2" />
+<hkern u1="g" u2="&#x7d;" k="-51" />
+<hkern u1="g" u2="y" k="-6" />
+<hkern u1="g" u2="x" k="8" />
+<hkern u1="g" u2="w" k="16" />
+<hkern u1="g" u2="v" k="-6" />
+<hkern u1="g" u2="r" k="-4" />
+<hkern u1="g" u2="q" k="2" />
+<hkern u1="g" u2="p" k="-4" />
+<hkern u1="g" u2="o" k="2" />
+<hkern u1="g" u2="n" k="-4" />
+<hkern u1="g" u2="m" k="-4" />
+<hkern u1="g" u2="j" k="-29" />
+<hkern u1="g" u2="g" k="-4" />
+<hkern u1="g" u2="e" k="2" />
+<hkern u1="g" u2="d" k="2" />
+<hkern u1="g" u2="c" k="2" />
+<hkern u1="g" u2="]" k="-92" />
+<hkern u1="g" u2="&#x2e;" k="-41" />
+<hkern u1="g" u2="&#x2c;" k="-41" />
+<hkern u1="g" u2="&#x29;" k="-51" />
+<hkern u1="h" u2="&#x2019;" k="61" />
+<hkern u1="h" u2="&#x2018;" k="162" />
+<hkern u1="h" u2="y" k="37" />
+<hkern u1="h" u2="&#x3f;" k="61" />
+<hkern u1="h" u2="&#x2f;" k="-59" />
+<hkern u1="h" u2="&#x21;" k="-6" />
+<hkern u1="i" u2="y" k="20" />
+<hkern u1="k" u2="&#xb5;" k="25" />
+<hkern u1="k" u2="y" k="23" />
+<hkern u1="l" u2="&#xef;" k="-10" />
+<hkern u1="l" u2="&#xee;" k="-10" />
+<hkern u1="l" u2="&#xec;" k="-35" />
+<hkern u1="l" u2="y" k="35" />
+<hkern u1="l" u2="]" k="-61" />
+<hkern u1="l" u2="&#x3f;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-41" />
+<hkern u1="l" u2="&#x21;" k="-29" />
+<hkern u1="m" u2="&#x2019;" k="61" />
+<hkern u1="m" u2="&#x2018;" k="162" />
+<hkern u1="m" u2="y" k="37" />
+<hkern u1="m" u2="w" k="25" />
+<hkern u1="m" u2="&#x3f;" k="61" />
+<hkern u1="m" u2="&#x2f;" k="-59" />
+<hkern u1="m" u2="&#x21;" k="-6" />
+<hkern u1="n" u2="&#x2019;" k="61" />
+<hkern u1="n" u2="&#x2018;" k="162" />
+<hkern u1="n" u2="y" k="37" />
+<hkern u1="n" u2="&#x3f;" k="61" />
+<hkern u1="n" u2="&#x2f;" k="-59" />
+<hkern u1="n" u2="&#x21;" k="-6" />
+<hkern u1="o" u2="&#x2018;" k="41" />
+<hkern u1="o" u2="y" k="23" />
+<hkern u1="o" u2="&#x3f;" k="53" />
+<hkern u1="p" u2="&#x2018;" k="41" />
+<hkern u1="p" u2="y" k="23" />
+<hkern u1="p" u2="&#x3f;" k="53" />
+<hkern u1="q" u2="&#x2026;" k="33" />
+<hkern u1="q" u2="&#x153;" k="-8" />
+<hkern u1="q" u2="&#xff;" k="29" />
+<hkern u1="q" u2="&#xfd;" k="29" />
+<hkern u1="q" u2="&#xfc;" k="23" />
+<hkern u1="q" u2="&#xfb;" k="23" />
+<hkern u1="q" u2="&#xfa;" k="23" />
+<hkern u1="q" u2="&#xf9;" k="23" />
+<hkern u1="q" u2="&#xf8;" k="-8" />
+<hkern u1="q" u2="&#xf6;" k="-8" />
+<hkern u1="q" u2="&#xf5;" k="-8" />
+<hkern u1="q" u2="&#xf4;" k="-8" />
+<hkern u1="q" u2="&#xf3;" k="-8" />
+<hkern u1="q" u2="&#xf2;" k="-8" />
+<hkern u1="q" u2="&#xf0;" k="-8" />
+<hkern u1="q" u2="&#xeb;" k="-8" />
+<hkern u1="q" u2="&#xea;" k="-8" />
+<hkern u1="q" u2="&#xe9;" k="-8" />
+<hkern u1="q" u2="&#xe8;" k="-8" />
+<hkern u1="q" u2="&#xe7;" k="-8" />
+<hkern u1="q" u2="&#x7d;" k="-61" />
+<hkern u1="q" u2="y" k="29" />
+<hkern u1="q" u2="x" k="20" />
+<hkern u1="q" u2="w" k="29" />
+<hkern u1="q" u2="v" k="29" />
+<hkern u1="q" u2="u" k="23" />
+<hkern u1="q" u2="q" k="-8" />
+<hkern u1="q" u2="o" k="-8" />
+<hkern u1="q" u2="j" k="-121" />
+<hkern u1="q" u2="g" k="-16" />
+<hkern u1="q" u2="e" k="-8" />
+<hkern u1="q" u2="d" k="-8" />
+<hkern u1="q" u2="c" k="-8" />
+<hkern u1="q" u2="]" k="-61" />
+<hkern u1="q" u2="&#x2e;" k="33" />
+<hkern u1="q" u2="&#x2c;" k="33" />
+<hkern u1="q" u2="&#x29;" k="-61" />
+<hkern u1="r" g2="uniFB02" k="25" />
+<hkern u1="r" u2="&#x2019;" k="-41" />
+<hkern u1="r" u2="y" k="-6" />
+<hkern u1="r" u2="&#x3b;" k="-18" />
+<hkern u1="r" u2="&#x2c;" k="102" />
+<hkern u1="s" u2="y" k="45" />
+<hkern u1="t" u2="y" k="20" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="u" u2="y" k="51" />
+<hkern u1="u" u2="&#x2c;" k="-20" />
+<hkern u1="v" u2="&#x2019;" k="-61" />
+<hkern u1="v" u2="&#x2c;" k="197" />
+<hkern u1="w" u2="p" k="6" />
+<hkern u1="w" u2="m" k="23" />
+<hkern u1="w" u2="&#x2c;" k="190" />
+<hkern u1="x" u2="&#x2026;" k="-20" />
+<hkern u1="x" u2="&#x153;" k="14" />
+<hkern u1="x" u2="&#xfc;" k="12" />
+<hkern u1="x" u2="&#xfb;" k="12" />
+<hkern u1="x" u2="&#xfa;" k="12" />
+<hkern u1="x" u2="&#xf9;" k="12" />
+<hkern u1="x" u2="&#xf8;" k="14" />
+<hkern u1="x" u2="&#xf6;" k="14" />
+<hkern u1="x" u2="&#xf5;" k="14" />
+<hkern u1="x" u2="&#xf4;" k="14" />
+<hkern u1="x" u2="&#xf3;" k="14" />
+<hkern u1="x" u2="&#xf2;" k="14" />
+<hkern u1="x" u2="&#xf0;" k="14" />
+<hkern u1="x" u2="&#xeb;" k="14" />
+<hkern u1="x" u2="&#xea;" k="14" />
+<hkern u1="x" u2="&#xe9;" k="14" />
+<hkern u1="x" u2="&#xe8;" k="14" />
+<hkern u1="x" u2="&#xe7;" k="14" />
+<hkern u1="x" u2="y" k="20" />
+<hkern u1="x" u2="u" k="12" />
+<hkern u1="x" u2="q" k="14" />
+<hkern u1="x" u2="o" k="14" />
+<hkern u1="x" u2="e" k="14" />
+<hkern u1="x" u2="d" k="14" />
+<hkern u1="x" u2="c" k="14" />
+<hkern u1="x" u2="&#x2e;" k="-20" />
+<hkern u1="x" u2="&#x2c;" k="-20" />
+<hkern u1="y" u2="&#x2019;" k="-61" />
+<hkern u1="y" u2="&#xe6;" k="39" />
+<hkern u1="y" u2="&#xe5;" k="39" />
+<hkern u1="y" u2="&#xe4;" k="39" />
+<hkern u1="y" u2="&#xe3;" k="39" />
+<hkern u1="y" u2="&#xe2;" k="39" />
+<hkern u1="y" u2="&#xe1;" k="39" />
+<hkern u1="y" u2="&#xe0;" k="39" />
+<hkern u1="y" u2="c" k="25" />
+<hkern u1="y" u2="a" k="39" />
+<hkern u1="y" u2="&#x2c;" k="197" />
+<hkern u1="z" u2="y" k="37" />
+<hkern u1="&#x7b;" u2="y" k="-41" />
+<hkern u1="&#x7b;" u2="W" k="-61" />
+<hkern u1="&#x7b;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x7c;" u2="J" k="-82" />
+<hkern u1="&#xa1;" u2="&#x178;" k="170" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="170" />
+<hkern u1="&#xa1;" u2="Y" k="170" />
+<hkern u1="&#xa1;" u2="W" k="123" />
+<hkern u1="&#xa1;" u2="V" k="147" />
+<hkern u1="&#xa1;" u2="T" k="109" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-72" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-100" />
+<hkern u1="&#xab;" u2="&#x2014;" k="-82" />
+<hkern u1="&#xab;" u2="&#x2013;" k="-82" />
+<hkern u1="&#xab;" u2="W" k="141" />
+<hkern u1="&#xab;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xab;" u2="&#x3a;" k="-23" />
+<hkern u1="&#xab;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xb5;" u2="y" k="51" />
+<hkern u1="&#xb5;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x2014;" k="-121" />
+<hkern u1="&#xbb;" u2="&#x2013;" k="-121" />
+<hkern u1="&#xbb;" u2="W" k="102" />
+<hkern u1="&#xbb;" u2="M" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xbf;" u2="T" k="127" />
+<hkern u1="&#xbf;" u2="S" k="43" />
+<hkern u1="&#xc0;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc0;" u2="W" k="86" />
+<hkern u1="&#xc0;" u2="G" k="47" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc1;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc1;" u2="W" k="86" />
+<hkern u1="&#xc1;" u2="G" k="47" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc2;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc2;" u2="W" k="86" />
+<hkern u1="&#xc2;" u2="G" k="47" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc3;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc3;" u2="W" k="86" />
+<hkern u1="&#xc3;" u2="G" k="47" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc4;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc4;" u2="W" k="86" />
+<hkern u1="&#xc4;" u2="G" k="47" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc5;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc5;" u2="W" k="86" />
+<hkern u1="&#xc5;" u2="G" k="47" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc6;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc6;" u2="y" k="61" />
+<hkern u1="&#xc6;" u2="W" k="33" />
+<hkern u1="&#xc7;" u2="&#xef;" k="-16" />
+<hkern u1="&#xc7;" u2="&#xee;" k="-43" />
+<hkern u1="&#xc7;" u2="&#xec;" k="8" />
+<hkern u1="&#xc7;" u2="y" k="66" />
+<hkern u1="&#xc7;" u2="e" k="37" />
+<hkern u1="&#xc7;" u2="d" k="51" />
+<hkern u1="&#xc7;" u2="W" k="14" />
+<hkern u1="&#xc7;" u2="C" k="41" />
+<hkern u1="&#xc8;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc8;" u2="y" k="61" />
+<hkern u1="&#xc8;" u2="W" k="33" />
+<hkern u1="&#xc9;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc9;" u2="y" k="61" />
+<hkern u1="&#xc9;" u2="W" k="33" />
+<hkern u1="&#xca;" u2="&#xb5;" k="20" />
+<hkern u1="&#xca;" u2="y" k="61" />
+<hkern u1="&#xca;" u2="W" k="33" />
+<hkern u1="&#xcb;" u2="&#xb5;" k="20" />
+<hkern u1="&#xcb;" u2="y" k="61" />
+<hkern u1="&#xcb;" u2="W" k="33" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcc;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-12" />
+<hkern u1="&#xce;" u2="&#xee;" k="-18" />
+<hkern u1="&#xce;" u2="&#xec;" k="-18" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcf;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd0;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="W" k="55" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd1;" u2="&#xee;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd2;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="W" k="55" />
+<hkern u1="&#xd3;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd3;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd3;" u2="W" k="55" />
+<hkern u1="&#xd4;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd4;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd4;" u2="W" k="55" />
+<hkern u1="&#xd5;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd5;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd5;" u2="W" k="55" />
+<hkern u1="&#xd6;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd6;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd6;" u2="W" k="55" />
+<hkern u1="&#xd8;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd8;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd8;" u2="W" k="55" />
+<hkern u1="&#xd9;" u2="&#xf1;" k="43" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-18" />
+<hkern u1="&#xd9;" u2="&#xee;" k="-10" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-37" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd9;" u2="y" k="25" />
+<hkern u1="&#xda;" u2="&#xf1;" k="43" />
+<hkern u1="&#xda;" u2="&#xef;" k="-18" />
+<hkern u1="&#xda;" u2="&#xee;" k="-10" />
+<hkern u1="&#xda;" u2="&#xec;" k="-37" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xda;" u2="y" k="25" />
+<hkern u1="&#xdb;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdb;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdb;" u2="y" k="25" />
+<hkern u1="&#xdc;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdc;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdc;" u2="y" k="25" />
+<hkern u1="&#xdd;" u2="&#x203a;" k="100" />
+<hkern u1="&#xdd;" u2="&#x2039;" k="102" />
+<hkern u1="&#xdd;" u2="&#xf5;" k="205" />
+<hkern u1="&#xdd;" u2="&#xf2;" k="188" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-37" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="129" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-47" />
+<hkern u1="&#xdd;" u2="&#xe9;" k="184" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="147" />
+<hkern u1="&#xdd;" u2="&#xe4;" k="111" />
+<hkern u1="&#xdd;" u2="&#xe3;" k="104" />
+<hkern u1="&#xdd;" u2="&#xe0;" k="106" />
+<hkern u1="&#xdd;" u2="&#xb5;" k="209" />
+<hkern u1="&#xdd;" u2="y" k="184" />
+<hkern u1="&#xdd;" u2="e" k="178" />
+<hkern u1="&#xdd;" u2="b" k="2" />
+<hkern u1="&#xdd;" u2="M" k="43" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="121" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="121" />
+<hkern u1="&#xdd;" u2="&#x2c;" k="244" />
+<hkern u1="&#xde;" u2="&#xef;" k="-10" />
+<hkern u1="&#xde;" u2="&#xee;" k="-6" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xde;" u2="W" k="55" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-18" />
+<hkern u1="&#xe0;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe0;" u2="y" k="37" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe0;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe1;" u2="y" k="37" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe2;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe2;" u2="y" k="37" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe2;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe3;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe3;" u2="y" k="37" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe3;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe4;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe4;" u2="y" k="37" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe4;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe5;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe5;" u2="y" k="37" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe5;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe6;" u2="y" k="23" />
+<hkern u1="&#xe8;" u2="y" k="23" />
+<hkern u1="&#xe9;" u2="y" k="23" />
+<hkern u1="&#xea;" u2="y" k="23" />
+<hkern u1="&#xeb;" u2="y" k="23" />
+<hkern u1="&#xec;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="k" k="-20" />
+<hkern u1="&#xee;" u2="y" k="20" />
+<hkern u1="&#xee;" u2="k" k="-20" />
+<hkern u1="&#xef;" u2="y" k="20" />
+<hkern u1="&#xf1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xf1;" u2="y" k="37" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xf1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xf2;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf2;" u2="y" k="23" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf3;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf3;" u2="y" k="23" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf4;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf4;" u2="y" k="23" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf5;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf5;" u2="y" k="23" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf6;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf6;" u2="y" k="23" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf8;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf8;" u2="y" k="23" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf9;" u2="y" k="51" />
+<hkern u1="&#xf9;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfa;" u2="y" k="51" />
+<hkern u1="&#xfa;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfb;" u2="y" k="51" />
+<hkern u1="&#xfb;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfc;" u2="y" k="51" />
+<hkern u1="&#xfc;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfd;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xfd;" u2="&#x2c;" k="197" />
+<hkern u1="&#xfe;" u2="&#x2018;" k="41" />
+<hkern u1="&#xfe;" u2="y" k="23" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="53" />
+<hkern u1="&#xff;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xff;" u2="&#x2c;" k="197" />
+<hkern u1="&#x152;" u2="&#xb5;" k="20" />
+<hkern u1="&#x152;" u2="y" k="61" />
+<hkern u1="&#x152;" u2="W" k="33" />
+<hkern u1="&#x153;" u2="y" k="23" />
+<hkern u1="&#x178;" u2="&#x203a;" k="100" />
+<hkern u1="&#x178;" u2="&#x2039;" k="102" />
+<hkern u1="&#x178;" u2="&#xf5;" k="205" />
+<hkern u1="&#x178;" u2="&#xf2;" k="188" />
+<hkern u1="&#x178;" u2="&#xef;" k="-37" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="129" />
+<hkern u1="&#x178;" u2="&#xec;" k="-47" />
+<hkern u1="&#x178;" u2="&#xe9;" k="184" />
+<hkern u1="&#x178;" u2="&#xe8;" k="147" />
+<hkern u1="&#x178;" u2="&#xe4;" k="111" />
+<hkern u1="&#x178;" u2="&#xe3;" k="104" />
+<hkern u1="&#x178;" u2="&#xe0;" k="106" />
+<hkern u1="&#x178;" u2="&#xb5;" k="209" />
+<hkern u1="&#x178;" u2="y" k="184" />
+<hkern u1="&#x178;" u2="e" k="178" />
+<hkern u1="&#x178;" u2="b" k="2" />
+<hkern u1="&#x178;" u2="M" k="43" />
+<hkern u1="&#x178;" u2="&#x3b;" k="121" />
+<hkern u1="&#x178;" u2="&#x3a;" k="121" />
+<hkern u1="&#x178;" u2="&#x2c;" k="244" />
+<hkern u1="&#x2013;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2013;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2013;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2013;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2013;" u2="W" k="102" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-100" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-61" />
+<hkern u1="&#x2014;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2014;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2014;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2014;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2014;" u2="W" k="102" />
+<hkern u1="&#x2014;" u2="&#x33;" k="145" />
+<hkern u1="&#x2018;" u2="&#xc5;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc4;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc3;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc2;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc1;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc0;" k="217" />
+<hkern u1="&#x2018;" u2="W" k="-72" />
+<hkern u1="&#x2018;" u2="V" k="-86" />
+<hkern u1="&#x2018;" u2="A" k="217" />
+<hkern u1="&#x2018;" u2="&#x2c;" k="170" />
+<hkern u1="&#x2019;" u2="s" k="43" />
+<hkern u1="&#x201a;" u2="&#x178;" k="223" />
+<hkern u1="&#x201a;" u2="&#x153;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf6;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf5;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf4;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf3;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf2;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf0;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xeb;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xea;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe9;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe7;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xdd;" k="223" />
+<hkern u1="&#x201a;" u2="q" k="-86" />
+<hkern u1="&#x201a;" u2="o" k="-86" />
+<hkern u1="&#x201a;" u2="j" k="-63" />
+<hkern u1="&#x201a;" u2="e" k="-86" />
+<hkern u1="&#x201a;" u2="d" k="-86" />
+<hkern u1="&#x201a;" u2="c" k="-86" />
+<hkern u1="&#x201a;" u2="Y" k="223" />
+<hkern u1="&#x201a;" u2="W" k="162" />
+<hkern u1="&#x201a;" u2="V" k="213" />
+<hkern u1="&#x201a;" u2="T" k="168" />
+<hkern u1="&#x201a;" u2="J" k="-104" />
+<hkern u1="&#x201c;" u2="W" k="-72" />
+<hkern u1="&#x201c;" u2="&#x2c;" k="170" />
+<hkern u1="&#x201e;" u2="W" k="201" />
+<hkern u1="&#x2039;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x153;" k="-41" />
+<hkern u1="&#x2039;" u2="&#x152;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf0;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xeb;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xea;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe9;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe6;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe5;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe4;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe3;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe2;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe1;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe0;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc1;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc0;" k="-41" />
+<hkern u1="&#x2039;" u2="s" k="-20" />
+<hkern u1="&#x2039;" u2="q" k="-41" />
+<hkern u1="&#x2039;" u2="o" k="-41" />
+<hkern u1="&#x2039;" u2="e" k="-41" />
+<hkern u1="&#x2039;" u2="d" k="-41" />
+<hkern u1="&#x2039;" u2="c" k="-41" />
+<hkern u1="&#x2039;" u2="a" k="-25" />
+<hkern u1="&#x2039;" u2="W" k="141" />
+<hkern u1="&#x2039;" u2="Q" k="-41" />
+<hkern u1="&#x2039;" u2="O" k="-41" />
+<hkern u1="&#x2039;" u2="M" k="-41" />
+<hkern u1="&#x2039;" u2="J" k="-82" />
+<hkern u1="&#x2039;" u2="G" k="-41" />
+<hkern u1="&#x2039;" u2="C" k="-41" />
+<hkern u1="&#x2039;" u2="A" k="-41" />
+<hkern u1="&#x2039;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x2039;" u2="&#x3a;" k="-23" />
+<hkern u1="&#x2039;" u2="&#x2c;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x153;" k="-27" />
+<hkern u1="&#x203a;" u2="&#x152;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xf8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf6;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf5;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf4;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf3;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf2;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf0;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xeb;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xea;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe9;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe7;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x203a;" u2="q" k="-27" />
+<hkern u1="&#x203a;" u2="o" k="-27" />
+<hkern u1="&#x203a;" u2="e" k="-27" />
+<hkern u1="&#x203a;" u2="d" k="-47" />
+<hkern u1="&#x203a;" u2="c" k="-27" />
+<hkern u1="&#x203a;" u2="W" k="102" />
+<hkern u1="&#x203a;" u2="Q" k="-41" />
+<hkern u1="&#x203a;" u2="O" k="-41" />
+<hkern u1="&#x203a;" u2="M" k="-20" />
+<hkern u1="&#x203a;" u2="G" k="-41" />
+<hkern u1="&#x203a;" u2="C" k="-41" />
+<hkern u1="&#x203a;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x3a;" k="-20" />
+<hkern g1="uniFB01" u2="y" k="20" />
+<hkern g1="uniFB02" u2="&#xef;" k="-10" />
+<hkern g1="uniFB02" u2="&#xee;" k="-10" />
+<hkern g1="uniFB02" u2="&#xec;" k="-35" />
+<hkern g1="uniFB02" u2="y" k="35" />
+<hkern g1="uniFB02" u2="]" k="-61" />
+<hkern g1="uniFB02" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB02" u2="&#x21;" k="-29" />
+<hkern g1="uniFB03" u2="y" k="20" />
+<hkern g1="uniFB04" u2="&#xef;" k="-10" />
+<hkern g1="uniFB04" u2="&#xee;" k="-10" />
+<hkern g1="uniFB04" u2="&#xec;" k="-35" />
+<hkern g1="uniFB04" u2="y" k="35" />
+<hkern g1="uniFB04" u2="]" k="-61" />
+<hkern g1="uniFB04" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB04" u2="&#x21;" k="-29" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="d" 	g2="w" 	k="31" />
+<hkern g1="d" 	g2="x" 	k="2" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-20" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-23" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="61" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="w" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-45" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-18" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="61" />
+<hkern g1="f" 	g2="T" 	k="-205" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-113" />
+<hkern g1="f" 	g2="v,y,yacute,ydieresis" 	k="-6" />
+<hkern g1="f" 	g2="m,n,p,r,ntilde" 	k="-6" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-184" />
+<hkern g1="f" 	g2="w" 	k="-6" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-291" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-209" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-162" />
+<hkern g1="f" 	g2="S" 	k="-41" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-193" />
+<hkern g1="f" 	g2="V" 	k="-231" />
+<hkern g1="f" 	g2="X" 	k="-162" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-223" />
+<hkern g1="f" 	g2="Z" 	k="-82" />
+<hkern g1="f" 	g2="j" 	k="-78" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-57" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="v,y,yacute,ydieresis" 	k="31" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="w" 	k="20" />
+<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="k" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
+<hkern g1="k" 	g2="s" 	k="10" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="k" 	g2="w" 	k="31" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-18" />
+<hkern g1="k" 	g2="j" 	k="4" />
+<hkern g1="k" 	g2="t" 	k="27" />
+<hkern g1="k" 	g2="g" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteleft,quotedblleft" 	k="53" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="w" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-6" />
+<hkern g1="j" 	g2="j" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="145" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="29" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="g" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="w" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="6" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="27" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="80" />
+<hkern g1="r" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
+<hkern g1="r" 	g2="s" 	k="10" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="r" 	g2="w" 	k="-23" />
+<hkern g1="r" 	g2="x" 	k="8" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="102" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="r" 	g2="j" 	k="-37" />
+<hkern g1="r" 	g2="t" 	k="-20" />
+<hkern g1="r" 	g2="g" 	k="55" />
+<hkern g1="r" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="r" 	g2="z" 	k="23" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="14" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="29" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="12" />
+<hkern g1="s" 	g2="w" 	k="25" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-47" />
+<hkern g1="t" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-8" />
+<hkern g1="t" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="t" 	g2="w" 	k="20" />
+<hkern g1="t" 	g2="x" 	k="-18" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="t" 	g2="z" 	k="-6" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="v,y,yacute,ydieresis" 	k="2" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="70" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="w" 	k="29" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="29" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="v,y,yacute,ydieresis" 	k="-10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="-37" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="w" 	k="-18" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="217" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="-43" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="14" />
+<hkern g1="w" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="w" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
+<hkern g1="w" 	g2="s" 	k="29" />
+<hkern g1="w" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="w" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="w" 	g2="w" 	k="-20" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="141" />
+<hkern g1="w" 	g2="quoteright,quotedblright" 	k="-49" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="z" 	k="18" />
+<hkern g1="z" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="178" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="80" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="223" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-43" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="205" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="74" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="166" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="AE" 	k="29" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-16" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-43" />
+<hkern g1="B" 	g2="T" 	k="51" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="w" 	k="31" />
+<hkern g1="B" 	g2="x" 	k="4" />
+<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
+<hkern g1="B" 	g2="V" 	k="53" />
+<hkern g1="B" 	g2="X" 	k="37" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="B" 	g2="Z" 	k="25" />
+<hkern g1="B" 	g2="g" 	k="6" />
+<hkern g1="B" 	g2="J" 	k="41" />
+<hkern g1="B" 	g2="AE" 	k="92" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="quoteleft,quotedblleft" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="comma,period,ellipsis" 	k="16" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-16" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="80" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="J" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="76" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="61" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="57" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="G" 	g2="T" 	k="61" />
+<hkern g1="G" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="G" 	g2="w" 	k="41" />
+<hkern g1="G" 	g2="x" 	k="4" />
+<hkern g1="G" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="G" 	g2="V" 	k="43" />
+<hkern g1="G" 	g2="X" 	k="35" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="G" 	g2="Z" 	k="14" />
+<hkern g1="G" 	g2="J" 	k="2" />
+<hkern g1="G" 	g2="AE" 	k="61" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="T" 	k="16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-45" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteright,quotedblright" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="V" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="J" 	k="4" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="29" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="K" 	g2="T" 	k="41" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
+<hkern g1="K" 	g2="s" 	k="25" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="109" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="43" />
+<hkern g1="K" 	g2="w" 	k="102" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
+<hkern g1="K" 	g2="S" 	k="45" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
+<hkern g1="K" 	g2="V" 	k="20" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="K" 	g2="j" 	k="25" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="82" />
+<hkern g1="K" 	g2="g" 	k="59" />
+<hkern g1="K" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="41" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="L" 	g2="T" 	k="227" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="L" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="L" 	g2="w" 	k="94" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="L" 	g2="S" 	k="31" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="125" />
+<hkern g1="L" 	g2="V" 	k="207" />
+<hkern g1="L" 	g2="X" 	k="25" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="199" />
+<hkern g1="L" 	g2="Z" 	k="10" />
+<hkern g1="L" 	g2="j" 	k="20" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="L" 	g2="t" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="47" />
+<hkern g1="L" 	g2="z" 	k="6" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="49" />
+<hkern g1="L" 	g2="J" 	k="27" />
+<hkern g1="L" 	g2="AE" 	k="49" />
+<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="M" 	g2="T" 	k="43" />
+<hkern g1="M" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="M" 	g2="w" 	k="41" />
+<hkern g1="M" 	g2="x" 	k="20" />
+<hkern g1="M" 	g2="V" 	k="18" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="29" />
+<hkern g1="M" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-14" />
+<hkern g1="M" 	g2="g" 	k="8" />
+<hkern g1="M" 	g2="J" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="20" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-86" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,ellipsis" 	k="-2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="S" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="49" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="53" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="31" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="63" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="102" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
+<hkern g1="P" 	g2="T" 	k="25" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="113" />
+<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="98" />
+<hkern g1="P" 	g2="s" 	k="109" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="49" />
+<hkern g1="P" 	g2="w" 	k="6" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="301" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="S" 	k="23" />
+<hkern g1="P" 	g2="V" 	k="41" />
+<hkern g1="P" 	g2="X" 	k="61" />
+<hkern g1="P" 	g2="Z" 	k="66" />
+<hkern g1="P" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
+<hkern g1="P" 	g2="J" 	k="2" />
+<hkern g1="P" 	g2="AE" 	k="227" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="203" />
+<hkern g1="R" 	g2="T" 	k="98" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="R" 	g2="w" 	k="53" />
+<hkern g1="R" 	g2="x" 	k="-41" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="R" 	g2="S" 	k="31" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
+<hkern g1="R" 	g2="V" 	k="84" />
+<hkern g1="R" 	g2="X" 	k="16" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="R" 	g2="Z" 	k="-12" />
+<hkern g1="R" 	g2="g" 	k="4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="R" 	g2="J" 	k="37" />
+<hkern g1="R" 	g2="AE" 	k="20" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="S" 	g2="T" 	k="20" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="39" />
+<hkern g1="S" 	g2="w" 	k="33" />
+<hkern g1="S" 	g2="x" 	k="41" />
+<hkern g1="S" 	g2="V" 	k="8" />
+<hkern g1="S" 	g2="X" 	k="23" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="S" 	g2="J" 	k="41" />
+<hkern g1="S" 	g2="AE" 	k="80" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="186" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="162" />
+<hkern g1="T" 	g2="s" 	k="176" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="125" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="111" />
+<hkern g1="T" 	g2="quoteleft,quotedblleft" 	k="-100" />
+<hkern g1="T" 	g2="w" 	k="100" />
+<hkern g1="T" 	g2="x" 	k="164" />
+<hkern g1="T" 	g2="parenright,bracketright,braceright" 	k="-25" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="88" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="170" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-31" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
+<hkern g1="T" 	g2="S" 	k="51" />
+<hkern g1="T" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
+<hkern g1="T" 	g2="V" 	k="8" />
+<hkern g1="T" 	g2="X" 	k="68" />
+<hkern g1="T" 	g2="Z" 	k="35" />
+<hkern g1="T" 	g2="j" 	k="74" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="94" />
+<hkern g1="T" 	g2="t" 	k="102" />
+<hkern g1="T" 	g2="g" 	k="166" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="T" 	g2="z" 	k="141" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="76" />
+<hkern g1="T" 	g2="J" 	k="20" />
+<hkern g1="T" 	g2="AE" 	k="213" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="180" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="T" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,l,thorn" 	k="-16" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Z" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="121" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
+<hkern g1="V,W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="147" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="6" />
+<hkern g1="V,W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="123" />
+<hkern g1="V,W" 	g2="s" 	k="82" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="59" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="137" />
+<hkern g1="V,W" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="V,W" 	g2="w" 	k="121" />
+<hkern g1="V,W" 	g2="x" 	k="121" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="137" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="121" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="S" 	k="29" />
+<hkern g1="V,W" 	g2="X" 	k="20" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="-20" />
+<hkern g1="V,W" 	g2="Z" 	k="20" />
+<hkern g1="V,W" 	g2="j" 	k="10" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="V,W" 	g2="t" 	k="82" />
+<hkern g1="V,W" 	g2="g" 	k="145" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="100" />
+<hkern g1="V,W" 	g2="z" 	k="106" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="63" />
+<hkern g1="V,W" 	g2="J" 	k="61" />
+<hkern g1="V,W" 	g2="AE" 	k="244" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="152" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="135" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="143" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="203" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="160" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-39" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="96" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="29" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="111" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="111" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="109" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="154" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="236" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="195" />
+<hkern g1="X" 	g2="T" 	k="45" />
+<hkern g1="X" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="-10" />
+<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="X" 	g2="s" 	k="35" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="51" />
+<hkern g1="X" 	g2="w" 	k="111" />
+<hkern g1="X" 	g2="x" 	k="-16" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="4" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
+<hkern g1="X" 	g2="V" 	k="20" />
+<hkern g1="X" 	g2="X" 	k="-41" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="X" 	g2="j" 	k="8" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="18" />
+<hkern g1="X" 	g2="t" 	k="55" />
+<hkern g1="X" 	g2="g" 	k="25" />
+<hkern g1="X" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="70" />
+<hkern g1="X" 	g2="AE" 	k="41" />
+<hkern g1="Z" 	g2="T" 	k="23" />
+<hkern g1="Z" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="Z" 	g2="s" 	k="41" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="98" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="41" />
+<hkern g1="Z" 	g2="w" 	k="92" />
+<hkern g1="Z" 	g2="x" 	k="31" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-31" />
+<hkern g1="Z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="Z" 	g2="V" 	k="25" />
+<hkern g1="Z" 	g2="X" 	k="8" />
+<hkern g1="Z" 	g2="j" 	k="10" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
+<hkern g1="Z" 	g2="t" 	k="20" />
+<hkern g1="Z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Z" 	g2="z" 	k="37" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
+<hkern g1="Z" 	g2="J" 	k="18" />
+<hkern g1="Z" 	g2="AE" 	k="43" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="82" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-45" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="121" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-20" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="141" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-84" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-39" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="174" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="-23" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="w" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,ellipsis" 	k="213" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-29" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-86" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-6" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="252" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="147" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="152" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="213" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="139" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="256" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="209" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-90" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-86" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-86" />
+<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="V" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-49" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-117" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..2b1d244e77ff625cc60f7b7bc4fcf723d7a759e0
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.woff
new file mode 100755
index 0000000000000000000000000000000000000000..8e5093ad4d6a09f36c2c3bc0e6cdff3f46767cd4
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMed.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.eot
new file mode 100755
index 0000000000000000000000000000000000000000..2c2aefa1dd3ae0acfe9ff3a91dc87997868c2ede
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.svg
new file mode 100755
index 0000000000000000000000000000000000000000..93408e811077b20270709d6aaafdfa5af6587552
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.svg
@@ -0,0 +1,1495 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-mediumitalicregular" horiz-adv-x="1177" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1290" d="M-334 -455q0 62 31 179h121q0 -75 18 -105.5t76 -30.5q71 0 117 62q45 57 73 231l154 883h-172l25 125q93 15 135 41q23 13 34 36.5t25 82.5q21 82 46.5 144t57 104.5t61.5 70t71 53.5q59 37 145 56.5t184 19.5q47 0 111 -10.5t98 -24.5q29 -12 45.5 -38t16.5 -62 q0 -74 -37 -211h-144q0 58 -2 78q-3 54 -40.5 74t-104.5 20q-124 0 -186 -74q-58 -68 -97 -258l-14 -78h352q89 39 162 39q60 0 87.5 -21t27.5 -89q0 -21 -2.5 -45.5t-8.5 -55.5t-10.5 -50.5l-13.5 -58.5l-12 -52l-45 -191q-31 -135 -31 -172q0 -35 17 -50t55 -15 q55 0 122 18l-30 -135q-119 -53 -252 -53q-158 0 -158 129q0 55 29 184l53 231q29 126 29 166q0 20 -6.5 33.5t-14.5 20.5t-27 10t-30 3.5t-39 0.5h-283l-163 -869q-31 -164 -76.5 -253t-118.5 -144q-104 -76 -256 -76q-55 0 -99 11.5t-75 41t-31 74.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1292" d="M-334 -455q0 62 31 179h121q0 -75 18 -105.5t76 -30.5q73 0 119 62q42 54 71 231l156 883h-172l25 125q93 15 135 41q23 13 35 36.5t24 77.5q40 157 95.5 242t134.5 133q125 78 315 78q94 0 188 -27q67 29 121 29q60 0 85.5 -24t25.5 -86q0 -72 -53 -302l-154 -698 q-31 -135 -31 -172q0 -35 16.5 -50t53.5 -15q58 0 125 18l-31 -135q-119 -53 -252 -53q-158 0 -158 129q0 35 29 176l156 725q28 124 30 196q0 63 -41 90t-118 27q-86 0 -134.5 -19t-82.5 -61q-28 -36 -49 -86t-41 -153l-19 -88q124 0 238 -7l-27 -145q-126 -6 -240 -6 l-165 -862q-31 -166 -77.5 -257.5t-119.5 -146.5q-104 -76 -256 -76q-84 0 -143.5 31t-59.5 96z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1972" d="M-330 -436q0 61 31 178h121q0 -81 17 -110t77 -29q34 0 66.5 18t52.5 49q43 61 71 228l150 866h-172l25 125q93 15 135 41q22 13 33.5 36t25.5 78q37 146 85 222.5t124 122.5q109 67 258 67q74 0 141 -24q68 -27 68 -99q0 -65 -29 -196h-116q0 10 -1.5 27.5t-1.5 27.5 q0 52 -25 71t-79 19q-75 0 -123 -63q-43 -61 -80 -250l-12 -62h287q93 0 131 23q39 23 63 114q40 159 94.5 242t135.5 135q119 76 327 76q48 0 111.5 -10.5t97.5 -24.5q62 -27 62 -100q0 -72 -37 -213h-144q2 23 2 74q0 100 -147 100q-124 0 -186 -74q-57 -63 -97 -258 l-16 -78h354q97 39 160 39q61 0 89 -21t28 -89q0 -65 -47 -258l-45 -195q-31 -135 -31 -172q0 -35 16 -50t54 -15q55 0 122 18l-28 -135q-119 -53 -252 -53q-158 0 -158 129q0 47 29 176l53 239q29 126 29 166q0 20 -7 33.5t-15 20.5t-27 10t-30 3.5t-38 0.5h-283l-153 -807 q-27 -143 -67.5 -230.5t-102.5 -142.5q-112 -100 -268 -100q-90 0 -158 33q-55 28 -55 94q0 68 30 170h111q0 -76 19.5 -103.5t78.5 -27.5q35 0 69 18t52 49q45 70 72 228l143 823h-455l-161 -854q-27 -146 -66.5 -232t-101.5 -141q-112 -100 -275 -100q-87 0 -155 33 q-56 29 -56 94z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1974" d="M-330 -436q0 61 31 178h121q0 -81 17 -110t77 -29q34 0 66.5 18t52.5 49q43 61 71 228l150 866h-172l25 125q93 15 135 41q22 13 33.5 36t25.5 78q37 146 85 222.5t124 124.5q106 65 258 65q74 0 141 -24q68 -27 68 -99q0 -65 -29 -196h-116q0 104 -33 129q-18 16 -72 16 q-80 0 -125 -63q-50 -73 -82 -263l-8 -49h289q89 0 127 23q42 25 63 114q40 158 95 242.5t133 130.5q129 80 311 80q94 0 188 -27q59 27 123 27q59 0 84 -23.5t25 -84.5q0 -63 -56 -302l-151 -698q-31 -135 -31 -172q0 -35 16 -50t54 -15q58 0 125 18l-31 -135 q-119 -53 -252 -53q-158 0 -158 129q0 35 29 176l156 725q28 124 30 196q0 117 -157 117q-87 0 -136 -19t-83 -61q-28 -36 -49 -86t-41 -153l-19 -88q124 0 238 -7l-27 -145q-126 -6 -240 -6l-153 -807q-27 -145 -65.5 -230.5t-100.5 -144.5q-104 -98 -272 -98 q-90 0 -158 33q-55 28 -55 94q0 68 30 170h111q0 -76 19.5 -103.5t78.5 -27.5q35 0 69 18t52 49q45 70 72 228l143 823h-455l-161 -854q-27 -146 -66.5 -232t-101.5 -141q-112 -100 -275 -100q-87 0 -155 33q-56 29 -56 94z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="606" d="M141 123q0 64 42.5 111t109.5 47q63 0 103 -38.5t40 -99.5q0 -73 -43 -118t-114 -45q-62 0 -100 39.5t-38 103.5zM281 451q53 668 79 847q12 67 48 104.5t110 37.5q60 0 92.5 -28.5t32.5 -74.5q0 -21 -10 -71q-11 -42 -246 -815h-106z" />
+<glyph unicode="&#x22;" horiz-adv-x="675" d="M201 866q22 412 37 490q10 53 38 76.5t80 23.5q47 0 68.5 -22.5t21.5 -57.5q0 -27 -14 -78q-30 -117 -141 -432h-90zM526 866q23 427 35 490q19 100 119 100q47 0 69.5 -23t22.5 -57q0 -22 -16 -80q-28 -107 -142 -430h-88z" />
+<glyph unicode="#" horiz-adv-x="1155" d="M117 418l30 174h228l65 211h-225l33 176h239l115 393h109l-117 -393h242l116 393h105l-113 -393h203l-33 -176h-223l-64 -211h213l-30 -174h-234l-129 -445h-104l127 445h-240l-133 -445h-100l127 445h-207zM479 592h244l61 211h-241z" />
+<glyph unicode="$" horiz-adv-x="1132" d="M76 186q0 88 24 234h123q8 -130 70 -197q52 -52 172 -61l80 411l-107 58q-211 111 -211 305q0 184 124.5 292.5t346.5 125.5l41 211h107l-41 -209q129 -3 227 -39q38 -13 60 -41.5t22 -63.5q0 -97 -39 -247h-123q-6 130 -45 172q-35 41 -137 47l-76 -396l127 -65 q207 -108 207 -297q0 -103 -38 -183t-105.5 -130.5t-153.5 -79t-190 -35.5l-45 -234h-109l45 230q-186 6 -272 57q-84 47 -84 135zM471 1004q0 -49 28.5 -89t96.5 -77l68 344q-90 -11 -141.5 -56.5t-51.5 -121.5zM573 166q93 11 148 56.5t55 127.5q0 106 -108 160l-25 12z " />
+<glyph unicode="%" horiz-adv-x="1794" d="M125 797q0 113 33 234.5t102 203.5q108 131 297 131q285 0 285 -279q0 -110 -33 -234.5t-98 -209.5q-112 -143 -293 -143q-140 0 -216.5 74.5t-76.5 222.5zM311 805q0 -166 123 -166q59 0 104 46.5t69 118t36 141.5t12 132q0 81 -29 118.5t-89 37.5q-61 0 -107.5 -45 t-71 -114.5t-36 -138t-11.5 -130.5zM516 45l746 1329l102 -51l-748 -1333zM1032 281q0 113 33.5 233.5t103.5 204.5q112 133 295 133q285 0 285 -281q0 -112 -32.5 -235.5t-100.5 -208.5q-110 -141 -291 -141q-139 0 -216 74.5t-77 220.5zM1219 289q0 -166 122 -166 q58 0 103.5 47t69.5 118t36.5 141.5t12.5 131.5q0 81 -29 118.5t-90 37.5q-49 0 -89.5 -30.5t-65 -77t-41 -105.5t-23 -112.5t-6.5 -102.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="1613" d="M92 354q0 87 26.5 155.5t79.5 119t116.5 86.5t154.5 71q-63 123 -63 246q0 190 120.5 286.5t329.5 96.5q153 0 243.5 -72.5t90.5 -185.5q0 -49 -13.5 -92t-34 -76t-56 -65t-67 -53.5t-81.5 -46.5t-84.5 -39.5t-89.5 -36.5q90 -175 285 -367q61 58 110 145q27 44 27 76 q0 21 -9.5 30.5t-33.5 14.5q-35 6 -105 10l27 131q118 -4 260 -4q186 0 256 4l-27 -131q-83 -3 -120 -26q-28 -19 -93 -121q-83 -129 -180 -234q121 -106 279 -106q35 0 53 4l-33 -182q-41 -8 -106 -8q-121 0 -216 33.5t-155 86.5q-206 -131 -434 -131q-209 0 -333 110 t-124 271zM348 395q0 -107 67 -175t183 -68q127 0 240 75q-192 204 -303 410q-86 -43 -136.5 -99.5t-50.5 -142.5zM653 1067q0 -96 52 -190q278 107 278 245q0 55 -41 90t-108 35q-80 0 -130.5 -48t-50.5 -132z" />
+<glyph unicode="'" horiz-adv-x="352" d="M201 866q22 412 37 490q10 53 38 76.5t80 23.5q47 0 68.5 -22.5t21.5 -57.5q0 -31 -16 -90q-42 -143 -139 -420h-90z" />
+<glyph unicode="(" horiz-adv-x="657" d="M80 385q0 392 182 699.5t524 510.5l58 -88q-122 -83 -225 -198.5t-181.5 -257t-123 -314t-44.5 -354.5q0 -212 60 -395.5t159 -311.5l-71 -71q-159 124 -248.5 325.5t-89.5 454.5z" />
+<glyph unicode=")" horiz-adv-x="657" d="M-150 -309q121 83 224 198.5t181.5 257.5t122.5 314.5t44 353.5q0 213 -59.5 396.5t-157.5 312.5l71 71q158 -124 248 -327t90 -455q0 -392 -182 -699t-524 -509z" />
+<glyph unicode="*" horiz-adv-x="835" d="M223 1176q0 42 25 73t67 31q27 0 68 -32.5t145 -135.5l-10 70q-16 110 -16 139q0 111 90 111q38 0 62 -19.5t24 -58.5q0 -67 -66 -213l-18 -41q106 58 153 79t76 21q40 0 60 -22t20 -58q0 -98 -92 -98q-37 0 -219 14q102 -103 137 -150.5t35 -82.5q0 -37 -29 -59.5 t-63 -22.5q-19 0 -33 4.5t-26 19.5t-20 31t-17.5 52.5t-16.5 69.5t-20 97q-69 -136 -109 -181.5t-82 -45.5q-32 0 -59 21.5t-27 62.5q0 19 7.5 35.5t31 40t74 53.5t129.5 68q-181 40 -231 61.5t-50 65.5z" />
+<glyph unicode="+" horiz-adv-x="1206" d="M145 561l37 156h391l95 420h155l-98 -420h387l-35 -156h-387l-96 -420h-152l97 420h-394z" />
+<glyph unicode="," horiz-adv-x="466" d="M-117 -262q242 118 242 229q0 44 -41 62q-72 32 -72 114q0 58 42 98t110 40q76 0 123 -49.5t47 -131.5q0 -79 -35 -151t-95.5 -128t-129.5 -98.5t-150 -76.5z" />
+<glyph unicode="-" horiz-adv-x="559" d="M53 422l33 168h440l-32 -168h-441z" />
+<glyph unicode="." horiz-adv-x="448" d="M16 123q0 64 43.5 111t110.5 47q63 0 102 -38t39 -100q0 -73 -42 -118t-113 -45q-62 0 -101 39.5t-39 103.5z" />
+<glyph unicode="/" horiz-adv-x="681" d="M-47 -127l711 1632l120 -47l-712 -1632z" />
+<glyph unicode="0" d="M96 430q0 124 24 256.5t84 276t148 239.5q157 170 393 170q205 0 312.5 -111t107.5 -329q0 -190 -58.5 -407t-176.5 -361q-162 -193 -410 -193q-210 0 -317 117t-107 342zM346 440q0 -45 3.5 -81t16 -76.5t33.5 -67t58 -44t88 -17.5q131 0 219 145q71 121 111 307.5 t40 323.5q0 127 -42.5 195.5t-151.5 68.5q-127 0 -213 -127q-74 -111 -118 -293.5t-44 -333.5z" />
+<glyph unicode="1" d="M184 -2l27 135q161 5 201 37q11 8 19 26t12 34.5t12 54.5l104 528q41 205 41 262q0 25 -9.5 35t-31.5 10q-51 0 -170 -28l-31 137q31 15 78.5 33.5t80.5 30.5t94 33t75 26q73 22 129 22q74 0 74 -80q0 -15 -6 -57q-10 -52 -40 -199t-44 -215l-107 -538q-10 -51 -10 -86 q0 -43 47 -52q39 -7 174 -14l-26 -135q-164 4 -359 4q-158 0 -334 -4z" />
+<glyph unicode="2" d="M-8 0l26 143q361 260 475 353q209 169 281 299q55 99 55 206q0 81 -48 136t-150 55q-130 0 -182 -55q-40 -40 -72 -162h-133q4 134 14 186q9 57 39.5 93.5t93.5 64.5q120 53 311 53q188 0 288 -88t100 -233q0 -80 -26 -158.5t-66 -144t-105 -134.5t-123.5 -120 t-143.5 -111t-143.5 -97.5t-142.5 -88.5q46 0 170.5 1t151.5 1q92 0 138 10.5t72 36.5q33 38 76 125h121q-5 -22 -16.5 -73.5t-18.5 -81t-18 -68t-21 -64.5q-34 -84 -153 -84h-850z" />
+<glyph unicode="3" d="M84 147q0 83 41 226h135q0 -105 33 -154q42 -61 199 -61q129 0 215 60.5t86 182.5q0 81 -62 135.5t-184 61.5q-94 4 -146 4l29 168q13 1 44 1.5t55 1.5t49 5q111 19 183.5 84t72.5 172q0 67 -46.5 112.5t-138.5 45.5q-113 0 -170 -47q-43 -37 -76 -154h-133q3 72 13 170 q8 53 33.5 86t80.5 62q46 26 130 44.5t182 18.5q102 0 177.5 -24t117.5 -66t61.5 -92t19.5 -109q0 -151 -87 -239t-253 -137q145 -18 221 -94.5t76 -188.5q0 -114 -47.5 -202.5t-130 -141.5t-184.5 -80t-219 -27q-194 0 -293 45q-46 20 -65 50t-19 81z" />
+<glyph unicode="4" d="M66 360l22 127l684 773q57 65 96 89.5t95 24.5q43 0 72.5 -23.5t29.5 -74.5q0 -28 -12 -102q-3 -17 -7 -38.5t-13.5 -67.5t-21 -103t-34.5 -171.5t-49 -246.5h205l-35 -185h-205l-16 -79q-13 -76 -13 -82q0 -43 49 -56q24 -5 142 -16l-27 -131q-164 4 -342 4 q-113 0 -289 -4l27 131q154 10 182 41q19 21 41 117l17 73h-598zM328 541h368q88 418 123 559z" />
+<glyph unicode="5" d="M96 139q0 61 33 219h137q6 -118 35 -151q53 -60 186 -60q143 0 234.5 75.5t91.5 213.5q0 102 -63 169t-191 67q-53 0 -117 -15q-58 -16 -96 -16q-80 0 -80 76q0 40 19 114l123 508h718l-30 -198h-557l-76 -305q94 24 213 24q171 0 282 -96t111 -270q0 -250 -165 -386.5 t-441 -136.5q-188 0 -279 43q-88 40 -88 125z" />
+<glyph unicode="6" d="M141 428q0 198 62 402.5t184 343.5q176 198 479 198q125 0 226 -37q40 -17 57.5 -42.5t17.5 -69.5q0 -86 -37 -211h-126q-7 100 -46 145q-30 35 -129 35q-154 0 -245 -96q-110 -120 -162 -365q50 63 138.5 100t184.5 37q178 0 268.5 -97.5t90.5 -250.5q0 -115 -37 -215 t-104.5 -174.5t-169.5 -117t-226 -42.5q-197 0 -311.5 118.5t-114.5 338.5zM377 401q0 -113 55 -181t156 -68q131 0 204.5 89t73.5 224q0 104 -55.5 160.5t-155.5 56.5q-157 0 -260 -133q-18 -92 -18 -148z" />
+<glyph unicode="7" d="M199 958q10 171 26 265q8 56 40.5 86t101.5 30h843l-24 -137l-697 -1194q-15 -25 -24.5 -37t-29.5 -23t-48 -11q-47 0 -73.5 18.5t-26.5 54.5q0 35 26 78l643 1053h-292q-202 0 -258 -19q-32 -10 -52.5 -47.5t-44.5 -116.5h-110z" />
+<glyph unicode="8" d="M94 322q0 253 346 372q-90 61 -130 139.5t-40 159.5q0 165 126 272t356 107q194 0 300.5 -82.5t106.5 -216.5q0 -70 -24 -127t-69.5 -98.5t-96.5 -70t-119 -54.5q225 -135 225 -334q0 -184 -139.5 -300t-390.5 -116q-211 0 -331 95t-120 254zM330 340q0 -81 61 -135.5 t166 -54.5q114 0 185 51t71 147q0 74 -57.5 136.5t-190.5 121.5q-123 -57 -179 -116.5t-56 -149.5zM522 1028q0 -67 44.5 -120.5t150.5 -106.5q211 112 211 237q0 67 -50.5 114.5t-138.5 47.5q-101 0 -159 -45.5t-58 -126.5z" />
+<glyph unicode="9" d="M98 127q0 106 29 207h129q7 -100 53 -146q36 -36 144 -36q161 0 249 100q94 105 150 362q-50 -62 -137.5 -97.5t-182.5 -35.5q-180 0 -272 97t-92 251q0 115 36 214t102.5 172.5t168.5 115t227 41.5q199 0 312.5 -116t113.5 -336q0 -206 -53 -406t-170 -340 q-170 -203 -481 -203q-71 0 -141.5 12.5t-108.5 28.5q-41 19 -58.5 44.5t-17.5 70.5zM406 883q0 -211 210 -211q166 0 263 127q16 78 16 147q0 113 -55.5 180.5t-157.5 67.5q-131 0 -203.5 -88.5t-72.5 -222.5z" />
+<glyph unicode=":" horiz-adv-x="491" d="M59 123q0 64 43.5 111t110.5 47q63 0 102 -38t39 -100q0 -73 -42 -118t-113 -45q-62 0 -101 39.5t-39 103.5zM182 756q0 64 42.5 110.5t109.5 46.5q63 0 103 -37.5t40 -97.5q0 -73 -43.5 -118.5t-114.5 -45.5q-61 0 -99 39.5t-38 102.5z" />
+<glyph unicode=";" horiz-adv-x="499" d="M-78 -262q242 118 242 229q0 44 -41 62q-72 32 -72 114q0 58 42 98t110 40q76 0 123 -49.5t47 -131.5q0 -64 -24 -124t-63 -107t-93.5 -90t-110.5 -74.5t-119 -58.5zM182 756q0 64 42.5 110.5t109.5 46.5q63 0 103 -37.5t40 -97.5q0 -73 -43.5 -118.5t-114.5 -45.5 q-61 0 -99 39.5t-38 102.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1204" d="M215 549l41 166l885 411l-41 -190l-707 -313l563 -314l-41 -172z" />
+<glyph unicode="=" horiz-adv-x="1204" d="M115 373l37 157h909l-33 -157h-913zM201 750l32 155h914l-37 -155h-909z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1204" d="M139 137l41 189l705 315l-557 309l39 176l694 -409l-35 -166z" />
+<glyph unicode="?" horiz-adv-x="913" d="M205 123q0 64 42 111t109 47q64 0 104 -38t40 -100q0 -73 -42.5 -118t-113.5 -45q-63 0 -101 39t-38 104zM231 1090q0 77 13 163q17 97 127 136q115 41 258 41q179 -1 268.5 -82.5t89.5 -208.5q0 -75 -23.5 -138.5t-59 -108.5t-95.5 -87.5t-115 -71t-135 -63.5 q-26 -12 -44.5 -28.5t-31 -43.5t-18.5 -45.5t-16 -58t-15 -58.5h-121q8 127 25 223q12 60 49 96t113 68q108 47 171.5 111t63.5 164q0 39 -13 73.5t-49.5 61.5t-92.5 27q-109 0 -147.5 -31.5t-63.5 -138.5h-138z" />
+<glyph unicode="@" horiz-adv-x="1662" d="M96 399q0 139 41 272t119 245.5t184 198t245 133.5t292 48q127 0 232.5 -30t177 -81.5t121 -121.5t72 -148t22.5 -163q0 -168 -65.5 -310.5t-190.5 -244.5q-55 -44 -125 -72.5t-127 -28.5q-73 0 -105.5 35t-32.5 109q-141 -144 -297 -144q-110 0 -171.5 67t-61.5 193 q0 121 57.5 246.5t153.5 216.5q72 69 146.5 98t168.5 29q101 0 181 -45l36 62h129l-122 -424q-50 -172 -50 -242q0 -53 45 -53q25 0 62 19.5t70 51.5q75 73 116 184t41 240q0 211 -134.5 326t-356.5 115q-156 0 -292 -62.5t-230 -168t-147.5 -249t-53.5 -301.5 q0 -250 165 -405.5t431 -155.5q328 0 598 189l55 -99q-143 -106 -315 -163.5t-357 -57.5q-328 0 -527.5 189t-199.5 503zM602 379q0 -74 33.5 -106.5t97.5 -32.5q48 0 114 30t114 72q17 76 40 160l78 272q-80 37 -149 37q-103 0 -176 -76q-66 -68 -109 -163.5t-43 -192.5z " />
+<glyph unicode="A" horiz-adv-x="1503" d="M-74 -2l27 137q93 5 137 37q24 19 47.5 51.5t75.5 122.5l555 950q38 65 78.5 94t99.5 29q116 0 133 -114l162 -1002q10 -61 22 -90.5t33 -50.5q24 -24 129 -27l-26 -137q-164 4 -281 4q-154 0 -338 -4l27 137q75 3 125 15q34 7 47.5 24.5t13.5 50.5q0 45 -8 97l-20 141 h-467l-78 -129q-58 -97 -58 -133q0 -29 23 -43q32 -17 164 -23l-27 -137q-160 4 -358 4q-78 0 -238 -4zM582 639h356q-46 294 -72 508q-102 -190 -284 -508z" />
+<glyph unicode="B" horiz-adv-x="1306" d="M-20 -2l26 135q123 5 150 25q22 13 32 34t23 89l158 819q14 66 14 92q0 38 -45 47q-34 8 -129 14l24 131h431q235 0 348 -24q241 -59 241 -260q0 -299 -331 -363q145 -17 222 -96t77 -199q0 -263 -248 -381q-60 -28 -158.5 -45.5t-208.5 -17.5q-39 0 -175.5 2t-192.5 2 q-102 0 -258 -4zM444 209q0 -34 39 -43q29 -6 127 -6q144 0 241 68t97 192q0 60 -21.5 104.5t-56.5 65.5q-39 26 -101 36.5t-173 10.5h-72l-73 -381q0 -1 -3.5 -20t-3.5 -27zM559 809h76q129 0 176 12q85 23 133.5 78t48.5 141q0 54 -25 93.5t-73 56.5q-65 20 -180 20h-80z " />
+<glyph unicode="C" horiz-adv-x="1378" d="M125 549q0 187 66 357t198 298q226 213 592 213q200 0 315 -53q80 -37 80 -121q0 -72 -35 -250h-139q0 126 -37 176q-50 62 -223 62q-122 0 -228 -48t-179 -143q-72 -93 -111 -218.5t-39 -248.5q0 -108 30.5 -189.5t84.5 -130t123 -72t151 -23.5q176 0 256 65 q52 42 111 168h139q-35 -193 -74 -260q-45 -76 -145 -111q-134 -49 -334 -49q-282 0 -442 155t-160 423z" />
+<glyph unicode="D" horiz-adv-x="1495" d="M-20 0l26 133q88 6 120.5 13t47.5 22q11 12 18 35.5t19 85.5l158 803q12 64 12 100q0 38 -41 47q-38 8 -131 14l24 131h369q300 0 445.5 -32t236.5 -101q81 -61 127.5 -166t46.5 -221q0 -541 -362 -751q-191 -113 -598 -113h-518zM449 238q0 -44 51 -56q47 -8 131 -8 q143 0 252.5 49t177 137.5t101.5 205.5t34 259q0 101 -38 186t-103 126q-104 69 -326 69h-96l-178 -921q-6 -30 -6 -47z" />
+<glyph unicode="E" horiz-adv-x="1263" d="M-20 0l26 133q127 2 166 33q13 11 19.5 33t17.5 78q3 13 4 20l156 797q14 68 14 100q0 13 -5.5 22.5t-17.5 15t-23 9.5t-30.5 6t-31.5 2.5t-35 1t-31 0.5l24 133h885q69 0 100 -22.5t31 -67.5q0 -84 -41 -268h-127q0 34 -4 84q-5 45 -35 70q-21 13 -60 19.5t-126 6.5 h-221l-80 -411h113q33 0 57 1t44.5 5.5t33.5 7.5t25 14t19 18.5t15.5 27t13.5 33t15 42.5h123q-44 -179 -88 -463h-119q2 20 2 58q-5 72 -51 84q-34 10 -121 10h-113l-69 -352q-6 -42 -6 -48q0 -45 43 -51q53 -8 190 -8q218 0 291 59q41 34 104 156h129q-12 -85 -40 -179 t-56 -144q-41 -66 -188 -66h-942z" />
+<glyph unicode="F" horiz-adv-x="1196" d="M-20 -2l26 135q85 4 119.5 11.5t48.5 23.5q10 10 17.5 35.5t21.5 95.5l156 799q14 68 14 90t-10.5 34.5t-34.5 16.5q-33 8 -129 12l24 133h906q47 0 75 -11t39 -30t11 -49q0 -44 -14 -123t-31 -145h-123q-4 128 -37 154q-18 14 -57 20t-130 6h-237l-86 -442h145 q70 0 105 6.5t55 26.5q39 36 66 125h118q-40 -171 -92 -480h-115v14v36t-2.5 30.5t-7 28.5t-13.5 20.5t-22 16.5q-32 12 -124 12h-144l-57 -287q-15 -88 -15 -108q0 -44 46 -58q27 -7 161 -14l-26 -135q-172 4 -344 4q-123 0 -303 -4z" />
+<glyph unicode="G" horiz-adv-x="1468" d="M125 555q0 202 77.5 386.5t225.5 303.5q212 172 528 172q232 0 359 -57q43 -18 61.5 -47.5t18.5 -75.5q0 -36 -11.5 -111.5t-25.5 -134.5h-141q-3 130 -33 172q-54 68 -248 68q-106 0 -205 -40t-172 -122q-82 -89 -128 -216t-46 -265q0 -96 22 -171t59.5 -123t90 -79.5 t109 -44t122.5 -12.5q159 0 213 43q23 20 35 78l23 118q8 54 8 68q0 34 -33 43q-31 10 -141 18l22 136q143 -5 291 -5q170 0 262 5l-22 -136q-31 -2 -43 -2.5t-31.5 -4t-24.5 -5t-16 -9.5t-13 -13t-7.5 -20.5t-7.5 -27.5t-7 -38l-47 -244q-16 -92 -86 -119 q-184 -74 -432 -74q-283 0 -444.5 151.5t-161.5 434.5z" />
+<glyph unicode="H" horiz-adv-x="1560" d="M-20 -2l26 135q83 4 116 12t52 23q4 4 7.5 9.5t7 14.5t7 23.5t7.5 33.5t10 48l156 801q14 82 14 94q0 38 -43 47q-27 7 -131 14l24 133q129 -6 306 -6q29 0 311 6l-27 -133q-64 -4 -99.5 -9t-49.5 -11t-23 -16q-17 -17 -37 -121l-55 -281h576l57 281q14 69 14 98 q0 13 -5.5 23t-18.5 16t-24.5 9.5t-33 5.5t-34.5 3t-38 1q-13 1 -20 1l25 133q258 -6 311 -6q35 0 305 6l-26 -133q-92 -6 -124.5 -13.5t-47.5 -22.5q-21 -21 -39 -119l-154 -797q-16 -91 -16 -106q0 -41 49 -50q26 -5 129 -12l-27 -135q-172 4 -311 4q-121 0 -305 -4 l28 135q137 7 166 33q22 22 41 131l66 338h-578l-65 -334q-17 -81 -17 -104q0 -40 50 -50q46 -8 129 -14l-27 -135q-172 4 -315 4q-119 0 -299 -4z" />
+<glyph unicode="I" horiz-adv-x="741" d="M-20 -2l26 135q132 7 168 35q17 14 39 129l156 801q14 82 14 96q0 20 -10 30t-33 15q-27 7 -131 14l24 133q258 -6 310 -6q35 0 311 6l-27 -133q-92 -6 -125.5 -13.5t-46.5 -22.5q-21 -21 -39 -119l-153 -797q-17 -81 -17 -106q0 -38 46 -48q27 -7 133 -14l-29 -135 q-172 4 -317 4q-119 0 -299 -4z" />
+<glyph unicode="J" horiz-adv-x="700" d="M-164 -205q233 85 303 266q45 113 84 308l139 729q15 77 15 98q0 35 -47 45q-38 6 -129 12l26 133q189 -6 308 -6q43 0 301 6l-27 -133q-84 -6 -116 -13t-46 -21q-22 -22 -39 -121l-135 -715q-31 -163 -61.5 -256t-79.5 -170q-57 -91 -177.5 -169t-277.5 -120z" />
+<glyph unicode="K" horiz-adv-x="1441" d="M-20 -2l26 135q84 4 116.5 11.5t49.5 21.5q20 20 41 129l156 805q14 75 14 94q0 34 -41 45q-31 8 -133 14l24 133q258 -6 306 -6q37 0 307 6l-27 -133q-87 -4 -120.5 -12.5t-47.5 -23.5q-19 -19 -37 -117l-155 -797q-17 -90 -17 -106q0 -40 47 -50q61 -9 132 -14 l-27 -135q-172 4 -315 4q-119 0 -299 -4zM563 698q164 138 418 387q84 84 84 125q0 15 -11.5 23t-37 12.5t-76.5 7.5l27 133q86 -4 315 -4q154 0 244 4l-27 -133q-52 -4 -88 -16q-55 -21 -168 -131q-42 -42 -213.5 -200t-206.5 -191q69 -136 166.5 -276.5t167.5 -213.5 q48 -51 107 -73q51 -18 102 -21l-25 -131q-68 -8 -149 -8q-158 0 -244 92q-79 88 -192.5 266t-192.5 348z" />
+<glyph unicode="L" horiz-adv-x="1245" d="M-20 0l26 133q131 5 164 31q14 13 23 41t20 90l156 803q14 75 14 94q0 35 -45 47q-52 11 -129 14l24 133q189 -6 308 -6q179 0 311 6l-27 -133q-147 -5 -172 -36q-22 -25 -39 -121l-157 -799q-8 -48 -8 -64q0 -45 43 -51q53 -6 174 -6q126 0 187.5 12.5t94.5 40.5 q45 40 105 166h118q-59 -253 -102 -329q-37 -66 -174 -66h-915z" />
+<glyph unicode="M" horiz-adv-x="1832" d="M-23 -2l27 135q134 6 156 31q32 37 59 170q165 762 174 807q6 37 6 51q0 25 -11.5 35.5t-37.5 15.5q-26 7 -127 10l29 133q90 -4 280 -4q156 0 213 4q135 -613 177 -849q7 13 44.5 79.5t65 113.5t82.5 139.5t134.5 222t183.5 294.5q136 -4 247 -4q168 0 240 4l-27 -135 q-85 -3 -115.5 -10t-43.5 -22q-21 -21 -39 -115q-2 -10 -10 -61.5t-39.5 -237.5t-81.5 -481q-15 -90 -15 -127q0 -41 51 -52q37 -9 123 -12l-26 -135q-192 4 -307 4q-72 0 -314 -4l27 135q137 4 170 37q20 23 35 106q3 15 32.5 178.5t67 373.5t53.5 296q-160 -290 -510 -852 q-24 -37 -49 -54t-65 -17q-78 0 -95 80q-142 635 -184 845q-147 -731 -170 -864q-8 -46 -8 -63q0 -26 12.5 -38.5t42.5 -17.5q41 -7 121 -10l-29 -135q-168 4 -241 4q-96 0 -308 -4z" />
+<glyph unicode="N" horiz-adv-x="1542" d="M-23 -2l29 135q83 4 118 13t52 26q17 24 45 170q14 71 45 227.5t56.5 284t37.5 182.5q21 111 21 148q0 49 -55 57q-40 7 -123 12l26 133q86 -4 256 -4q113 0 185 4q54 -115 119 -252t100 -212t77 -164t65 -138t47.5 -102.5t40 -89t28.5 -66.5q25 147 69.5 394t49.5 280 q14 109 14 144q0 46 -41 57q-62 14 -133 16l27 133q218 -4 288 -4q32 0 258 4l-26 -133q-85 -4 -115.5 -11t-46.5 -23q-12 -12 -22 -47t-31 -132q-101 -508 -181 -942q-11 -62 -39 -90t-90 -28q-48 0 -72.5 19.5t-43.5 61.5q-139 305 -248 540.5t-153 331t-76 167.5 q-71 -375 -140 -756q-20 -114 -20 -147q0 -45 55 -52q32 -5 123 -12l-27 -135q-208 4 -284 4q-47 0 -265 -4z" />
+<glyph unicode="O" horiz-adv-x="1482" d="M127 532q0 190 65 374t193 308q207 201 518 201q274 0 409.5 -140.5t135.5 -383.5q0 -192 -55 -377t-174 -317q-98 -109 -234.5 -166.5t-286.5 -57.5q-173 0 -299 59t-199 186t-73 314zM385 545q0 -387 328 -387q199 0 313 159q78 107 117 262.5t39 303.5q0 348 -316 348 q-201 0 -321 -158q-75 -99 -117.5 -246t-42.5 -282z" />
+<glyph unicode="P" horiz-adv-x="1251" d="M-20 -2l26 135q120 7 154 25q18 9 28 34.5t25 98.5l156 803q12 58 12 94q0 24 -11.5 35t-37.5 16q-38 9 -123 12l24 133h453q225 0 352 -26q68 -15 118.5 -46.5t79.5 -75t42.5 -92.5t13.5 -106q0 -171 -78 -285t-213.5 -166t-324.5 -52q-127 0 -172 2l-45 -234 q-17 -87 -17 -104q0 -43 45 -52q36 -7 156 -14l-27 -135q-184 4 -358 4q-74 0 -278 -4zM539 709q31 -2 116 -2q62 0 112.5 6.5t101.5 26.5t86 52t57 86.5t22 127.5q0 62 -21.5 102.5t-65.5 61.5t-96 28.5t-128 7.5h-90z" />
+<glyph unicode="Q" horiz-adv-x="1482" d="M127 532q0 190 65 374t193 308q207 201 518 201q274 0 409.5 -140.5t135.5 -383.5q0 -192 -55 -377t-174 -317q-122 -137 -310 -193q80 -83 197 -143q61 -31 152.5 -50.5t166.5 -19.5q38 0 50 2l-27 -135q-59 -10 -154 -10q-98 0 -193 16t-151 41q-98 42 -174 102 t-182 173q-219 26 -343 164t-124 388zM385 545q0 -387 328 -387q199 0 313 159q78 107 117 262.5t39 303.5q0 348 -316 348q-201 0 -321 -158q-75 -99 -117.5 -246t-42.5 -282z" />
+<glyph unicode="R" horiz-adv-x="1366" d="M-20 -2l26 135q125 8 156 27q17 10 27.5 35.5t23.5 95.5l158 815q12 68 12 86q0 21 -12 32t-39 17q-25 4 -123 12l24 131h441q230 0 342 -28q122 -33 186 -117t64 -197q0 -185 -97.5 -296t-271.5 -154q62 -137 105.5 -215t89.5 -131q56 -62 106 -86q44 -18 100 -25 l-28 -137q-14 -2 -99 -2q-177 0 -272 102q-63 66 -119 177t-125 292q-69 0 -145 6l-51 -274q-17 -87 -17 -102q0 -14 5 -24t16 -16.5t22.5 -10.5t30 -6t32.5 -3t35.5 -2t34.5 -2l-28 -135q-184 4 -334 4q-72 0 -276 -4zM545 745q31 -2 117 -2q346 0 346 269q0 56 -29 101.5 t-76 64.5q-68 24 -188 24h-80z" />
+<glyph unicode="S" horiz-adv-x="1183" d="M72 195q3 109 30 243h127q6 -137 60 -202q31 -38 97.5 -62t158.5 -24q142 0 208 56.5t66 141.5q0 59 -32.5 103t-102.5 79l-231 117q-224 112 -224 330q0 209 152.5 323.5t419.5 114.5q352 0 352 -160q0 -118 -35 -258h-127q0 91 -20 138t-58 71q-53 33 -172 33 q-129 0 -193.5 -56t-64.5 -141q0 -56 31.5 -99.5t110.5 -82.5l225 -110q227 -114 227 -324q0 -116 -43.5 -204.5t-122 -142.5t-182 -81t-229.5 -27q-63 0 -122 7t-115.5 24t-98 42t-67 64t-25.5 87z" />
+<glyph unicode="T" horiz-adv-x="1363" d="M188 977q10 105 37 280q11 64 43 95.5t101 31.5h952q68 0 97.5 -21.5t29.5 -70.5q0 -36 -17.5 -134.5t-39.5 -180.5h-115q0 101 -7.5 145t-25.5 60q-21 20 -68 24t-219 4l-176 -905q-14 -69 -14 -108t41 -50q34 -8 143 -14l-24 -135q-164 4 -318 4q-139 0 -315 -4l24 135 q66 4 103.5 10t49.5 12t24 17q20 18 41 127l176 911q-165 0 -219 -5t-82 -23q-57 -31 -103 -205h-119z" />
+<glyph unicode="U" horiz-adv-x="1576" d="M190 1253l27 133q160 -4 303 -4q162 0 326 4l-25 -133q-95 -4 -125 -11.5t-47 -24.5q-19 -19 -39 -107q-53 -240 -96 -473q-31 -162 -31 -240q0 -126 77.5 -183.5t213.5 -57.5q107 0 192.5 30.5t131.5 87.5q34 40 60.5 105.5t40.5 118t36 153.5q8 38 80 443q8 57 8 88 q0 26 -9.5 37.5t-33.5 17.5q-33 9 -141 16l24 133q74 -2 310 -2q21 0 110 1t129 1l-26 -133q-143 -7 -166 -45q-18 -30 -39 -131l-92 -467q-38 -198 -79 -303t-114 -176q-165 -162 -485 -162q-74 0 -140.5 10.5t-130.5 36.5t-110 66t-74.5 103.5t-28.5 144.5q0 107 39 299 q14 66 36.5 173t37.5 180.5t22 115.5q13 73 13 86q0 41 -41 53q-39 12 -144 16z" />
+<glyph unicode="V" horiz-adv-x="1505" d="M174 1253l25 133q164 -4 331 -4q116 0 304 4l-27 -133q-87 -3 -133 -14q-29 -6 -43.5 -20.5t-14.5 -42.5q0 -37 13 -113q110 -726 123 -815q190 362 434 811q49 85 49 139q0 46 -114 53q-16 1 -46 1l-20 1l26 133q160 -4 277 -4q149 0 305 4l-27 -133q-61 -3 -90.5 -9.5 t-50.5 -22.5q-22 -16 -42 -46.5t-60 -101.5l-555 -991q-34 -61 -74 -87t-100 -26q-120 0 -138 115l-170 1003q-11 69 -23 101t-34 43q-28 19 -125 22z" />
+<glyph unicode="W" horiz-adv-x="2097" d="M180 1253l25 133q258 -4 305 -4q229 0 315 4l-26 -133q-106 -3 -150 -18q-13 -6 -22.5 -13.5t-15.5 -19.5t-9.5 -20.5t-4.5 -27t-1.5 -28t0 -33.5t0.5 -34q23 -682 25 -754q144 316 473 971q29 57 61.5 86t93.5 29t88 -26t33 -85q68 -695 84 -979q30 75 71 170.5 t111.5 260.5t137.5 325q41 108 41 137q0 55 -162 58q-17 1 -25 1l27 133q196 -4 297 -4q114 0 270 4l-24 -133q-89 -5 -130 -32q-22 -17 -41 -50t-49 -98l-450 -985q-28 -62 -67 -90.5t-99 -28.5q-61 0 -90 24.5t-33 84.5q-15 173 -33 377.5t-25.5 286t-14 167.5t-9.5 144 q-111 -245 -467 -965q-31 -62 -70 -90.5t-96 -28.5q-60 0 -91 25.5t-34 83.5l-59 1026q-3 52 -12 82t-31 41q-33 20 -117 26z" />
+<glyph unicode="X" horiz-adv-x="1509" d="M-45 -2l25 135q105 4 149 31q10 6 19.5 13.5t15.5 11.5t17 15l13.5 13.5t16.5 17.5t16 17l428 473l-231 418q-40 72 -66 86q-33 20 -133 24l27 133q127 -4 321 -4q246 0 316 4l-27 -133q-92 -5 -120 -16q-34 -15 -35 -43q0 -22 30 -84l140 -270l225 256q57 63 57 104 q0 17 -11.5 28t-37.5 16t-42.5 6t-51.5 3l28 133q72 -4 310 -4q153 0 241 4l-26 -133q-79 -2 -123 -30q-30 -17 -105 -99l-389 -413l254 -467q27 -49 45 -68t55 -29t115 -14l-24 -135q-262 4 -328 4q-65 0 -319 -4l22 135q65 2 117 14q47 13 47 50q0 20 -25 65l-176 324 l-262 -303q-59 -67 -59 -99q0 -16 9 -25.5t32 -13.5q44 -9 131 -12l-25 -135q-226 4 -330 4q-153 0 -276 -4z" />
+<glyph unicode="Y" horiz-adv-x="1325" d="M154 1253l26 133q226 -4 281 -4q83 0 301 4l-29 -133q-89 -3 -123 -14q-39 -12 -39 -51q0 -31 23 -92q131 -341 145 -379q88 117 301 387q54 68 54 102q0 30 -36.5 38.5t-101.5 8.5l27 133q94 -4 313 -4q105 0 193 4l-27 -133q-57 -3 -100 -30q-8 -5 -18 -15t-24 -26 t-26.5 -30.5t-34 -40.5t-36.5 -44l-426 -512l-54 -270q-12 -59 -12 -88q0 -11 3 -19t9.5 -14t13 -10.5t18.5 -7.5t22 -5t26 -3.5t27 -2t30 -1t31 -1.5l-24 -135q-218 4 -312 4q-117 0 -313 -4l27 135q95 4 126.5 12t45.5 25q17 17 35 104l55 279l-219 539q-20 49 -29 69.5 t-21.5 39.5t-25.5 28q-30 21 -102 24z" />
+<glyph unicode="Z" horiz-adv-x="1316" d="M-10 0l8 78l971 1134q-305 0 -377 -3t-105 -15q-32 -12 -57 -60t-51 -151h-143q15 209 28 291q19 110 158 110h944l-12 -77l-969 -1123q63 -6 256 -6q284 0 344 51q56 41 115 185h149q-16 -93 -40 -193.5t-42 -142.5q-15 -40 -45 -59t-92 -19h-1040z" />
+<glyph unicode="[" horiz-adv-x="638" d="M18 -348l369 1894h418l-21 -108h-237l-324 -1676h236l-21 -110h-420z" />
+<glyph unicode="\" horiz-adv-x="743" d="M238 1470l122 23l242 -1634l-127 -19z" />
+<glyph unicode="]" horiz-adv-x="638" d="M-123 -348l23 108h235l326 1676h-238l21 110h422l-369 -1894h-420z" />
+<glyph unicode="^" horiz-adv-x="1175" d="M221 750l494 733h168l155 -731h-159l-117 544l-359 -546h-182z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-119 -283l23 119h1011l-22 -119h-1012z" />
+<glyph unicode="`" horiz-adv-x="604" d="M106 1419q0 39 31 65.5t68 26.5q31 0 54.5 -19.5t57.5 -78.5l177 -297l-74 -53l-244 244q-39 39 -54.5 62.5t-15.5 49.5z" />
+<glyph unicode="a" horiz-adv-x="1193" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q47 0 105 -11.5t96 -33.5l39 70h172l-129 -522q-41 -165 -41 -240q0 -33 16 -49t56 -16q62 0 120 18l-30 -135q-122 -53 -238 -53q-81 0 -113 40t-32 123q-141 -170 -334 -170q-155 0 -232 85.5t-77 238.5zM311 330 q0 -172 154 -172q125 0 248 123q7 62 37 180l75 278q-65 39 -155 39q-121 0 -209 -82q-64 -58 -107 -163.5t-43 -202.5z" />
+<glyph unicode="b" horiz-adv-x="1148" d="M74 49q31 117 61 264l158 725q33 151 33 209q0 37 -18.5 51.5t-57.5 14.5q-41 0 -86 -10l26 124q149 70 281 70q115 0 115 -104q0 -40 -19 -133q-59 -288 -104 -459q69 76 158 121t184 45q274 0 274 -301q0 -322 -178 -516q-151 -170 -432 -170q-103 0 -215 18t-180 51z M332 190q64 -26 172 -26q150 0 239 123q45 64 68 149t23 160q0 87 -37.5 128.5t-122.5 41.5q-53 0 -118 -27t-120 -71z" />
+<glyph unicode="c" horiz-adv-x="968" d="M74 350q0 146 53 279.5t160 218.5q148 119 350 119q107 0 180 -25q52 -19 72 -45t20 -76q0 -80 -32 -198h-132q-3 110 -34 137q-39 31 -103 31q-93 0 -163.5 -62.5t-104 -152.5t-33.5 -187q0 -118 51 -174.5t154 -56.5q140 0 297 94l68 -129q-197 -152 -424 -152 q-177 0 -278 101t-101 278z" />
+<glyph unicode="d" horiz-adv-x="1206" d="M72 309q0 135 52.5 270.5t147.5 227.5q163 154 410 154q112 0 182 -37l31 133q31 142 31 188q0 36 -18 52t-58 16q-34 0 -84 -10l25 124q155 70 280 70q115 0 115 -111q0 -20 -4 -49t-14 -78t-16.5 -79.5t-24 -105t-23.5 -101.5l-129 -563q-29 -121 -29 -193 q0 -32 16 -48.5t54 -16.5q62 0 121 18l-31 -135q-116 -53 -238 -53q-61 0 -99 26t-44 80q-2 14 -2 59q-134 -172 -332 -172q-162 0 -240.5 89.5t-78.5 244.5zM311 352q0 -194 164 -194q64 0 132.5 36t117.5 89q8 51 39 184l63 276q-71 41 -170 41q-130 0 -208 -84 q-59 -60 -98.5 -160t-39.5 -188z" />
+<glyph unicode="e" horiz-adv-x="966" d="M74 344q0 177 67.5 318.5t193 223t288.5 81.5q155 0 231 -67t76 -171q0 -78 -32 -136.5t-103 -102.5t-192.5 -67t-293.5 -24q-4 -16 -4 -47q0 -84 51.5 -139t159.5 -55q77 0 151 23.5t175 80.5l67 -131q-217 -160 -469 -160q-161 0 -263.5 96.5t-102.5 276.5zM328 555 q393 5 393 158q0 46 -26.5 66t-86.5 20q-97 0 -173.5 -65t-106.5 -179z" />
+<glyph unicode="f" horiz-adv-x="706" d="M-330 -436q0 61 31 178h121q0 -81 17 -110t77 -29q34 0 66.5 18t52.5 49q43 61 71 228l150 866h-172l25 125q93 15 135 41q23 13 35 36.5t24 77.5q35 160 86 246t127 135q114 72 270 72q94 0 160 -27q58 -24 58 -98q0 -69 -31 -209h-127q0 31 -1.5 52.5t-8 43.5t-17 35 t-30 21t-46.5 8q-86 0 -133 -66q-22 -29 -38 -82.5t-40 -168.5l-18 -88q124 0 238 -7l-27 -145q-126 -6 -240 -6l-161 -850q-27 -146 -66.5 -232t-101.5 -141q-112 -100 -275 -100q-87 0 -155 33q-56 29 -56 94z" />
+<glyph unicode="g" horiz-adv-x="1075" d="M-47 -295q0 43 17 80.5t39 63t62 51t68 39.5t74 34q-41 19 -61.5 51t-20.5 66q0 117 148 207q-156 73 -156 252q0 209 162 330q118 88 295 88q161 0 241 -54q232 0 295 -2l-29 -149q-85 -6 -159 -6q9 -13 15.5 -44.5t6.5 -56.5q0 -185 -139 -299q-128 -102 -319 -102 q-60 0 -95 6q-61 -42 -61 -84q0 -25 22 -41t76 -26q300 -58 320 -62q112 -21 165.5 -82.5t53.5 -152.5q0 -96 -42 -169.5t-116.5 -117.5t-170.5 -66t-210 -22q-241 0 -361 75.5t-120 192.5zM168 -244q0 -63 72 -104t227 -41q132 0 198 39.5t66 101.5q0 47 -35 72.5 t-123 42.5q-227 41 -256 53q-60 -26 -104.5 -68.5t-44.5 -95.5zM344 567q0 -77 48.5 -114t123.5 -37q98 0 158.5 63t60.5 164q0 162 -166 162q-99 0 -162 -68t-63 -170z" />
+<glyph unicode="h" horiz-adv-x="1167" d="M68 0l225 1038q33 151 33 209q0 37 -18.5 51.5t-57.5 14.5q-41 0 -86 -10l26 124q149 70 281 70q115 0 115 -104q0 -40 -19 -133q-57 -276 -108 -474q71 82 166 129.5t192 47.5q201 0 201 -187q0 -69 -27 -180l-51 -205q-31 -118 -31 -174q0 -35 17 -50t55 -15 q58 0 121 18l-29 -135q-119 -53 -252 -53q-155 0 -155 127q0 74 26 178l64 266q18 85 18 121q0 86 -94 86q-120 0 -246 -113l-147 -647h-219z" />
+<glyph unicode="i" horiz-adv-x="641" d="M88 764l27 123q139 71 243 71q72 0 107 -31.5t35 -103.5q0 -55 -47 -243l-50 -191q-32 -122 -32 -172q0 -35 16.5 -50t54.5 -15q56 0 123 18l-30 -135q-119 -53 -252 -53q-158 0 -158 129q0 54 29 176l57 237q4 18 13 54.5t13 54t7.5 39t3.5 33.5q0 36 -17 50.5t-55 14.5 q-51 0 -88 -6zM274 1303q0 69 44.5 116t111.5 47q64 0 97.5 -36.5t33.5 -96.5q0 -70 -42.5 -117t-110.5 -47q-60 0 -97 38t-37 96z" />
+<glyph unicode="j" horiz-adv-x="612" d="M-209 -430q157 43 217 137q48 77 109 328q18 75 35.5 156.5t38 182.5t30.5 148q27 137 27 180q0 38 -16.5 53t-55.5 15q-49 0 -86 -6l25 123q139 71 250 71q69 0 102 -31.5t33 -103.5q0 -37 -31 -200q-27 -147 -127 -590q-35 -166 -73 -260t-97 -160 q-51 -60 -150.5 -111.5t-199.5 -64.5zM281 1303q0 69 44.5 116t110.5 47q65 0 99 -36.5t34 -96.5q0 -70 -42.5 -117t-110.5 -47q-62 0 -98.5 38t-36.5 96z" />
+<glyph unicode="k" horiz-adv-x="1112" d="M68 0l225 1038q33 151 33 209q0 37 -18.5 51.5t-57.5 14.5q-41 0 -86 -10l26 124q149 70 281 70q115 0 115 -104q0 -51 -19 -144q-31 -133 -145 -648t-135 -601h-219zM430 518q134 187 254 303q148 142 285 142q59 0 93 -28t34 -79q0 -48 -27 -158h-111q-5 58 -53 58 q-59 0 -127 -62q-82 -73 -141 -149q89 -198 190 -318q58 -75 138 -75q49 0 110 14l-33 -137q-22 -14 -70.5 -28.5t-90.5 -14.5q-77 0 -127 21t-90 69q-58 70 -122 194t-112 248z" />
+<glyph unicode="l" horiz-adv-x="608" d="M102 111q0 41 27 176l160 725q39 176 39 231q0 37 -16.5 53.5t-53.5 16.5q-30 0 -92 -10l27 124q61 30 137 50t129 20q68 0 97.5 -25.5t29.5 -87.5q0 -67 -54 -297l-155 -698q-29 -126 -29 -172q0 -35 16 -50t54 -15q58 0 125 18l-33 -135q-119 -53 -252 -53 q-156 0 -156 129z" />
+<glyph unicode="m" horiz-adv-x="1728" d="M84 764l27 123q60 32 130 51.5t124 19.5q116 0 116 -118q0 -16 -6 -64q74 84 171 135.5t190 51.5q89 0 137 -43t49 -140q72 85 168 134t192 49q197 0 197 -185q0 -69 -25 -172l-51 -215q-30 -131 -30 -172q0 -36 15.5 -51.5t51.5 -15.5q62 0 125 18l-31 -135 q-58 -28 -128.5 -40.5t-121.5 -12.5q-157 0 -157 127q0 54 28 178l66 274q16 66 16 111q0 48 -22.5 68t-65.5 20q-110 0 -233 -105q-13 -70 -23 -112l-127 -543h-223l129 561q16 66 16 111q0 48 -21.5 68t-66.5 20q-104 0 -237 -113q-12 -81 -33 -170l-113 -477h-219 l109 492q35 156 35 208q0 39 -20.5 55.5t-61.5 16.5q-36 0 -76 -8z" />
+<glyph unicode="n" horiz-adv-x="1196" d="M84 764l27 123q59 31 130 51t124 20q116 0 116 -114q0 -44 -6 -68q72 83 173.5 135t199.5 52q199 0 199 -187q0 -77 -25 -180l-51 -205q-31 -118 -31 -174q0 -35 16.5 -50t53.5 -15q60 0 123 18l-31 -135q-116 -53 -252 -53q-154 0 -154 127q0 70 27 178l63 266 q17 80 17 121q0 47 -24 66.5t-70 19.5q-120 0 -246 -113q-8 -63 -33 -170l-113 -477h-219l105 479q39 176 39 219q0 40 -19.5 57t-60.5 17q-38 0 -78 -8z" />
+<glyph unicode="o" horiz-adv-x="1093" d="M74 358q0 121 36.5 240t114.5 207q143 162 391 162q186 0 298 -92.5t112 -272.5q0 -128 -39.5 -255t-120.5 -218q-68 -75 -170 -116.5t-211 -41.5q-187 0 -299 96.5t-112 290.5zM307 375q0 -225 203 -225q125 0 195 102q42 61 64 153.5t22 180.5q0 205 -197 205 q-127 0 -199 -95q-44 -60 -66 -147t-22 -174z" />
+<glyph unicode="p" horiz-adv-x="1179" d="M-23 -535l230 1029q33 153 33 204q0 40 -19.5 57t-60.5 17q-38 0 -78 -8l27 123q139 71 253 71q115 0 115 -116q0 -38 -4 -62q66 76 166 130.5t201 54.5q268 0 268 -297q0 -140 -44 -276t-134 -238q-153 -172 -432 -172q-100 0 -183 18l-116 -535h-222zM360 193 q76 -27 172 -27q152 0 240 125q43 59 66.5 145t23.5 160q0 85 -38 127.5t-122 42.5q-96 0 -241 -119q-5 -48 -29 -145z" />
+<glyph unicode="q" horiz-adv-x="1183" d="M70 309q0 135 52.5 271.5t147.5 228.5q83 78 190 119t261 41q67 0 171.5 -18.5t192.5 -59.5q-29 -110 -84 -350l-239 -1076h-221l147 648q-58 -68 -139 -103t-164 -35q-162 0 -238.5 89t-76.5 245zM311 352q0 -95 39.5 -142.5t124.5 -47.5q65 0 131.5 33.5t112.5 85.5 l106 475q-56 30 -174 30q-124 0 -205 -84q-58 -61 -96.5 -161.5t-38.5 -188.5z" />
+<glyph unicode="r" horiz-adv-x="874" d="M72 764l26 123q139 71 256 71q113 0 113 -114q0 -48 -4 -68q48 71 127.5 129t169.5 58q55 0 87 -24.5t32 -70.5q0 -89 -39 -202h-125q-3 47 -20 67.5t-56 20.5q-49 0 -98 -37.5t-84 -89.5q-40 -195 -45 -217l-95 -410h-219l101 457q30 150 30 239q0 40 -19 58t-60 18 q-38 0 -78 -8z" />
+<glyph unicode="s" horiz-adv-x="944" d="M61 147q3 85 25 193h117q1 -42 9.5 -72.5t16 -42.5t21.5 -28q52 -52 168 -52q86 0 130 23.5t44 64.5q0 33 -17.5 56.5t-60.5 46.5l-166 84q-184 94 -184 244q0 81 35 141.5t96.5 95t135 50.5t159.5 16q146 0 225 -43q55 -28 55 -107q0 -68 -24 -182h-117q-8 107 -47 133 q-42 29 -133 29q-157 0 -160 -95q0 -31 19.5 -53t68.5 -45l162 -78q182 -89 182 -239q0 -70 -24 -125.5t-64 -90.5t-97 -58t-118 -32.5t-131 -9.5q-143 0 -235 43q-52 22 -71.5 54.5t-19.5 78.5z" />
+<glyph unicode="t" horiz-adv-x="708" d="M76 764l22 123q97 22 123 33q42 17 66 61q23 41 78 154q36 71 108 71t72 -59q0 -21 -45 -229q123 0 237 -7l-26 -145q-126 -6 -242 -6l-61 -299q-27 -139 -27 -203q0 -46 24 -72t72 -26q61 0 144 24l28 -141q-139 -68 -301 -68q-97 0 -153 50.5t-56 150.5q0 39 17 139 q44 223 92 449h-172z" />
+<glyph unicode="u" horiz-adv-x="1212" d="M90 762l27 123q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -53 -33 -189l-65 -266q-19 -86 -19 -119q0 -88 96 -88q116 0 246 113q5 36 33 170l110 477h222l-105 -477q-3 -14 -12.5 -58.5t-15 -72.5t-10.5 -61.5t-5 -51.5q0 -37 17 -53.5t55 -16.5q48 0 121 19 l-31 -133q-130 -56 -242 -56q-54 0 -92.5 26t-46.5 81q-2 18 -2 63q-71 -81 -169.5 -126.5t-199.5 -45.5q-99 0 -155 49t-56 140q0 74 25 180l53 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8z" />
+<glyph unicode="v" horiz-adv-x="1138" d="M72 764l26 123q58 33 133 52t121 19q68 0 97.5 -26.5t29.5 -89.5q0 -57 -26 -187l-52 -276q-16 -98 -16 -125q0 -84 82 -84q59 0 122.5 33.5t108.5 85.5q67 81 108.5 196t41.5 191q0 56 -24 78t-81 22q-38 0 -84 -8l25 127q105 63 221 63q85 0 118.5 -46.5t33.5 -133.5 q0 -144 -68 -312.5t-170 -279.5q-105 -112 -224.5 -162.5t-229.5 -50.5q-99 0 -156 50t-57 141q0 63 20 176l39 211q18 99 18 154q0 39 -18 53t-57 14q-36 0 -82 -8z" />
+<glyph unicode="w" horiz-adv-x="1652" d="M72 764l26 123q61 32 134 51.5t118 19.5q71 0 101 -26.5t30 -89.5q0 -57 -26 -187l-52 -276q-16 -98 -16 -125q0 -44 16.5 -64t59.5 -20q40 0 87.5 30t88.5 76q54 65 80 119l88 508h217l-82 -487q-16 -101 -16 -162q0 -84 82 -84q99 0 206 119q69 78 108.5 192.5 t39.5 194.5q0 56 -23.5 78t-78.5 22q-34 0 -80 -8l24 127q105 63 213 63q89 0 122.5 -47t33.5 -135q0 -148 -66.5 -313.5t-169.5 -274.5q-107 -112 -222 -163.5t-220 -51.5q-147 0 -172 119q-8 36 -8 121q-75 -123 -173.5 -181.5t-185.5 -58.5q-95 0 -149.5 50t-54.5 141 q0 77 18 176l41 211q18 99 18 154q0 39 -18 53t-57 14q-36 0 -82 -8z" />
+<glyph unicode="x" horiz-adv-x="1122" d="M-4 94q0 35 6 96.5t6 67.5h121q6 -74 51 -74t96 60q86 110 177 248q-34 94 -76 192q-28 59 -50 76.5t-59 17.5q-46 0 -108 -30l20 126q120 82 223 82q63 0 95.5 -29t60.5 -98q18 -41 66 -182q100 154 153 209q88 98 203 98q145 0 145 -112q0 -91 -14 -160h-125 q-8 59 -51 59q-50 0 -100 -57q-74 -81 -154 -207q10 -24 32 -80.5t42 -104t37 -81.5q20 -41 45.5 -57.5t64.5 -16.5q59 0 127 33l-22 -131q-43 -30 -101 -46t-112 -16q-79 0 -127.5 36t-79.5 106q-42 99 -70 194q-94 -158 -164 -241q-49 -57 -100.5 -78t-114.5 -21 q-72 0 -107.5 36.5t-35.5 84.5z" />
+<glyph unicode="y" horiz-adv-x="1202" d="M59 -416q0 85 29 199h129q0 -41 2 -59q2 -42 27 -70q41 -41 133 -41q59 0 109.5 21t78.5 61q58 82 105 268q6 25 20.5 91t20.5 87q-163 -166 -359 -166q-100 0 -152 48.5t-52 140.5q0 60 26 180l49 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8l27 123 q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -33 -33 -189l-61 -266q-19 -86 -19 -119q0 -48 21 -68t67 -20q115 0 252 123l139 637h224q-28 -134 -183 -928q-33 -170 -77 -272.5t-105 -163.5q-130 -133 -383 -133q-160 0 -233 49q-53 35 -56 94z" />
+<glyph unicode="z" horiz-adv-x="1056" d="M6 0l12 82l637 713q-164 0 -260 -7q-59 -3 -82 -40q-26 -37 -51 -134h-127q5 137 15 199q8 59 36.5 92t89.5 33h721l-14 -88l-629 -705q68 -4 164 -4q142 0 209 23q26 10 45.5 27t35 47t24 51t22.5 63h123q-18 -152 -47 -256q-23 -96 -137 -96h-787z" />
+<glyph unicode="{" horiz-adv-x="636" d="M27 571l18 107q120 10 168.5 72t79.5 235l43 234q14 72 33.5 124t55 99t86.5 76t128 46t178 17l-20 -106q-136 0 -193.5 -58.5t-91.5 -230.5l-55 -281q-18 -96 -52.5 -154t-84 -87t-130.5 -48q84 -20 125 -61.5t41 -122.5q0 -43 -12 -110l-61 -312q-15 -77 -15 -127 q0 -80 43.5 -114.5t145.5 -34.5l-21 -109q-181 0 -264.5 59.5t-83.5 184.5q0 45 12 106l60 310q16 82 16 131q0 73 -34.5 110.5t-114.5 44.5z" />
+<glyph unicode="|" horiz-adv-x="544" d="M18 -375l381 1950h160l-381 -1950h-160z" />
+<glyph unicode="}" horiz-adv-x="636" d="M-139 -375l18 107q138 0 194.5 58t90.5 230l55 281q28 141 87 201.5t179 87.5q-84 20 -125 61.5t-41 122.5q0 38 13 111l61 313q15 74 15 125q0 80 -43 115t-144 35l21 108q179 0 262.5 -59t83.5 -183q0 -43 -13 -106l-59 -311q-16 -82 -16 -131q0 -74 34.5 -111.5 t116.5 -44.5l-20 -107q-120 -10 -168.5 -72t-79.5 -235l-43 -233q-14 -72 -33.5 -124t-55 -99.5t-86.5 -76.5t-127 -46t-177 -17z" />
+<glyph unicode="~" horiz-adv-x="1193" d="M127 537q82 104 157.5 151t155.5 47q49 0 94 -16.5t140 -75.5q92 -61 151 -61q52 0 100 31t111 112l92 -107q-153 -202 -307 -202q-90 0 -198 69q-75 49 -116.5 66.5t-76.5 17.5q-57 0 -104.5 -32t-104.5 -109z" />
+<glyph unicode="&#xa1;" horiz-adv-x="606" d="M-4 -313q0 31 12 71q6 26 18 69t35.5 121t46 151.5t66 215.5t78.5 258h108q-56 -675 -81 -847q-12 -67 -48 -104.5t-110 -37.5q-60 0 -92.5 28.5t-32.5 74.5zM203 881q0 73 42.5 118t112.5 45q63 0 101.5 -39.5t38.5 -103.5q0 -63 -43 -110.5t-109 -47.5q-63 0 -103 38.5 t-40 99.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1019" d="M131 354q0 130 50 251t143 206q127 115 307 129l41 211h108l-41 -209q80 -3 144 -22q90 -26 90 -113q0 -72 -37 -189h-127q0 92 -31 127q-23 20 -71 27l-119 -602q127 6 258 82l55 -123q-70 -54 -162 -89t-184 -44l-45 -232h-107l43 230q-143 11 -229 108t-86 252z M362 381q0 -160 121 -199l115 586q-91 -19 -145 -88q-44 -55 -67.5 -134.5t-23.5 -164.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1241" d="M10 0l27 145q165 31 243.5 130t94.5 270h-203l31 143h178q-4 70 -4 168q0 247 142 381.5t409 134.5q133 0 219 -33q43 -19 61.5 -47t18.5 -78q0 -70 -37 -221h-123q0 113 -35 158q-37 43 -149 43q-125 0 -188 -71.5t-74 -219.5q-7 -96 -7 -215h316l-29 -143h-297 q-11 -112 -62.5 -199.5t-164.5 -155.5q230 5 334 5q115 0 175.5 7t82.5 27q33 31 80 133h116q-35 -219 -63 -290q-25 -72 -133 -72h-959z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1212" d="M131 256l137 137q-86 114 -86 273q0 154 86 272l-137 139l115 121l137 -139q113 84 264 84q148 0 266 -84l134 139l114 -121l-133 -139q84 -109 84 -272q0 -154 -84 -269l135 -141l-116 -121l-134 139q-114 -81 -268 -81q-158 0 -264 79l-135 -137zM344 672 q0 -140 85.5 -232t217.5 -92q129 0 214 91.5t85 226.5q0 134 -85.5 225.5t-213.5 91.5q-130 0 -216.5 -89.5t-86.5 -221.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1351" d="M174 1204l27 137q113 -2 264 -2q189 0 293 2l-27 -137q-63 -2 -96 -9.5t-43 -19t-10 -32.5q0 -39 34 -129q9 -23 56 -139.5t71 -180.5q99 137 258 338q70 86 70 127q0 24 -27.5 34t-105.5 11l27 137q90 -2 274 -2q141 0 227 2l-26 -137q-63 -3 -101 -28 q-21 -13 -55.5 -52t-114.5 -137l-204 -246h225l-23 -108h-290l-82 -98l-7 -39h353l-21 -109h-352l-23 -113q-8 -41 -8 -73q0 -17 5 -26.5t23 -18.5t55 -14t98 -7l-27 -137q-208 4 -309 4q-116 0 -308 -4l25 137q71 5 107 11t47.5 12.5t21.5 19.5q16 19 31 92l24 117h-337 l22 109h336l6 39l-41 98h-274l20 108h209l-125 312q-5 11 -13 32q-9 24 -13.5 34.5t-12 25.5t-14.5 21t-18 14.5t-25 11.5t-32 6.5t-44 5.5z" />
+<glyph unicode="&#xa6;" horiz-adv-x="544" d="M45 -244l135 690h158l-133 -690h-160zM238 752l135 692h159l-135 -692h-159z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1009" d="M12 -248q0 74 25 195h127q2 -95 47 -146q15 -18 50 -29.5t73 -11.5q81 0 138.5 40.5t57.5 113.5q0 46 -31.5 99.5t-107.5 138.5l-153 170q-127 141 -127 270q0 116 74 198t225 140q-36 46 -54 105t-18 108q0 64 25 122t74.5 106t132 76t188.5 28q141 0 215 -41 q49 -25 49 -84q0 -26 -10 -90t-23 -107h-121q-5 90 -34 125t-109 35q-76 0 -125 -36t-49 -110q0 -42 25.5 -88t91.5 -110l112 -113q105 -105 141.5 -170.5t36.5 -138.5q0 -96 -70.5 -185t-228.5 -155q101 -116 101 -244q0 -70 -29 -134t-84 -115.5t-144 -82t-200 -30.5 q-75 0 -137 12.5t-108 48t-46 90.5zM322 657q0 -73 92 -170l90 -100q55 -58 82 -94q77 37 118 81.5t41 106.5q0 40 -25 83t-89 108l-94 94q-50 54 -66 74q-74 -34 -111.5 -75.5t-37.5 -107.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M20 1262q0 49 33 85.5t84 36.5q47 0 77 -30.5t30 -75.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74.5 31t-28.5 82zM352 1262q0 49 33.5 85.5t83.5 36.5q48 0 77 -30t29 -76q0 -56 -32.5 -92.5t-85.5 -36.5q-47 0 -76 31t-29 82z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M121 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t229 -151.5t152.5 -227t56.5 -278q0 -153 -55.5 -289t-151 -233t-227.5 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM225 694q0 -176 82.5 -322.5t226.5 -231.5t318 -85q169 0 308 83.5 t217.5 228.5t78.5 321q0 179 -77.5 325.5t-217 231t-313.5 84.5q-175 0 -318 -84t-224 -229.5t-81 -321.5zM422 612q0 102 34.5 196.5t100.5 166.5q133 145 371 145q148 0 213 -28q53 -21 53 -80q0 -64 -25 -156h-100q0 79 -22 105q-32 38 -138 38q-141 0 -221 -102 q-82 -104 -82 -266q0 -129 66 -193.5t166 -64.5q107 0 153 39q35 35 60 102h104q-19 -120 -39 -166q-20 -42 -92 -65q-97 -33 -225 -33q-177 0 -277 97.5t-100 264.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="739" d="M96 764q0 82 37 171.5t100 149.5q104 101 265 101q71 0 127 -29l24 43h117l-84 -332q-29 -122 -29 -155q0 -41 49 -41q40 0 78 12l-18 -94q-90 -35 -158 -35q-54 0 -76 26.5t-22 80.5q-93 -109 -211 -109q-101 0 -150 55.5t-49 155.5zM256 784q0 -47 24.5 -76.5 t67.5 -29.5q41 0 83 22t75 56q2 12 26 112l48 170q-50 27 -99 27q-73 0 -125 -47q-41 -36 -70.5 -103.5t-29.5 -130.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="958" d="M41 451q0 49 63 100l412 315l70 -86l-336 -327l196 -334l-92 -72l-284 332q-29 33 -29 72zM430 451q0 28 15.5 50.5t48.5 49.5l409 315l72 -86l-336 -327l197 -334l-93 -72l-284 332q-29 37 -29 72z" />
+<glyph unicode="&#xac;" horiz-adv-x="1206" d="M147 563l35 162h910l-129 -569h-152l94 407h-758z" />
+<glyph unicode="&#xad;" horiz-adv-x="559" d="M53 422l33 168h440l-32 -168h-441z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M121 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t229 -151.5t152.5 -227t56.5 -278q0 -153 -55.5 -289t-151 -233t-227.5 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM225 694q0 -176 82.5 -322.5t226.5 -231.5t318 -85q169 0 308 83.5 t217.5 228.5t78.5 321q0 179 -77.5 325.5t-217 231t-313.5 84.5q-175 0 -318 -84t-224 -229.5t-81 -321.5zM414 303l18 92q65 0 88 13q8 5 12.5 10.5t9 20.5t9.5 44l88 461q6 38 6 51t-8 20.5t-25 10.5t-29.5 3.5t-35.5 0.5h-8l18 88h277q153 0 221 -20q153 -44 153 -187 q0 -105 -59.5 -169.5t-161.5 -92.5q61 -118 115 -184q21 -25 35.5 -37.5t37 -21t56.5 -11.5l-17 -92q-3 0 -27 -1t-38 -1q-116 0 -182 66q-65 65 -142 264q-64 0 -80 2l-26 -141q-8 -58 -8 -60q0 -13 8 -21.5t27 -11.5t31.5 -3.5t39.5 -0.5l-18 -92q-33 0 -117.5 1t-95.5 1 q-16 0 -77 -1t-95 -1zM766 748q27 -3 72 -3q24 0 46.5 3t45 9t41 17t33 26t22.5 37.5t8 49.5q0 22 -6 40.5t-19 32.5t-32 21q-43 16 -119 16h-43z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M18 1133l29 147h528l-28 -147h-529z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M215 1159q0 126 80.5 202.5t198.5 76.5q113 0 187.5 -70t74.5 -197q0 -125 -78.5 -199.5t-196.5 -74.5q-115 0 -190.5 70t-75.5 192zM322 1165q0 -77 42 -125.5t119 -48.5q78 0 124 49t46 123q0 80 -43 129t-123 49q-72 0 -118.5 -49.5t-46.5 -126.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1206" d="M57 57l39 158h912l-39 -158h-912zM203 756l35 153h380l93 400h151l-92 -400h379l-35 -153h-377l-92 -400h-151l90 400h-381z" />
+<glyph unicode="&#xb2;" horiz-adv-x="813" d="M145 862l19 109q30 20 89 60t87.5 60t77.5 55t74 55.5t61 51.5t54 54t37 50.5t26.5 53.5t7.5 53q0 51 -28 82t-91 31q-74 0 -108 -27q-28 -24 -45 -102h-101q4 91 10 131q6 34 28 56.5t67 43.5q80 35 198 35q136 0 199 -58t63 -153q0 -60 -25.5 -117.5t-66.5 -106 t-103.5 -98t-126 -89.5t-145.5 -84q150 0 191 2q66 2 95.5 7.5t43.5 22.5q26 26 43 76h90q-3 -15 -10.5 -49.5t-12 -56.5t-12 -49t-14.5 -43q-22 -56 -102 -56h-570z" />
+<glyph unicode="&#xb3;" horiz-adv-x="813" d="M207 952q0 67 24 158h99q3 -79 32 -102t115 -23q76 0 130.5 30.5t54.5 96.5q0 45 -36.5 75t-109.5 34q-31 2 -96 2l24 123q91 6 95 6q64 8 107.5 41.5t43.5 93.5q0 41 -25 65.5t-77 24.5q-84 0 -115 -25q-29 -23 -49 -94h-102q0 38 12 119q11 60 78 96q89 41 206 41 q132 0 196.5 -54t64.5 -132q0 -178 -213 -230q89 -12 136.5 -59.5t47.5 -114.5q0 -75 -32.5 -130.5t-89 -86.5t-124 -46t-145.5 -15q-121 0 -199 31q-53 24 -53 75z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M88 1128l219 273q38 45 64 63.5t51 18.5q37 0 65.5 -26.5t28.5 -65.5q0 -30 -20.5 -56t-67.5 -61l-276 -211z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1255" d="M35 -418q0 14 10 64l205 907q22 96 22 149q0 38 -17.5 53t-57.5 15q-36 0 -82 -8l26 123q61 32 135 51.5t119 19.5q71 0 103 -27t32 -89q0 -55 -32 -187l-66 -270q-18 -71 -18 -121q0 -86 94 -86q118 0 246 111q20 111 34 174l113 477h219l-104 -477q-3 -13 -10.5 -47.5 t-12 -56t-10 -50.5t-8 -51.5t-2.5 -38.5q0 -37 16.5 -53.5t54.5 -16.5q48 0 121 19l-32 -133q-127 -56 -240 -56q-54 0 -93.5 28t-45.5 83q-2 18 -2 59q-126 -157 -295 -157q-87 0 -119 43q-65 -419 -68 -432q-11 -52 -42 -76.5t-89 -24.5q-104 0 -104 82z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1128" d="M150 778q0 191 92.5 329.5t252 207.5t367.5 69h373l-25 -137q-87 -3 -117 -8.5t-44 -19.5q-17 -13 -27.5 -44t-22.5 -100q-22 -117 -52.5 -285.5t-53 -291.5t-45.5 -232q-65 -310 -80 -352q-57 -170 -178.5 -275.5t-349.5 -160.5l-27 116q162 53 251.5 134.5t125.5 214.5 q31 116 78 352l8 43q-23 -2 -70 -2q-199 0 -327.5 119.5t-128.5 322.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="448" d="M80 498q0 63 42.5 110t108.5 47q64 0 104 -38.5t40 -100.5q0 -72 -42.5 -118t-113.5 -46q-63 0 -101 40.5t-38 105.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M94 -467q118 25 177 57t59 91q0 56 -72 102q-31 19 -31 53q0 18 13 50t25.5 54.5t39.5 69.5h105q-48 -73 -48 -104q0 -28 29 -43q61 -34 86 -69.5t25 -84.5q0 -62 -36 -113t-96 -83.5t-128 -52t-142 -27.5z" />
+<glyph unicode="&#xb9;" horiz-adv-x="813" d="M281 860l18 101q108 7 135 26q15 12 27 74l61 301q21 107 21 139q0 33 -31 33q-32 0 -104 -14l-19 106q91 38 211 70q67 20 96 20q60 0 60 -57q0 -29 -8 -76q-5 -29 -22 -104.5t-24 -112.5l-59 -299q-8 -39 -8 -59q0 -15 9 -24t33 -14t34.5 -6t45.5 -2q11 -1 17 -1 l-18 -101q-114 4 -240 4q-125 0 -235 -4z" />
+<glyph unicode="&#xba;" horiz-adv-x="802" d="M150 809q0 83 29.5 162.5t90.5 134.5q104 90 260 90q127 0 198 -62.5t71 -177.5q0 -176 -101 -288q-103 -115 -266 -115q-118 0 -200 67t-82 189zM307 823q0 -66 36 -104.5t101 -38.5q63 0 108.5 40.5t66 99t20.5 124.5q0 129 -133 129q-80 0 -129 -55q-70 -83 -70 -195z " />
+<glyph unicode="&#xbb;" horiz-adv-x="958" d="M-8 133l334 328l-197 334l92 71l285 -331q29 -37 29 -72q0 -52 -64 -101l-410 -315zM379 133l336 328l-197 334l92 71l285 -331q29 -37 29 -72q0 -49 -64 -101l-409 -315z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1779" d="M172 514l18 102q107 5 136 25q16 14 28 74l60 299q20 105 20 141q0 33 -28 33q-48 0 -109 -14l-16 106q76 32 211 72q60 18 98 18q57 0 57 -57q0 -41 -8 -74q-40 -194 -43 -213l-59 -303q-11 -50 -11 -59q0 -11 4 -19t13.5 -12.5t18.5 -7.5t24 -5t25.5 -2.5t28.5 -1 t26 -0.5l-19 -102q-165 6 -239 6q-71 0 -236 -6zM489 45l748 1329l100 -51l-745 -1333zM889 225l16 90l424 455q46 49 76 67.5t76 18.5q14 0 26 -4t21.5 -11.5t15.5 -21t6 -31.5q0 -33 -77 -432h133l-27 -131h-133l-8 -39q-6 -30 -6 -45q0 -32 28 -35q28 -5 94 -8l-18 -98 q-110 4 -236 4q-86 0 -196 -4l16 98q99 5 119 25q16 16 25 63l10 39h-385zM1075 352h221q40 196 70 314z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1779" d="M150 514l18 102q106 5 135 25q17 15 29 74l59 299q21 110 21 141q0 33 -29 33q-48 0 -109 -14l-16 106q76 32 211 72q60 18 98 18q58 0 58 -57q0 -37 -9 -74q-40 -194 -43 -213l-59 -303q-10 -45 -10 -59q0 -11 4 -18.5t13.5 -12.5t18 -8t24 -4.5t25.5 -2.5t28 -1.5 t26 -0.5l-18 -102q-165 6 -240 6q-70 0 -235 -6zM459 45l747 1329l101 -51l-746 -1333zM928 2l18 109q30 20 89 60t87.5 60t77.5 55t74 55.5t61 51.5t54 54t37 50.5t26.5 53.5t7.5 53q0 51 -28 82t-91 31q-74 0 -108 -27q-28 -24 -45 -102h-101q4 79 11 131q6 35 27.5 57 t66.5 43q80 35 199 35q136 0 199 -58t63 -153q0 -74 -36 -143.5t-105 -132t-146 -113.5t-180 -107q128 0 190 3q66 2 96 7.5t44 22.5q26 26 43 76h90q-3 -12 -10.5 -49t-12.5 -58t-12.5 -48.5t-14.5 -43.5q-21 -55 -102 -55h-569z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1779" d="M166 606q0 67 24 158h99q3 -79 32.5 -102t116.5 -23q75 0 129 31t54 98q0 44 -36.5 73.5t-109.5 32.5q-44 3 -96 3l27 124q75 5 94 7q63 8 106 41.5t43 91.5q0 41 -25.5 66.5t-76.5 25.5q-79 0 -113 -27q-31 -22 -51 -92h-100q0 95 16 140.5t74 72.5q89 41 207 41 q132 0 196 -53.5t64 -130.5q0 -96 -55.5 -150.5t-159.5 -81.5q90 -12 137 -59t47 -113q0 -75 -32 -131t-88.5 -87.5t-124 -46.5t-146.5 -15q-117 0 -197 32q-55 22 -55 74zM545 45l747 1329l101 -51l-746 -1333zM926 225l16 90l424 455q46 49 76 67.5t76 18.5q29 0 49 -17 t20 -51q0 -28 -78 -432h133l-26 -131h-133l-8 -39q-7 -35 -7 -45q0 -32 29 -35q28 -5 94 -8l-18 -98q-110 4 -236 4q-86 0 -196 -4l16 98q99 5 119 25q15 15 24 63l11 39h-385zM1112 352h221q40 196 70 314z" />
+<glyph unicode="&#xbf;" horiz-adv-x="886" d="M-16 -113q0 85 28.5 155.5t81.5 123t112.5 89.5t137.5 71q79 34 113.5 61.5t50.5 83.5q3 10 13 50.5t18 68.5h120q-7 -118 -26 -223q-12 -60 -48 -96t-112 -68q-108 -47 -171.5 -111t-63.5 -164q0 -63 37 -112t118 -49q104 0 146 26q38 26 65 141h137q0 -92 -14 -163 q-9 -51 -39.5 -82t-85.5 -51q-115 -41 -258 -41q-179 1 -269.5 82.5t-90.5 207.5zM473 881q0 73 43.5 118t114.5 45q62 0 99.5 -38.5t37.5 -102.5t-43 -111t-111 -47q-62 0 -101.5 38t-39.5 98z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1503" d="M-74 -2l27 137q93 5 137 37q24 19 47.5 51.5t75.5 122.5l555 950q38 65 78.5 94t99.5 29q116 0 133 -114l162 -1002q10 -61 22 -90.5t33 -50.5q24 -24 129 -27l-26 -137q-164 4 -281 4q-154 0 -338 -4l27 137q75 3 125 15q34 7 47.5 24.5t13.5 50.5q0 45 -8 97l-20 141 h-467l-78 -129q-58 -97 -58 -133q0 -29 23 -43q32 -17 164 -23l-27 -137q-160 4 -358 4q-78 0 -238 -4zM582 639h356q-46 294 -72 508q-102 -190 -284 -508zM672 1786q0 40 29 68t67 28q28 0 52 -17.5t67 -68.5l213 -260l-64 -63l-280 200q-84 60 -84 113z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1503" d="M-74 -2l27 137q93 5 137 37q24 19 47.5 51.5t75.5 122.5l555 950q38 65 78.5 94t99.5 29q116 0 133 -114l162 -1002q10 -61 22 -90.5t33 -50.5q24 -24 129 -27l-26 -137q-164 4 -281 4q-154 0 -338 -4l27 137q75 3 125 15q34 7 47.5 24.5t13.5 50.5q0 45 -8 97l-20 141 h-467l-78 -129q-58 -97 -58 -133q0 -29 23 -43q32 -17 164 -23l-27 -137q-160 4 -358 4q-78 0 -238 -4zM582 639h356q-46 294 -72 508q-102 -190 -284 -508zM754 1546l266 230q44 37 69.5 50t51.5 13q37 0 61.5 -26.5t24.5 -67.5q0 -59 -101 -113l-319 -164z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1503" d="M-74 -2l27 137q93 5 137 37q24 19 47.5 51.5t75.5 122.5l555 950q38 65 78.5 94t99.5 29q116 0 133 -114l162 -1002q10 -61 22 -90.5t33 -50.5q24 -24 129 -27l-26 -137q-164 4 -281 4q-154 0 -338 -4l27 137q75 3 125 15q34 7 47.5 24.5t13.5 50.5q0 45 -8 97l-20 141 h-467l-78 -129q-58 -97 -58 -133q0 -29 23 -43q32 -17 164 -23l-27 -137q-160 4 -358 4q-78 0 -238 -4zM582 639h356q-46 294 -72 508q-102 -190 -284 -508zM614 1532l281 270q50 47 92 47q26 0 43 -11t35 -38l186 -274l-65 -62l-223 193l-291 -193z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1503" d="M-74 -2l27 137q93 5 137 37q24 19 47.5 51.5t75.5 122.5l555 950q38 65 78.5 94t99.5 29q116 0 133 -114l162 -1002q10 -61 22 -90.5t33 -50.5q24 -24 129 -27l-26 -137q-164 4 -281 4q-154 0 -338 -4l27 137q75 3 125 15q34 7 47.5 24.5t13.5 50.5q0 45 -8 97l-20 141 h-467l-78 -129q-58 -97 -58 -133q0 -29 23 -43q32 -17 164 -23l-27 -137q-160 4 -358 4q-78 0 -238 -4zM582 639h356q-46 294 -72 508q-102 -190 -284 -508zM616 1528q37 100 91 166.5t122 66.5q33 0 113 -32l66 -29q60 -27 92 -27q31 0 55 26t55 85l82 -29 q-80 -239 -200 -239q-56 0 -136 38l-57 27q-54 25 -82 25q-34 0 -62 -25t-61 -84z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1503" d="M-74 -2l27 137q93 5 137 37q24 19 47.5 51.5t75.5 122.5l555 950q38 65 78.5 94t99.5 29q116 0 133 -114l162 -1002q10 -61 22 -90.5t33 -50.5q24 -24 129 -27l-26 -137q-164 4 -281 4q-154 0 -338 -4l27 137q75 3 125 15q34 7 47.5 24.5t13.5 50.5q0 45 -8 97l-20 141 h-467l-78 -129q-58 -97 -58 -133q0 -29 23 -43q32 -17 164 -23l-27 -137q-160 4 -358 4q-78 0 -238 -4zM582 639h356q-46 294 -72 508q-102 -190 -284 -508zM662 1632q0 49 32.5 85t83.5 36q47 0 77 -29.5t30 -74.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74 31t-28 81z M1028 1632q0 49 33 85t84 36q48 0 77 -29.5t29 -74.5q0 -57 -32 -93t-86 -36q-47 0 -76 31t-29 81z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1503" d="M-74 -2l27 137q93 5 137 37q24 19 47.5 51.5t75.5 122.5l555 950q38 65 78.5 94t99.5 29q116 0 133 -114l162 -1002q10 -61 22 -90.5t33 -50.5q24 -24 129 -27l-26 -137q-164 4 -281 4q-154 0 -338 -4l27 137q75 3 125 15q34 7 47.5 24.5t13.5 50.5q0 45 -8 97l-20 141 h-467l-78 -129q-58 -97 -58 -133q0 -29 23 -43q32 -17 164 -23l-27 -137q-160 4 -358 4q-78 0 -238 -4zM582 639h356q-46 294 -72 508q-102 -190 -284 -508zM768 1624q0 90 61 149.5t148 59.5q79 0 128.5 -47.5t49.5 -126.5q0 -88 -58 -148.5t-149 -60.5q-77 0 -128.5 48 t-51.5 126zM860 1634q0 -46 25.5 -74t68.5 -28q47 0 78 33.5t31 91.5q0 44 -27 69t-67 25q-46 0 -77.5 -31.5t-31.5 -85.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2138" d="M-29 -2l27 137q118 6 162 37q64 44 145 145l645 779q60 74 60 108q0 17 -10 25.5t-35 13.5q-26 4 -146 10l25 131h1151q125 0 125 -88q0 -96 -41 -270h-127q0 78 -8.5 107.5t-28.5 44.5q-21 15 -59.5 21.5t-135.5 6.5h-213l-82 -411h115q44 0 72.5 2t52 9.5t36 15.5 t24.5 28t18.5 38.5t17.5 55.5h123q-46 -191 -88 -463h-117q0 48 -12 84q-13 44 -41.5 56t-112.5 12h-118l-64 -326q-10 -60 -10 -71q0 -49 41 -54q53 -8 176 -8q228 0 301 55q45 33 111 160h129q-53 -249 -97 -323q-41 -66 -186 -66h-946l27 133q89 3 139 19q34 8 45 45 q4 11 26 114l33 162h-461l-135 -162q-41 -49 -55 -73.5t-14 -53.5q0 -9 3 -15.5t10 -11.5t14 -9t19.5 -6.5t21.5 -4t25 -2t25.5 -1t27.5 -1t26 -0.5l-25 -135q-196 4 -336 4q-99 0 -295 -4zM793 647h358l102 514q4 24 4 29q0 12 -12 12q-2 0 -4 -0.5t-4 -2t-3.5 -3 l-4.5 -4.5t-5.5 -6t-7 -8.5t-8.5 -10.5q-70 -90 -415 -520z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1378" d="M125 549q0 187 66 357t198 298q226 213 592 213q200 0 315 -53q80 -37 80 -121q0 -72 -35 -250h-139q0 126 -37 176q-50 62 -223 62q-122 0 -228 -48t-179 -143q-72 -93 -111 -218.5t-39 -248.5q0 -108 30.5 -189.5t84.5 -130t123 -72t151 -23.5q176 0 256 65 q52 42 111 168h139q-35 -193 -74 -260q-45 -76 -145 -111q-127 -46 -326 -49q-26 -50 -26 -69q0 -30 28 -47q64 -38 89.5 -73.5t25.5 -86.5q0 -65 -36.5 -118t-98 -86.5t-130.5 -54.5t-145 -30l-4 105q120 27 180 60t60 93q0 61 -74 109q-33 23 -33 57q0 42 62 147 q-239 25 -373.5 176t-134.5 396z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1263" d="M-20 0l26 133q127 2 166 33q13 11 19.5 33t17.5 78q3 13 4 20l156 797q14 68 14 100q0 13 -5.5 22.5t-17.5 15t-23 9.5t-30.5 6t-31.5 2.5t-35 1t-31 0.5l24 133h885q69 0 100 -22.5t31 -67.5q0 -84 -41 -268h-127q0 34 -4 84q-5 45 -35 70q-21 13 -60 19.5t-126 6.5 h-221l-80 -411h113q33 0 57 1t44.5 5.5t33.5 7.5t25 14t19 18.5t15.5 27t13.5 33t15 42.5h123q-44 -179 -88 -463h-119q2 20 2 58q-5 72 -51 84q-34 10 -121 10h-113l-69 -352q-6 -42 -6 -48q0 -45 43 -51q53 -8 190 -8q218 0 291 59q41 34 104 156h129q-12 -85 -40 -179 t-56 -144q-41 -66 -188 -66h-942zM492 1784q0 40 29 68t67 28q28 0 52 -17.5t67 -68.5l213 -260l-64 -64l-281 201q-83 59 -83 113z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1263" d="M-20 0l26 133q127 2 166 33q13 11 19.5 33t17.5 78q3 13 4 20l156 797q14 68 14 100q0 13 -5.5 22.5t-17.5 15t-23 9.5t-30.5 6t-31.5 2.5t-35 1t-31 0.5l24 133h885q69 0 100 -22.5t31 -67.5q0 -84 -41 -268h-127q0 34 -4 84q-5 45 -35 70q-21 13 -60 19.5t-126 6.5 h-221l-80 -411h113q33 0 57 1t44.5 5.5t33.5 7.5t25 14t19 18.5t15.5 27t13.5 33t15 42.5h123q-44 -179 -88 -463h-119q2 20 2 58q-5 72 -51 84q-34 10 -121 10h-113l-69 -352q-6 -42 -6 -48q0 -45 43 -51q53 -8 190 -8q218 0 291 59q41 34 104 156h129q-12 -85 -40 -179 t-56 -144q-41 -66 -188 -66h-942zM639 1546l266 230q44 37 69.5 50t51.5 13q37 0 61.5 -26.5t24.5 -67.5q0 -60 -100 -113l-320 -164z" />
+<glyph unicode="&#xca;" horiz-adv-x="1263" d="M-20 0l26 133q127 2 166 33q13 11 19.5 33t17.5 78q3 13 4 20l156 797q14 68 14 100q0 13 -5.5 22.5t-17.5 15t-23 9.5t-30.5 6t-31.5 2.5t-35 1t-31 0.5l24 133h885q69 0 100 -22.5t31 -67.5q0 -84 -41 -268h-127q0 34 -4 84q-5 45 -35 70q-21 13 -60 19.5t-126 6.5 h-221l-80 -411h113q33 0 57 1t44.5 5.5t33.5 7.5t25 14t19 18.5t15.5 27t13.5 33t15 42.5h123q-44 -179 -88 -463h-119q2 20 2 58q-5 72 -51 84q-34 10 -121 10h-113l-69 -352q-6 -42 -6 -48q0 -45 43 -51q53 -8 190 -8q218 0 291 59q41 34 104 156h129q-12 -85 -40 -179 t-56 -144q-41 -66 -188 -66h-942zM446 1532l281 270q50 47 92 47q18 0 31 -5t24 -15.5t23 -28.5l186 -274l-65 -62l-223 193l-291 -193z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1263" d="M-20 0l26 133q127 2 166 33q13 11 19.5 33t17.5 78q3 13 4 20l156 797q14 68 14 100q0 13 -5.5 22.5t-17.5 15t-23 9.5t-30.5 6t-31.5 2.5t-35 1t-31 0.5l24 133h885q69 0 100 -22.5t31 -67.5q0 -84 -41 -268h-127q0 34 -4 84q-5 45 -35 70q-21 13 -60 19.5t-126 6.5 h-221l-80 -411h113q33 0 57 1t44.5 5.5t33.5 7.5t25 14t19 18.5t15.5 27t13.5 33t15 42.5h123q-44 -179 -88 -463h-119q2 20 2 58q-5 72 -51 84q-34 10 -121 10h-113l-69 -352q-6 -42 -6 -48q0 -45 43 -51q53 -8 190 -8q218 0 291 59q41 34 104 156h129q-12 -85 -40 -179 t-56 -144q-41 -66 -188 -66h-942zM485 1634q0 49 33 85t84 36q47 0 77 -29.5t30 -74.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74.5 31t-28.5 81zM852 1634q0 49 33 85t84 36q48 0 77 -29.5t29 -74.5q0 -57 -32.5 -93t-86.5 -36q-47 0 -75.5 31t-28.5 81z" />
+<glyph unicode="&#xcc;" horiz-adv-x="741" d="M-20 -2l26 135q132 7 168 35q17 14 39 129l156 801q14 82 14 96q0 20 -10 30t-33 15q-27 7 -131 14l24 133q258 -6 310 -6q35 0 311 6l-27 -133q-92 -6 -125.5 -13.5t-46.5 -22.5q-21 -21 -39 -119l-153 -797q-17 -81 -17 -106q0 -38 46 -48q27 -7 133 -14l-29 -135 q-172 4 -317 4q-119 0 -299 -4zM276 1784q0 40 29.5 68t67.5 28q28 0 52 -17.5t67 -68.5l213 -260l-64 -64l-281 201q-84 60 -84 113z" />
+<glyph unicode="&#xcd;" horiz-adv-x="741" d="M-20 -2l26 135q132 7 168 35q17 14 39 129l156 801q14 82 14 96q0 20 -10 30t-33 15q-27 7 -131 14l24 133q258 -6 310 -6q35 0 311 6l-27 -133q-92 -6 -125.5 -13.5t-46.5 -22.5q-21 -21 -39 -119l-153 -797q-17 -81 -17 -106q0 -38 46 -48q27 -7 133 -14l-29 -135 q-172 4 -317 4q-119 0 -299 -4zM389 1546l266 230q44 37 69.5 50t51.5 13q37 0 61.5 -26.5t24.5 -67.5q0 -60 -100 -113l-320 -164z" />
+<glyph unicode="&#xce;" horiz-adv-x="741" d="M-20 -2l26 135q132 7 168 35q17 14 39 129l156 801q14 82 14 96q0 20 -10 30t-33 15q-27 7 -131 14l24 133q258 -6 310 -6q35 0 311 6l-27 -133q-92 -6 -125.5 -13.5t-46.5 -22.5q-21 -21 -39 -119l-153 -797q-17 -81 -17 -106q0 -38 46 -48q27 -7 133 -14l-29 -135 q-172 4 -317 4q-119 0 -299 -4zM242 1532l280 270q50 47 92 47q26 0 43 -11t35 -38l187 -274l-66 -62l-223 193l-291 -193z" />
+<glyph unicode="&#xcf;" horiz-adv-x="741" d="M-20 -2l26 135q132 7 168 35q17 14 39 129l156 801q14 82 14 96q0 20 -10 30t-33 15q-27 7 -131 14l24 133q258 -6 310 -6q35 0 311 6l-27 -133q-92 -6 -125.5 -13.5t-46.5 -22.5q-21 -21 -39 -119l-153 -797q-17 -81 -17 -106q0 -38 46 -48q27 -7 133 -14l-29 -135 q-172 4 -317 4q-119 0 -299 -4zM283 1634q0 49 32.5 85t83.5 36q47 0 77 -29.5t30 -74.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74 31t-28 81zM649 1634q0 49 33 85t84 36q48 0 77 -29.5t29 -74.5q0 -57 -32 -93t-86 -36q-47 0 -76 31t-29 81z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1495" d="M-20 0l26 133q88 6 120.5 13t47.5 22q11 12 18 35.5t19 85.5l72 368h-203l26 134h203l60 301q12 64 12 100q0 38 -41 47q-38 8 -131 14l24 131h369q300 0 445.5 -32t236.5 -101q81 -61 127.5 -166t46.5 -221q0 -541 -362 -751q-191 -113 -598 -113h-518zM449 238 q0 -44 51 -56q47 -8 131 -8q143 0 252.5 49t177 137.5t101.5 205.5t34 259q0 101 -38 186t-103 126q-104 69 -326 69h-96l-82 -415h340l-29 -134h-336l-71 -372q-6 -30 -6 -47z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1542" d="M-23 -2l29 135q83 4 118 13t52 26q17 24 45 170q14 71 45 227.5t56.5 284t37.5 182.5q21 111 21 148q0 49 -55 57q-40 7 -123 12l26 133q86 -4 256 -4q113 0 185 4q54 -115 119 -252t100 -212t77 -164t65 -138t47.5 -102.5t40 -89t28.5 -66.5q25 147 69.5 394t49.5 280 q14 109 14 144q0 46 -41 57q-62 14 -133 16l27 133q218 -4 288 -4q32 0 258 4l-26 -133q-85 -4 -115.5 -11t-46.5 -23q-12 -12 -22 -47t-31 -132q-101 -508 -181 -942q-11 -62 -39 -90t-90 -28q-48 0 -72.5 19.5t-43.5 61.5q-139 305 -248 540.5t-153 331t-76 167.5 q-71 -375 -140 -756q-20 -114 -20 -147q0 -45 55 -52q32 -5 123 -12l-27 -135q-208 4 -284 4q-47 0 -265 -4zM662 1528q37 101 90.5 167t121.5 66q33 0 113 -32l66 -29q60 -27 92 -27q31 0 55 26t55 85l82 -29q-80 -239 -200 -239q-56 0 -136 38l-57 27q-54 25 -82 25 q-34 0 -62 -25t-61 -84z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1482" d="M127 532q0 190 65 374t193 308q207 201 518 201q274 0 409.5 -140.5t135.5 -383.5q0 -192 -55 -377t-174 -317q-98 -109 -234.5 -166.5t-286.5 -57.5q-173 0 -299 59t-199 186t-73 314zM385 545q0 -387 328 -387q199 0 313 159q78 107 117 262.5t39 303.5q0 348 -316 348 q-201 0 -321 -158q-75 -99 -117.5 -246t-42.5 -282zM657 1784q0 40 29.5 68t67.5 28q28 0 51.5 -17.5t66.5 -68.5l213 -260l-63 -64l-281 201q-84 60 -84 113z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1482" d="M127 532q0 190 65 374t193 308q207 201 518 201q274 0 409.5 -140.5t135.5 -383.5q0 -192 -55 -377t-174 -317q-98 -109 -234.5 -166.5t-286.5 -57.5q-173 0 -299 59t-199 186t-73 314zM385 545q0 -387 328 -387q199 0 313 159q78 107 117 262.5t39 303.5q0 348 -316 348 q-201 0 -321 -158q-75 -99 -117.5 -246t-42.5 -282zM731 1546l266 230q44 37 69.5 50t51.5 13q37 0 61.5 -26.5t24.5 -67.5q0 -60 -100 -113l-320 -164z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1482" d="M127 532q0 190 65 374t193 308q207 201 518 201q274 0 409.5 -140.5t135.5 -383.5q0 -192 -55 -377t-174 -317q-98 -109 -234.5 -166.5t-286.5 -57.5q-173 0 -299 59t-199 186t-73 314zM385 545q0 -387 328 -387q199 0 313 159q78 107 117 262.5t39 303.5q0 348 -316 348 q-201 0 -321 -158q-75 -99 -117.5 -246t-42.5 -282zM604 1532l281 270q50 47 92 47q26 0 43 -11t35 -38l186 -274l-65 -62l-224 193l-290 -193z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1482" d="M127 532q0 190 65 374t193 308q207 201 518 201q274 0 409.5 -140.5t135.5 -383.5q0 -192 -55 -377t-174 -317q-98 -109 -234.5 -166.5t-286.5 -57.5q-173 0 -299 59t-199 186t-73 314zM385 545q0 -387 328 -387q199 0 313 159q78 107 117 262.5t39 303.5q0 348 -316 348 q-201 0 -321 -158q-75 -99 -117.5 -246t-42.5 -282zM594 1528q37 100 91 166.5t122 66.5q33 0 113 -32l65 -29q60 -27 92 -27t56 26.5t55 84.5l82 -29q-80 -239 -201 -239q-55 0 -135 38l-57 27q-54 25 -82 25q-34 0 -62 -25t-61 -84z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1482" d="M127 532q0 190 65 374t193 308q207 201 518 201q274 0 409.5 -140.5t135.5 -383.5q0 -192 -55 -377t-174 -317q-98 -109 -234.5 -166.5t-286.5 -57.5q-173 0 -299 59t-199 186t-73 314zM385 545q0 -387 328 -387q199 0 313 159q78 107 117 262.5t39 303.5q0 348 -316 348 q-201 0 -321 -158q-75 -99 -117.5 -246t-42.5 -282zM645 1634q0 49 33 85t84 36q47 0 76.5 -29.5t29.5 -74.5q0 -57 -32.5 -93t-87.5 -36q-46 0 -74.5 31t-28.5 81zM1012 1634q0 49 32.5 85t83.5 36q49 0 78 -29.5t29 -74.5q0 -57 -32.5 -93t-86.5 -36q-47 0 -75.5 31 t-28.5 81z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1228" d="M209 354l332 295l-224 291l123 111l219 -289l326 291l90 -117l-332 -293l224 -293l-121 -108l-223 290l-330 -292z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1482" d="M106 8l130 154q-109 140 -109 370q0 190 65 374t193 308q207 201 518 201q194 0 328 -78l123 146l92 -78l-121 -143q123 -135 123 -371q0 -192 -55 -377t-174 -317q-98 -109 -234.5 -166.5t-286.5 -57.5q-233 0 -376 105l-123 -146zM385 545q0 -96 23 -180l675 798 q-82 70 -217 70q-199 0 -321 -160q-75 -99 -117.5 -246t-42.5 -282zM469 252q82 -94 244 -94q199 0 313 159q78 107 117 262.5t39 303.5q0 97 -29 176z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1576" d="M190 1253l27 133q160 -4 303 -4q162 0 326 4l-25 -133q-95 -4 -125 -11.5t-47 -24.5q-19 -19 -39 -107q-53 -240 -96 -473q-31 -162 -31 -240q0 -126 77.5 -183.5t213.5 -57.5q107 0 192.5 30.5t131.5 87.5q34 40 60.5 105.5t40.5 118t36 153.5q8 38 80 443q8 57 8 88 q0 26 -9.5 37.5t-33.5 17.5q-33 9 -141 16l24 133q74 -2 310 -2q21 0 110 1t129 1l-26 -133q-143 -7 -166 -45q-18 -30 -39 -131l-92 -467q-38 -198 -79 -303t-114 -176q-165 -162 -485 -162q-74 0 -140.5 10.5t-130.5 36.5t-110 66t-74.5 103.5t-28.5 144.5q0 107 39 299 q14 66 36.5 173t37.5 180.5t22 115.5q13 73 13 86q0 41 -41 53q-39 12 -144 16zM678 1784q0 40 29 68t67 28q28 0 52 -17.5t67 -68.5l213 -260l-64 -64l-280 201q-84 60 -84 113z" />
+<glyph unicode="&#xda;" horiz-adv-x="1576" d="M190 1253l27 133q160 -4 303 -4q162 0 326 4l-25 -133q-95 -4 -125 -11.5t-47 -24.5q-19 -19 -39 -107q-53 -240 -96 -473q-31 -162 -31 -240q0 -126 77.5 -183.5t213.5 -57.5q107 0 192.5 30.5t131.5 87.5q34 40 60.5 105.5t40.5 118t36 153.5q8 38 80 443q8 57 8 88 q0 26 -9.5 37.5t-33.5 17.5q-33 9 -141 16l24 133q74 -2 310 -2q21 0 110 1t129 1l-26 -133q-143 -7 -166 -45q-18 -30 -39 -131l-92 -467q-38 -198 -79 -303t-114 -176q-165 -162 -485 -162q-74 0 -140.5 10.5t-130.5 36.5t-110 66t-74.5 103.5t-28.5 144.5q0 107 39 299 q14 66 36.5 173t37.5 180.5t22 115.5q13 73 13 86q0 41 -41 53q-39 12 -144 16zM819 1546l266 230q44 37 69.5 50t51.5 13q37 0 61.5 -26.5t24.5 -67.5q0 -60 -100 -113l-320 -164z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1576" d="M190 1253l27 133q160 -4 303 -4q162 0 326 4l-25 -133q-95 -4 -125 -11.5t-47 -24.5q-19 -19 -39 -107q-53 -240 -96 -473q-31 -162 -31 -240q0 -126 77.5 -183.5t213.5 -57.5q107 0 192.5 30.5t131.5 87.5q34 40 60.5 105.5t40.5 118t36 153.5q8 38 80 443q8 57 8 88 q0 26 -9.5 37.5t-33.5 17.5q-33 9 -141 16l24 133q74 -2 310 -2q21 0 110 1t129 1l-26 -133q-143 -7 -166 -45q-18 -30 -39 -131l-92 -467q-38 -198 -79 -303t-114 -176q-165 -162 -485 -162q-74 0 -140.5 10.5t-130.5 36.5t-110 66t-74.5 103.5t-28.5 144.5q0 107 39 299 q14 66 36.5 173t37.5 180.5t22 115.5q13 73 13 86q0 41 -41 53q-39 12 -144 16zM664 1532l280 270q50 47 92 47q26 0 43 -11t35 -38l186 -274l-65 -62l-223 193l-291 -193z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1576" d="M190 1253l27 133q160 -4 303 -4q162 0 326 4l-25 -133q-95 -4 -125 -11.5t-47 -24.5q-19 -19 -39 -107q-53 -240 -96 -473q-31 -162 -31 -240q0 -126 77.5 -183.5t213.5 -57.5q107 0 192.5 30.5t131.5 87.5q34 40 60.5 105.5t40.5 118t36 153.5q8 38 80 443q8 57 8 88 q0 26 -9.5 37.5t-33.5 17.5q-33 9 -141 16l24 133q74 -2 310 -2q21 0 110 1t129 1l-26 -133q-143 -7 -166 -45q-18 -30 -39 -131l-92 -467q-38 -198 -79 -303t-114 -176q-165 -162 -485 -162q-74 0 -140.5 10.5t-130.5 36.5t-110 66t-74.5 103.5t-28.5 144.5q0 107 39 299 q14 66 36.5 173t37.5 180.5t22 115.5q13 73 13 86q0 41 -41 53q-39 12 -144 16zM684 1634q0 49 33 85t84 36q47 0 76.5 -29.5t29.5 -74.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74 31t-28 81zM1051 1634q0 49 32.5 85t83.5 36q49 0 78 -29.5t29 -74.5q0 -57 -32.5 -93 t-86.5 -36q-47 0 -75.5 31t-28.5 81z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1325" d="M154 1253l26 133q226 -4 281 -4q83 0 301 4l-29 -133q-89 -3 -123 -14q-39 -12 -39 -51q0 -31 23 -92q131 -341 145 -379q88 117 301 387q54 68 54 102q0 30 -36.5 38.5t-101.5 8.5l27 133q94 -4 313 -4q105 0 193 4l-27 -133q-57 -3 -100 -30q-8 -5 -18 -15t-24 -26 t-26.5 -30.5t-34 -40.5t-36.5 -44l-426 -512l-54 -270q-12 -59 -12 -88q0 -11 3 -19t9.5 -14t13 -10.5t18.5 -7.5t22 -5t26 -3.5t27 -2t30 -1t31 -1.5l-24 -135q-218 4 -312 4q-117 0 -313 -4l27 135q95 4 126.5 12t45.5 25q17 17 35 104l55 279l-219 539q-20 49 -29 69.5 t-21.5 39.5t-25.5 28q-30 21 -102 24zM700 1546l267 230q44 37 69 50t51 13q37 0 62 -26.5t25 -67.5q0 -59 -101 -113l-319 -164z" />
+<glyph unicode="&#xde;" horiz-adv-x="1251" d="M-20 -2l26 137q60 3 95 8t47 10t24 15q12 9 19.5 34t21.5 97l156 799q14 82 14 94q0 22 -13 33t-40 16q-44 7 -121 10l24 135q189 -6 306 -6q47 0 311 6l-27 -135q-93 -4 -127 -10.5t-47 -19.5q-16 -14 -28 -78l-7 -33q278 0 373 -18q127 -24 190.5 -105t63.5 -194 q0 -127 -46.5 -222.5t-131.5 -152.5t-195.5 -85t-246.5 -28q-115 0 -162 2l-6 -35q-11 -61 -11 -69q0 -24 10 -37t37 -19q41 -9 156 -12l-27 -137q-172 4 -339 4q-119 0 -299 -4zM489 467q33 -2 113 -2q60 0 109 6t101.5 24t87.5 48.5t58 83.5t23 125q0 48 -15.5 82t-41 55 t-67 33t-85 16t-102.5 4h-86z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1273" d="M-303 -434q0 67 31 176h120q0 -42 2.5 -64.5t12 -41.5t29 -26t51.5 -7q33 0 64.5 17.5t51.5 47.5q44 62 72 228l152 868h-172l24 125q93 16 133 41q23 13 35.5 37.5t26.5 81.5q27 108 64 184t74.5 117t88.5 73q116 74 295 74q89 0 158 -21t110 -58t61.5 -84t20.5 -103 q0 -36 -7 -68t-22 -60.5t-31.5 -52t-43.5 -49t-49.5 -44.5t-57.5 -46q-57 -44 -82.5 -70.5t-25.5 -49.5q0 -27 26 -60q25 -33 135 -143q138 -144 138 -271q0 -109 -57.5 -188.5t-152 -118.5t-214.5 -39q-154 0 -223 49q-48 32 -48 101q0 70 33 178h107q3 -85 42.5 -121.5 t125.5 -36.5q75 0 117 33.5t42 87.5q0 71 -106 180q-63 65 -127 138q-57 60 -57 137q0 62 32 113.5t107 115.5q51 43 77 67t55 56t40.5 60.5t11.5 58.5q0 135 -162 135q-116 0 -178 -74q-62 -72 -92 -243l-201 -1088q-28 -147 -67 -236t-101 -145q-112 -100 -282 -100 q-84 0 -152 33q-55 25 -55 96z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1193" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q47 0 105 -11.5t96 -33.5l39 70h172l-129 -522q-41 -165 -41 -240q0 -33 16 -49t56 -16q62 0 120 18l-30 -135q-122 -53 -238 -53q-81 0 -113 40t-32 123q-141 -170 -334 -170q-155 0 -232 85.5t-77 238.5zM311 330 q0 -172 154 -172q125 0 248 123q7 62 37 180l75 278q-65 39 -155 39q-121 0 -209 -82q-64 -58 -107 -163.5t-43 -202.5zM485 1419q0 39 31 65.5t68 26.5q31 0 54.5 -19.5t57.5 -78.5l176 -297l-73 -53l-244 244q-39 39 -54.5 62.5t-15.5 49.5z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1193" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q47 0 105 -11.5t96 -33.5l39 70h172l-129 -522q-41 -165 -41 -240q0 -33 16 -49t56 -16q62 0 120 18l-30 -135q-122 -53 -238 -53q-81 0 -113 40t-32 123q-141 -170 -334 -170q-155 0 -232 85.5t-77 238.5zM311 330 q0 -172 154 -172q125 0 248 123q7 62 37 180l75 278q-65 39 -155 39q-121 0 -209 -82q-64 -58 -107 -163.5t-43 -202.5zM602 1128l219 273q38 45 64 63.5t51 18.5q37 0 65.5 -26.5t28.5 -65.5q0 -30 -20.5 -56t-67.5 -61l-276 -211z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1193" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q47 0 105 -11.5t96 -33.5l39 70h172l-129 -522q-41 -165 -41 -240q0 -33 16 -49t56 -16q62 0 120 18l-30 -135q-122 -53 -238 -53q-81 0 -113 40t-32 123q-141 -170 -334 -170q-155 0 -232 85.5t-77 238.5zM311 330 q0 -172 154 -172q125 0 248 123q7 62 37 180l75 278q-65 39 -155 39q-121 0 -209 -82q-64 -58 -107 -163.5t-43 -202.5zM444 1104l265 307q41 49 90 49q58 0 80 -45l151 -328l-80 -47l-176 224l-264 -224z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1193" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q47 0 105 -11.5t96 -33.5l39 70h172l-129 -522q-41 -165 -41 -240q0 -33 16 -49t56 -16q62 0 120 18l-30 -135q-122 -53 -238 -53q-81 0 -113 40t-32 123q-141 -170 -334 -170q-155 0 -232 85.5t-77 238.5zM311 330 q0 -172 154 -172q125 0 248 123q7 62 37 180l75 278q-65 39 -155 39q-121 0 -209 -82q-64 -58 -107 -163.5t-43 -202.5zM455 1130q75 238 194 238q49 0 117 -31l51 -24q60 -29 90 -29q27 0 50.5 25.5t52.5 81.5l82 -25q-30 -115 -76.5 -178.5t-104.5 -63.5q-54 0 -133 39 l-47 21q-61 22 -86 22q-33 0 -55.5 -22t-52.5 -80z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1193" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q47 0 105 -11.5t96 -33.5l39 70h172l-129 -522q-41 -165 -41 -240q0 -33 16 -49t56 -16q62 0 120 18l-30 -135q-122 -53 -238 -53q-81 0 -113 40t-32 123q-141 -170 -334 -170q-155 0 -232 85.5t-77 238.5zM311 330 q0 -172 154 -172q125 0 248 123q7 62 37 180l75 278q-65 39 -155 39q-121 0 -209 -82q-64 -58 -107 -163.5t-43 -202.5zM518 1262q0 49 33 85.5t84 36.5q47 0 76.5 -30.5t29.5 -75.5q0 -57 -32.5 -93t-87.5 -36q-46 0 -74.5 31t-28.5 82zM850 1262q0 49 33.5 85.5t83.5 36.5 q48 0 77 -30t29 -76q0 -56 -33 -92.5t-86 -36.5q-47 0 -75.5 31t-28.5 82z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1193" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q47 0 105 -11.5t96 -33.5l39 70h172l-129 -522q-41 -165 -41 -240q0 -33 16 -49t56 -16q62 0 120 18l-30 -135q-122 -53 -238 -53q-81 0 -113 40t-32 123q-141 -170 -334 -170q-155 0 -232 85.5t-77 238.5zM311 330 q0 -172 154 -172q125 0 248 123q7 62 37 180l75 278q-65 39 -155 39q-121 0 -209 -82q-64 -58 -107 -163.5t-43 -202.5zM582 1243q0 88 61 147.5t148 59.5q79 0 128.5 -47.5t49.5 -126.5q0 -88 -58 -148.5t-149 -60.5q-77 0 -128.5 47.5t-51.5 128.5zM674 1251 q0 -46 25.5 -73t68.5 -27q47 0 78 33t31 90q0 44 -27.5 70t-67.5 26q-46 0 -77 -32.5t-31 -86.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1632" d="M72 299q0 127 58 268.5t155 235.5q157 151 409 151q49 0 105 -11t88 -32l41 82h151l-30 -129q48 51 121 77t135 26q142 0 216 -67.5t74 -170.5q0 -108 -57 -178t-197 -110.5t-368 -41.5q-4 -16 -4 -53q0 -81 56 -134.5t157 -53.5q144 0 325 102l68 -129 q-209 -160 -471 -160q-118 0 -208 53t-122 158q-175 -207 -395 -207q-156 0 -231.5 85t-75.5 239zM311 326q0 -81 38.5 -124.5t113.5 -43.5q70 0 147 46.5t142 123.5q7 113 75 411q-73 39 -159 39q-119 0 -207 -82q-64 -58 -107 -164.5t-43 -205.5zM993 555q393 5 393 156 q0 45 -24.5 66.5t-91.5 21.5q-40 0 -86 -15t-76 -43q-93 -81 -115 -186z" />
+<glyph unicode="&#xe7;" horiz-adv-x="968" d="M74 350q0 146 53 279.5t160 218.5q148 119 350 119q107 0 180 -25q52 -19 72 -45t20 -76q0 -80 -32 -198h-132q-3 110 -34 137q-39 31 -103 31q-93 0 -163.5 -62.5t-104 -152.5t-33.5 -187q0 -118 51 -174.5t154 -56.5q140 0 297 94l68 -129q-171 -135 -377 -150 q-25 -45 -25 -67q0 -28 29 -43q61 -34 85.5 -69.5t24.5 -84.5q0 -62 -36 -113t-95.5 -83.5t-127.5 -52t-142 -27.5l-6 100q118 25 176.5 57t58.5 91q0 57 -71 102q-31 19 -31 53q0 41 55 139q-151 15 -236 114t-85 261z" />
+<glyph unicode="&#xe8;" horiz-adv-x="966" d="M74 344q0 177 67.5 318.5t193 223t288.5 81.5q155 0 231 -67t76 -171q0 -78 -32 -136.5t-103 -102.5t-192.5 -67t-293.5 -24q-4 -16 -4 -47q0 -84 51.5 -139t159.5 -55q77 0 151 23.5t175 80.5l67 -131q-217 -160 -469 -160q-161 0 -263.5 96.5t-102.5 276.5zM328 555 q393 5 393 158q0 46 -26.5 66t-86.5 20q-97 0 -173.5 -65t-106.5 -179zM336 1419q0 39 30.5 65.5t67.5 26.5q31 0 55 -19.5t58 -78.5l176 -297l-74 -53l-243 244q-39 39 -54.5 62.5t-15.5 49.5z" />
+<glyph unicode="&#xe9;" horiz-adv-x="966" d="M74 344q0 177 67.5 318.5t193 223t288.5 81.5q155 0 231 -67t76 -171q0 -78 -32 -136.5t-103 -102.5t-192.5 -67t-293.5 -24q-4 -16 -4 -47q0 -84 51.5 -139t159.5 -55q77 0 151 23.5t175 80.5l67 -131q-217 -160 -469 -160q-161 0 -263.5 96.5t-102.5 276.5zM328 555 q393 5 393 158q0 46 -26.5 66t-86.5 20q-97 0 -173.5 -65t-106.5 -179zM479 1128l219 273q38 45 64 63.5t51 18.5q37 0 65.5 -26.5t28.5 -65.5q0 -30 -20.5 -56t-67.5 -61l-276 -211z" />
+<glyph unicode="&#xea;" horiz-adv-x="966" d="M74 344q0 177 67.5 318.5t193 223t288.5 81.5q155 0 231 -67t76 -171q0 -78 -32 -136.5t-103 -102.5t-192.5 -67t-293.5 -24q-4 -16 -4 -47q0 -84 51.5 -139t159.5 -55q77 0 151 23.5t175 80.5l67 -131q-217 -160 -469 -160q-161 0 -263.5 96.5t-102.5 276.5zM328 555 q393 5 393 158q0 46 -26.5 66t-86.5 20q-97 0 -173.5 -65t-106.5 -179zM340 1104l264 307q41 49 90 49q58 0 80 -45l152 -328l-80 -47l-176 224l-264 -224z" />
+<glyph unicode="&#xeb;" horiz-adv-x="966" d="M74 344q0 177 67.5 318.5t193 223t288.5 81.5q155 0 231 -67t76 -171q0 -78 -32 -136.5t-103 -102.5t-192.5 -67t-293.5 -24q-4 -16 -4 -47q0 -84 51.5 -139t159.5 -55q77 0 151 23.5t175 80.5l67 -131q-217 -160 -469 -160q-161 0 -263.5 96.5t-102.5 276.5zM328 555 q393 5 393 158q0 46 -26.5 66t-86.5 20q-97 0 -173.5 -65t-106.5 -179zM401 1262q0 49 33 85.5t84 36.5q47 0 77 -30.5t30 -75.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74.5 31t-28.5 82zM733 1262q0 49 33.5 85.5t83.5 36.5q48 0 77 -30t29 -76q0 -56 -32.5 -92.5t-85.5 -36.5 q-47 0 -76 31t-29 82z" />
+<glyph unicode="&#xec;" horiz-adv-x="641" d="M88 764l27 123q139 71 243 71q72 0 107 -31.5t35 -103.5q0 -55 -47 -243l-50 -191q-32 -122 -32 -172q0 -35 16.5 -50t54.5 -15q56 0 123 18l-30 -135q-119 -53 -252 -53q-158 0 -158 129q0 54 29 176l57 237q4 18 13 54.5t13 54t7.5 39t3.5 33.5q0 36 -17 50.5t-55 14.5 q-51 0 -88 -6zM100 1419q0 39 31 65.5t68 26.5q31 0 54.5 -19.5t57.5 -78.5l176 -297l-73 -53l-244 244q-39 39 -54.5 62.5t-15.5 49.5z" />
+<glyph unicode="&#xed;" horiz-adv-x="641" d="M88 764l27 123q139 71 243 71q72 0 107 -31.5t35 -103.5q0 -55 -47 -243l-50 -191q-32 -122 -32 -172q0 -35 16.5 -50t54.5 -15q56 0 123 18l-30 -135q-119 -53 -252 -53q-158 0 -158 129q0 54 29 176l57 237q4 18 13 54.5t13 54t7.5 39t3.5 33.5q0 36 -17 50.5t-55 14.5 q-51 0 -88 -6zM231 1128l220 273q38 45 63.5 63.5t50.5 18.5q37 0 65.5 -26.5t28.5 -65.5q0 -30 -20.5 -56t-67.5 -61l-276 -211z" />
+<glyph unicode="&#xee;" horiz-adv-x="641" d="M86 1104l264 307q41 49 90 49q58 0 80 -45l152 -328l-80 -47l-176 224l-264 -224zM88 764l27 123q139 71 243 71q72 0 107 -31.5t35 -103.5q0 -55 -47 -243l-50 -191q-32 -122 -32 -172q0 -35 16.5 -50t54.5 -15q56 0 123 18l-30 -135q-119 -53 -252 -53q-158 0 -158 129 q0 54 29 176l57 237q4 18 13 54.5t13 54t7.5 39t3.5 33.5q0 36 -17 50.5t-55 14.5q-51 0 -88 -6z" />
+<glyph unicode="&#xef;" horiz-adv-x="641" d="M88 764l27 123q139 71 243 71q72 0 107 -31.5t35 -103.5q0 -55 -47 -243l-50 -191q-32 -122 -32 -172q0 -35 16.5 -50t54.5 -15q56 0 123 18l-30 -135q-119 -53 -252 -53q-158 0 -158 129q0 54 29 176l57 237q4 18 13 54.5t13 54t7.5 39t3.5 33.5q0 36 -17 50.5t-55 14.5 q-51 0 -88 -6zM121 1262q0 49 33 85.5t84 36.5q47 0 76.5 -30.5t29.5 -75.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74 31t-28 82zM453 1262q0 49 33 85.5t83 36.5q48 0 77.5 -30.5t29.5 -75.5q0 -56 -33 -92.5t-86 -36.5q-47 0 -75.5 31t-28.5 82z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1095" d="M74 358q0 251 141 418q60 70 153.5 111t202.5 41q123 0 193 -64q-11 59 -38.5 127.5t-61.5 112.5l-234 -129l-53 92l225 127q-90 118 -248 199l78 118q207 -83 334 -213l182 101l53 -96l-163 -91q97 -125 141.5 -263.5t44.5 -311.5q0 -332 -160 -510 q-66 -75 -167.5 -115.5t-211.5 -40.5q-187 0 -299 96.5t-112 290.5zM307 375q0 -223 203 -223q127 0 195 100q86 125 86 313q0 203 -197 203q-74 0 -130.5 -33.5t-90 -91t-50 -125.5t-16.5 -143z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1196" d="M84 764l27 123q59 31 130 51t124 20q116 0 116 -114q0 -44 -6 -68q72 83 173.5 135t199.5 52q199 0 199 -187q0 -77 -25 -180l-51 -205q-31 -118 -31 -174q0 -35 16.5 -50t53.5 -15q60 0 123 18l-31 -135q-116 -53 -252 -53q-154 0 -154 127q0 70 27 178l63 266 q17 80 17 121q0 47 -24 66.5t-70 19.5q-120 0 -246 -113q-8 -63 -33 -170l-113 -477h-219l105 479q39 176 39 219q0 40 -19.5 57t-60.5 17q-38 0 -78 -8zM379 1130q75 238 194 238q49 0 117 -31l51 -24q60 -29 90 -29q27 0 50.5 25.5t52.5 81.5l82 -25q-30 -116 -76 -179 t-104 -63q-55 0 -134 39l-47 21q-61 22 -86 22q-33 0 -55.5 -22t-52.5 -80z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1093" d="M70 358q0 121 36.5 240t114.5 207q143 162 391 162q186 0 298 -92.5t112 -272.5q0 -128 -39.5 -255t-120.5 -218q-68 -75 -170 -116.5t-211 -41.5q-187 0 -299 96.5t-112 290.5zM303 375q0 -225 203 -225q124 0 194 102q42 61 64 153.5t22 180.5q0 205 -196 205 q-127 0 -199 -95q-44 -60 -66 -147t-22 -174zM383 1419q0 39 30.5 65.5t67.5 26.5q31 0 55 -19.5t58 -78.5l176 -297l-74 -53l-243 244q-39 39 -54.5 62.5t-15.5 49.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1093" d="M70 358q0 121 36.5 240t114.5 207q143 162 391 162q186 0 298 -92.5t112 -272.5q0 -128 -39.5 -255t-120.5 -218q-68 -75 -170 -116.5t-211 -41.5q-187 0 -299 96.5t-112 290.5zM303 375q0 -225 203 -225q124 0 194 102q42 61 64 153.5t22 180.5q0 205 -196 205 q-127 0 -199 -95q-44 -60 -66 -147t-22 -174zM498 1128l219 273q38 45 63.5 63.5t50.5 18.5q37 0 66 -26.5t29 -65.5q0 -30 -20.5 -56t-67.5 -61l-277 -211z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1093" d="M70 358q0 121 36.5 240t114.5 207q143 162 391 162q186 0 298 -92.5t112 -272.5q0 -128 -39.5 -255t-120.5 -218q-68 -75 -170 -116.5t-211 -41.5q-187 0 -299 96.5t-112 290.5zM303 375q0 -225 203 -225q124 0 194 102q42 61 64 153.5t22 180.5q0 205 -196 205 q-127 0 -199 -95q-44 -60 -66 -147t-22 -174zM358 1104l265 307q41 49 90 49q58 0 80 -45l151 -328l-80 -47l-176 224l-264 -224z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1093" d="M70 358q0 121 36.5 240t114.5 207q143 162 391 162q186 0 298 -92.5t112 -272.5q0 -128 -39.5 -255t-120.5 -218q-68 -75 -170 -116.5t-211 -41.5q-187 0 -299 96.5t-112 290.5zM303 375q0 -225 203 -225q124 0 194 102q42 61 64 153.5t22 180.5q0 205 -196 205 q-127 0 -199 -95q-44 -60 -66 -147t-22 -174zM338 1130q75 238 194 238q49 0 117 -31l51 -24q60 -29 91 -29q27 0 50 25t52 82l82 -25q-30 -116 -76 -179t-104 -63q-54 0 -133 39l-48 21q-61 22 -86 22q-33 0 -55.5 -22t-52.5 -80z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1093" d="M70 358q0 121 36.5 240t114.5 207q143 162 391 162q186 0 298 -92.5t112 -272.5q0 -128 -39.5 -255t-120.5 -218q-68 -75 -170 -116.5t-211 -41.5q-187 0 -299 96.5t-112 290.5zM303 375q0 -225 203 -225q124 0 194 102q42 61 64 153.5t22 180.5q0 205 -196 205 q-127 0 -199 -95q-44 -60 -66 -147t-22 -174zM406 1262q0 49 32.5 85.5t83.5 36.5q47 0 77 -30.5t30 -75.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74 31t-28 82zM737 1262q0 49 33.5 85.5t83.5 36.5q48 0 77.5 -30.5t29.5 -75.5q0 -56 -33 -92.5t-86 -36.5q-47 0 -76 31t-29 82 z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1204" d="M162 559l35 164h907l-33 -164h-909zM449 299q2 59 36 97t86 38q45 0 70 -29.5t25 -82.5t-35 -90t-86 -37q-43 0 -69.5 29.5t-26.5 74.5zM598 952q0 56 36.5 94.5t88.5 38.5q46 0 70 -30t24 -82q0 -53 -37 -89t-88 -36q-42 0 -68 29t-26 75z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1093" d="M43 -8l102 119q-71 96 -71 249q0 120 36.5 238.5t114.5 206.5q143 162 391 162q132 0 230 -49l102 118l82 -75l-94 -109q90 -93 90 -250q0 -128 -40 -256t-122 -219q-66 -73 -169.5 -113.5t-209.5 -40.5q-157 0 -260 66l-100 -117zM307 377q0 -39 6 -74l398 461 q-47 27 -117 27q-127 0 -199 -95q-43 -60 -65.5 -147t-22.5 -172zM367 199q50 -47 143 -47q125 0 195 100q42 63 64 154.5t22 179.5q0 45 -13 86z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1212" d="M90 762l27 123q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -53 -33 -189l-65 -266q-19 -86 -19 -119q0 -88 96 -88q116 0 246 113q5 36 33 170l110 477h222l-105 -477q-3 -14 -12.5 -58.5t-15 -72.5t-10.5 -61.5t-5 -51.5q0 -37 17 -53.5t55 -16.5q48 0 121 19 l-31 -133q-130 -56 -242 -56q-54 0 -92.5 26t-46.5 81q-2 18 -2 63q-71 -81 -169.5 -126.5t-199.5 -45.5q-99 0 -155 49t-56 140q0 74 25 180l53 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8zM403 1419q0 39 31 65.5t68 26.5q31 0 54.5 -19.5t57.5 -78.5l177 -297 l-74 -53l-244 244q-39 39 -54.5 62.5t-15.5 49.5z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1212" d="M90 762l27 123q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -53 -33 -189l-65 -266q-19 -86 -19 -119q0 -88 96 -88q116 0 246 113q5 36 33 170l110 477h222l-105 -477q-3 -14 -12.5 -58.5t-15 -72.5t-10.5 -61.5t-5 -51.5q0 -37 17 -53.5t55 -16.5q48 0 121 19 l-31 -133q-130 -56 -242 -56q-54 0 -92.5 26t-46.5 81q-2 18 -2 63q-71 -81 -169.5 -126.5t-199.5 -45.5q-99 0 -155 49t-56 140q0 74 25 180l53 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8zM543 1128l219 273q38 45 64 63.5t51 18.5q37 0 65.5 -26.5t28.5 -65.5 q0 -30 -20.5 -56t-67.5 -61l-277 -211z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1212" d="M90 762l27 123q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -53 -33 -189l-65 -266q-19 -86 -19 -119q0 -88 96 -88q116 0 246 113q5 36 33 170l110 477h222l-105 -477q-3 -14 -12.5 -58.5t-15 -72.5t-10.5 -61.5t-5 -51.5q0 -37 17 -53.5t55 -16.5q48 0 121 19 l-31 -133q-130 -56 -242 -56q-54 0 -92.5 26t-46.5 81q-2 18 -2 63q-71 -81 -169.5 -126.5t-199.5 -45.5q-99 0 -155 49t-56 140q0 74 25 180l53 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8zM397 1104l265 307q41 49 90 49q57 0 79 -45l152 -328l-80 -47l-176 224 l-264 -224z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1212" d="M90 762l27 123q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -53 -33 -189l-65 -266q-19 -86 -19 -119q0 -88 96 -88q116 0 246 113q5 36 33 170l110 477h222l-105 -477q-3 -14 -12.5 -58.5t-15 -72.5t-10.5 -61.5t-5 -51.5q0 -37 17 -53.5t55 -16.5q48 0 121 19 l-31 -133q-130 -56 -242 -56q-54 0 -92.5 26t-46.5 81q-2 18 -2 63q-71 -81 -169.5 -126.5t-199.5 -45.5q-99 0 -155 49t-56 140q0 74 25 180l53 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8zM430 1262q0 49 33 85.5t84 36.5q47 0 76.5 -30.5t29.5 -75.5 q0 -56 -33 -92.5t-88 -36.5q-46 0 -74 31t-28 82zM762 1262q0 49 33.5 85.5t83.5 36.5q48 0 77 -30t29 -76q0 -56 -33 -92.5t-86 -36.5q-47 0 -75.5 31t-28.5 82z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1202" d="M59 -416q0 85 29 199h129q0 -41 2 -59q2 -42 27 -70q41 -41 133 -41q59 0 109.5 21t78.5 61q58 82 105 268q6 25 20.5 91t20.5 87q-163 -166 -359 -166q-100 0 -152 48.5t-52 140.5q0 60 26 180l49 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8l27 123 q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -33 -33 -189l-61 -266q-19 -86 -19 -119q0 -48 21 -68t67 -20q115 0 252 123l139 637h224q-28 -134 -183 -928q-33 -170 -77 -272.5t-105 -163.5q-130 -133 -383 -133q-160 0 -233 49q-53 35 -56 94zM541 1128l219 273 q38 45 63.5 63.5t50.5 18.5q37 0 66 -26.5t29 -65.5q0 -30 -20.5 -56t-67.5 -61l-277 -211z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1179" d="M-27 -535l351 1600q26 115 26 182q0 36 -18 51t-58 15q-34 0 -84 -10l27 124q152 70 279 70q116 0 116 -111q0 -25 -20 -131q-67 -296 -109 -456q65 70 160 118t193 48q268 0 268 -297q0 -141 -44 -276.5t-136 -237.5q-153 -172 -432 -172q-100 0 -183 18l-114 -535h-222 zM356 193q73 -27 170 -27q154 0 242 125q42 59 65 145.5t23 159.5q0 86 -35 128t-116 42q-58 0 -123.5 -33.5t-122.5 -85.5z" />
+<glyph unicode="&#xff;" horiz-adv-x="1202" d="M59 -416q0 85 29 199h129q0 -41 2 -59q2 -42 27 -70q41 -41 133 -41q59 0 109.5 21t78.5 61q58 82 105 268q6 25 20.5 91t20.5 87q-163 -166 -359 -166q-100 0 -152 48.5t-52 140.5q0 60 26 180l49 209q23 100 23 149q0 38 -18 53t-58 15q-32 0 -82 -8l27 123 q61 32 134.5 51.5t119.5 19.5q71 0 103 -27t32 -89q0 -33 -33 -189l-61 -266q-19 -86 -19 -119q0 -48 21 -68t67 -20q115 0 252 123l139 637h224q-28 -134 -183 -928q-33 -170 -77 -272.5t-105 -163.5q-130 -133 -383 -133q-160 0 -233 49q-53 35 -56 94zM440 1262 q0 49 33 85.5t84 36.5q47 0 77 -30.5t30 -75.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74.5 31t-28.5 82zM772 1262q0 49 33.5 85.5t83.5 36.5q48 0 77 -30t29 -76q0 -56 -32.5 -92.5t-85.5 -36.5q-47 0 -76 31t-29 82z" />
+<glyph unicode="&#x152;" horiz-adv-x="2060" d="M127 530q0 403 268 668q203 203 578 203q58 0 190.5 -8.5t186.5 -8.5h565q131 0 131 -90q0 -84 -41 -268h-129q0 59 -2 84q-5 47 -37 70q-37 26 -184 26h-221l-80 -411h112q66 0 101 4.5t59.5 24t35 43t26.5 77.5h124q-40 -160 -90 -463h-116q0 11 -1 31t-1 27 q0 72 -48 84q-34 10 -122 10h-113l-70 -352q-4 -28 -4 -48q0 -45 41 -51q53 -8 193 -8q217 0 290 59q43 36 105 156h127q-11 -84 -38.5 -178.5t-57.5 -144.5q-38 -66 -189 -66h-641q-43 0 -181 -6t-212 -6q-114 0 -207 28t-157 77t-107.5 117.5t-63.5 148.5t-20 171z M389 563q0 -181 89.5 -290t266.5 -109q191 0 236 63q18 22 37 111l135 694q14 75 14 107q0 55 -61 71q-62 15 -152 15q-119 0 -219 -43t-168 -123q-85 -98 -131.5 -232t-46.5 -264z" />
+<glyph unicode="&#x153;" horiz-adv-x="1650" d="M74 360q0 120 36.5 238.5t114.5 206.5q143 162 391 162q243 0 324 -172q63 79 160.5 125.5t210.5 46.5q154 0 230.5 -67.5t76.5 -170.5q0 -78 -32 -136.5t-103 -102.5t-192.5 -67t-293.5 -24q-4 -16 -4 -47q0 -85 50.5 -139.5t158.5 -54.5q146 0 328 104l67 -131 q-209 -160 -469 -160q-97 0 -175.5 41t-116.5 125q-60 -80 -151.5 -122t-199.5 -42q-187 0 -299 96t-112 291zM307 377q0 -225 203 -225q74 0 129.5 40.5t86 106.5t45.5 138.5t15 148.5q0 205 -192 205q-127 0 -199 -95q-43 -60 -65.5 -147t-22.5 -172zM1016 555 q393 5 393 158q0 43 -27.5 64.5t-89.5 21.5q-37 0 -82 -15.5t-77 -42.5q-80 -64 -117 -186z" />
+<glyph unicode="&#x178;" horiz-adv-x="1325" d="M154 1253l26 133q226 -4 281 -4q83 0 301 4l-29 -133q-89 -3 -123 -14q-39 -12 -39 -51q0 -31 23 -92q131 -341 145 -379q88 117 301 387q54 68 54 102q0 30 -36.5 38.5t-101.5 8.5l27 133q94 -4 313 -4q105 0 193 4l-27 -133q-57 -3 -100 -30q-8 -5 -18 -15t-24 -26 t-26.5 -30.5t-34 -40.5t-36.5 -44l-426 -512l-54 -270q-12 -59 -12 -88q0 -11 3 -19t9.5 -14t13 -10.5t18.5 -7.5t22 -5t26 -3.5t27 -2t30 -1t31 -1.5l-24 -135q-218 4 -312 4q-117 0 -313 -4l27 135q95 4 126.5 12t45.5 25q17 17 35 104l55 279l-219 539q-20 49 -29 69.5 t-21.5 39.5t-25.5 28q-30 21 -102 24zM578 1634q0 49 32.5 85t83.5 36q47 0 77 -29.5t30 -74.5q0 -56 -33 -92.5t-88 -36.5q-46 0 -74 31t-28 81zM944 1634q0 49 33 85t84 36q48 0 77 -29.5t29 -74.5q0 -57 -32 -93t-86 -36q-47 0 -76 31t-29 81z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M6 1104l264 307q41 49 90 49q58 0 80 -45l152 -328l-80 -47l-176 224l-264 -224z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-20 1130q75 238 194 238q49 0 117 -31l51 -24q60 -29 90 -29q27 0 50.5 25.5t52.5 81.5l81 -25q-30 -116 -76 -179t-104 -63q-54 0 -133 39l-47 21q-61 22 -86 22q-33 0 -56 -22.5t-53 -79.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="941" />
+<glyph unicode="&#x2001;" horiz-adv-x="1882" />
+<glyph unicode="&#x2002;" horiz-adv-x="941" />
+<glyph unicode="&#x2003;" horiz-adv-x="1882" />
+<glyph unicode="&#x2004;" horiz-adv-x="627" />
+<glyph unicode="&#x2005;" horiz-adv-x="470" />
+<glyph unicode="&#x2006;" horiz-adv-x="313" />
+<glyph unicode="&#x2007;" horiz-adv-x="313" />
+<glyph unicode="&#x2008;" horiz-adv-x="235" />
+<glyph unicode="&#x2009;" horiz-adv-x="376" />
+<glyph unicode="&#x200a;" horiz-adv-x="104" />
+<glyph unicode="&#x2010;" horiz-adv-x="559" d="M53 422l33 168h440l-32 -168h-441z" />
+<glyph unicode="&#x2011;" horiz-adv-x="559" d="M53 422l33 168h440l-32 -168h-441z" />
+<glyph unicode="&#x2012;" horiz-adv-x="559" d="M53 422l33 168h440l-32 -168h-441z" />
+<glyph unicode="&#x2013;" d="M66 430l30 156h1014l-31 -156h-1013z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M66 430l30 156h1520l-33 -156h-1517z" />
+<glyph unicode="&#x2018;" horiz-adv-x="452" d="M145 1032q0 261 392 436l43 -90q-114 -56 -173 -111t-59 -102q0 -45 41 -65q70 -33 70 -111q0 -57 -41 -96t-109 -39q-73 0 -118.5 50t-45.5 128z" />
+<glyph unicode="&#x2019;" horiz-adv-x="452" d="M100 942q112 52 171 108t59 103t-39 66q-72 37 -72 110q0 58 41 96.5t109 38.5q74 0 120 -49.5t46 -128.5q0 -263 -392 -438z" />
+<glyph unicode="&#x201a;" horiz-adv-x="444" d="M-117 -297q112 52 171 108t59 103t-39 66q-72 33 -72 108q0 58 41.5 97.5t108.5 39.5q74 0 119.5 -49.5t45.5 -128.5q0 -264 -391 -438z" />
+<glyph unicode="&#x201c;" horiz-adv-x="849" d="M145 1032q0 261 392 436l43 -90q-114 -56 -173 -111t-59 -102q0 -48 41 -65q70 -33 70 -111q0 -57 -41 -96t-109 -39q-73 0 -118.5 50t-45.5 128zM543 1032q0 262 391 436l43 -90q-113 -56 -171 -111t-58 -102q0 -48 38 -65q72 -32 72 -111q0 -57 -41 -96t-108 -39 q-74 0 -120 49.5t-46 128.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="849" d="M100 942q112 52 171 108t59 103t-39 66q-72 37 -72 110q0 58 41 96.5t109 38.5q74 0 120 -49.5t46 -128.5q0 -263 -392 -438zM498 942q112 53 171.5 108.5t59.5 102.5q0 46 -41 66q-72 39 -72 110q0 58 41.5 96.5t110.5 38.5q73 0 118.5 -50t45.5 -128q0 -264 -391 -438z " />
+<glyph unicode="&#x201e;" horiz-adv-x="849" d="M-117 -297q112 52 171 108t59 103t-39 66q-72 33 -72 108q0 58 41.5 97.5t108.5 39.5q74 0 119.5 -49.5t45.5 -128.5q0 -264 -391 -438zM283 -297q112 52 170.5 108t58.5 103q0 46 -39 66q-72 32 -72 108q0 58 41.5 97.5t108.5 39.5q74 0 120 -49.5t46 -128.5 q0 -264 -391 -438z" />
+<glyph unicode="&#x2022;" horiz-adv-x="743" d="M96 549q0 130 85 222.5t218 92.5q127 0 207 -78t80 -200q0 -139 -85 -232.5t-222 -93.5q-123 0 -203 81.5t-80 207.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1761" d="M74 123q0 64 42 111t109 47q63 0 103.5 -38.5t40.5 -99.5q0 -72 -43 -117.5t-113 -45.5q-63 0 -101 39t-38 104zM659 123q0 64 42.5 111t109.5 47q63 0 103 -38.5t40 -99.5q0 -73 -43 -118t-114 -45q-62 0 -100 39.5t-38 103.5zM1247 123q0 64 43 111t111 47 q63 0 102 -38t39 -100q0 -73 -42.5 -118t-113.5 -45q-63 0 -101 39t-38 104z" />
+<glyph unicode="&#x202f;" horiz-adv-x="376" />
+<glyph unicode="&#x2039;" horiz-adv-x="569" d="M41 451q0 49 63 100l412 315l70 -86l-336 -327l196 -334l-92 -72l-284 332q-29 33 -29 72z" />
+<glyph unicode="&#x203a;" horiz-adv-x="569" d="M-8 133l334 328l-197 334l92 71l285 -331q29 -37 29 -72q0 -52 -64 -101l-410 -315z" />
+<glyph unicode="&#x205f;" horiz-adv-x="470" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1433" d="M172 500l18 108h140q4 49 20 137h-135l18 109h146q68 201 213 340q190 178 483 178q179 0 275 -47q80 -35 80 -129q0 -32 -13 -108t-26 -125h-131q-6 129 -31 165q-44 64 -189 64q-173 0 -292 -131q-73 -81 -121 -207h448l-18 -109h-459q-17 -78 -20 -137h454l-18 -108 h-439q7 -177 92 -259.5t220 -82.5q172 0 239 63q40 34 95 156h133q-35 -186 -62 -248q-36 -70 -139 -111q-49 -18 -138 -32.5t-184 -14.5q-240 0 -372.5 138.5t-132.5 390.5h-154z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1556" d="M217 1194q9 89 16 131q7 59 72 59h453q53 0 53 -45q0 -29 -27 -145h-57q0 45 -3 64t-13 28q-11 9 -33.5 10.5t-97.5 1.5l-74 -378q-6 -37 -6 -48q0 -28 88 -28l-15 -68q-41 2 -151 2q-113 0 -156 -2l15 68q65 2 77 14q13 10 21 57l76 383q-113 0 -133 -10 q-28 -14 -50 -94h-55zM760 776l14 68q59 0 74 12q8 8 24 76q21 98 36.5 172.5t21.5 103t8 37.5q6 27 6 43q0 11 -5.5 18t-20 9.5t-24 3t-30.5 0.5l13 65q53 -2 143 -2q73 0 104 2q60 -288 70 -350q13 25 213 350q39 -2 125 -2q78 0 119 2l-13 -67q-59 -2 -71 -14 q-12 -10 -21 -50q-5 -18 -59 -327q-6 -37 -6 -52q0 -18 22 -24q18 -6 60 -6l-15 -68q-43 2 -147 2q-95 0 -150 -2l15 68q55 2 71 14q11 11 19 49l28 144t22.5 116t18.5 88q-2 -4 -32.5 -55t-77 -125.5t-113.5 -177.5q-18 -33 -53 -33q-40 0 -47 35q-67 296 -78 358 q-6 -39 -20 -114t-27.5 -147t-15.5 -85q-5 -25 -5 -39q0 -19 21 -22q36 -6 61 -6l-12 -68q-39 2 -127 2q-90 0 -139 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="952" d="M0 0v952h952v-952h-952z" />
+<hkern u1="&#x20;" u2="&#x201c;" k="4" />
+<hkern u1="&#x20;" u2="&#x2018;" k="4" />
+<hkern u1="&#x20;" u2="&#x178;" k="37" />
+<hkern u1="&#x20;" u2="&#xef;" k="61" />
+<hkern u1="&#x20;" u2="&#xee;" k="61" />
+<hkern u1="&#x20;" u2="&#xed;" k="61" />
+<hkern u1="&#x20;" u2="&#xec;" k="61" />
+<hkern u1="&#x20;" u2="&#xdd;" k="37" />
+<hkern u1="&#x20;" u2="i" k="61" />
+<hkern u1="&#x20;" u2="Y" k="37" />
+<hkern u1="&#x21;" u2="&#x2026;" k="-51" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-51" />
+<hkern u1="&#x21;" u2="]" k="-51" />
+<hkern u1="&#x21;" u2="&#x3a;" k="-41" />
+<hkern u1="&#x21;" u2="&#x2e;" k="-51" />
+<hkern u1="&#x21;" u2="&#x2c;" k="-51" />
+<hkern u1="&#x21;" u2="&#x29;" k="-51" />
+<hkern u1="&#x22;" g2="uniFB04" k="20" />
+<hkern u1="&#x22;" g2="uniFB03" k="20" />
+<hkern u1="&#x22;" g2="uniFB02" k="20" />
+<hkern u1="&#x22;" g2="uniFB01" k="20" />
+<hkern u1="&#x22;" u2="&#xdf;" k="20" />
+<hkern u1="&#x22;" u2="f" k="20" />
+<hkern u1="&#x22;" u2="&#x31;" k="184" />
+<hkern u1="&#x24;" u2="&#x33;" k="-41" />
+<hkern u1="&#x27;" u2="&#x31;" k="225" />
+<hkern u1="&#x28;" u2="W" k="-68" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="233" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="348" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="233" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="348" />
+<hkern u1="&#x2c;" u2="&#x38;" k="18" />
+<hkern u1="&#x2d;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2d;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="266" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="266" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2014;" k="41" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="41" />
+<hkern u1="&#x2e;" u2="&#x38;" k="23" />
+<hkern u1="&#x2e;" u2="&#x2d;" k="41" />
+<hkern u1="&#x2f;" g2="uniFB04" k="41" />
+<hkern u1="&#x2f;" g2="uniFB03" k="41" />
+<hkern u1="&#x2f;" g2="uniFB02" k="41" />
+<hkern u1="&#x2f;" g2="uniFB01" k="41" />
+<hkern u1="&#x2f;" u2="&#x153;" k="119" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-29" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="119" />
+<hkern u1="&#x2f;" u2="&#xef;" k="61" />
+<hkern u1="&#x2f;" u2="&#xee;" k="61" />
+<hkern u1="&#x2f;" u2="&#xed;" k="61" />
+<hkern u1="&#x2f;" u2="&#xec;" k="61" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="119" />
+<hkern u1="&#x2f;" u2="&#xea;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="100" />
+<hkern u1="&#x2f;" u2="&#xdf;" k="41" />
+<hkern u1="&#x2f;" u2="&#xde;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="82" />
+<hkern u1="&#x2f;" u2="q" k="100" />
+<hkern u1="&#x2f;" u2="o" k="119" />
+<hkern u1="&#x2f;" u2="l" k="-29" />
+<hkern u1="&#x2f;" u2="k" k="-29" />
+<hkern u1="&#x2f;" u2="i" k="61" />
+<hkern u1="&#x2f;" u2="h" k="-29" />
+<hkern u1="&#x2f;" u2="f" k="41" />
+<hkern u1="&#x2f;" u2="e" k="119" />
+<hkern u1="&#x2f;" u2="d" k="119" />
+<hkern u1="&#x2f;" u2="c" k="119" />
+<hkern u1="&#x2f;" u2="b" k="-29" />
+<hkern u1="&#x2f;" u2="a" k="100" />
+<hkern u1="&#x2f;" u2="V" k="-25" />
+<hkern u1="&#x2f;" u2="R" k="18" />
+<hkern u1="&#x2f;" u2="P" k="18" />
+<hkern u1="&#x2f;" u2="N" k="18" />
+<hkern u1="&#x2f;" u2="M" k="18" />
+<hkern u1="&#x2f;" u2="L" k="18" />
+<hkern u1="&#x2f;" u2="K" k="18" />
+<hkern u1="&#x2f;" u2="I" k="18" />
+<hkern u1="&#x2f;" u2="H" k="18" />
+<hkern u1="&#x2f;" u2="F" k="18" />
+<hkern u1="&#x2f;" u2="E" k="18" />
+<hkern u1="&#x2f;" u2="D" k="18" />
+<hkern u1="&#x2f;" u2="B" k="18" />
+<hkern u1="&#x2f;" u2="A" k="82" />
+<hkern u1="&#x2f;" u2="&#x35;" k="23" />
+<hkern u1="&#x30;" u2="&#x153;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-61" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-61" />
+<hkern u1="&#x30;" u2="&#xea;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-61" />
+<hkern u1="&#x30;" u2="o" k="-61" />
+<hkern u1="&#x30;" u2="e" k="-61" />
+<hkern u1="&#x30;" u2="d" k="-61" />
+<hkern u1="&#x30;" u2="c" k="-61" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-102" />
+<hkern u1="&#x30;" u2="&#x25;" k="-76" />
+<hkern u1="&#x31;" u2="&#x2026;" k="143" />
+<hkern u1="&#x31;" u2="&#x2f;" k="102" />
+<hkern u1="&#x31;" u2="&#x2e;" k="143" />
+<hkern u1="&#x31;" u2="&#x2c;" k="143" />
+<hkern u1="&#x31;" u2="&#x27;" k="287" />
+<hkern u1="&#x31;" u2="&#x22;" k="287" />
+<hkern u1="&#x32;" u2="&#x2026;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2e;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2c;" k="-102" />
+<hkern u1="&#x33;" g2="uniFB04" k="-78" />
+<hkern u1="&#x33;" g2="uniFB03" k="-78" />
+<hkern u1="&#x33;" g2="uniFB02" k="-78" />
+<hkern u1="&#x33;" g2="uniFB01" k="-78" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-78" />
+<hkern u1="&#x33;" u2="f" k="-78" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-102" />
+<hkern u1="&#x34;" u2="r" k="-102" />
+<hkern u1="&#x34;" u2="p" k="-102" />
+<hkern u1="&#x34;" u2="n" k="-102" />
+<hkern u1="&#x34;" u2="m" k="-102" />
+<hkern u1="&#x35;" u2="&#x2014;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2013;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2d;" k="-102" />
+<hkern u1="&#x37;" u2="&#x2026;" k="229" />
+<hkern u1="&#x37;" u2="&#x2e;" k="229" />
+<hkern u1="&#x37;" u2="&#x2c;" k="229" />
+<hkern u1="&#x38;" u2="&#x2026;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2014;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2013;" k="-61" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-14" />
+<hkern u1="&#x38;" u2="&#x2e;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2d;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2c;" k="-61" />
+<hkern u1="&#x3a;" u2="&#x31;" k="123" />
+<hkern u1="&#x3f;" u2="&#x2026;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2e;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="61" />
+<hkern u1="&#x3f;" u2="&#x20;" k="2" />
+<hkern u1="A" u2="b" k="80" />
+<hkern u1="A" u2="W" k="137" />
+<hkern u1="A" u2="&#x2f;" k="-51" />
+<hkern u1="A" u2="&#x21;" k="82" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="W" k="61" />
+<hkern u1="C" u2="&#xee;" k="31" />
+<hkern u1="C" u2="W" k="80" />
+<hkern u1="D" u2="&#xd0;" k="-25" />
+<hkern u1="D" u2="W" k="57" />
+<hkern u1="E" u2="&#xec;" k="31" />
+<hkern u1="E" u2="W" k="66" />
+<hkern u1="F" u2="&#x2026;" k="154" />
+<hkern u1="F" u2="&#x178;" k="27" />
+<hkern u1="F" u2="&#x153;" k="80" />
+<hkern u1="F" u2="&#xff;" k="98" />
+<hkern u1="F" u2="&#xfe;" k="25" />
+<hkern u1="F" u2="&#xfd;" k="98" />
+<hkern u1="F" u2="&#xfc;" k="115" />
+<hkern u1="F" u2="&#xfb;" k="115" />
+<hkern u1="F" u2="&#xfa;" k="115" />
+<hkern u1="F" u2="&#xf9;" k="115" />
+<hkern u1="F" u2="&#xf8;" k="80" />
+<hkern u1="F" u2="&#xf6;" k="80" />
+<hkern u1="F" u2="&#xf5;" k="80" />
+<hkern u1="F" u2="&#xf4;" k="80" />
+<hkern u1="F" u2="&#xf3;" k="80" />
+<hkern u1="F" u2="&#xf2;" k="80" />
+<hkern u1="F" u2="&#xf1;" k="80" />
+<hkern u1="F" u2="&#xf0;" k="80" />
+<hkern u1="F" u2="&#xef;" k="2" />
+<hkern u1="F" u2="&#xee;" k="10" />
+<hkern u1="F" u2="&#xed;" k="53" />
+<hkern u1="F" u2="&#xec;" k="-12" />
+<hkern u1="F" u2="&#xeb;" k="80" />
+<hkern u1="F" u2="&#xea;" k="80" />
+<hkern u1="F" u2="&#xe9;" k="80" />
+<hkern u1="F" u2="&#xe8;" k="80" />
+<hkern u1="F" u2="&#xe7;" k="80" />
+<hkern u1="F" u2="&#xe6;" k="102" />
+<hkern u1="F" u2="&#xe5;" k="102" />
+<hkern u1="F" u2="&#xe4;" k="102" />
+<hkern u1="F" u2="&#xe3;" k="102" />
+<hkern u1="F" u2="&#xe2;" k="102" />
+<hkern u1="F" u2="&#xe1;" k="102" />
+<hkern u1="F" u2="&#xe0;" k="102" />
+<hkern u1="F" u2="&#xdd;" k="27" />
+<hkern u1="F" u2="&#xc6;" k="225" />
+<hkern u1="F" u2="&#xc5;" k="76" />
+<hkern u1="F" u2="&#xc4;" k="76" />
+<hkern u1="F" u2="&#xc3;" k="76" />
+<hkern u1="F" u2="&#xc2;" k="76" />
+<hkern u1="F" u2="&#xc1;" k="76" />
+<hkern u1="F" u2="&#xc0;" k="76" />
+<hkern u1="F" u2="z" k="102" />
+<hkern u1="F" u2="y" k="98" />
+<hkern u1="F" u2="x" k="125" />
+<hkern u1="F" u2="w" k="94" />
+<hkern u1="F" u2="v" k="98" />
+<hkern u1="F" u2="u" k="115" />
+<hkern u1="F" u2="t" k="63" />
+<hkern u1="F" u2="s" k="102" />
+<hkern u1="F" u2="r" k="80" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="80" />
+<hkern u1="F" u2="o" k="80" />
+<hkern u1="F" u2="n" k="80" />
+<hkern u1="F" u2="m" k="80" />
+<hkern u1="F" u2="l" k="25" />
+<hkern u1="F" u2="k" k="25" />
+<hkern u1="F" u2="j" k="23" />
+<hkern u1="F" u2="i" k="53" />
+<hkern u1="F" u2="h" k="25" />
+<hkern u1="F" u2="g" k="102" />
+<hkern u1="F" u2="e" k="80" />
+<hkern u1="F" u2="d" k="80" />
+<hkern u1="F" u2="c" k="80" />
+<hkern u1="F" u2="b" k="25" />
+<hkern u1="F" u2="a" k="102" />
+<hkern u1="F" u2="Y" k="27" />
+<hkern u1="F" u2="X" k="68" />
+<hkern u1="F" u2="J" k="20" />
+<hkern u1="F" u2="A" k="76" />
+<hkern u1="F" u2="&#x2f;" k="61" />
+<hkern u1="F" u2="&#x2e;" k="154" />
+<hkern u1="F" u2="&#x2c;" k="154" />
+<hkern u1="G" u2="&#xd0;" k="-27" />
+<hkern u1="G" u2="W" k="53" />
+<hkern u1="H" u2="&#xef;" k="-6" />
+<hkern u1="H" u2="&#xec;" k="-33" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="H" u2="&#x2f;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-6" />
+<hkern u1="I" u2="&#xec;" k="-33" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#x2f;" k="-20" />
+<hkern u1="J" u2="&#xef;" k="-37" />
+<hkern u1="J" u2="&#xec;" k="-74" />
+<hkern u1="J" u2="&#xd0;" k="-27" />
+<hkern u1="K" u2="&#xef;" k="18" />
+<hkern u1="K" u2="&#xec;" k="-45" />
+<hkern u1="K" u2="b" k="45" />
+<hkern u1="K" u2="W" k="76" />
+<hkern u1="L" u2="W" k="211" />
+<hkern u1="M" u2="&#xd0;" k="-27" />
+<hkern u1="N" u2="&#xef;" k="-66" />
+<hkern u1="N" u2="&#xec;" k="-84" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="N" u2="&#x2f;" k="-20" />
+<hkern u1="O" u2="&#xd0;" k="-25" />
+<hkern u1="O" u2="W" k="57" />
+<hkern u1="P" u2="&#xd0;" k="-20" />
+<hkern u1="P" u2="W" k="66" />
+<hkern u1="Q" u2="&#xd0;" k="-35" />
+<hkern u1="Q" u2="W" k="57" />
+<hkern u1="Q" u2="J" k="-246" />
+<hkern u1="Q" u2="&#x2c;" k="-184" />
+<hkern u1="R" u2="W" k="104" />
+<hkern u1="S" u2="W" k="74" />
+<hkern u1="T" u2="&#x2019;" k="-61" />
+<hkern u1="T" u2="&#xef;" k="2" />
+<hkern u1="T" u2="&#xee;" k="-4" />
+<hkern u1="T" u2="&#xec;" k="20" />
+<hkern u1="T" u2="&#x3f;" k="-25" />
+<hkern u1="T" u2="&#x3b;" k="76" />
+<hkern u1="T" u2="&#x3a;" k="104" />
+<hkern u1="T" u2="&#x21;" k="-8" />
+<hkern u1="U" u2="&#xef;" k="-37" />
+<hkern u1="U" u2="&#xec;" k="-74" />
+<hkern u1="U" u2="&#xd0;" k="-27" />
+<hkern u1="V" u2="&#xf6;" k="129" />
+<hkern u1="V" u2="&#xef;" k="-82" />
+<hkern u1="V" u2="&#xee;" k="27" />
+<hkern u1="V" u2="&#xec;" k="-78" />
+<hkern u1="V" u2="&#xe8;" k="109" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="88" />
+<hkern u1="W" u2="&#x201d;" k="-43" />
+<hkern u1="W" u2="&#x2019;" k="-49" />
+<hkern u1="W" u2="&#xff;" k="109" />
+<hkern u1="W" u2="&#xfd;" k="109" />
+<hkern u1="W" u2="&#xf6;" k="129" />
+<hkern u1="W" u2="&#xef;" k="-82" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="70" />
+<hkern u1="W" u2="&#xec;" k="-78" />
+<hkern u1="W" u2="&#xe8;" k="109" />
+<hkern u1="W" u2="y" k="109" />
+<hkern u1="W" u2="x" k="176" />
+<hkern u1="W" u2="w" k="152" />
+<hkern u1="W" u2="v" k="158" />
+<hkern u1="W" u2="t" k="102" />
+<hkern u1="W" u2="s" k="168" />
+<hkern u1="W" u2="j" k="66" />
+<hkern u1="W" u2="&#x3b;" k="102" />
+<hkern u1="W" u2="&#x3a;" k="88" />
+<hkern u1="X" u2="&#xef;" k="4" />
+<hkern u1="X" u2="&#xee;" k="78" />
+<hkern u1="X" u2="&#xec;" k="-31" />
+<hkern u1="Y" u2="&#xef;" k="-80" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="66" />
+<hkern u1="Y" u2="&#xec;" k="-109" />
+<hkern u1="Y" u2="&#xe8;" k="115" />
+<hkern u1="Y" u2="W" k="27" />
+<hkern u1="Y" u2="&#x3b;" k="133" />
+<hkern u1="Y" u2="&#x3a;" k="123" />
+<hkern u1="Y" u2="&#x30;" k="-4" />
+<hkern u1="Y" u2="&#x21;" k="61" />
+<hkern u1="Z" u2="&#xef;" k="35" />
+<hkern u1="Z" u2="&#xec;" k="12" />
+<hkern u1="Z" u2="&#xd0;" k="-20" />
+<hkern u1="Z" u2="W" k="78" />
+<hkern u1="[" u2="W" k="-68" />
+<hkern u1="a" u2="&#x3f;" k="27" />
+<hkern u1="a" u2="&#x3b;" k="-16" />
+<hkern u1="a" u2="&#x2f;" k="-70" />
+<hkern u1="c" u2="&#x2019;" k="-20" />
+<hkern u1="c" u2="k" k="39" />
+<hkern u1="e" u2="&#x3a;" k="-20" />
+<hkern u1="f" u2="&#x2019;" k="-190" />
+<hkern u1="f" u2="&#xf2;" k="-14" />
+<hkern u1="f" u2="&#xf1;" k="-2" />
+<hkern u1="f" u2="&#xef;" k="-188" />
+<hkern u1="f" u2="&#xee;" k="-158" />
+<hkern u1="f" u2="&#xed;" k="-25" />
+<hkern u1="f" u2="&#xec;" k="-223" />
+<hkern u1="f" u2="&#xe8;" k="-25" />
+<hkern u1="f" u2="b" k="-129" />
+<hkern u1="f" u2="W" k="-205" />
+<hkern u1="f" u2="&#x3f;" k="-199" />
+<hkern u1="f" u2="&#x3a;" k="-6" />
+<hkern u1="f" u2="&#x2f;" k="-20" />
+<hkern u1="f" u2="&#x2a;" k="-184" />
+<hkern u1="f" u2="&#x27;" k="-221" />
+<hkern u1="f" u2="&#x22;" k="-205" />
+<hkern u1="f" u2="&#x21;" k="-94" />
+<hkern u1="g" u2="y" k="16" />
+<hkern u1="g" u2="&#x3b;" k="-23" />
+<hkern u1="g" u2="&#x2c;" k="-96" />
+<hkern u1="h" u2="&#x3f;" k="27" />
+<hkern u1="h" u2="&#x3b;" k="-16" />
+<hkern u1="h" u2="&#x2f;" k="-70" />
+<hkern u1="i" u2="q" k="-14" />
+<hkern u1="k" u2="e" k="10" />
+<hkern u1="k" u2="&#x3a;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-47" />
+<hkern u1="m" u2="&#x3f;" k="27" />
+<hkern u1="m" u2="&#x3b;" k="-16" />
+<hkern u1="m" u2="&#x2f;" k="-70" />
+<hkern u1="n" u2="&#x3f;" k="27" />
+<hkern u1="n" u2="&#x3b;" k="-16" />
+<hkern u1="n" u2="&#x2f;" k="-70" />
+<hkern u1="q" u2="&#x2026;" k="72" />
+<hkern u1="q" u2="&#xff;" k="14" />
+<hkern u1="q" u2="&#xfd;" k="14" />
+<hkern u1="q" u2="&#xfc;" k="10" />
+<hkern u1="q" u2="&#xfb;" k="10" />
+<hkern u1="q" u2="&#xfa;" k="10" />
+<hkern u1="q" u2="&#xf9;" k="10" />
+<hkern u1="q" u2="&#xf1;" k="6" />
+<hkern u1="q" u2="&#x7d;" k="-8" />
+<hkern u1="q" u2="y" k="14" />
+<hkern u1="q" u2="x" k="35" />
+<hkern u1="q" u2="w" k="14" />
+<hkern u1="q" u2="v" k="14" />
+<hkern u1="q" u2="u" k="10" />
+<hkern u1="q" u2="r" k="6" />
+<hkern u1="q" u2="p" k="6" />
+<hkern u1="q" u2="n" k="6" />
+<hkern u1="q" u2="m" k="6" />
+<hkern u1="q" u2="j" k="-117" />
+<hkern u1="q" u2="]" k="-8" />
+<hkern u1="q" u2="&#x2e;" k="72" />
+<hkern u1="q" u2="&#x2c;" k="72" />
+<hkern u1="q" u2="&#x29;" k="-8" />
+<hkern u1="r" u2="&#x2019;" k="-27" />
+<hkern u1="r" u2="&#x3b;" k="-14" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="v" u2="&#x3b;" k="6" />
+<hkern u1="v" u2="&#x3a;" k="6" />
+<hkern u1="w" u2="&#x2019;" k="41" />
+<hkern u1="w" u2="&#x3b;" k="10" />
+<hkern u1="w" u2="&#x3a;" k="10" />
+<hkern u1="x" u2="&#x2026;" k="-61" />
+<hkern u1="x" u2="&#x153;" k="8" />
+<hkern u1="x" u2="&#xf8;" k="8" />
+<hkern u1="x" u2="&#xf6;" k="8" />
+<hkern u1="x" u2="&#xf5;" k="8" />
+<hkern u1="x" u2="&#xf4;" k="8" />
+<hkern u1="x" u2="&#xf3;" k="8" />
+<hkern u1="x" u2="&#xf2;" k="8" />
+<hkern u1="x" u2="&#xf0;" k="8" />
+<hkern u1="x" u2="&#xeb;" k="8" />
+<hkern u1="x" u2="&#xea;" k="8" />
+<hkern u1="x" u2="&#xe9;" k="8" />
+<hkern u1="x" u2="&#xe8;" k="8" />
+<hkern u1="x" u2="&#xe7;" k="8" />
+<hkern u1="x" u2="&#xe6;" k="2" />
+<hkern u1="x" u2="&#xe5;" k="2" />
+<hkern u1="x" u2="&#xe4;" k="2" />
+<hkern u1="x" u2="&#xe3;" k="2" />
+<hkern u1="x" u2="&#xe2;" k="2" />
+<hkern u1="x" u2="&#xe1;" k="2" />
+<hkern u1="x" u2="&#xe0;" k="2" />
+<hkern u1="x" u2="q" k="2" />
+<hkern u1="x" u2="o" k="8" />
+<hkern u1="x" u2="g" k="74" />
+<hkern u1="x" u2="e" k="8" />
+<hkern u1="x" u2="d" k="8" />
+<hkern u1="x" u2="c" k="8" />
+<hkern u1="x" u2="a" k="2" />
+<hkern u1="x" u2="&#x2e;" k="-61" />
+<hkern u1="x" u2="&#x2c;" k="-61" />
+<hkern u1="y" u2="&#xef;" k="16" />
+<hkern u1="y" u2="&#xee;" k="16" />
+<hkern u1="y" u2="&#xed;" k="16" />
+<hkern u1="y" u2="&#xec;" k="16" />
+<hkern u1="y" u2="i" k="16" />
+<hkern u1="y" u2="&#x3b;" k="6" />
+<hkern u1="y" u2="&#x3a;" k="6" />
+<hkern u1="&#x7b;" u2="W" k="-68" />
+<hkern u1="&#xa1;" u2="&#x178;" k="270" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="270" />
+<hkern u1="&#xa1;" u2="&#xc5;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc4;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc3;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc2;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc1;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc0;" k="61" />
+<hkern u1="&#xa1;" u2="Y" k="270" />
+<hkern u1="&#xa1;" u2="W" k="102" />
+<hkern u1="&#xa1;" u2="V" k="160" />
+<hkern u1="&#xa1;" u2="T" k="170" />
+<hkern u1="&#xa1;" u2="A" k="61" />
+<hkern u1="&#xa3;" u2="&#x35;" k="-25" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-45" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-72" />
+<hkern u1="&#xab;" u2="W" k="61" />
+<hkern u1="&#xbb;" u2="W" k="123" />
+<hkern u1="&#xbf;" u2="T" k="143" />
+<hkern u1="&#xbf;" u2="S" k="27" />
+<hkern u1="&#xc0;" u2="b" k="80" />
+<hkern u1="&#xc0;" u2="W" k="137" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc0;" u2="&#x21;" k="82" />
+<hkern u1="&#xc1;" u2="b" k="80" />
+<hkern u1="&#xc1;" u2="W" k="137" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc1;" u2="&#x21;" k="82" />
+<hkern u1="&#xc2;" u2="b" k="80" />
+<hkern u1="&#xc2;" u2="W" k="137" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc2;" u2="&#x21;" k="82" />
+<hkern u1="&#xc3;" u2="b" k="80" />
+<hkern u1="&#xc3;" u2="W" k="137" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc3;" u2="&#x21;" k="82" />
+<hkern u1="&#xc4;" u2="b" k="80" />
+<hkern u1="&#xc4;" u2="W" k="137" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc4;" u2="&#x21;" k="82" />
+<hkern u1="&#xc5;" u2="b" k="80" />
+<hkern u1="&#xc5;" u2="W" k="137" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc5;" u2="&#x21;" k="82" />
+<hkern u1="&#xc6;" u2="&#xec;" k="31" />
+<hkern u1="&#xc6;" u2="W" k="66" />
+<hkern u1="&#xc7;" u2="&#xee;" k="31" />
+<hkern u1="&#xc7;" u2="W" k="80" />
+<hkern u1="&#xc8;" u2="&#xec;" k="31" />
+<hkern u1="&#xc8;" u2="W" k="66" />
+<hkern u1="&#xc9;" u2="&#xec;" k="31" />
+<hkern u1="&#xc9;" u2="W" k="66" />
+<hkern u1="&#xca;" u2="&#xec;" k="31" />
+<hkern u1="&#xca;" u2="W" k="66" />
+<hkern u1="&#xcb;" u2="&#xec;" k="31" />
+<hkern u1="&#xcb;" u2="W" k="66" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-33" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcc;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-33" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-6" />
+<hkern u1="&#xce;" u2="&#xec;" k="-33" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-33" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd0;" u2="W" k="57" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-6" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-33" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd1;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd2;" u2="W" k="57" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd3;" u2="W" k="57" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd4;" u2="W" k="57" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd5;" u2="W" k="57" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd6;" u2="W" k="57" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd8;" u2="W" k="57" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-37" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-74" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xda;" u2="&#xef;" k="-37" />
+<hkern u1="&#xda;" u2="&#xec;" k="-74" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-37" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-37" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-80" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="66" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-109" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="115" />
+<hkern u1="&#xdd;" u2="W" k="27" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="133" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="123" />
+<hkern u1="&#xdd;" u2="&#x30;" k="-4" />
+<hkern u1="&#xdd;" u2="&#x21;" k="61" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xde;" u2="W" k="57" />
+<hkern u1="&#xdf;" u2="&#x2026;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-61" />
+<hkern u1="&#xdf;" u2="&#x2e;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2c;" k="-41" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe7;" u2="&#x2019;" k="-20" />
+<hkern u1="&#xe7;" u2="k" k="39" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xec;" u2="q" k="-14" />
+<hkern u1="&#xed;" u2="q" k="-14" />
+<hkern u1="&#xee;" u2="q" k="-14" />
+<hkern u1="&#xef;" u2="q" k="-14" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xfd;" u2="&#x3b;" k="6" />
+<hkern u1="&#xfd;" u2="&#x3a;" k="6" />
+<hkern u1="&#xff;" u2="&#x3b;" k="6" />
+<hkern u1="&#xff;" u2="&#x3a;" k="6" />
+<hkern u1="&#x152;" u2="&#xec;" k="31" />
+<hkern u1="&#x152;" u2="W" k="66" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-20" />
+<hkern u1="&#x178;" u2="&#xef;" k="-80" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="66" />
+<hkern u1="&#x178;" u2="&#xec;" k="-109" />
+<hkern u1="&#x178;" u2="&#xe8;" k="115" />
+<hkern u1="&#x178;" u2="W" k="27" />
+<hkern u1="&#x178;" u2="&#x3b;" k="133" />
+<hkern u1="&#x178;" u2="&#x3a;" k="123" />
+<hkern u1="&#x178;" u2="&#x30;" k="-4" />
+<hkern u1="&#x178;" u2="&#x21;" k="61" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2014;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2014;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2018;" u2="d" k="143" />
+<hkern u1="&#x2018;" u2="c" k="143" />
+<hkern u1="&#x2018;" u2="X" k="20" />
+<hkern u1="&#x2018;" u2="W" k="-49" />
+<hkern u1="&#x2018;" u2="J" k="-31" />
+<hkern u1="&#x2019;" u2="&#x20;" k="-29" />
+<hkern u1="&#x201a;" u2="W" k="246" />
+<hkern u1="&#x201c;" u2="d" k="143" />
+<hkern u1="&#x201c;" u2="W" k="-49" />
+<hkern u1="&#x201e;" u2="W" k="246" />
+<hkern u1="&#x2039;" u2="W" k="61" />
+<hkern u1="&#x203a;" u2="W" k="123" />
+<hkern u1="&#x20ac;" u2="&#x36;" k="-59" />
+<hkern g1="uniFB01" u2="q" k="-14" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-47" />
+<hkern g1="uniFB03" u2="q" k="-14" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-47" />
+<hkern g1="d" 	g2="w" 	k="18" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-45" />
+<hkern g1="d" 	g2="quoteright,quotedblright" 	k="41" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="g" 	k="25" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,ellipsis" 	k="-27" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="z" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="t" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-104" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-133" />
+<hkern g1="f" 	g2="x" 	k="37" />
+<hkern g1="f" 	g2="g" 	k="27" />
+<hkern g1="f" 	g2="comma,period,ellipsis" 	k="20" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-211" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-199" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-221" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-178" />
+<hkern g1="f" 	g2="z" 	k="20" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-59" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-102" />
+<hkern g1="f" 	g2="T" 	k="-186" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-184" />
+<hkern g1="f" 	g2="V" 	k="-207" />
+<hkern g1="f" 	g2="X" 	k="-147" />
+<hkern g1="f" 	g2="Z" 	k="-145" />
+<hkern g1="f" 	g2="j" 	k="-59" />
+<hkern g1="f" 	g2="s" 	k="4" />
+<hkern g1="f" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-8" />
+<hkern g1="g" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="g" 	g2="w" 	k="-8" />
+<hkern g1="g" 	g2="x" 	k="12" />
+<hkern g1="g" 	g2="g" 	k="-12" />
+<hkern g1="g" 	g2="comma,period,ellipsis" 	k="12" />
+<hkern g1="g" 	g2="quoteleft,quotedblleft" 	k="2" />
+<hkern g1="g" 	g2="quoteright,quotedblright" 	k="-63" />
+<hkern g1="g" 	g2="parenright,bracketright,braceright" 	k="-139" />
+<hkern g1="g" 	g2="j" 	k="-53" />
+<hkern g1="g" 	g2="s" 	k="31" />
+<hkern g1="g" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-72" />
+<hkern g1="g" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="comma,period,ellipsis" 	k="-68" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="z" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="j" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="s" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="14" />
+<hkern g1="k" 	g2="w" 	k="8" />
+<hkern g1="k" 	g2="g" 	k="23" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="k" 	g2="t" 	k="16" />
+<hkern g1="k" 	g2="j" 	k="14" />
+<hkern g1="k" 	g2="s" 	k="8" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="k" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="g" 	k="12" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteright,quotedblright" 	k="-2" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-49" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-76" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotleft,guilsinglleft" 	k="-143" />
+<hkern g1="j" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="j" 	g2="w" 	k="8" />
+<hkern g1="j" 	g2="x" 	k="25" />
+<hkern g1="j" 	g2="comma,period,ellipsis" 	k="43" />
+<hkern g1="j" 	g2="s" 	k="14" />
+<hkern g1="j" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-14" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="x" 	k="4" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="66" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-106" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="s" 	k="18" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotleft,guilsinglleft" 	k="-102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="25" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="49" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="158" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="z" 	k="31" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-6" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="72" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="r" 	g2="w" 	k="29" />
+<hkern g1="r" 	g2="x" 	k="66" />
+<hkern g1="r" 	g2="g" 	k="92" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="156" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-41" />
+<hkern g1="r" 	g2="t" 	k="20" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="r" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
+<hkern g1="r" 	g2="j" 	k="43" />
+<hkern g1="r" 	g2="s" 	k="18" />
+<hkern g1="r" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="r" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="r" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="61" />
+<hkern g1="r" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="27" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="s" 	g2="g" 	k="23" />
+<hkern g1="s" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="s" 	g2="z" 	k="14" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-86" />
+<hkern g1="s" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="s" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="s" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="t" 	g2="g" 	k="16" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="x" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="53" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="76" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="137" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="72" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="33" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-25" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="12" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="w" 	g2="w" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="94" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="127" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="w" 	g2="s" 	k="12" />
+<hkern g1="z" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="z" 	g2="g" 	k="12" />
+<hkern g1="z" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="z" 	g2="t" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="78" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="47" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="g" 	k="68" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="238" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="244" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="213" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotright,guilsinglright" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="168" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="70" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="154" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="25" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="66" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="s" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-61" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="x" 	k="41" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="150" />
+<hkern g1="B" 	g2="z" 	k="47" />
+<hkern g1="B" 	g2="V" 	k="66" />
+<hkern g1="B" 	g2="X" 	k="25" />
+<hkern g1="B" 	g2="Z" 	k="4" />
+<hkern g1="B" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-4" />
+<hkern g1="B" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-8" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="B" 	g2="AE" 	k="145" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="98" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="59" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-20" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="88" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="61" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="27" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="39" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="113" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="b,h,k,l,thorn" 	k="2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="10" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="-10" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="98" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="55" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="94" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="51" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="6" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="66" />
+<hkern g1="G" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="G" 	g2="g" 	k="10" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="111" />
+<hkern g1="G" 	g2="T" 	k="90" />
+<hkern g1="G" 	g2="V" 	k="102" />
+<hkern g1="G" 	g2="X" 	k="72" />
+<hkern g1="G" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="G" 	g2="S" 	k="6" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="G" 	g2="AE" 	k="123" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="b,h,k,l,thorn" 	k="-2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="27" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-63" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="X" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="s" 	k="14" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="49" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="25" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="117" />
+<hkern g1="K" 	g2="w" 	k="121" />
+<hkern g1="K" 	g2="x" 	k="25" />
+<hkern g1="K" 	g2="g" 	k="72" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-49" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="84" />
+<hkern g1="K" 	g2="z" 	k="72" />
+<hkern g1="K" 	g2="t" 	k="111" />
+<hkern g1="K" 	g2="guillemotright,guilsinglright" 	k="102" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="K" 	g2="T" 	k="80" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="80" />
+<hkern g1="K" 	g2="V" 	k="61" />
+<hkern g1="K" 	g2="X" 	k="18" />
+<hkern g1="K" 	g2="Z" 	k="41" />
+<hkern g1="K" 	g2="s" 	k="98" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="90" />
+<hkern g1="K" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="109" />
+<hkern g1="K" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="106" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="172" />
+<hkern g1="K" 	g2="J" 	k="4" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="K" 	g2="S" 	k="135" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="2" />
+<hkern g1="K" 	g2="AE" 	k="20" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="123" />
+<hkern g1="L" 	g2="w" 	k="115" />
+<hkern g1="L" 	g2="x" 	k="47" />
+<hkern g1="L" 	g2="g" 	k="88" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-66" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="281" />
+<hkern g1="L" 	g2="z" 	k="61" />
+<hkern g1="L" 	g2="t" 	k="102" />
+<hkern g1="L" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="96" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
+<hkern g1="L" 	g2="T" 	k="270" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="154" />
+<hkern g1="L" 	g2="V" 	k="238" />
+<hkern g1="L" 	g2="X" 	k="39" />
+<hkern g1="L" 	g2="Z" 	k="35" />
+<hkern g1="L" 	g2="s" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="86" />
+<hkern g1="L" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
+<hkern g1="L" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="98" />
+<hkern g1="L" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="L" 	g2="J" 	k="68" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="98" />
+<hkern g1="L" 	g2="S" 	k="102" />
+<hkern g1="L" 	g2="AE" 	k="12" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="M" 	g2="w" 	k="20" />
+<hkern g1="M" 	g2="x" 	k="12" />
+<hkern g1="M" 	g2="g" 	k="31" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="M" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="M" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="M" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="57" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="b,h,k,l,thorn" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-18" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="x" 	k="18" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="g" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-184" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="72" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="59" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="90" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="125" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="P" 	g2="w" 	k="12" />
+<hkern g1="P" 	g2="x" 	k="76" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="P" 	g2="z" 	k="76" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="T" 	k="47" />
+<hkern g1="P" 	g2="V" 	k="39" />
+<hkern g1="P" 	g2="X" 	k="121" />
+<hkern g1="P" 	g2="Z" 	k="25" />
+<hkern g1="P" 	g2="s" 	k="23" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="P" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="P" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="90" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
+<hkern g1="P" 	g2="J" 	k="23" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-6" />
+<hkern g1="P" 	g2="S" 	k="12" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
+<hkern g1="P" 	g2="AE" 	k="205" />
+<hkern g1="R" 	g2="b,h,k,l,thorn" 	k="88" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="R" 	g2="w" 	k="72" />
+<hkern g1="R" 	g2="x" 	k="8" />
+<hkern g1="R" 	g2="g" 	k="66" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-94" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="R" 	g2="z" 	k="33" />
+<hkern g1="R" 	g2="t" 	k="66" />
+<hkern g1="R" 	g2="guillemotright,guilsinglright" 	k="8" />
+<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-10" />
+<hkern g1="R" 	g2="T" 	k="125" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="111" />
+<hkern g1="R" 	g2="V" 	k="119" />
+<hkern g1="R" 	g2="X" 	k="39" />
+<hkern g1="R" 	g2="Z" 	k="23" />
+<hkern g1="R" 	g2="j" 	k="37" />
+<hkern g1="R" 	g2="s" 	k="25" />
+<hkern g1="R" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="R" 	g2="m,n,p,r,ntilde" 	k="33" />
+<hkern g1="R" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="R" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="66" />
+<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="R" 	g2="J" 	k="-4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="R" 	g2="S" 	k="61" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="R" 	g2="AE" 	k="27" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="S" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="S" 	g2="z" 	k="25" />
+<hkern g1="S" 	g2="T" 	k="33" />
+<hkern g1="S" 	g2="V" 	k="61" />
+<hkern g1="S" 	g2="X" 	k="55" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="S" 	g2="AE" 	k="61" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="70" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="113" />
+<hkern g1="T" 	g2="w" 	k="102" />
+<hkern g1="T" 	g2="x" 	k="150" />
+<hkern g1="T" 	g2="g" 	k="199" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="172" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="T" 	g2="z" 	k="123" />
+<hkern g1="T" 	g2="t" 	k="123" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="6" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="129" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
+<hkern g1="T" 	g2="X" 	k="55" />
+<hkern g1="T" 	g2="j" 	k="111" />
+<hkern g1="T" 	g2="s" 	k="164" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="129" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="123" />
+<hkern g1="T" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="139" />
+<hkern g1="T" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="190" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="119" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="162" />
+<hkern g1="T" 	g2="AE" 	k="190" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="88" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="18" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Y,Yacute,Ydieresis" 	k="18" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="49" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="S" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="31" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="31" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="156" />
+<hkern g1="V,W" 	g2="w" 	k="131" />
+<hkern g1="V,W" 	g2="x" 	k="156" />
+<hkern g1="V,W" 	g2="g" 	k="211" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="238" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-80" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="V,W" 	g2="z" 	k="170" />
+<hkern g1="V,W" 	g2="t" 	k="123" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="47" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="49" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="V,W" 	g2="X" 	k="25" />
+<hkern g1="V,W" 	g2="Z" 	k="41" />
+<hkern g1="V,W" 	g2="j" 	k="23" />
+<hkern g1="V,W" 	g2="s" 	k="147" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="139" />
+<hkern g1="V,W" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="121" />
+<hkern g1="V,W" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="160" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="V,W" 	g2="J" 	k="18" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V,W" 	g2="S" 	k="63" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="104" />
+<hkern g1="V,W" 	g2="AE" 	k="225" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="211" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="166" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-68" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="197" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="72" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="6" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="66" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="31" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="92" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="172" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="123" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="164" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="104" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="223" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="137" />
+<hkern g1="X" 	g2="w" 	k="129" />
+<hkern g1="X" 	g2="x" 	k="88" />
+<hkern g1="X" 	g2="g" 	k="84" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="39" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="X" 	g2="z" 	k="51" />
+<hkern g1="X" 	g2="t" 	k="88" />
+<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="102" />
+<hkern g1="X" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="X" 	g2="T" 	k="74" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="8" />
+<hkern g1="X" 	g2="V" 	k="27" />
+<hkern g1="X" 	g2="j" 	k="68" />
+<hkern g1="X" 	g2="s" 	k="88" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="109" />
+<hkern g1="X" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
+<hkern g1="X" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="102" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="106" />
+<hkern g1="X" 	g2="guillemotleft,guilsinglleft" 	k="180" />
+<hkern g1="X" 	g2="J" 	k="18" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="X" 	g2="S" 	k="111" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="47" />
+<hkern g1="Z" 	g2="w" 	k="76" />
+<hkern g1="Z" 	g2="g" 	k="8" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-133" />
+<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="94" />
+<hkern g1="Z" 	g2="t" 	k="82" />
+<hkern g1="Z" 	g2="guillemotright,guilsinglright" 	k="-43" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="Z" 	g2="T" 	k="12" />
+<hkern g1="Z" 	g2="V" 	k="35" />
+<hkern g1="Z" 	g2="X" 	k="41" />
+<hkern g1="Z" 	g2="s" 	k="61" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="45" />
+<hkern g1="Z" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="61" />
+<hkern g1="Z" 	g2="J" 	k="-6" />
+<hkern g1="Z" 	g2="S" 	k="35" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-2" />
+<hkern g1="Z" 	g2="AE" 	k="23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-45" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-119" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-76" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="252" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-25" />
+<hkern g1="guillemotright,guilsinglright" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="164" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-61" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-96" />
+<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-53" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-45" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-66" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-82" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="143" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="270" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="352" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="246" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="190" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="307" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-143" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="82" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-68" />
+<hkern g1="hyphen,endash,emdash" 	g2="t" 	k="-41" />
+<hkern g1="hyphen,endash,emdash" 	g2="s" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-12" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-66" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-25" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-125" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-225" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-162" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-4" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..6ae1de09588dd179c1ca7ebb9c7fb51a6151e42b
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.woff
new file mode 100755
index 0000000000000000000000000000000000000000..ff5bad29b575ffa3ced9322d7a0f461c46a8878a
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaMedIta.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.eot
new file mode 100755
index 0000000000000000000000000000000000000000..0e754bae32efa595ac8d558da9bffa1f791771ec
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.svg
new file mode 100755
index 0000000000000000000000000000000000000000..bbc1ed2f4986276d5c401ed7e573200a2847d0a8
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.svg
@@ -0,0 +1,2056 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-regularregular" horiz-adv-x="1124" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1290" d="M55 791v96q75 16 113 41q28 17 38 43.5t15 89.5q15 211 164 336q57 45 146.5 72.5t191.5 27.5q147 0 227 -31q64 -23 64 -98q0 -70 -13 -180h-116q-9 108 -58 143q-41 25 -129 25q-70 0 -133 -25t-100 -71q-74 -85 -74 -269v-71h445q84 38 141 38q46 0 70 -26.5 t24 -100.5q0 -85 -2 -286.5t-2 -292.5q0 -60 2 -80t12 -33q9 -12 38 -18t104 -12v-111q-176 4 -258 4q-130 0 -222 -4v111q74 7 102 12t36 16q18 25 18 113v391q0 65 -5.5 89.5t-23.5 39.5q-25 21 -133 21h-346v-517q0 -106 19 -133q10 -15 43 -21.5t139 -10.5v-111 q-188 4 -260 4q-78 0 -266 -4v111q73 4 103.5 11t41.5 21q14 21 14 103v547h-170z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1302" d="M55 791v96q75 16 113 41q28 17 38 43.5t15 89.5q9 123 46 201.5t108 138.5q55 45 139.5 70.5t177.5 25.5q111 0 195 -20q58 20 100 20q48 0 71 -26t23 -103q0 -31 -1 -208t-1 -257v-651q0 -94 17 -113q17 -20 139 -30v-111q-176 4 -256 4q-137 0 -229 -4v111 q126 10 143 30q18 21 18 111v631q0 193 -4 293q-3 107 -43 139q-53 43 -176 43q-166 0 -235 -94q-62 -81 -62 -248v-92q113 0 277 -7v-118q-135 -6 -277 -6v-517q0 -101 19 -133q11 -15 44.5 -21.5t139.5 -10.5v-111q-188 4 -262 4q-78 0 -266 -4v111q73 4 103.5 11t41.5 21 q14 21 14 103v547h-170z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1988" d="M55 791v96q75 16 113 41q28 17 38 43.5t15 89.5q15 190 121 297.5t291 107.5q104 0 158 -20q65 -24 65 -103q0 -39 -18 -167h-95q-6 70 -15.5 98.5t-29.5 40.5q-23 14 -88 14q-122 0 -168 -82q-51 -88 -51 -243v-89h371q98 0 131 33q3 3 6 7t5 9t3.5 9t3 11t2.5 12 t2 14.5t1.5 15t1.5 17t2 18.5q21 217 163 336q57 45 146.5 72.5t191.5 27.5q148 0 228 -31q63 -22 63 -98q0 -78 -12 -180h-117q-9 109 -57 143q-41 25 -129 25q-70 0 -133.5 -25t-100.5 -71q-73 -84 -73 -269v-71h444q84 38 141 38q46 0 70 -26.5t24 -100.5 q0 -85 -2 -286.5t-2 -292.5q0 -58 2.5 -79t12.5 -34q9 -12 38 -18t103 -12v-111q-176 4 -258 4q-129 0 -221 -4v111q74 7 101.5 12t35.5 16q18 25 18 113v391q0 66 -5.5 90t-22.5 39q-25 21 -133 21h-346v-517q0 -63 3.5 -91t14.5 -42q10 -14 45 -21t139 -11v-111 q-184 4 -262 4t-270 -4v111q75 4 105.5 11t41.5 21q15 23 15 103v547h-531v-517q0 -106 19 -133q10 -15 45.5 -21.5t146.5 -10.5v-111q-192 4 -270 4t-266 -4v111q73 4 103.5 11t41.5 21q14 21 14 103v547h-170z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="2000" d="M55 791v96q75 16 113 41q28 17 38 43.5t15 89.5q15 190 121 297.5t291 107.5q104 0 158 -20q65 -24 65 -103q0 -39 -18 -167h-95q-6 70 -15.5 98.5t-29.5 40.5q-23 14 -88 14q-122 0 -168 -82q-51 -88 -51 -243v-89h371q98 0 131 33q14 14 19 38t8 75q10 124 46.5 202.5 t106.5 137.5q55 45 140 70.5t178 25.5q110 0 194 -20q58 20 101 20q48 0 71 -26t23 -103q0 -31 -1 -211t-1 -258v-647q0 -95 16 -113q10 -12 38.5 -18t100.5 -12v-111q-184 4 -258 4q-135 0 -225 -4v111q72 6 100.5 12t38.5 18q19 22 19 111v631q0 193 -2 293 q-3 101 -45 137q-52 45 -179 45q-155 0 -231 -96q-61 -79 -61 -248v-90q112 0 276 -7v-118q-135 -6 -276 -6v-517q0 -63 3.5 -91t14.5 -42q10 -15 44.5 -21.5t143.5 -10.5v-111q-184 4 -266 4q-78 0 -270 -4v111q75 4 105.5 11t41.5 21q15 23 15 103v547h-531v-517 q0 -106 19 -133q10 -15 45.5 -21.5t146.5 -10.5v-111q-192 4 -270 4t-266 -4v111q73 4 103.5 11t41.5 21q14 21 14 103v547h-170z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="591" d="M203 115q0 58 37.5 96.5t93.5 38.5q59 0 96 -36t37 -93q0 -65 -36 -102t-95 -37q-57 0 -95 37.5t-38 95.5zM229 1309q0 56 28 91.5t87 35.5q57 0 84 -35t27 -90q0 -87 -72 -869h-88q-66 799 -66 867z" />
+<glyph unicode="&#x22;" horiz-adv-x="638" d="M74 1356q0 51 21.5 75.5t70.5 24.5q52 0 72 -25.5t20 -74.5q0 -52 -53 -479h-82q-49 412 -49 479zM383 1356q0 51 21.5 75.5t70.5 24.5q94 0 94 -100q0 -18 -1.5 -38.5t-6.5 -63t-9.5 -80.5t-16 -128.5t-21.5 -168.5h-82q-49 434 -49 479z" />
+<glyph unicode="#" horiz-adv-x="1144" d="M90 426v156h240l47 231h-201v156h230l79 403h97l-84 -403h256l84 403h90l-80 -403h205v-156h-234l-47 -231h191v-156h-222l-88 -453h-96l90 453h-256l-92 -453h-90l88 453h-207zM420 582h260l43 231h-256z" />
+<glyph unicode="$" horiz-adv-x="1130" d="M137 250q0 70 6 147h105q7 -57 21 -98.5t26.5 -58.5t32.5 -37q61 -61 202 -70v467l-108 45q-258 107 -258 336q0 143 93 243t273 124v217h101v-211h6q160 0 268 -47q72 -34 72 -123q0 -45 -19 -195h-100q-9 83 -24 122.5t-41 59.5q-52 40 -162 46v-453l131 -53 q258 -105 258 -334q0 -164 -105 -261.5t-284 -115.5v-236h-101v232q-175 3 -278 55q-66 32 -90.5 78t-24.5 121zM346 1014q0 -69 38.5 -116.5t145.5 -92.5v407q-94 -14 -139 -69t-45 -129zM631 137q100 13 152.5 68.5t52.5 130.5t-39 123t-133 86l-33 12v-420z" />
+<glyph unicode="%" horiz-adv-x="1726" d="M63 930q0 211 88.5 324.5t247.5 113.5q170 0 243 -107t73 -313q0 -230 -90 -339t-238 -109q-167 0 -245.5 107.5t-78.5 322.5zM211 946q0 -177 45 -254.5t133 -77.5q178 0 178 326q0 169 -42.5 242t-133.5 73q-180 0 -180 -309zM526 18l594 1366l92 -38l-591 -1369z M1010 414q0 211 88.5 324.5t247.5 113.5q171 0 244 -107.5t73 -314.5q0 -229 -89.5 -337.5t-236.5 -108.5q-168 0 -247.5 107t-79.5 323zM1159 428q0 -177 45 -254.5t135 -77.5q87 0 132 83.5t45 242.5q0 170 -42.5 243.5t-132.5 73.5q-182 0 -182 -311z" />
+<glyph unicode="&#x26;" horiz-adv-x="1560" d="M98 371q0 145 80 241t244 168q-96 157 -96 299q0 43 9.5 83.5t28.5 78.5t50.5 69t73.5 55t100 37t127 13q155 0 240 -76t85 -202q0 -68 -24.5 -123t-77 -101.5t-118.5 -84t-163 -80.5q59 -92 160 -203t207 -207q61 66 109 184q18 45 18 86q0 13 -5 22.5t-16 15.5t-21 9.5 t-28 5.5t-29 3t-32 1.5t-29 0.5v112q118 -4 240 -4q112 0 252 4v-112q-57 -2 -85.5 -8t-45.5 -23q-21 -18 -72 -127q-77 -161 -158 -254q59 -52 144.5 -89.5t165.5 -37.5q31 0 47 2v-141q-43 -6 -93 -6q-226 0 -387 131q-184 -140 -419 -140q-218 0 -350 113.5t-132 284.5z M295 401q0 -44 12.5 -85.5t39 -77t63.5 -61.5t89 -41t113 -15q156 0 269 86q-107 101 -215.5 228t-173.5 224q-73 -32 -117.5 -73t-62 -85t-17.5 -100zM506 1090q0 -101 90 -232q287 109 287 264q0 72 -45 114t-127 42q-54 0 -95 -15.5t-64 -42t-34.5 -59.5t-11.5 -71z" />
+<glyph unicode="'" horiz-adv-x="331" d="M74 1356q0 51 21.5 75.5t70.5 24.5q52 0 72 -25.5t20 -74.5q0 -52 -53 -479h-82q-49 412 -49 479z" />
+<glyph unicode="(" horiz-adv-x="638" d="M82 594q0 332 121 575t362 420l58 -65q-93 -91 -157.5 -178t-116.5 -197.5t-77.5 -248t-25.5 -306.5q0 -153 28.5 -289t82 -248.5t118.5 -203.5t150 -179l-58 -65q-231 160 -358 409.5t-127 575.5z" />
+<glyph unicode=")" horiz-adv-x="638" d="M14 1526l58 63q229 -160 356 -409t127 -574q0 -333 -120 -576.5t-359 -420.5l-60 67q92 91 156 176.5t116 196.5t77.5 249t25.5 308q0 294 -99 514.5t-278 405.5z" />
+<glyph unicode="*" horiz-adv-x="829" d="M78 1149q0 34 21.5 61t56.5 27q26 0 68.5 -23t164.5 -102q-53 170 -53 242q0 78 78 78t78 -78q0 -59 -41 -244q111 75 154.5 99t74.5 24q32 0 52 -22.5t20 -57.5t-15.5 -54t-58.5 -28q-53 -10 -215 -29q121 -98 157.5 -139.5t36.5 -81.5q0 -30 -26 -50.5t-53 -20.5 q-48 0 -74.5 43t-91.5 211q-42 -113 -70 -167.5t-48.5 -70.5t-51.5 -16q-24 0 -49 21.5t-25 51.5q0 35 40 83.5t159 140.5q-115 12 -211 28q-40 6 -59 22.5t-19 51.5z" />
+<glyph unicode="+" horiz-adv-x="1210" d="M147 565v140h392v432h133v-432h391v-140h-391v-430h-133v430h-392z" />
+<glyph unicode="," horiz-adv-x="450" d="M27 -301q194 127 194 248q0 52 -45 65q-43 14 -65.5 39.5t-22.5 77.5t37.5 86.5t95.5 34.5q76 0 119 -49.5t43 -134.5q0 -258 -309 -445z" />
+<glyph unicode="-" horiz-adv-x="546" d="M57 430v148h428v-148h-428z" />
+<glyph unicode="." horiz-adv-x="440" d="M88 115q0 58 36.5 96.5t92.5 38.5q59 0 98 -36t39 -93q0 -65 -37.5 -102t-97.5 -37q-57 0 -94 37.5t-37 95.5z" />
+<glyph unicode="/" horiz-adv-x="690" d="M41 -133l485 1630l113 -31l-485 -1632z" />
+<glyph unicode="0" d="M80 666q0 345 129 525.5t366 180.5q129 0 220 -44.5t145.5 -134t79 -211.5t24.5 -288q0 -195 -37 -338t-104 -225.5t-151.5 -121t-188.5 -38.5q-251 0 -367 171t-116 524zM266 694q0 -159 20 -271.5t59.5 -178.5t93 -95.5t126.5 -29.5q141 0 217 145t76 416 q0 200 -33.5 322t-95.5 173.5t-160 51.5q-150 0 -226.5 -137.5t-76.5 -395.5z" />
+<glyph unicode="1" d="M236 1221q107 68 270 133q58 20 96 20q72 0 72 -100q0 -35 -1 -187.5t-1 -263.5v-573q0 -83 18 -107q17 -26 203 -34v-111q-172 4 -320 4q-129 0 -305 -4v111q179 8 203 32q21 21 21 109v573q0 205 -9 285q-5 51 -51 51q-33 0 -168 -37z" />
+<glyph unicode="2" d="M68 0v115q353 284 518.5 482t165.5 370q0 260 -250 260q-141 0 -201 -64q-32 -41 -43 -157h-100q-19 140 -19 168q0 53 23 85.5t78 59.5q104 53 290 53q204 0 310 -97t106 -280q0 -384 -620 -833q46 0 170 1t155 1q100 0 148 8.5t69 32.5q33 36 58 129h96 q-7 -157 -23 -256q-13 -78 -131 -78h-800z" />
+<glyph unicode="3" d="M123 154q0 84 14 184h107q8 -105 47 -150q69 -69 217 -69q152 0 227.5 67.5t75.5 184.5q0 107 -76 172.5t-235 77.5q-47 4 -146 4v131q94 4 144 12q126 21 192 90t66 162q0 42 -10.5 77.5t-34.5 66t-68.5 48t-105.5 17.5q-150 0 -205 -55q-35 -30 -47 -156h-105 q-12 98 -12 156q0 52 19.5 83.5t68.5 55.5q46 24 124.5 41.5t168.5 17.5q202 0 297.5 -88.5t95.5 -236.5q0 -121 -73.5 -210.5t-229.5 -127.5q178 -17 268 -102.5t90 -233.5q0 -192 -131.5 -297t-367.5 -105q-170 0 -275 43q-53 20 -76.5 53t-23.5 87z" />
+<glyph unicode="4" d="M78 362v103l559 823q32 48 61.5 67t77.5 19q88 0 88 -117q0 -46 -1 -150.5t-1 -139.5v-453h205v-149h-205v-107q0 -90 17 -117q24 -31 180 -41v-102q-168 4 -307 4q-93 0 -265 -4v102q163 14 181 41q18 26 18 121v100h-608zM256 508h430q5 534 8 649z" />
+<glyph unicode="5" d="M121 152q0 96 12 182h107q8 -112 45 -154q58 -65 209 -65q159 0 239 83.5t80 215.5q0 131 -77 208.5t-238 77.5q-62 0 -123 -18q-58 -16 -90 -16q-76 0 -76 82q0 25 4 83l47 508h684v-165h-561l-33 -349q113 33 221 33q125 0 219.5 -43t151.5 -138.5t57 -234.5 q0 -222 -138.5 -346.5t-371.5 -124.5q-167 0 -270 43q-54 23 -76 54.5t-22 83.5z" />
+<glyph unicode="6" d="M113 590q0 204 41 355.5t118 244t180.5 137.5t233.5 45q134 0 213 -31q49 -18 71.5 -46t22.5 -78q0 -93 -14 -179h-107q-9 115 -45 148q-47 41 -151 41q-56 0 -104.5 -13.5t-96.5 -50t-83.5 -93t-60 -149t-30.5 -212.5q43 65 137.5 108t192.5 43q186 0 292.5 -116 t106.5 -295q0 -223 -128 -350.5t-327 -127.5q-214 0 -338 155.5t-124 463.5zM301 555q0 -86 6 -139q18 -141 86 -220t187 -79q122 0 195 79t73 226q0 143 -70 214t-194 71q-82 0 -158.5 -39t-124.5 -113z" />
+<glyph unicode="7" d="M92 1231q0 50 27 79t96 29h807v-106l-524 -1233q-23 -55 -74 -55q-39 0 -64.5 16.5t-25.5 46.5q0 23 12 51l494 1115h-318q-212 0 -248 -11q-34 -8 -48.5 -46.5t-24.5 -125.5h-92q-17 147 -17 240z" />
+<glyph unicode="8" d="M102 328q0 236 283 358q-229 133 -229 336q0 152 111.5 251t312.5 99q191 0 293 -88t102 -235q0 -105 -60.5 -185t-191.5 -149q89 -40 147.5 -81.5t89.5 -88.5t42.5 -93t11.5 -106q0 -162 -126 -269.5t-339 -107.5q-205 0 -326 98t-121 261zM281 340q0 -103 76.5 -165 t195.5 -62q125 0 196.5 59t71.5 158q0 95 -72.5 155.5t-254.5 135.5q-119 -69 -166 -131t-47 -150zM340 1047q0 -81 61 -143t207 -126q87 54 138 120t51 138q0 89 -58 143t-161 54q-109 0 -173.5 -50.5t-64.5 -135.5z" />
+<glyph unicode="9" d="M96 899q0 221 129.5 347t329.5 126q216 0 335.5 -154t119.5 -462q0 -207 -39.5 -359t-114 -244.5t-176.5 -137t-234 -44.5q-112 0 -217 33q-100 35 -100 135q0 91 10 176h107q8 -102 49 -147q49 -49 164 -49q335 0 364 522q-45 -62 -138.5 -104.5t-192.5 -42.5 q-186 0 -291 112t-105 293zM279 924q0 -277 262 -277q82 0 157 37t123 109q0 106 -4 141q-38 293 -276 293q-120 0 -191 -78t-71 -225z" />
+<glyph unicode=":" horiz-adv-x="483" d="M131 115q0 58 37.5 96.5t91.5 38.5q59 0 98 -36t39 -93q0 -65 -37.5 -102t-97.5 -37q-56 0 -93.5 37.5t-37.5 95.5zM131 774q0 59 37 98t92 39q59 0 98 -36.5t39 -94.5q0 -65 -37.5 -103t-97.5 -38q-56 0 -93.5 38.5t-37.5 96.5z" />
+<glyph unicode=";" horiz-adv-x="487" d="M70 -301q194 129 194 248q0 52 -45 65q-43 14 -65.5 39.5t-22.5 77.5q0 51 38 86t95 35q76 0 119 -49.5t43 -134.5q0 -257 -309 -445zM131 774q0 59 37 98t92 39q59 0 98 -36.5t39 -94.5q0 -65 -37.5 -103t-97.5 -38q-56 0 -93.5 38.5t-37.5 96.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1210" d="M190 563v152l781 420v-160l-639 -336l639 -330v-168z" />
+<glyph unicode="=" horiz-adv-x="1210" d="M139 395v142h930v-142h-930zM139 760v141h930v-141h-930z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1210" d="M240 141v166l639 332l-639 328v168l778 -418v-148z" />
+<glyph unicode="?" horiz-adv-x="872" d="M123 1268q0 157 338 157q191 -1 285 -88t94 -245q0 -129 -72.5 -225t-253.5 -185q-59 -31 -70 -113q-6 -45 -12 -133h-92q-16 128 -16 213q0 51 31.5 85.5t90.5 64.5q201 106 201 276q0 29 -4 55.5t-16.5 56.5t-33 51.5t-56.5 36t-84 15.5q-124 0 -164 -33 q-35 -28 -41 -145h-107q-18 97 -18 156zM262 115q0 58 38.5 96.5t94.5 38.5q57 0 95 -36t38 -93q0 -65 -36.5 -102t-94.5 -37t-96.5 37.5t-38.5 95.5z" />
+<glyph unicode="@" horiz-adv-x="1626" d="M78 420q0 174 61 332.5t169.5 277.5t268 189.5t345.5 70.5q134 0 242.5 -33.5t179 -88.5t118 -128t68 -147.5t20.5 -151.5q0 -179 -59.5 -308t-179.5 -234q-50 -43 -118.5 -73t-119.5 -30q-73 0 -100 36t-27 114q-140 -150 -299 -150q-121 0 -182.5 72.5t-61.5 208.5 q0 110 58 239t151 215q72 65 138.5 92t160.5 27q104 0 185 -47l32 64h111l-111 -420q-45 -163 -45 -266q0 -52 47 -52q25 0 61.5 20t70.5 52q75 70 119 181.5t44 248.5q0 212 -140 334.5t-365 122.5q-153 0 -285 -58.5t-225 -161t-146 -246t-53 -308.5q0 -174 82 -307.5 t224.5 -205t320.5 -71.5q346 0 608 209l59 -86q-140 -118 -315 -180t-363 -62q-219 0 -388.5 87t-265 248.5t-95.5 373.5zM549 385q0 -166 143 -166q57 0 128.5 36.5t127.5 86.5q12 81 35 168l76 283q-71 41 -170 41q-106 0 -182 -76q-66 -66 -112 -172.5t-46 -200.5z" />
+<glyph unicode="A" horiz-adv-x="1460" d="M12 -2v113q111 6 144 32q19 14 33 43.5t49 122.5l383 1016q19 48 47 71t71 23q40 0 65 -20.5t44 -69.5l393 -1053q23 -63 39.5 -92t38.5 -47q26 -23 129 -26v-113q-152 4 -268 4q-148 0 -308 -4v113q104 5 140 14q47 11 47 49q0 40 -29 123l-72 190h-501l-68 -180 q-31 -91 -31 -131q0 -34 27 -45q30 -11 162 -20v-113q-144 4 -291 4q-108 0 -244 -4zM498 625h413q-180 486 -206 571q-60 -169 -207 -571z" />
+<glyph unicode="B" horiz-adv-x="1280" d="M70 -2v113q127 5 153 20q21 9 27 30t6 95v870q0 100 -14 117q-13 17 -45 22.5t-127 10.5v110h387q212 0 344 -16q153 -23 228 -102.5t75 -204.5q0 -122 -70 -206.5t-205 -117.5q172 -20 260.5 -108.5t88.5 -229.5q0 -230 -195 -335q-122 -68 -330 -68q-39 0 -155 2 t-170 2q-110 0 -258 -4zM442 205q0 -36 11.5 -50t42.5 -20q33 -6 135 -6q167 0 253.5 67.5t86.5 200.5q0 71 -34.5 128.5t-88.5 84.5q-48 26 -118 35.5t-193 9.5h-95v-450zM442 793h93q147 0 198 14q172 53 172 223q0 75 -41 125.5t-112 71.5q-70 18 -215 18h-95v-452z" />
+<glyph unicode="C" horiz-adv-x="1376" d="M98 668q0 348 197.5 548.5t531.5 200.5q204 0 328 -47q52 -20 75 -49.5t23 -75.5q0 -104 -18 -223h-109q-11 144 -47 180q-60 66 -266 66q-108 0 -201 -37t-164 -107.5t-112 -182.5t-41 -253q0 -148 42 -260t115 -177.5t164 -97.5t197 -32q94 0 163 20t103 49 q40 37 82 168h109q-3 -145 -27 -227q-24 -78 -127 -113q-148 -47 -332 -47q-152 0 -277.5 45.5t-216.5 132.5t-141.5 219.5t-50.5 299.5z" />
+<glyph unicode="D" horiz-adv-x="1474" d="M70 0v111q90 5 125 11t47 19q9 12 11.5 34.5t2.5 86.5v858q0 94 -8 115q-10 22 -43 29t-135 12v108h348q309 0 458 -24t248 -86q129 -82 189.5 -219t60.5 -336q0 -421 -266 -598q-93 -63 -222 -92t-331 -29h-485zM442 223q0 -33 11 -46t41 -21q56 -15 168 -15 q255 0 385.5 142t130.5 424q0 179 -61.5 298t-174.5 173q-129 63 -375 63h-125v-1018z" />
+<glyph unicode="E" horiz-adv-x="1228" d="M70 0v111q81 5 118 11t50 19q12 12 15 38t3 95v846q0 104 -12 121q-10 15 -45.5 22t-128.5 13v108h880q72 0 100.5 -26t28.5 -74q0 -80 -16 -237h-109q-15 142 -51 167q-23 17 -70 23t-165 6h-226v-461h144q83 0 117 7t51 28q31 40 37 123h102q-4 -53 -4 -219 q0 -143 4 -227h-96q-11 87 -39 127q-16 21 -51.5 25.5t-124.5 4.5h-140v-418q0 -44 12.5 -62.5t43.5 -23.5q71 -8 188 -8q138 0 201 13.5t92 42.5q37 39 76 172h102q-4 -220 -37 -308q-9 -27 -53 -43t-109 -16h-888z" />
+<glyph unicode="F" horiz-adv-x="1185" d="M70 -2v113q91 6 125 12.5t47 19.5q9 10 11.5 35t2.5 96v846q0 104 -12 121q-10 15 -45.5 22t-128.5 13v108h895q74 0 104.5 -25t30.5 -73q0 -78 -17 -239h-108q-12 83 -24 119t-31 48q-22 17 -67 23t-161 6h-250v-487h170q80 0 114.5 7.5t53.5 29.5q31 45 37 127h101 q-3 -76 -3 -222q0 -105 3 -231h-95q-12 90 -39 129q-16 21 -52 26t-122 5h-168v-346q0 -102 21 -131q13 -16 60.5 -24t146.5 -15v-113q-176 4 -320 4q-104 0 -280 -4z" />
+<glyph unicode="G" horiz-adv-x="1458" d="M98 668q0 171 53.5 312t150 236.5t232 148t297.5 52.5q225 0 357 -53q94 -35 94 -121q0 -107 -22 -223h-109q-10 134 -47 180q-59 68 -277 68q-108 0 -202 -35t-169 -103.5t-118 -182t-43 -259.5q0 -120 28.5 -217t76.5 -161t115.5 -107.5t142 -62.5t157.5 -19 q115 0 182 18q41 9 68 31q18 18 18 88v152q0 48 -4 69t-16 31q-26 18 -168 25v112q171 -6 272 -6q24 0 234 6v-112q-86 -5 -105 -14q-25 -13 -29 -61q-1 -18 -1 -52v-258q0 -87 -72 -113q-187 -68 -414 -68q-149 0 -274 46t-216 133t-141.5 220t-50.5 300z" />
+<glyph unicode="H" horiz-adv-x="1544" d="M70 -2v113q89 6 124.5 12.5t47.5 19.5q9 12 11.5 36t2.5 95v846q0 101 -14 121q-19 25 -172 35v110q258 -6 268 -6q27 0 291 6v-110q-153 -9 -174 -37q-13 -18 -13 -119v-325h662v323q0 103 -17 123q-22 25 -172 35v110q258 -6 273 -6q19 0 289 6v-110q-153 -9 -177 -37 q-12 -17 -12 -119v-844q0 -115 12 -129q13 -15 48 -22.5t129 -13.5v-113q-180 4 -281 4q-109 0 -281 -4v113q89 6 124.5 12.5t47.5 19.5q11 12 14 36.5t3 94.5v379h-662v-377q0 -113 13 -129q11 -14 46.5 -22t127.5 -14v-113q-176 4 -285 4q-98 0 -274 -4z" />
+<glyph unicode="I" horiz-adv-x="698" d="M70 -2v113q150 10 172 32q9 10 11.5 35t2.5 96v846q0 101 -14 121q-19 25 -172 35v110q216 -6 270 -6q31 0 289 6v-110q-153 -9 -174 -37q-13 -18 -13 -119v-844q0 -110 13 -126t49.5 -24.5t124.5 -14.5v-113q-176 4 -283 4q-100 0 -276 -4z" />
+<glyph unicode="J" horiz-adv-x="663" d="M-12 -215q187 101 225 233q35 126 35 322v780q0 103 -15 121q-18 24 -178 35v110q228 -6 277 -6q24 0 282 6v-110q-90 -5 -123.5 -14t-44.5 -23q-14 -20 -14 -119v-776q0 -269 -59 -395q-37 -80 -127.5 -153t-202.5 -120z" />
+<glyph unicode="K" horiz-adv-x="1380" d="M70 -2v113q17 1 36.5 2t31 2t25.5 2t22 1.5t17 2t14 3.5t10.5 4.5t9 5.5t6.5 7q9 12 11.5 36t2.5 95v848q0 104 -14 123q-16 23 -172 33v110q258 -6 268 -6q33 0 297 6v-110q-161 -10 -180 -35q-13 -18 -13 -121v-848q0 -73 2 -96t11 -33q19 -24 180 -32v-113 q-176 4 -291 4q-98 0 -274 -4zM473 705q153 142 408 417q65 74 65 111q0 21 -28.5 30t-110.5 13v110q92 -4 278 -4q156 0 246 4v-110q-68 -5 -102 -21q-66 -32 -154 -125q-14 -14 -186.5 -189t-212.5 -214q108 -144 245 -304t209 -222q41 -33 64 -47.5t53 -24.5 q52 -20 113 -20v-109q-44 -8 -119 -8q-69 0 -137.5 21.5t-116.5 62.5q-86 74 -245.5 270.5t-268.5 358.5z" />
+<glyph unicode="L" horiz-adv-x="1224" d="M70 0v111q144 9 168 32q12 12 15 37.5t3 93.5v848q0 102 -14 121q-22 26 -172 33v110q216 -6 270 -6q39 0 297 6v-110q-162 -10 -182 -37q-13 -18 -13 -119v-887q0 -44 12.5 -62.5t43.5 -23.5q71 -8 188 -8q138 0 200 13.5t89 42.5q42 45 76 178h98q-2 -86 -13 -177 t-26 -137q-22 -59 -156 -59h-884z" />
+<glyph unicode="M" horiz-adv-x="1806" d="M66 -2v111q135 6 159 30q26 26 29 170q5 309 9 520.5t5.5 269t1.5 72.5q0 62 -14 76q-14 12 -47 18.5t-129 10.5v110q92 -4 248 -4q139 0 182 4q297 -682 387 -921q96 243 403 921q122 -4 205 -4q153 0 219 4v-110q-96 -4 -130.5 -11.5t-45.5 -23.5q-16 -18 -16 -113 q0 -100 4 -829q0 -124 16 -152q13 -16 46 -23.5t137 -14.5v-111q-192 4 -281 4q-55 0 -293 -4v111q154 7 174 38q15 18 15 103q0 751 2 917q-70 -187 -402 -909q-12 -30 -30.5 -42.5t-51.5 -12.5q-58 0 -80 57q-315 738 -385 911q-4 -540 -4 -940q0 -74 23 -94 q12 -12 41 -17t127 -11v-111q-172 4 -238 4q-82 0 -286 -4z" />
+<glyph unicode="N" horiz-adv-x="1517" d="M59 1276v110q90 -4 240 -4q92 0 164 4q593 -877 717 -1083q-5 149 -9 454t-4 306q-5 150 -18 174q-21 32 -174 39v110q218 -4 268 -4q36 0 254 4v-110q-84 -6 -115.5 -13t-50.5 -22q-12 -14 -16 -48t-4 -130q-2 -176 -2 -651q0 -46 1 -172.5t1 -165.5q0 -92 -90 -92 q-31 0 -51 14.5t-40 44.5q-717 1091 -735 1120q1 -121 3.5 -319.5t5 -348.5t2.5 -174q0 -90 4.5 -125t15.5 -49q14 -15 48.5 -22.5t125.5 -13.5v-111q-222 4 -270 4q-61 0 -269 -4v111q163 8 183 41q4 6 6 14.5t3 25.5t1.5 30.5t1.5 46t2 55.5q6 204 6 741q0 132 -16 160 q-10 17 -23.5 27t-38.5 14q-62 12 -127 12z" />
+<glyph unicode="O" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q166 0 288.5 -48.5t198.5 -141.5t113 -220t37 -290q0 -185 -50 -329t-139 -233.5t-206 -135.5t-256 -46q-162 0 -287 52t-204.5 147.5t-120 225.5t-40.5 290zM295 715q0 -594 459 -594q216 0 333 149.5t117 429.5q0 294 -112 431 t-336 137q-222 0 -341.5 -148t-119.5 -405z" />
+<glyph unicode="P" horiz-adv-x="1200" d="M70 -2v113q142 8 166 26q12 11 16 34.5t4 94.5v856q0 64 -3 87.5t-13 33.5q-27 24 -170 33v108h389q252 0 356 -16q163 -28 241.5 -125.5t78.5 -243.5q0 -98 -28 -175t-76.5 -128t-119.5 -84.5t-153 -48t-180 -14.5q-91 0 -136 4v-281q0 -67 3 -92t12 -37q21 -24 180 -32 v-113q-180 4 -303 4q-76 0 -264 -4zM442 688q16 0 50 -1t49 -1q67 0 117.5 5t106.5 23.5t92 50t59.5 88t23.5 134.5q0 99 -49.5 160t-134.5 82q-78 16 -213 16h-101v-557z" />
+<glyph unicode="Q" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q166 0 288.5 -48.5t198.5 -141.5t113 -220t37 -290q0 -299 -126 -481.5t-337 -237.5q110 -96 252 -162q67 -31 154 -47t163 -16q26 0 58 4v-113q-71 -12 -152 -12q-210 0 -332 53q-102 44 -189 103t-216 169q-191 14 -322.5 108.5 t-193.5 247t-62 355.5zM295 715q0 -594 459 -594q216 0 333 149.5t117 429.5q0 294 -112 431t-336 137q-222 0 -341.5 -148t-119.5 -405z" />
+<glyph unicode="R" horiz-adv-x="1341" d="M70 -2v113q141 8 166 28q12 11 16 33.5t4 93.5v862q0 59 -3 82t-13 33q-23 23 -170 33v108h389q235 0 352 -20q151 -24 227 -116t76 -234q0 -158 -81.5 -257t-227.5 -141q121 -188 181 -270.5t124 -136.5q69 -58 94 -71q43 -23 115 -27v-111q-24 -4 -80 -4 q-150 0 -262 90q-78 64 -156 175t-205 327h-49q-51 0 -125 4v-320q0 -68 3 -91t12 -34q22 -28 172 -36v-113q-184 4 -295 4q-76 0 -264 -4zM442 727q16 0 56 -2t53 -2q77 0 137.5 12t115 41.5t84.5 87t30 140.5q0 59 -20 102.5t-52.5 69.5t-83 42t-103 21.5t-120.5 5.5h-97 v-518z" />
+<glyph unicode="S" horiz-adv-x="1153" d="M121 244q0 72 6 151h102q14 -90 34.5 -133t51.5 -72q80 -73 267 -73q140 0 213 62t73 153q0 79 -43 129.5t-145 93.5l-256 109q-148 63 -208 152t-60 204q0 84 29.5 154.5t88.5 125t156 85t225 30.5q175 0 285 -51q38 -19 55 -49.5t17 -81.5q0 -68 -15 -207h-100 q-14 96 -30 138.5t-40 62.5q-51 43 -213 43q-140 0 -207 -61.5t-67 -153.5q0 -76 45 -129t168 -103l235 -94q145 -58 209 -145.5t64 -206.5q0 -193 -135.5 -299.5t-362.5 -106.5q-90 0 -177 16.5t-142 43.5q-74 36 -98.5 83.5t-24.5 129.5z" />
+<glyph unicode="T" horiz-adv-x="1335" d="M76 1274q0 54 25.5 82t97.5 28h936q73 0 100 -26.5t27 -77.5q0 -102 -11 -260h-98q-15 166 -57 197q-25 19 -81.5 24.5t-252.5 5.5v-964q0 -106 14 -131q10 -16 46 -25t136 -16v-113q-164 4 -276 4q-129 0 -297 -4v113q98 6 132.5 14t47.5 25q13 15 13 129v968 q-197 0 -252 -5.5t-82 -24.5q-44 -26 -62 -197h-96q-10 143 -10 254z" />
+<glyph unicode="U" horiz-adv-x="1556" d="M51 1276v110q164 -4 279 -4q133 0 293 4v-110q-94 -4 -130.5 -13t-48.5 -24q-15 -17 -18 -109q-2 -133 -2 -495q0 -252 35 -344q65 -170 342 -170q108 0 195 34t122 93q39 64 53.5 160.5t14.5 244.5q0 244 -8 463q-3 71 -7.5 95.5t-17.5 33.5q-28 20 -166 31v110 q76 -2 264 -2q21 0 118.5 1t135.5 1v-110q-158 -10 -176 -45q-10 -25 -10 -131v-486q0 -192 -25.5 -302.5t-85.5 -182.5q-130 -160 -444 -160q-161 0 -279 51.5t-172 139.5q-42 69 -58.5 166t-16.5 301q0 99 2 272.5t2 220.5q0 87 -13 113q-11 19 -50 29t-128 14z" />
+<glyph unicode="V" horiz-adv-x="1456" d="M12 1276v110q148 -4 293 -4q125 0 281 4v-110q-13 -1 -36 -1t-37.5 -0.5t-34 -2t-31.5 -5.5t-23.5 -10.5t-17 -17t-5.5 -25.5q0 -33 31 -124q110 -310 201.5 -563t118.5 -330q139 400 311 884q29 85 29 131q0 36 -25 45q-8 3 -21.5 6t-33.5 5t-35.5 3t-39.5 2.5t-34 2.5 v110q148 -4 262 -4q139 0 279 4v-110q-114 -3 -146 -31q-17 -13 -31 -43t-42 -106l-387 -1045q-32 -84 -113 -84q-44 0 -71 18.5t-44 63.5l-393 1065q-23 63 -39.5 92t-38.5 47q-24 19 -127 23z" />
+<glyph unicode="W" horiz-adv-x="2029" d="M39 1276v110q258 -4 278 -4q195 0 277 4v-110q-83 -1 -125 -11.5t-52.5 -25.5t-10.5 -43t14 -96q157 -657 201 -869q95 347 317 1067q28 93 106 93q46 0 68 -18.5t37 -69.5q261 -889 307 -1074q48 235 197 854q16 72 16 111q0 30 -9 44t-52 24.5t-133 13.5v110 q200 -4 280 -4q90 0 242 4v-110q-98 -6 -129 -35q-30 -25 -56 -137l-268 -1045q-23 -92 -110 -92q-45 0 -71.5 19t-39.5 67q-218 745 -303 1073q-84 -329 -315 -1067q-26 -92 -113 -92q-44 0 -71 19.5t-38 66.5l-262 1065q-12 53 -21.5 78t-29 45.5t-49 26.5t-82.5 8z" />
+<glyph unicode="X" horiz-adv-x="1454" d="M29 -2v113q121 0 151 26q38 30 84 96l352 486l-319 444q-22 29 -32 42t-24.5 27t-29.5 23q-31 17 -127 21v110q127 -4 295 -4q231 0 297 4v-110q-101 -3 -132.5 -15.5t-31.5 -41.5q0 -32 37 -82l219 -310l203 287q47 70 47 107q0 18 -11 28t-46 17t-101 10v110 q68 -4 275 -4q159 0 241 4v-110q-58 -2 -84.5 -7t-46.5 -20q-27 -18 -90 -104l-311 -424l354 -498q38 -54 78 -86q36 -26 147 -26v-113q-270 4 -293 4q-49 0 -299 -4v113q98 4 130 15.5t32 39.5q0 7 -1.5 13t-6 14t-7 12.5t-10 15.5t-10.5 15l-262 374l-237 -350 q-45 -65 -45 -94q0 -31 36 -42.5t140 -12.5v-113q-234 4 -299 4q-137 0 -262 -4z" />
+<glyph unicode="Y" horiz-adv-x="1280" d="M10 1276v110q234 -4 256 -4q67 0 275 4v-110q-72 -2 -108.5 -10t-45 -17.5t-8.5 -27.5q0 -26 43 -103q34 -57 246 -426q159 278 254 436q41 67 41 101q0 25 -32 35.5t-128 11.5v110q98 -4 272 -4q109 0 195 4v-110q-58 -3 -99 -31q-30 -23 -96 -131l-346 -549v-317 q0 -82 8 -98q9 -19 44.5 -27t140.5 -12v-113q-218 4 -275 4q-89 0 -289 -4v113q102 4 131.5 10t40.5 22q13 21 13 105v315l-330 549q-8 12 -20 32.5t-17 29t-13.5 21.5t-13 19t-10.5 13.5t-11 12t-11 7.5q-38 24 -107 29z" />
+<glyph unicode="Z" horiz-adv-x="1269" d="M66 0v66l815 1177q-353 0 -440 -3t-115 -15q-33 -14 -49.5 -52t-26.5 -133h-113q-14 164 -14 244q0 100 135 100h899v-63l-823 -1178q74 -4 295 -4q194 0 260 9.5t98 35.5q52 44 92 191h113q-6 -172 -27 -293q-6 -38 -40.5 -60t-92.5 -22h-966z" />
+<glyph unicode="[" horiz-adv-x="618" d="M193 -348v1894h391v-98h-242v-1698h242v-98h-391z" />
+<glyph unicode="\" horiz-adv-x="690" d="M59 1466l113 33l487 -1632l-112 -33z" />
+<glyph unicode="]" horiz-adv-x="618" d="M35 -250h241v1698h-241v98h389v-1894h-389v98z" />
+<glyph unicode="^" horiz-adv-x="1210" d="M213 748l326 698h141l315 -696h-143l-248 534l-244 -536h-147z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-4 -164h1014v-117h-1014v117z" />
+<glyph unicode="`" horiz-adv-x="604" d="M119 1423q0 31 25.5 53.5t56.5 22.5q28 0 48.5 -17.5t55.5 -72.5l180 -287l-63 -51l-240 240q-35 36 -49 60.5t-14 51.5z" />
+<glyph unicode="a" horiz-adv-x="1054" d="M92 258q0 64 21.5 112t72.5 86.5t143.5 58.5t225.5 20q84 0 123 -5v84q0 116 -27 158q-38 59 -172 59q-102 0 -151 -38q-35 -26 -41 -144h-105q-18 97 -18 158q0 47 24.5 75t75.5 48q45 17 114 29t128 12q209 0 280 -84q32 -36 45 -87.5t13 -135.5q0 -25 -1 -212.5 t-1 -197.5q0 -80 20 -107.5t68 -27.5q44 0 80 8v-111q-72 -32 -162 -32q-127 0 -152 116q-114 -123 -286 -123q-83 0 -153 28.5t-117.5 94t-47.5 158.5zM266 272q0 -56 28.5 -92.5t67.5 -49.5t87 -13q127 0 229 78v213q-66 4 -127 4q-82 0 -139.5 -10.5t-88.5 -30.5t-44 -44 t-13 -55z" />
+<glyph unicode="b" horiz-adv-x="1163" d="M33 1333v103q117 61 227 61q55 0 80 -31t25 -114q0 -176 -3 -516q64 59 151.5 97t182.5 38q187 0 280 -131t93 -353q0 -231 -129.5 -371.5t-372.5 -140.5q-224 0 -374 70q2 96 2 264v758q0 217 -27 248q-22 22 -78 22q-17 0 -57 -4zM362 156q74 -35 218 -35 q152 0 230.5 95.5t78.5 254.5q0 72 -13.5 131.5t-43.5 110t-85 78.5t-131 28q-135 0 -254 -82v-581z" />
+<glyph unicode="c" horiz-adv-x="985" d="M94 455q0 236 134.5 376t363.5 140q102 0 184 -21q54 -16 79.5 -44.5t25.5 -80.5q0 -83 -15 -168h-108q-8 107 -46 140.5t-141 33.5q-143 0 -223 -96.5t-80 -269.5q0 -160 79.5 -251t227.5 -91q149 0 293 102l62 -100q-76 -71 -178.5 -112.5t-214.5 -41.5 q-197 0 -320 129.5t-123 354.5z" />
+<glyph unicode="d" horiz-adv-x="1206" d="M94 442q0 114 31.5 209.5t93 167t160 111t225.5 39.5q48 0 112.5 -11t108.5 -34q0 169 -2 243l-1.5 39t-2.5 33.5t-5 30t-8 23t-12.5 20t-18 13t-25 9t-33.5 2.5q-23 0 -55 -4v103q117 61 227 61q55 0 80.5 -31t25.5 -106q0 -27 -1 -213.5t-1 -263.5v-645q0 -65 18.5 -92 t65.5 -27q44 0 80 8v-111q-79 -32 -168 -32q-121 0 -145 116q-110 -125 -314 -125q-200 0 -318 131.5t-118 335.5zM268 465q0 -160 85.5 -252t221.5 -92q67 0 138.5 23t111.5 57v579q-35 20 -100 34.5t-123 14.5q-154 0 -244 -95.5t-90 -268.5z" />
+<glyph unicode="e" horiz-adv-x="1030" d="M94 455q0 125 36.5 224.5t101 162.5t150 96t187.5 33q82 0 147.5 -21t107.5 -56t69.5 -83.5t39 -101t11.5 -111.5q0 -92 -26 -115q-20 -20 -89 -20h-561v-25q0 -139 80.5 -227t235.5 -88q158 0 317 110l66 -106q-177 -156 -412 -156q-148 0 -254 65t-156.5 172.5 t-50.5 246.5zM276 588l500 6v22q0 218 -227 218q-106 0 -183 -63t-90 -183z" />
+<glyph unicode="f" horiz-adv-x="675" d="M55 791v96q75 16 113 41q28 17 38.5 42.5t14.5 88.5q15 244 144 350q105 88 260 88q101 0 161 -22q64 -23 64 -103q0 -70 -16 -172h-103q-10 113 -49 141q-25 19 -86 19q-47 0 -91 -24t-67 -66q-47 -88 -47 -252v-96q152 0 254 -4v-121q-138 -6 -254 -6v-517 q0 -106 19 -133q10 -15 45.5 -21.5t146.5 -10.5v-111q-192 4 -270 4t-266 -4v111q73 4 103.5 11t41.5 21q14 21 14 103v547h-170z" />
+<glyph unicode="g" horiz-adv-x="1064" d="M31 -279q0 113 90 183q72 56 141 88q-94 40 -94 129q0 90 123 174q-197 92 -197 309q0 163 111.5 265t294.5 102q150 0 237 -49q202 0 291 -7v-118q-117 -6 -180 -6q24 -26 37.5 -76t13.5 -94q0 -176 -111.5 -271.5t-295.5 -95.5q-75 0 -105 6q-37 -27 -51 -45.5 t-14 -42.5q0 -15 19.5 -30t59.5 -25q46 -11 175.5 -32t193.5 -34q132 -24 190 -88.5t58 -173.5q0 -160 -140.5 -258t-369.5 -98t-353 81t-124 207zM197 -248q0 -72 81 -124t246 -52q87 0 151 17t98 46t49.5 60t15.5 65q0 33 -15 56.5t-67 47t-144 38.5q-198 30 -254 47 q-89 -52 -125 -99t-36 -102zM266 621q0 -121 64 -176.5t172 -55.5q101 0 166 56t65 159q0 230 -235 230q-110 0 -171 -59.5t-61 -153.5z" />
+<glyph unicode="h" horiz-adv-x="1206" d="M49 1333v103q119 61 232 61q53 0 78.5 -31t25.5 -114q0 -62 -2 -234.5t-2 -296.5q68 68 166.5 108t197.5 40q58 0 109.5 -18.5t79.5 -49.5q35 -36 49 -98.5t14 -171.5v-381q0 -74 13 -100q10 -16 40.5 -25t112.5 -16v-111q-172 4 -239 4q-62 0 -238 -4v111q110 10 129 32 q16 19 16 113v338q0 117 -37 166t-143 49q-66 0 -141 -20.5t-127 -55.5v-479q0 -95 16 -113q9 -12 35 -18t96 -12v-111q-180 4 -249 4q-138 0 -228 -4v111q81 8 108.5 13.5t37.5 16.5q16 22 16 111v852q0 189 -27 213q-22 22 -77 22q-12 0 -62 -4z" />
+<glyph unicode="i" horiz-adv-x="618" d="M66 -2v111q126 10 143 30q16 19 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 225 64q51 0 79.5 -29.5t28.5 -112.5q0 -85 -4 -280.5t-4 -286.5q0 -84 19 -113q9 -12 37 -18t102 -12v-111q-176 4 -256 4q-137 0 -227 -4zM156 1327q0 56 34 91.5t89 35.5 q60 0 90 -33.5t30 -89.5q0 -55 -34.5 -90t-92.5 -35q-53 0 -84.5 34.5t-31.5 86.5z" />
+<glyph unicode="j" horiz-adv-x="565" d="M-23 -465q74 35 121 71.5t72 86.5q37 73 37 301v647q0 113 -29 139q-30 23 -78 23q-21 0 -57 -6v100q115 64 225 64q53 0 80 -29t27 -113q0 -86 2 -398.5t2 -397.5q0 -149 -11.5 -231t-50.5 -148q-42 -69 -126.5 -124.5t-174.5 -82.5zM135 1327q0 56 33 91.5t88 35.5 q62 0 91.5 -33.5t29.5 -89.5q0 -55 -33 -90t-92 -35q-54 0 -85.5 34t-31.5 87z" />
+<glyph unicode="k" horiz-adv-x="1132" d="M70 1335v101q117 61 227 61q54 0 79 -27t25 -108q0 -30 -1 -144t-1 -190v-776q0 -86 19 -115q8 -11 35.5 -16t101.5 -12v-111q-176 4 -256 4q-137 0 -227 -4v111q73 6 103 12t40 18q16 19 16 109v907v41.5t-1 34.5t-3 30.5t-5.5 24t-9 21t-13.5 14t-19 11t-25 5t-32 2.5 q-25 0 -53 -4zM422 481q120 92 223 195q86 84 86 123q0 20 -26 29t-107 12v104q100 -4 240 -4q143 0 237 4v-104q-63 -4 -96 -21q-45 -24 -154 -121q-177 -159 -213 -194q78 -102 134 -164.5t122 -122.5q80 -64 111 -80q42 -22 135 -26v-111q-50 -4 -104 -4q-151 0 -246 80 q-33 28 -67.5 63t-73.5 82.5t-63.5 79t-72 94t-65.5 86.5z" />
+<glyph unicode="l" horiz-adv-x="622" d="M70 1335v101q114 61 227 61q54 0 79 -27t25 -108q0 -31 -1 -205t-1 -254v-651q0 -88 19 -113q9 -12 37 -18t100 -12v-111q-176 4 -256 4q-137 0 -227 -4v111q126 10 143 30q16 22 16 111v811q0 126 -5.5 184.5t-24.5 75.5q-18 18 -78 18q-25 0 -53 -4z" />
+<glyph unicode="m" horiz-adv-x="1812" d="M66 -2v111q79 8 106 13.5t37 16.5q16 22 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 217 64q47 0 75 -29t31 -111q71 69 162.5 108.5t189.5 39.5q84 0 146.5 -36t87.5 -116q72 69 169 110.5t195 41.5q127 0 189 -68q34 -37 48.5 -100t14.5 -170v-381 q0 -73 15 -100q10 -16 40 -25t111 -16v-111q-176 4 -239 4q-62 0 -238 -4v111q111 11 127 32q18 18 18 113v338q0 120 -35.5 167.5t-142.5 47.5q-63 0 -133.5 -21.5t-126.5 -56.5q4 -50 4 -100v-379q0 -77 13 -100q8 -16 36.5 -25t104.5 -16v-111q-164 4 -230 4 q-63 0 -239 -4v111q113 11 129 32q18 18 18 113v338q0 118 -35 166.5t-139 48.5q-143 0 -258 -76v-479q0 -91 19 -113q9 -12 34.5 -18t94.5 -12v-111q-180 4 -234 4q-149 0 -239 -4z" />
+<glyph unicode="n" horiz-adv-x="1228" d="M66 -2v111q126 10 143 30q16 22 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 217 64q47 0 75 -29t31 -111q69 68 167.5 108t197.5 40q59 0 109.5 -18.5t80.5 -49.5q34 -39 49 -101.5t15 -168.5v-381q0 -76 14 -100q10 -16 40 -25t112 -16v-111 q-172 4 -240 4q-66 0 -238 -4v111q65 6 91.5 12t35.5 18q17 20 17 115v338q0 124 -29 162q-39 53 -149 53q-66 0 -142 -20.5t-129 -55.5v-479q0 -91 19 -115q9 -12 33.5 -17t95.5 -11v-111q-176 4 -246 4q-137 0 -227 -4z" />
+<glyph unicode="o" horiz-adv-x="1120" d="M94 467q0 233 132 368.5t349 135.5q230 0 340.5 -127t110.5 -357q0 -127 -36 -227t-99.5 -162.5t-147 -94.5t-182.5 -32q-229 0 -348 134t-119 362zM268 487q0 -372 295 -372q140 0 215.5 90t75.5 268q0 184 -72.5 271t-214.5 87q-145 0 -222 -89.5t-77 -254.5z" />
+<glyph unicode="p" horiz-adv-x="1169" d="M41 795v102q115 64 219 64q48 0 76.5 -28t32.5 -108q63 62 152.5 104t183.5 42q186 0 279 -131.5t93 -352.5q0 -231 -130.5 -372.5t-373.5 -141.5q-75 0 -202 27v-250q0 -117 24 -141q8 -10 19.5 -15t51.5 -10.5t114 -9.5v-111q-235 5 -271 5q-31 0 -266 -5v111 q74 6 104.5 14t42.5 23q13 17 13 106v922q0 95 -18.5 127.5t-86.5 32.5q-25 0 -57 -4zM371 156q71 -35 215 -35q153 0 232 95t79 255q0 72 -13.5 131.5t-44 109t-85.5 77.5t-131 28q-61 0 -129 -25t-123 -65v-571z" />
+<glyph unicode="q" horiz-adv-x="1200" d="M94 442q0 245 132.5 387t389.5 142q209 0 381 -58q-4 -94 -4 -280v-916q0 -89 13 -106q12 -16 41.5 -23.5t103.5 -13.5v-111q-240 5 -268 5q-32 0 -267 -5v111q73 4 112.5 9.5t51 10.5t19.5 15q24 24 24 141q0 283 2 332q-107 -107 -295 -107q-200 0 -318 131.5 t-118 335.5zM268 465q0 -159 85 -250.5t222 -91.5q68 0 139 22t111 56v592q-80 38 -223 38q-154 0 -244 -96.5t-90 -269.5z" />
+<glyph unicode="r" horiz-adv-x="819" d="M66 -2v111q126 10 143 30q16 19 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 217 64q48 0 75.5 -29.5t30.5 -116.5q42 63 114 107.5t144 44.5q53 0 82 -21.5t29 -77.5q0 -51 -21 -166h-96q-9 58 -27.5 76.5t-58.5 18.5t-85.5 -21t-78.5 -57v-467 q0 -91 19 -115q14 -18 168 -28v-111q-176 4 -285 4q-137 0 -227 -4z" />
+<glyph unicode="s" horiz-adv-x="927" d="M102 164q0 22 7 151h100q5 -47 16.5 -80.5t21.5 -46.5t27 -28q55 -49 185 -49q94 0 144 33t50 85q0 44 -28.5 74.5t-96.5 56.5l-186 70q-121 47 -168 110.5t-47 151.5q0 125 96 202t289 77q138 0 215 -33q61 -25 61 -104q0 -56 -14 -166h-98q-7 65 -20 92t-35 41 q-42 33 -148 33q-182 0 -182 -125q0 -41 28.5 -68t108.5 -57l184 -70q121 -44 166 -107t45 -151q0 -133 -105.5 -209t-277.5 -76q-145 0 -237 37q-101 38 -101 156z" />
+<glyph unicode="t" horiz-adv-x="708" d="M49 791v96q60 14 109 35q35 14 51 61q18 49 39 160q13 53 78 53q59 0 59 -61v-213q154 0 252 -4v-121q-126 -6 -254 -6v-361q0 -162 8 -205q17 -104 121 -104q76 0 156 31l32 -111q-56 -32 -126.5 -49t-124.5 -17q-111 0 -173.5 59.5t-62.5 205.5q0 64 2 255t2 296h-168z " />
+<glyph unicode="u" horiz-adv-x="1200" d="M41 795v102q112 64 221 64q56 0 82.5 -30t26.5 -114q0 -22 -2 -210.5t-2 -268.5q0 -112 42.5 -160.5t145.5 -48.5q68 0 138.5 24t125.5 62v424q0 98 -19 129t-91 31q-28 0 -60 -4v102q110 64 236 64q52 0 78 -32t26 -118q0 -11 -2 -233.5t-2 -327.5q0 -79 18 -105t70 -26 q43 0 76 8v-111q-77 -32 -180 -32q-56 0 -96 30.5t-48 100.5q-139 -142 -340 -142q-71 0 -131 25.5t-94 69.5q-32 44 -45.5 100t-13.5 151v320q0 95 -18.5 127.5t-84.5 32.5q-8 0 -30 -2t-27 -2z" />
+<glyph unicode="v" horiz-adv-x="1091" d="M8 834v110q140 -4 260 -4q67 0 199 4v-110q-45 -3 -86 -9q-45 -8 -45 -49q0 -33 22 -86q61 -139 215 -522q13 31 89.5 220t121.5 302q23 67 23 92q0 16 -9 26.5t-20 12.5q-34 8 -108 13v110q126 -4 211 -4q78 0 200 4v-110q-65 -3 -92 -27q-25 -23 -67 -115l-285 -655 q-26 -64 -88 -64q-70 0 -96 64l-283 657q-40 86 -56 106q-6 6 -12 11q-18 16 -94 23z" />
+<glyph unicode="w" horiz-adv-x="1587" d="M25 834v110q90 -4 231 -4q134 0 236 4v-110q-31 0 -101 -9q-51 -7 -51 -47q0 -19 16 -86q9 -30 62.5 -214t77.5 -277q90 277 239 680q23 67 92 67q35 0 53 -16t29 -51q206 -605 230 -680q22 82 71.5 249.5t69.5 241.5q14 49 14 86q0 16 -9.5 28t-22.5 15q-34 10 -117 13 v110q82 -4 229 -4q115 0 193 4v-110q-64 -3 -94 -21q-18 -12 -30 -35.5t-30 -79.5l-207 -661q-19 -64 -88 -64q-70 0 -92 64q-194 571 -227 676q-148 -418 -244 -676q-25 -64 -86 -64q-73 0 -94 66l-203 666q-22 75 -41 96q-13 18 -35.5 24.5t-70.5 8.5z" />
+<glyph unicode="x" horiz-adv-x="1157" d="M39 0v109q94 4 131 30t84 84l215 258l-223 269q-44 50 -71.5 65.5t-96.5 18.5v110q104 -4 229 -4q130 0 234 4v-110q-59 0 -80 -10t-21 -29q0 -25 33 -66l131 -158l117 150q33 42 33 74q0 20 -18.5 29t-80.5 10v110q160 -4 224 -4q72 0 190 4v-110q-65 -3 -102 -23 q-41 -29 -101 -100l-188 -226l223 -256q4 -5 14 -16.5t13.5 -15.5t11.5 -13t12.5 -13.5t11.5 -11t13.5 -12t13.5 -10.5q19 -14 45 -19.5t80 -8.5v-109q-59 0 -149 1t-115 1q-131 0 -242 -2v109q71 4 96 14.5t25 30.5q0 14 -13 33t-48 59l-125 145l-103 -133q-35 -45 -48 -66 t-13 -38q0 -40 125 -45v-109q-196 4 -248 4q-59 0 -219 -4z" />
+<glyph unicode="y" horiz-adv-x="1089" d="M10 834v110q136 -4 258 -4q69 0 205 4v-110q-15 -1 -88 -11q-47 -8 -47 -51q0 -28 29 -94q158 -361 231 -545q30 85 89 254.5t89 253.5q31 89 31 141q0 14 -9 25t-22 14q-50 10 -108 13v110q132 -4 213 -4q78 0 200 4v-110q-62 -3 -90 -25q-19 -16 -32.5 -44t-43.5 -106 l-241 -653q-107 -287 -160 -391q-49 -96 -113.5 -136t-152.5 -40q-176 0 -176 135q0 64 12 123h98q13 -73 24 -90q20 -27 70 -27q68 0 115 86q53 89 144 332q-54 0 -84 68l-277 628q-44 96 -72 117q-20 16 -92 23z" />
+<glyph unicode="z" horiz-adv-x="997" d="M53 0v63l606 762q-261 0 -337 -8q-59 -6 -76 -39q-19 -34 -31 -127h-106q-13 115 -13 185q0 52 21.5 79t79.5 27h704v-72l-604 -751q72 -4 184 -4q194 0 252 20q40 12 68 66q22 49 41 121h98q-6 -163 -14 -238q-3 -41 -29.5 -62.5t-89.5 -21.5h-754z" />
+<glyph unicode="{" horiz-adv-x="624" d="M39 557v88q41 4 70 12t49.5 25.5t33 39.5t19.5 58.5t9.5 76.5t2.5 101v250q0 69 10 122.5t36 102t69 80t112 50t162 18.5v-96q-138 0 -188.5 -59.5t-50.5 -229.5v-307q0 -99 -16.5 -153.5t-56.5 -84.5t-118 -49q109 -24 150 -83t41 -206v-315q0 -152 52.5 -214.5 t186.5 -62.5v-94q-210 0 -296.5 79t-86.5 263v297q0 147 -39 214t-151 77z" />
+<glyph unicode="|" horiz-adv-x="534" d="M201 -375v1950h133v-1950h-133z" />
+<glyph unicode="}" horiz-adv-x="624" d="M31 -281q138 0 189.5 60.5t51.5 230.5v305q0 98 17.5 153t56.5 85.5t115 50.5q-109 22 -151 81.5t-42 207.5v313q0 153 -52 215t-185 62v98q209 0 296 -81t87 -265v-297q0 -147 39 -213.5t151 -75.5v-88q-49 -5 -81.5 -18t-54 -34t-32 -59.5t-14.5 -84t-4 -117.5v-252 q0 -69 -10 -122t-36 -101t-68.5 -79t-111.5 -49t-161 -18v92z" />
+<glyph unicode="~" horiz-adv-x="1210" d="M119 549q69 102 138 148t153 46q46 0 92 -16.5t137 -75.5q106 -65 160 -65q53 0 98.5 31.5t101.5 113.5l93 -92q-132 -197 -291 -197q-85 0 -195 70q-84 52 -121.5 68t-74.5 16q-56 0 -101.5 -32t-91.5 -109z" />
+<glyph unicode="&#xa1;" horiz-adv-x="591" d="M117 907q0 62 35.5 99.5t93.5 37.5q59 0 96 -37t37 -98q0 -58 -37 -95.5t-94 -37.5t-94 36.5t-37 94.5zM137 -283q0 70 70 867h88q70 -806 70 -869q0 -59 -29 -92t-86 -33q-60 0 -86.5 35.5t-26.5 91.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1026" d="M133 449q0 194 99.5 322t271.5 159v217h100v-207h2q96 0 176 -22q51 -14 77 -41.5t26 -75.5q0 -69 -17 -162h-104q-8 96 -43 131q-37 29 -117 33v-670q131 2 268 98l54 -94q-62 -59 -146 -96.5t-176 -44.5v-232h-100v230q-167 15 -269 136t-102 319zM307 459 q0 -130 50 -211.5t147 -106.5v652q-94 -26 -145.5 -112t-51.5 -222z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1206" d="M72 0v125q140 26 212 120.5t72 246.5q0 8 -1 27.5t-1 31.5h-200v123h186q-4 24 -16 89.5t-19.5 118t-7.5 85.5q0 191 119 298t332 107q135 0 219 -31q51 -18 72.5 -45.5t21.5 -81.5q0 -73 -17 -186h-98q-9 118 -43 152q-46 49 -174 49q-246 0 -246 -268q0 -36 17 -149 t20 -138h316v-123h-304v-25q0 -245 -184 -368q188 4 371 4q112 0 167.5 7t74.5 28q36 36 61 131h92q-4 -156 -24 -256q-15 -72 -123 -72h-895z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1175" d="M88 246l135 137q-90 111 -90 276q0 156 88 275l-133 137l94 100l137 -137q119 86 269 86q147 0 268 -86l133 137l96 -100l-133 -137q86 -114 86 -275q0 -152 -86 -272l135 -141l-98 -103l-133 142q-114 -84 -270 -84q-166 0 -267 82l-137 -140zM268 664q0 -146 90.5 -241 t229.5 -95q136 0 224.5 94t88.5 237q0 139 -89.5 234.5t-223.5 95.5q-138 0 -229 -92t-91 -233z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1308" d="M43 1231v110q117 -2 246 -2q172 0 278 2v-110q-69 -2 -103.5 -8.5t-43 -14.5t-8.5 -24q0 -38 73 -164q36 -66 108 -187.5t95 -160.5q93 177 211 368q62 106 62 148q0 24 -32 32.5t-116 10.5v110q88 -2 254 -2q111 0 195 2v-110q-64 -3 -99 -27q-17 -12 -43.5 -50 t-87.5 -136l-174 -279h250v-98h-309l-60 -98v-49h369v-97h-369v-157q0 -55 9 -82q8 -22 43.5 -32.5t138.5 -14.5v-113q-208 4 -271 4q-100 0 -284 -4v113q102 7 131 15.5t39 27.5q12 18 12 86v157h-342v97h342v47l-59 100h-283v98h225l-198 338q-37 63 -52 86.5t-34 40.5 q-30 24 -113 27z" />
+<glyph unicode="&#xa6;" horiz-adv-x="534" d="M201 -244v690h133v-690h-133zM201 752v692h133v-692h-133z" />
+<glyph unicode="&#xa7;" horiz-adv-x="974" d="M82 649q0 94 59 168t172 121q-63 63 -88.5 121.5t-25.5 126.5q0 120 94 204.5t260 84.5q120 0 201 -33q63 -25 63 -99q0 -26 -16 -167h-99q-7 68 -18 98t-33 45q-39 27 -104 27q-97 0 -141 -38t-44 -102q0 -59 33.5 -106.5t136.5 -136.5l136 -117q135 -120 182 -193.5 t47 -163.5q0 -84 -59.5 -162.5t-184.5 -136.5q86 -87 114 -146.5t28 -131.5q0 -134 -102 -222.5t-279 -88.5q-144 0 -217 41q-36 21 -52 45.5t-16 62.5q0 60 12 162h105q10 -113 57 -148q18 -14 52 -24t67 -10q101 0 152 40t51 107q0 54 -39 113.5t-148 163.5l-176 168 q-109 106 -144.5 176.5t-35.5 150.5zM240 694q0 -56 27.5 -103.5t97.5 -117.5l98 -98q24 -24 67 -64t54 -51q149 83 149 176q0 51 -31.5 107.5t-123.5 142.5l-105 94q-12 11 -46.5 39t-51.5 45q-135 -66 -135 -170z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M33 1272q0 43 28.5 72.5t73.5 29.5q46 0 74.5 -29t28.5 -73q0 -47 -29.5 -78t-77.5 -31q-42 0 -70 31t-28 78zM362 1272q0 44 29 73t76 29q44 0 73 -29.5t29 -72.5q0 -46 -29.5 -77.5t-76.5 -31.5q-42 0 -71.5 31t-29.5 78z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM180 694q0 -177 83.5 -325t229.5 -234t322 -86q128 0 241 50t194 135 t128 203.5t47 250.5q0 135 -46.5 254.5t-127 205.5t-195 135.5t-245.5 49.5q-177 0 -322 -84.5t-227 -231t-82 -323.5zM379 674q0 211 122 332.5t333 121.5q132 0 208 -26q66 -25 66 -80q0 -78 -16 -148h-88q-9 88 -27 109q-39 39 -150 39q-128 0 -209 -86t-81 -248 q0 -88 23.5 -153t65 -102t91.5 -55t110 -18q105 0 150 41q24 21 49 101h90q-3 -114 -16 -154q-17 -45 -82 -67q-86 -31 -211 -31q-195 0 -311.5 113t-116.5 311z" />
+<glyph unicode="&#xaa;" horiz-adv-x="710" d="M72 737q0 41 14.5 72t48.5 55.5t95 37.5t149 13q52 0 72 -2v52q0 79 -27 105t-100 26q-68 0 -90 -21t-25 -94h-78q-14 63 -14 106q0 58 65 82q83 31 164 31q142 0 193 -55q36 -38 36 -150q0 -20 -1 -133t-1 -119q0 -49 12.5 -67.5t41.5 -18.5q9 0 49 5v-82 q-55 -25 -119 -25q-73 0 -92 74q-36 -34 -86.5 -55t-102.5 -21q-84 0 -144 46.5t-60 137.5zM203 748q0 -47 33 -71t77 -24q76 0 140 41v135q-23 2 -76 2q-174 0 -174 -83z" />
+<glyph unicode="&#xab;" horiz-adv-x="923" d="M63 459q0 43 37 76l340 321l72 -65l-272 -328l270 -340l-72 -70l-344 332q-31 27 -31 74zM422 459q0 37 39 76l338 321l73 -65l-276 -328l274 -340l-73 -70l-342 332q-33 29 -33 74z" />
+<glyph unicode="&#xac;" horiz-adv-x="1210" d="M137 565v142h889v-555h-131v413h-758z" />
+<glyph unicode="&#xad;" horiz-adv-x="546" d="M57 430v148h428v-148h-428z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM182 694q0 -177 83 -325t228.5 -234t321.5 -86q128 0 241 50t194 135 t128 203.5t47 250.5q0 135 -46.5 254.5t-127 205.5t-195 135.5t-245.5 49.5q-177 0 -321.5 -84.5t-226 -231t-81.5 -323.5zM444 303v84q81 3 99 16q9 6 11.5 18.5t2.5 55.5v479q0 60 -8 68q-20 13 -105 18v82h261q129 0 219 -12q95 -15 143.5 -71t48.5 -144 q0 -179 -182 -235q56 -83 93 -129t75 -80q36 -34 69 -52q27 -12 60 -12v-86q-2 0 -21 -1t-32 -1q-105 0 -181 61q-47 38 -92.5 100.5t-116.5 178.5q-74 0 -92 2v-160q0 -66 11 -75q19 -19 104 -21v-84q-33 0 -109 1t-88 1q-15 0 -76.5 -1t-93.5 -1zM696 743q25 -2 72 -2 q199 0 199 150q0 39 -17 65t-49.5 38.5t-67.5 17t-83 4.5h-54v-273z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M37 1143v129h526v-129h-526z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M86 1163q0 124 78 198.5t194 74.5q115 0 190 -70.5t75 -200.5q0 -123 -77 -195.5t-192 -72.5q-117 0 -192.5 70.5t-75.5 195.5zM184 1165q0 -78 45.5 -129t124.5 -51q82 0 128 50.5t46 127.5q0 83 -46 133t-128 50q-76 0 -123 -50.5t-47 -130.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1210" d="M147 0v137h916v-137h-916zM147 694v135h392v416h133v-416h391v-135h-391v-411h-133v411h-392z" />
+<glyph unicode="&#xb2;" horiz-adv-x="780" d="M51 860v88q157 122 247 204.5t140.5 158.5t50.5 143q0 145 -153 145q-81 0 -121 -32q-22 -26 -27 -101h-79q-13 63 -13 117q0 33 16 54t54 40q81 35 196 35q135 0 206 -61.5t71 -175.5q0 -232 -397 -494q29 0 107 1t97 1q38 0 59.5 0.5t41 6t28 10t17.5 19.5t13 28.5 t11 42.5h76q-10 -150 -16 -179q-11 -51 -90 -51h-535z" />
+<glyph unicode="&#xb3;" horiz-adv-x="780" d="M86 961q0 54 8 124h84q2 -61 31 -90q45 -39 133 -39q93 0 138.5 37t45.5 103q0 128 -186 137q-31 2 -94 2v100q16 2 46.5 4t47.5 4q74 12 113 50t39 92q0 51 -32.5 82.5t-101.5 31.5q-87 0 -125 -30q-24 -18 -30 -92h-82q-8 62 -8 104q0 64 59 90q90 41 201 41 q139 0 201.5 -56t62.5 -149q0 -159 -188 -209q225 -23 225 -204q0 -120 -89 -185t-247 -65q-106 0 -184 24q-68 27 -68 93z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M119 1122l178 287q35 54 56.5 72t49.5 18q29 0 55.5 -22.5t26.5 -53.5q0 -27 -14.5 -51t-50.5 -61l-242 -240z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1216" d="M72 795v102q112 64 221 64q56 0 82 -30t26 -114q0 -22 -2 -210.5t-2 -268.5q0 -112 43 -160.5t146 -48.5q67 0 138.5 24t127.5 62v424q0 96 -20.5 128t-90.5 32q-27 0 -63 -4v102q110 64 237 64q52 0 79.5 -32t27.5 -118q0 -11 -4 -233.5t-4 -327.5q0 -78 19 -104.5 t71 -26.5q43 0 74 8v-111q-74 -32 -179 -32q-55 0 -94 30.5t-49 100.5q-65 -68 -138.5 -103t-168.5 -35q-39 0 -88.5 20t-71.5 50q4 -63 10.5 -176.5t10.5 -181.5t4 -92q0 -45 -23.5 -70t-68.5 -25q-51 0 -71 25t-20 70v1042q0 96 -18 128t-84 32q-9 0 -30 -2t-27 -2z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1120" d="M106 860q0 232 163.5 378t453.5 146h338v-110q-85 -3 -116.5 -9.5t-43.5 -19.5q-13 -13 -16.5 -41.5t-3.5 -99.5q0 -174 3 -437t3 -376q0 -301 -23 -424q-55 -283 -418 -387l-28 108q156 59 225 147.5t80 221.5q12 136 12 358v43q-25 -2 -71 -2q-115 0 -213 29.5 t-176.5 88.5t-123.5 158t-45 228z" />
+<glyph unicode="&#xb7;" horiz-adv-x="440" d="M88 502q0 58 36.5 96.5t92.5 38.5q59 0 98 -36.5t39 -94.5q0 -64 -38 -101.5t-97 -37.5q-57 0 -94 37.5t-37 97.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M119 -471q110 23 162.5 56t52.5 89q0 33 -22 58t-68 51q-41 21 -41 59q0 46 51 168h86q-33 -86 -33 -100q0 -30 35 -47q77 -40 108 -77.5t31 -92.5q0 -104 -92.5 -166.5t-249.5 -87.5z" />
+<glyph unicode="&#xb9;" horiz-adv-x="780" d="M156 1618q79 42 184 80q53 16 72 16q26 0 42.5 -18t16.5 -54q0 -28 -1 -117.5t-1 -154.5v-338q0 -55 12 -69q9 -15 131 -21v-84q-114 4 -217 4q-101 0 -215 -4v84q115 5 135 25q13 13 13 67v330q0 112 -6 162q-3 33 -33 33q-38 0 -109 -23z" />
+<glyph unicode="&#xba;" horiz-adv-x="813" d="M82 874q0 151 86.5 238.5t230.5 87.5q152 0 226.5 -82.5t74.5 -230.5q0 -160 -86.5 -247t-224.5 -87q-151 0 -229 87.5t-78 233.5zM215 887q0 -223 174 -223q178 0 178 210q0 115 -42.5 166.5t-129.5 51.5q-89 0 -134.5 -52.5t-45.5 -152.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="923" d="M53 121l275 325l-275 340l76 70l340 -332q33 -29 33 -75q0 -40 -39 -76l-338 -320zM412 121l276 325l-274 340l73 70l342 -332q33 -29 33 -75q0 -37 -39 -76l-338 -320z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1722" d="M139 1276q101 49 185 80q47 14 71 14q60 0 60 -72q0 -27 -1 -116t-1 -154v-338q0 -55 12 -69q12 -15 131 -23v-84q-171 6 -217 6q-44 0 -215 -6v84q116 8 135 27q12 12 12 67v330q0 112 -6 162q-3 30 -33 30t-108 -20zM506 18l592 1366l96 -38l-594 -1369zM889 223v76 l354 485q30 40 50 55t57 15q30 0 50.5 -20t20.5 -66q0 -29 -1 -97t-1 -89v-246h133v-113h-133v-53q0 -52 8 -68q16 -19 119 -24v-80q-106 4 -211 4q-74 0 -184 -4v80q105 8 115 24q14 14 14 70v51h-391zM1020 332h260q0 194 4 366z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1722" d="M119 1276q103 51 184 80q47 14 72 14q59 0 59 -72q0 -27 -1 -116t-1 -154v-338q0 -55 12 -69q12 -15 131 -23v-84q-171 6 -217 6q-44 0 -215 -6v84q117 8 136 27q12 12 12 67v330q0 112 -6 162q-3 30 -33 30q-32 0 -109 -20zM483 18l592 1366l96 -38l-593 -1369zM969 0 v88q157 122 247 204.5t140.5 158.5t50.5 143q0 145 -154 145q-80 0 -120 -32q-22 -26 -27 -101h-80q-12 59 -12 117q0 33 15.5 54t53.5 40q81 35 197 35q135 0 205.5 -62t70.5 -176q0 -231 -397 -493q29 0 107.5 1t97.5 1q66 0 96 5.5t41 21.5q18 21 33 79h76 q-9 -142 -17 -178q-11 -51 -90 -51h-534z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1722" d="M125 618q0 51 8 125h84q3 -66 31 -90q39 -39 133 -39q184 0 184 138q0 61 -40.5 94.5t-135.5 42.5q-62 4 -104 4v100q10 1 28.5 1t34 1t31.5 4q74 10 112.5 49.5t38.5 94.5q0 50 -32 81t-101 31q-85 0 -125 -28q-24 -21 -30 -94h-82q-8 62 -8 106q0 64 59 88 q90 41 201 41q139 0 201.5 -55.5t62.5 -149.5q0 -156 -189 -209q226 -21 226 -204q0 -120 -89 -185t-247 -65q-112 0 -184 26q-68 24 -68 92zM559 18l592 1366l96 -38l-594 -1369zM922 223v76l354 485q30 41 49.5 55.5t56.5 14.5q30 0 51 -20t21 -66q0 -29 -1 -97t-1 -89 v-246h133v-113h-133v-53q0 -52 8 -68q16 -19 119 -24v-80q-106 4 -211 4q-74 0 -184 -4v80q104 8 114 24q15 15 15 70v51h-391zM1053 332h260q0 194 4 366z" />
+<glyph unicode="&#xbf;" horiz-adv-x="872" d="M31 -66q0 128 73 223.5t254 186.5q59 31 70 115q10 78 12 131h92q17 -163 17 -211q0 -54 -31.5 -88t-93.5 -66q-199 -103 -199 -272q0 -38 7.5 -71.5t26.5 -68t60 -55t101 -20.5q124 0 162 31q38 32 41 147h108q19 -102 19 -156q0 -39 -22 -68.5t-56 -46.5t-80.5 -28 t-89.5 -14.5t-90 -3.5q-192 1 -286.5 88.5t-94.5 246.5zM344 907q0 65 36 102.5t93 37.5q59 0 97 -38t38 -98q0 -58 -38 -96.5t-95 -38.5q-56 0 -93.5 36.5t-37.5 94.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1460" d="M12 -2v113q111 6 144 32q19 14 33 43.5t49 122.5l383 1016q19 48 47 71t71 23q40 0 65 -20.5t44 -69.5l393 -1053q23 -63 39.5 -92t38.5 -47q26 -23 129 -26v-113q-152 4 -268 4q-148 0 -308 -4v113q104 5 140 14q47 11 47 49q0 40 -29 123l-72 190h-501l-68 -180 q-31 -91 -31 -131q0 -34 27 -45q30 -11 162 -20v-113q-144 4 -291 4q-108 0 -244 -4zM459 1769q0 33 23.5 57.5t54.5 24.5q26 0 50 -14t62 -55l238 -250l-51 -62l-291 191q-86 57 -86 108zM498 625h413q-180 486 -206 571q-60 -169 -207 -571z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1460" d="M12 -2v113q111 6 144 32q19 14 33 43.5t49 122.5l383 1016q19 48 47 71t71 23q40 0 65 -20.5t44 -69.5l393 -1053q23 -63 39.5 -92t38.5 -47q26 -23 129 -26v-113q-152 4 -268 4q-148 0 -308 -4v113q104 5 140 14q47 11 47 49q0 40 -29 123l-72 190h-501l-68 -180 q-31 -91 -31 -131q0 -34 27 -45q30 -11 162 -20v-113q-144 4 -291 4q-108 0 -244 -4zM498 625h413q-180 486 -206 571q-60 -169 -207 -571zM559 1530l240 250q39 40 63 54.5t49 14.5q31 0 53.5 -24t22.5 -58q0 -53 -86 -108l-291 -191z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1460" d="M12 -2v113q111 6 144 32q19 14 33 43.5t49 122.5l383 1016q19 48 47 71t71 23q40 0 65 -20.5t44 -69.5l393 -1053q23 -63 39.5 -92t38.5 -47q26 -23 129 -26v-113q-152 4 -268 4q-148 0 -308 -4v113q104 5 140 14q47 11 47 49q0 40 -29 123l-72 190h-501l-68 -180 q-31 -91 -31 -131q0 -34 27 -45q30 -11 162 -20v-113q-144 4 -291 4q-108 0 -244 -4zM424 1518l233 276q37 43 76 43q44 0 80 -45l225 -272l-59 -56l-252 201l-250 -201zM498 625h413q-180 486 -206 571q-60 -169 -207 -571z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1460" d="M12 -2v113q111 6 144 32q19 14 33 43.5t49 122.5l383 1016q19 48 47 71t71 23q40 0 65 -20.5t44 -69.5l393 -1053q23 -63 39.5 -92t38.5 -47q26 -23 129 -26v-113q-152 4 -268 4q-148 0 -308 -4v113q104 5 140 14q47 11 47 49q0 40 -29 123l-72 190h-501l-68 -180 q-31 -91 -31 -131q0 -34 27 -45q30 -11 162 -20v-113q-144 4 -291 4q-108 0 -244 -4zM416 1526q24 97 70 160t112 63q41 0 117 -31l63 -26q63 -29 94 -29q48 0 99 111l76 -27q-57 -225 -168 -225q-54 0 -138 37l-59 22q-67 23 -88 23q-33 0 -54 -22t-53 -81zM498 625h413 q-180 486 -206 571q-60 -169 -207 -571z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1460" d="M12 -2v113q111 6 144 32q19 14 33 43.5t49 122.5l383 1016q19 48 47 71t71 23q40 0 65 -20.5t44 -69.5l393 -1053q23 -63 39.5 -92t38.5 -47q26 -23 129 -26v-113q-152 4 -268 4q-148 0 -308 -4v113q104 5 140 14q47 11 47 49q0 40 -29 123l-72 190h-501l-68 -180 q-31 -91 -31 -131q0 -34 27 -45q30 -11 162 -20v-113q-144 4 -291 4q-108 0 -244 -4zM440 1626q0 45 29 75t74 30q46 0 74 -30t28 -75q0 -44 -29 -75t-75 -31q-43 0 -72 30t-29 76zM498 625h413q-180 486 -206 571q-60 -169 -207 -571zM797 1626q0 45 29.5 75t76.5 30 q44 0 72.5 -30t28.5 -75q0 -44 -29.5 -75t-75.5 -31q-43 0 -72.5 30.5t-29.5 75.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1460" d="M12 -2v113q111 6 144 32q19 14 33 43.5t49 122.5l383 1016q19 48 47 71t71 23q40 0 65 -20.5t44 -69.5l393 -1053q23 -63 39.5 -92t38.5 -47q26 -23 129 -26v-113q-152 4 -268 4q-148 0 -308 -4v113q104 5 140 14q47 11 47 49q0 40 -29 123l-72 190h-501l-68 -180 q-31 -91 -31 -131q0 -34 27 -45q30 -11 162 -20v-113q-144 4 -291 4q-108 0 -244 -4zM498 625h413q-180 486 -206 571q-60 -169 -207 -571zM541 1638q0 80 56 134.5t134 54.5q85 0 138 -51.5t53 -133.5q0 -83 -56 -137.5t-137 -54.5q-79 0 -133.5 52t-54.5 136zM625 1642 q0 -53 28.5 -83.5t75.5 -30.5q48 0 77.5 29.5t29.5 84.5q0 53 -30.5 81t-76.5 28q-44 0 -74 -28.5t-30 -80.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2041" d="M12 -2v113q119 6 154 32q52 45 119 150l538 825q43 65 43 107q0 12 -6.5 20.5t-20 14t-27 8.5t-35 4.5t-36.5 2t-38.5 1t-34.5 0.5v108h1097q72 0 100.5 -26t28.5 -74q0 -40 -20 -237h-105q-7 55 -15 90t-17 52t-21 25q-22 17 -68.5 23t-164.5 6h-230v-461h148 q81 0 114.5 7t51.5 28q30 38 39 123h100q-2 -53 -2 -219q0 -143 2 -227h-96q-11 87 -39 127q-12 15 -38 21.5t-49.5 7.5t-86.5 1h-144v-418q0 -29 6 -47t18.5 -27t33.5 -12q71 -8 188 -8q137 0 199 14t92 42q41 38 80 172h100q-8 -237 -35 -308q-20 -59 -161 -59h-885v111 q108 7 139 18q13 5 22 14t13.5 17t6.5 25.5t2 27.5t-0.5 37t-0.5 41v209h-477l-135 -205q-51 -74 -51 -123q0 -10 3.5 -18.5t11.5 -14.5t15.5 -10.5t22 -7t24.5 -4.5t28.5 -3t28.5 -1.5t31 -0.5q4 0 6 -0.5t5.5 -0.5h6h5.5v-113q-200 4 -301 4q-91 0 -283 -4zM672 635h399 v575q0 25 -12 25q-8 0 -14.5 -7t-14.5 -24q-51 -88 -358 -569z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1376" d="M98 668q0 348 197.5 548.5t531.5 200.5q204 0 328 -47q52 -20 75 -49.5t23 -75.5q0 -104 -18 -223h-109q-11 144 -47 180q-60 66 -266 66q-108 0 -201 -37t-164 -107.5t-112 -182.5t-41 -253q0 -148 42 -260t115 -177.5t164 -97.5t197 -32q94 0 163 20t103 49 q40 37 82 168h109q-3 -145 -27 -227q-24 -78 -127 -113q-148 -47 -332 -47h-20q-19 -46 -19 -67q0 -30 37 -51q81 -39 113.5 -77.5t32.5 -97.5q0 -212 -359 -266l-20 92q115 25 170 60t55 94q0 34 -23 60.5t-71 52.5q-43 24 -43 65q0 52 39 141q-266 30 -422 209.5 t-156 481.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1228" d="M70 0v111q81 5 118 11t50 19q12 12 15 38t3 95v846q0 104 -12 121q-10 15 -45.5 22t-128.5 13v108h880q72 0 100.5 -26t28.5 -74q0 -80 -16 -237h-109q-15 142 -51 167q-23 17 -70 23t-165 6h-226v-461h144q83 0 117 7t51 28q31 40 37 123h102q-4 -53 -4 -219 q0 -143 4 -227h-96q-11 87 -39 127q-16 21 -51.5 25.5t-124.5 4.5h-140v-418q0 -44 12.5 -62.5t43.5 -23.5q71 -8 188 -8q138 0 201 13.5t92 42.5q37 39 76 172h102q-4 -220 -37 -308q-9 -27 -53 -43t-109 -16h-888zM330 1767q0 33 23.5 57.5t54.5 24.5q26 0 50 -14t62 -55 l238 -250l-51 -62l-291 191q-86 57 -86 108z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1228" d="M70 0v111q81 5 118 11t50 19q12 12 15 38t3 95v846q0 104 -12 121q-10 15 -45.5 22t-128.5 13v108h880q72 0 100.5 -26t28.5 -74q0 -80 -16 -237h-109q-15 142 -51 167q-23 17 -70 23t-165 6h-226v-461h144q83 0 117 7t51 28q31 40 37 123h102q-4 -53 -4 -219 q0 -143 4 -227h-96q-11 87 -39 127q-16 21 -51.5 25.5t-124.5 4.5h-140v-418q0 -44 12.5 -62.5t43.5 -23.5q71 -8 188 -8q138 0 201 13.5t92 42.5q37 39 76 172h102q-4 -220 -37 -308q-9 -27 -53 -43t-109 -16h-888zM451 1530l239 250q39 40 63 54.5t50 14.5q31 0 53.5 -24 t22.5 -58q0 -53 -86 -108l-291 -191z" />
+<glyph unicode="&#xca;" horiz-adv-x="1228" d="M70 0v111q81 5 118 11t50 19q12 12 15 38t3 95v846q0 104 -12 121q-10 15 -45.5 22t-128.5 13v108h880q72 0 100.5 -26t28.5 -74q0 -80 -16 -237h-109q-15 142 -51 167q-23 17 -70 23t-165 6h-226v-461h144q83 0 117 7t51 28q31 40 37 123h102q-4 -53 -4 -219 q0 -143 4 -227h-96q-11 87 -39 127q-16 21 -51.5 25.5t-124.5 4.5h-140v-418q0 -44 12.5 -62.5t43.5 -23.5q71 -8 188 -8q138 0 201 13.5t92 42.5q37 39 76 172h102q-4 -220 -37 -308q-9 -27 -53 -43t-109 -16h-888zM305 1518l234 276q37 43 75 43q44 0 80 -45l226 -272 l-60 -56l-252 201l-250 -201z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1228" d="M70 0v111q81 5 118 11t50 19q12 12 15 38t3 95v846q0 104 -12 121q-10 15 -45.5 22t-128.5 13v108h880q72 0 100.5 -26t28.5 -74q0 -80 -16 -237h-109q-15 142 -51 167q-23 17 -70 23t-165 6h-226v-461h144q83 0 117 7t51 28q31 40 37 123h102q-4 -53 -4 -219 q0 -143 4 -227h-96q-11 87 -39 127q-16 21 -51.5 25.5t-124.5 4.5h-140v-418q0 -44 12.5 -62.5t43.5 -23.5q71 -8 188 -8q138 0 201 13.5t92 42.5q37 39 76 172h102q-4 -220 -37 -308q-9 -27 -53 -43t-109 -16h-888zM340 1628q0 45 28.5 75t73.5 30q46 0 74.5 -30t28.5 -75 q0 -44 -29.5 -75t-75.5 -31q-43 0 -71.5 30t-28.5 76zM696 1628q0 45 30 75t77 30q44 0 72 -30t28 -75q0 -44 -29 -75t-75 -31q-43 0 -73 30.5t-30 75.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="698" d="M70 -2v113q150 10 172 32q9 10 11.5 35t2.5 96v846q0 101 -14 121q-19 25 -172 35v110q216 -6 270 -6q31 0 289 6v-110q-153 -9 -174 -37q-13 -18 -13 -119v-844q0 -110 13 -126t49.5 -24.5t124.5 -14.5v-113q-176 4 -283 4q-100 0 -276 -4zM84 1767q0 33 23.5 57.5 t54.5 24.5q26 0 50 -14t62 -55l238 -250l-51 -62l-291 191q-86 57 -86 108z" />
+<glyph unicode="&#xcd;" horiz-adv-x="698" d="M70 -2v113q150 10 172 32q9 10 11.5 35t2.5 96v846q0 101 -14 121q-19 25 -172 35v110q216 -6 270 -6q31 0 289 6v-110q-153 -9 -174 -37q-13 -18 -13 -119v-844q0 -110 13 -126t49.5 -24.5t124.5 -14.5v-113q-176 4 -283 4q-100 0 -276 -4zM170 1530l240 250 q39 40 63 54.5t49 14.5q31 0 53.5 -24t22.5 -58q0 -53 -86 -108l-291 -191z" />
+<glyph unicode="&#xce;" horiz-adv-x="698" d="M43 1518l233 276q37 43 76 43q44 0 80 -45l225 -272l-59 -56l-252 201l-250 -201zM70 -2v113q150 10 172 32q9 10 11.5 35t2.5 96v846q0 101 -14 121q-19 25 -172 35v110q216 -6 270 -6q31 0 289 6v-110q-153 -9 -174 -37q-13 -18 -13 -119v-844q0 -110 13 -126 t49.5 -24.5t124.5 -14.5v-113q-176 4 -283 4q-100 0 -276 -4z" />
+<glyph unicode="&#xcf;" horiz-adv-x="698" d="M68 1628q0 45 28.5 75t73.5 30q46 0 74 -30t28 -75q0 -44 -29 -75t-75 -31q-43 0 -71.5 30t-28.5 76zM70 -2v113q150 10 172 32q9 10 11.5 35t2.5 96v846q0 101 -14 121q-19 25 -172 35v110q216 -6 270 -6q31 0 289 6v-110q-153 -9 -174 -37q-13 -18 -13 -119v-844 q0 -110 13 -126t49.5 -24.5t124.5 -14.5v-113q-176 4 -283 4q-100 0 -276 -4zM424 1628q0 45 29.5 75t76.5 30q44 0 72.5 -30t28.5 -75q0 -44 -29.5 -75t-75.5 -31q-43 0 -72.5 30.5t-29.5 75.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1474" d="M59 668v114h197v338q0 94 -8 115q-10 22 -43 29t-135 12v108h348q309 0 458 -24t248 -86q129 -82 189.5 -219t60.5 -336q0 -421 -266 -598q-93 -63 -222 -92t-331 -29h-485v111q90 5 125 11t47 19q9 12 11.5 34.5t2.5 86.5v406h-197zM442 229q0 -36 11 -50.5t41 -22.5 q64 -17 161 -17q256 0 389.5 143.5t133.5 424.5q0 179 -61.5 298t-174.5 173q-129 63 -375 63h-125v-459h381v-114h-381v-439z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1517" d="M59 1276v110q90 -4 240 -4q92 0 164 4q593 -877 717 -1083q-5 149 -9 454t-4 306q-5 150 -18 174q-21 32 -174 39v110q218 -4 268 -4q36 0 254 4v-110q-84 -6 -115.5 -13t-50.5 -22q-12 -14 -16 -48t-4 -130q-2 -176 -2 -651q0 -46 1 -172.5t1 -165.5q0 -92 -90 -92 q-31 0 -51 14.5t-40 44.5q-717 1091 -735 1120q1 -121 3.5 -319.5t5 -348.5t2.5 -174q0 -90 4.5 -125t15.5 -49q14 -15 48.5 -22.5t125.5 -13.5v-111q-222 4 -270 4q-61 0 -269 -4v111q163 8 183 41q4 6 6 14.5t3 25.5t1.5 30.5t1.5 46t2 55.5q6 204 6 741q0 132 -16 160 q-10 17 -23.5 27t-38.5 14q-62 12 -127 12zM477 1526q24 97 70 160t112 63q41 0 117 -31l64 -26q63 -29 94 -29q47 0 98 111l76 -27q-57 -225 -168 -225q-44 0 -137 37l-60 22q-67 23 -88 23q-33 0 -53.5 -21.5t-52.5 -81.5z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q166 0 288.5 -48.5t198.5 -141.5t113 -220t37 -290q0 -185 -50 -329t-139 -233.5t-206 -135.5t-256 -46q-162 0 -287 52t-204.5 147.5t-120 225.5t-40.5 290zM295 715q0 -594 459 -594q216 0 333 149.5t117 429.5q0 294 -112 431 t-336 137q-222 0 -341.5 -148t-119.5 -405zM477 1767q0 33 23.5 57.5t54.5 24.5q26 0 50.5 -14t62.5 -55l237 -250l-51 -62l-291 191q-86 57 -86 108z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q166 0 288.5 -48.5t198.5 -141.5t113 -220t37 -290q0 -185 -50 -329t-139 -233.5t-206 -135.5t-256 -46q-162 0 -287 52t-204.5 147.5t-120 225.5t-40.5 290zM295 715q0 -594 459 -594q216 0 333 149.5t117 429.5q0 294 -112 431 t-336 137q-222 0 -341.5 -148t-119.5 -405zM590 1530l239 250q39 40 63 54.5t50 14.5q31 0 53.5 -24t22.5 -58q0 -53 -86 -108l-291 -191z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q166 0 288.5 -48.5t198.5 -141.5t113 -220t37 -290q0 -185 -50 -329t-139 -233.5t-206 -135.5t-256 -46q-162 0 -287 52t-204.5 147.5t-120 225.5t-40.5 290zM295 715q0 -594 459 -594q216 0 333 149.5t117 429.5q0 294 -112 431 t-336 137q-222 0 -341.5 -148t-119.5 -405zM455 1518l233 276q37 43 76 43q44 0 80 -45l225 -272l-59 -56l-252 201l-250 -201z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q166 0 288.5 -48.5t198.5 -141.5t113 -220t37 -290q0 -185 -50 -329t-139 -233.5t-206 -135.5t-256 -46q-162 0 -287 52t-204.5 147.5t-120 225.5t-40.5 290zM295 715q0 -594 459 -594q216 0 333 149.5t117 429.5q0 294 -112 431 t-336 137q-222 0 -341.5 -148t-119.5 -405zM440 1526q24 96 70.5 159.5t112.5 63.5q40 0 116 -31l64 -26q63 -29 94 -29q47 0 98 111l76 -27q-57 -225 -168 -225q-53 0 -137 37l-59 22q-67 23 -89 23q-33 0 -53.5 -21.5t-52.5 -81.5z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q166 0 288.5 -48.5t198.5 -141.5t113 -220t37 -290q0 -185 -50 -329t-139 -233.5t-206 -135.5t-256 -46q-162 0 -287 52t-204.5 147.5t-120 225.5t-40.5 290zM295 715q0 -594 459 -594q216 0 333 149.5t117 429.5q0 294 -112 431 t-336 137q-222 0 -341.5 -148t-119.5 -405zM477 1628q0 45 29 75t74 30q46 0 74 -30t28 -75q0 -44 -29 -75t-75 -31q-43 0 -72 30t-29 76zM834 1628q0 45 29.5 75t76.5 30q44 0 72 -30t28 -75q0 -44 -29 -75t-75 -31q-43 0 -72.5 30.5t-29.5 75.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1191" d="M201 965l94 100l303 -320l297 322l92 -92l-299 -328l301 -325l-92 -99l-301 320l-301 -322l-92 96l303 324z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1499" d="M98 686q0 339 182.5 534t483.5 195q216 0 360 -84l111 156l90 -64l-113 -159q189 -177 189 -549q0 -185 -50 -329t-139 -233.5t-206 -135.5t-256 -46q-231 0 -381 101l-113 -158l-90 61l119 166q-187 190 -187 545zM295 715q0 -271 96 -422l637 901q-107 76 -272 76 q-222 0 -341.5 -149t-119.5 -406zM465 209q112 -90 289 -90q216 0 333 150.5t117 430.5q0 269 -98 412z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1556" d="M51 1276v110q164 -4 279 -4q133 0 293 4v-110q-94 -4 -130.5 -13t-48.5 -24q-15 -17 -18 -109q-2 -133 -2 -495q0 -252 35 -344q65 -170 342 -170q108 0 195 34t122 93q39 64 53.5 160.5t14.5 244.5q0 244 -8 463q-3 71 -7.5 95.5t-17.5 33.5q-28 20 -166 31v110 q76 -2 264 -2q21 0 118.5 1t135.5 1v-110q-158 -10 -176 -45q-10 -25 -10 -131v-486q0 -192 -25.5 -302.5t-85.5 -182.5q-130 -160 -444 -160q-161 0 -279 51.5t-172 139.5q-42 69 -58.5 166t-16.5 301q0 99 2 272.5t2 220.5q0 87 -13 113q-11 19 -50 29t-128 14zM498 1767 q0 34 23 58t54 24q26 0 50.5 -14t62.5 -55l238 -250l-52 -62l-290 191q-86 57 -86 108z" />
+<glyph unicode="&#xda;" horiz-adv-x="1556" d="M51 1276v110q164 -4 279 -4q133 0 293 4v-110q-94 -4 -130.5 -13t-48.5 -24q-15 -17 -18 -109q-2 -133 -2 -495q0 -252 35 -344q65 -170 342 -170q108 0 195 34t122 93q39 64 53.5 160.5t14.5 244.5q0 244 -8 463q-3 71 -7.5 95.5t-17.5 33.5q-28 20 -166 31v110 q76 -2 264 -2q21 0 118.5 1t135.5 1v-110q-158 -10 -176 -45q-10 -25 -10 -131v-486q0 -192 -25.5 -302.5t-85.5 -182.5q-130 -160 -444 -160q-161 0 -279 51.5t-172 139.5q-42 69 -58.5 166t-16.5 301q0 99 2 272.5t2 220.5q0 87 -13 113q-11 19 -50 29t-128 14zM635 1530 l239 250q39 40 63 54.5t50 14.5q31 0 53.5 -24t22.5 -58q0 -53 -86 -108l-291 -191z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1556" d="M51 1276v110q164 -4 279 -4q133 0 293 4v-110q-94 -4 -130.5 -13t-48.5 -24q-15 -17 -18 -109q-2 -133 -2 -495q0 -252 35 -344q65 -170 342 -170q108 0 195 34t122 93q39 64 53.5 160.5t14.5 244.5q0 244 -8 463q-3 71 -7.5 95.5t-17.5 33.5q-28 20 -166 31v110 q76 -2 264 -2q21 0 118.5 1t135.5 1v-110q-158 -10 -176 -45q-10 -25 -10 -131v-486q0 -192 -25.5 -302.5t-85.5 -182.5q-130 -160 -444 -160q-161 0 -279 51.5t-172 139.5q-42 69 -58.5 166t-16.5 301q0 99 2 272.5t2 220.5q0 87 -13 113q-11 19 -50 29t-128 14zM457 1518 l233 276q37 43 76 43q44 0 80 -45l225 -272l-59 -56l-252 201l-250 -201z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1556" d="M51 1276v110q164 -4 279 -4q133 0 293 4v-110q-94 -4 -130.5 -13t-48.5 -24q-15 -17 -18 -109q-2 -133 -2 -495q0 -252 35 -344q65 -170 342 -170q108 0 195 34t122 93q39 64 53.5 160.5t14.5 244.5q0 244 -8 463q-3 71 -7.5 95.5t-17.5 33.5q-28 20 -166 31v110 q76 -2 264 -2q21 0 118.5 1t135.5 1v-110q-158 -10 -176 -45q-10 -25 -10 -131v-486q0 -192 -25.5 -302.5t-85.5 -182.5q-130 -160 -444 -160q-161 0 -279 51.5t-172 139.5q-42 69 -58.5 166t-16.5 301q0 99 2 272.5t2 220.5q0 87 -13 113q-11 19 -50 29t-128 14zM489 1628 q0 45 29 75t74 30q46 0 74 -30t28 -75q0 -44 -29 -75t-75 -31q-43 0 -72 30t-29 76zM846 1628q0 45 29.5 75t76.5 30q44 0 72.5 -30t28.5 -75q0 -44 -29.5 -75t-75.5 -31q-43 0 -72.5 30.5t-29.5 75.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1280" d="M10 1276v110q234 -4 256 -4q67 0 275 4v-110q-72 -2 -108.5 -10t-45 -17.5t-8.5 -27.5q0 -26 43 -103q34 -57 246 -426q159 278 254 436q41 67 41 101q0 25 -32 35.5t-128 11.5v110q98 -4 272 -4q109 0 195 4v-110q-58 -3 -99 -31q-30 -23 -96 -131l-346 -549v-317 q0 -82 8 -98q9 -19 44.5 -27t140.5 -12v-113q-218 4 -275 4q-89 0 -289 -4v113q102 4 131.5 10t40.5 22q13 21 13 105v315l-330 549q-8 12 -20 32.5t-17 29t-13.5 21.5t-13 19t-10.5 13.5t-11 12t-11 7.5q-38 24 -107 29zM537 1530l239 250q39 40 63 54.5t50 14.5 q31 0 53.5 -24t22.5 -58q0 -53 -86 -108l-291 -191z" />
+<glyph unicode="&#xde;" horiz-adv-x="1200" d="M70 -2v113q93 6 126.5 12t45.5 20q9 10 11.5 34.5t2.5 96.5v846q0 101 -14 121q-19 25 -172 35v110q216 -6 270 -6q31 0 289 6v-110q-94 -6 -129.5 -13.5t-44.5 -21.5q-13 -16 -13 -96v-33h74q194 0 299 -20q164 -30 241 -122.5t77 -232.5q0 -96 -28 -170.5t-76.5 -123.5 t-119.5 -81t-152 -45.5t-179 -13.5q-91 0 -136 2v-51q0 -91 13 -107q23 -26 182 -36v-113q-176 4 -293 4q-98 0 -274 -4zM442 432q31 -2 99 -2q46 0 83.5 2.5t80 10t75 20.5t63.5 35.5t51 53t32 75t12 100.5q0 97 -49 154t-135 77q-122 23 -226 23h-86v-549z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1212" d="M55 791v96q106 26 140 65q22 22 26 88q9 149 39.5 232.5t89.5 142.5q57 57 137 83t158 26q160 0 249 -78.5t89 -200.5q0 -155 -147 -291q-72 -69 -95.5 -100.5t-23.5 -56.5q0 -36 51 -78q26 -22 105 -81.5t126 -102.5q117 -103 117 -244q0 -151 -97 -235.5t-265 -84.5 q-103 0 -191 37q-71 35 -71 129q0 75 6 131h92q17 -95 59 -125q36 -32 121 -32q78 0 126 38t48 109q0 89 -86 158q-43 35 -123.5 98t-101.5 80q-84 70 -84 162q0 91 100 186q56 55 86 88.5t56 83.5t26 98q0 83 -52 127.5t-140 44.5q-96 0 -152 -57.5t-67 -155.5 q-15 -154 -15 -301v-604q0 -88 8 -268q-78 4 -123 4q-84 0 -210 -4v111q120 6 141 30q18 22 18 107v545h-170z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1054" d="M92 258q0 64 21.5 112t72.5 86.5t143.5 58.5t225.5 20q84 0 123 -5v84q0 116 -27 158q-38 59 -172 59q-102 0 -151 -38q-35 -26 -41 -144h-105q-18 97 -18 158q0 47 24.5 75t75.5 48q45 17 114 29t128 12q209 0 280 -84q32 -36 45 -87.5t13 -135.5q0 -25 -1 -212.5 t-1 -197.5q0 -80 20 -107.5t68 -27.5q44 0 80 8v-111q-72 -32 -162 -32q-127 0 -152 116q-114 -123 -286 -123q-83 0 -153 28.5t-117.5 94t-47.5 158.5zM250 1423q0 31 25.5 53.5t56.5 22.5q28 0 48.5 -17.5t55.5 -72.5l180 -287l-63 -51l-240 240q-35 36 -49 60.5t-14 51.5 zM266 272q0 -56 28.5 -92.5t67.5 -49.5t87 -13q127 0 229 78v213q-66 4 -127 4q-82 0 -139.5 -10.5t-88.5 -30.5t-44 -44t-13 -55z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1054" d="M92 258q0 64 21.5 112t72.5 86.5t143.5 58.5t225.5 20q84 0 123 -5v84q0 116 -27 158q-38 59 -172 59q-102 0 -151 -38q-35 -26 -41 -144h-105q-18 97 -18 158q0 47 24.5 75t75.5 48q45 17 114 29t128 12q209 0 280 -84q32 -36 45 -87.5t13 -135.5q0 -25 -1 -212.5 t-1 -197.5q0 -80 20 -107.5t68 -27.5q44 0 80 8v-111q-72 -32 -162 -32q-127 0 -152 116q-114 -123 -286 -123q-83 0 -153 28.5t-117.5 94t-47.5 158.5zM266 272q0 -56 28.5 -92.5t67.5 -49.5t87 -13q127 0 229 78v213q-66 4 -127 4q-82 0 -139.5 -10.5t-88.5 -30.5t-44 -44 t-13 -55zM379 1122l178 287q34 54 56 72t51 18t55 -22.5t26 -53.5q0 -27 -14.5 -51t-50.5 -61l-242 -240z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1054" d="M92 258q0 64 21.5 112t72.5 86.5t143.5 58.5t225.5 20q84 0 123 -5v84q0 116 -27 158q-38 59 -172 59q-102 0 -151 -38q-35 -26 -41 -144h-105q-18 97 -18 158q0 47 24.5 75t75.5 48q45 17 114 29t128 12q209 0 280 -84q32 -36 45 -87.5t13 -135.5q0 -25 -1 -212.5 t-1 -197.5q0 -80 20 -107.5t68 -27.5q44 0 80 8v-111q-72 -32 -162 -32q-127 0 -152 116q-114 -123 -286 -123q-83 0 -153 28.5t-117.5 94t-47.5 158.5zM221 1092l213 311q31 45 76 45q52 0 80 -43l203 -311l-64 -52l-225 232l-221 -232zM266 272q0 -56 28.5 -92.5 t67.5 -49.5t87 -13q127 0 229 78v213q-66 4 -127 4q-82 0 -139.5 -10.5t-88.5 -30.5t-44 -44t-13 -55z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1054" d="M92 258q0 64 21.5 112t72.5 86.5t143.5 58.5t225.5 20q84 0 123 -5v84q0 116 -27 158q-38 59 -172 59q-102 0 -151 -38q-35 -26 -41 -144h-105q-18 97 -18 158q0 47 24.5 75t75.5 48q45 17 114 29t128 12q209 0 280 -84q32 -36 45 -87.5t13 -135.5q0 -25 -1 -212.5 t-1 -197.5q0 -80 20 -107.5t68 -27.5q44 0 80 8v-111q-72 -32 -162 -32q-127 0 -152 116q-114 -123 -286 -123q-83 0 -153 28.5t-117.5 94t-47.5 158.5zM199 1135q26 98 71 161.5t107 63.5q47 0 115 -31l55 -26q59 -27 90 -27q27 0 49.5 25.5t48.5 80.5l74 -22 q-26 -111 -70 -170.5t-96 -59.5q-41 0 -131 37l-51 25q-45 22 -88 22q-32 0 -53.5 -23t-49.5 -81zM266 272q0 -56 28.5 -92.5t67.5 -49.5t87 -13q127 0 229 78v213q-66 4 -127 4q-82 0 -139.5 -10.5t-88.5 -30.5t-44 -44t-13 -55z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1054" d="M92 258q0 64 21.5 112t72.5 86.5t143.5 58.5t225.5 20q84 0 123 -5v84q0 116 -27 158q-38 59 -172 59q-102 0 -151 -38q-35 -26 -41 -144h-105q-18 97 -18 158q0 47 24.5 75t75.5 48q45 17 114 29t128 12q209 0 280 -84q32 -36 45 -87.5t13 -135.5q0 -25 -1 -212.5 t-1 -197.5q0 -80 20 -107.5t68 -27.5q44 0 80 8v-111q-72 -32 -162 -32q-127 0 -152 116q-114 -123 -286 -123q-83 0 -153 28.5t-117.5 94t-47.5 158.5zM233 1272q0 43 29 72.5t74 29.5q46 0 74 -29t28 -73q0 -47 -29 -78t-77 -31q-42 0 -70.5 31t-28.5 78zM266 272 q0 -56 28.5 -92.5t67.5 -49.5t87 -13q127 0 229 78v213q-66 4 -127 4q-82 0 -139.5 -10.5t-88.5 -30.5t-44 -44t-13 -55zM563 1272q0 44 29.5 73t75.5 29q44 0 73 -29.5t29 -72.5q0 -46 -29.5 -77.5t-76.5 -31.5q-42 0 -71.5 31t-29.5 78z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1054" d="M92 258q0 64 21.5 112t72.5 86.5t143.5 58.5t225.5 20q84 0 123 -5v84q0 116 -27 158q-38 59 -172 59q-102 0 -151 -38q-35 -26 -41 -144h-105q-18 97 -18 158q0 47 24.5 75t75.5 48q45 17 114 29t128 12q209 0 280 -84q32 -36 45 -87.5t13 -135.5q0 -25 -1 -212.5 t-1 -197.5q0 -80 20 -107.5t68 -27.5q44 0 80 8v-111q-72 -32 -162 -32q-127 0 -152 116q-114 -123 -286 -123q-83 0 -153 28.5t-117.5 94t-47.5 158.5zM266 272q0 -56 28.5 -92.5t67.5 -49.5t87 -13q127 0 229 78v213q-66 4 -127 4q-82 0 -139.5 -10.5t-88.5 -30.5t-44 -44 t-13 -55zM317 1255q0 84 56 138.5t135 54.5q85 0 137.5 -51t52.5 -137q0 -82 -55.5 -135.5t-136.5 -53.5q-79 0 -134 51t-55 133zM401 1260q0 -49 29.5 -80t75.5 -31q47 0 76.5 30t29.5 81q0 54 -30 83t-76 29q-44 0 -74.5 -29.5t-30.5 -82.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1579" d="M92 272q0 65 24 115t79 89.5t153 60t236 20.5h86v61q0 109 -29 154q-42 62 -162 62q-103 0 -151 -39q-35 -28 -41 -140h-107q-18 97 -18 152q0 86 102 123q112 41 234 41q121 0 195 -35.5t102 -120.5q53 76 139 116t190 40q81 0 145.5 -24t106 -63t69 -92t39 -108 t11.5 -115q0 -85 -29 -112q-19 -19 -86 -19h-549v-20q0 -128 79 -212.5t233 -84.5q86 0 154 27.5t155 84.5l64 -102q-192 -160 -398 -160q-222 0 -342 150q-158 -146 -358 -146q-62 0 -118.5 17.5t-104 52t-75.5 93.5t-28 134zM266 281q0 -87 56.5 -127.5t134.5 -40.5 q135 0 264 98q-47 83 -47 225h-103q-116 0 -185 -20t-94.5 -52.5t-25.5 -82.5zM840 563l487 6v15q0 247 -231 247q-105 0 -176.5 -66t-79.5 -202z" />
+<glyph unicode="&#xe7;" horiz-adv-x="985" d="M94 455q0 236 134.5 376t363.5 140q102 0 184 -21q54 -16 79.5 -44.5t25.5 -80.5q0 -83 -15 -168h-108q-8 107 -46 140.5t-141 33.5q-143 0 -223 -96.5t-80 -269.5q0 -160 79.5 -251t227.5 -91q149 0 293 102l62 -100q-72 -68 -169.5 -109t-203.5 -45q-16 -43 -16 -61 q0 -30 34 -47q77 -40 108.5 -77.5t31.5 -92.5q0 -104 -92.5 -166.5t-249.5 -87.5l-21 90q110 23 162.5 56t52.5 89q0 33 -22 58t-68 51q-41 21 -41 59q0 43 37 133q-172 21 -275.5 147t-103.5 333z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1030" d="M94 455q0 125 36.5 224.5t101 162.5t150 96t187.5 33q82 0 147.5 -21t107.5 -56t69.5 -83.5t39 -101t11.5 -111.5q0 -92 -26 -115q-20 -20 -89 -20h-561v-25q0 -139 80.5 -227t235.5 -88q158 0 317 110l66 -106q-177 -156 -412 -156q-148 0 -254 65t-156.5 172.5 t-50.5 246.5zM276 588l500 6v22q0 218 -227 218q-106 0 -183 -63t-90 -183zM322 1423q0 31 25.5 53.5t55.5 22.5q28 0 49 -17.5t56 -72.5l180 -287l-63 -51l-240 240q-35 36 -49 60.5t-14 51.5z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1030" d="M94 455q0 125 36.5 224.5t101 162.5t150 96t187.5 33q82 0 147.5 -21t107.5 -56t69.5 -83.5t39 -101t11.5 -111.5q0 -92 -26 -115q-20 -20 -89 -20h-561v-25q0 -139 80.5 -227t235.5 -88q158 0 317 110l66 -106q-177 -156 -412 -156q-148 0 -254 65t-156.5 172.5 t-50.5 246.5zM276 588l500 6v22q0 218 -227 218q-106 0 -183 -63t-90 -183zM434 1122l178 287q34 54 56 72t51 18t55.5 -22.5t26.5 -53.5q0 -26 -15 -50t-51 -62l-241 -240z" />
+<glyph unicode="&#xea;" horiz-adv-x="1030" d="M94 455q0 125 36.5 224.5t101 162.5t150 96t187.5 33q82 0 147.5 -21t107.5 -56t69.5 -83.5t39 -101t11.5 -111.5q0 -92 -26 -115q-20 -20 -89 -20h-561v-25q0 -139 80.5 -227t235.5 -88q158 0 317 110l66 -106q-177 -156 -412 -156q-148 0 -254 65t-156.5 172.5 t-50.5 246.5zM266 1092l213 311q31 45 76 45q52 0 80 -43l203 -311l-64 -52l-225 232l-221 -232zM276 588l500 6v22q0 218 -227 218q-106 0 -183 -63t-90 -183z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1030" d="M94 455q0 125 36.5 224.5t101 162.5t150 96t187.5 33q82 0 147.5 -21t107.5 -56t69.5 -83.5t39 -101t11.5 -111.5q0 -92 -26 -115q-20 -20 -89 -20h-561v-25q0 -139 80.5 -227t235.5 -88q158 0 317 110l66 -106q-177 -156 -412 -156q-148 0 -254 65t-156.5 172.5 t-50.5 246.5zM276 588l500 6v22q0 218 -227 218q-106 0 -183 -63t-90 -183zM283 1272q0 43 28.5 72.5t73.5 29.5q46 0 74 -29t28 -73q0 -47 -29 -78t-77 -31q-42 0 -70 31t-28 78zM612 1272q0 44 29 73t76 29q44 0 73 -29.5t29 -72.5q0 -46 -29.5 -77.5t-76.5 -31.5 q-42 0 -71.5 31t-29.5 78z" />
+<glyph unicode="&#xec;" horiz-adv-x="618" d="M35 1423q0 31 25.5 53.5t56.5 22.5q28 0 48.5 -17.5t55.5 -72.5l180 -287l-63 -51l-240 240q-35 36 -49 60.5t-14 51.5zM66 -2v111q126 10 143 30q16 19 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 225 64q51 0 79.5 -29.5t28.5 -112.5q0 -85 -4 -280.5 t-4 -286.5q0 -84 19 -113q9 -12 37 -18t102 -12v-111q-176 4 -256 4q-137 0 -227 -4z" />
+<glyph unicode="&#xed;" horiz-adv-x="618" d="M66 -2v111q126 10 143 30q16 19 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 225 64q51 0 79.5 -29.5t28.5 -112.5q0 -85 -4 -280.5t-4 -286.5q0 -84 19 -113q9 -12 37 -18t102 -12v-111q-176 4 -256 4q-137 0 -227 -4zM121 1122l178 287q34 54 56 72t51 18 t55 -22.5t26 -53.5q0 -27 -14.5 -51t-50.5 -61l-242 -240z" />
+<glyph unicode="&#xee;" horiz-adv-x="618" d="M-14 1092l213 311q31 45 75 45q52 0 80 -43l203 -311l-63 -52l-226 232l-221 -232zM66 -2v111q126 10 143 30q16 19 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 225 64q51 0 79.5 -29.5t28.5 -112.5q0 -85 -4 -280.5t-4 -286.5q0 -84 19 -113q9 -12 37 -18 t102 -12v-111q-176 4 -256 4q-137 0 -227 -4z" />
+<glyph unicode="&#xef;" horiz-adv-x="618" d="M6 1272q0 43 29 72.5t74 29.5q46 0 74 -29t28 -73q0 -47 -29.5 -78t-77.5 -31q-42 0 -70 31t-28 78zM66 -2v111q126 10 143 30q16 19 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 225 64q51 0 79.5 -29.5t28.5 -112.5q0 -85 -4 -280.5t-4 -286.5 q0 -84 19 -113q9 -12 37 -18t102 -12v-111q-176 4 -256 4q-137 0 -227 -4zM336 1272q0 44 29 73t75 29q44 0 73.5 -29.5t29.5 -72.5q0 -46 -30 -77.5t-77 -31.5q-42 0 -71 31t-29 78z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1093" d="M94 440q0 208 122 343t325 135q70 0 138.5 -29.5t104.5 -85.5q-54 183 -170 317l-237 -135l-49 82l223 131q-108 126 -293 209l61 102q202 -75 361 -225l176 100l49 -84l-157 -92q129 -144 191 -317.5t62 -396.5q0 -246 -126 -384.5t-336 -138.5q-206 0 -325.5 131.5 t-119.5 337.5zM268 475q0 -175 77 -266.5t202 -91.5q126 0 202 83t76 230q0 165 -70.5 259.5t-213.5 94.5q-118 0 -195.5 -84.5t-77.5 -224.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1228" d="M66 -2v111q126 10 143 30q16 22 16 111v389q0 96 -18 128t-86 32q-27 0 -55 -4v102q112 64 217 64q47 0 75 -29t31 -111q69 68 167.5 108t197.5 40q59 0 109.5 -18.5t80.5 -49.5q34 -39 49 -101.5t15 -168.5v-381q0 -76 14 -100q10 -16 40 -25t112 -16v-111 q-172 4 -240 4q-66 0 -238 -4v111q65 6 91.5 12t35.5 18q17 20 17 115v338q0 124 -29 162q-39 53 -149 53q-66 0 -142 -20.5t-129 -55.5v-479q0 -91 19 -115q9 -12 33.5 -17t95.5 -11v-111q-176 4 -246 4q-137 0 -227 -4zM303 1135q26 98 71 161.5t107 63.5q47 0 115 -31 l55 -26q59 -27 90 -27q27 0 50 25.5t49 80.5l73 -22q-26 -111 -69.5 -170.5t-95.5 -59.5q-42 0 -132 37l-51 25q-45 22 -88 22q-32 0 -53 -22.5t-49 -81.5z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1120" d="M94 467q0 233 132 368.5t349 135.5q230 0 340.5 -127t110.5 -357q0 -127 -36 -227t-99.5 -162.5t-147 -94.5t-182.5 -32q-229 0 -348 134t-119 362zM268 487q0 -372 295 -372q140 0 215.5 90t75.5 268q0 184 -72.5 271t-214.5 87q-145 0 -222 -89.5t-77 -254.5zM336 1423 q0 31 25.5 53.5t56.5 22.5q28 0 48.5 -17.5t55.5 -72.5l180 -287l-63 -51l-240 240q-35 36 -49 60.5t-14 51.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1120" d="M94 467q0 233 132 368.5t349 135.5q230 0 340.5 -127t110.5 -357q0 -127 -36 -227t-99.5 -162.5t-147 -94.5t-182.5 -32q-229 0 -348 134t-119 362zM268 487q0 -372 295 -372q140 0 215.5 90t75.5 268q0 184 -72.5 271t-214.5 87q-145 0 -222 -89.5t-77 -254.5zM444 1122 l179 287q35 54 56.5 72t49.5 18q29 0 55.5 -22.5t26.5 -53.5q0 -26 -15 -50t-51 -62l-241 -240z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1120" d="M94 467q0 233 132 368.5t349 135.5q230 0 340.5 -127t110.5 -357q0 -127 -36 -227t-99.5 -162.5t-147 -94.5t-182.5 -32q-229 0 -348 134t-119 362zM268 487q0 -372 295 -372q140 0 215.5 90t75.5 268q0 184 -72.5 271t-214.5 87q-145 0 -222 -89.5t-77 -254.5zM285 1092 l213 311q31 45 75 45q52 0 80 -43l203 -311l-63 -52l-226 232l-221 -232z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1120" d="M94 467q0 233 132 368.5t349 135.5q230 0 340.5 -127t110.5 -357q0 -127 -36 -227t-99.5 -162.5t-147 -94.5t-182.5 -32q-229 0 -348 134t-119 362zM258 1135q26 98 71 161.5t107 63.5q47 0 115 -31l55 -26q59 -27 90 -27q27 0 50 25.5t49 80.5l73 -22 q-26 -111 -70 -170.5t-96 -59.5q-41 0 -131 37l-51 25q-45 22 -88 22q-32 0 -53 -22.5t-49 -81.5zM268 487q0 -372 295 -372q140 0 215.5 90t75.5 268q0 184 -72.5 271t-214.5 87q-145 0 -222 -89.5t-77 -254.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1120" d="M94 467q0 233 132 368.5t349 135.5q230 0 340.5 -127t110.5 -357q0 -127 -36 -227t-99.5 -162.5t-147 -94.5t-182.5 -32q-229 0 -348 134t-119 362zM268 487q0 -372 295 -372q140 0 215.5 90t75.5 268q0 184 -72.5 271t-214.5 87q-145 0 -222 -89.5t-77 -254.5zM299 1272 q0 43 28.5 72.5t73.5 29.5q46 0 74.5 -29t28.5 -73q0 -47 -29.5 -78t-77.5 -31q-42 0 -70 31t-28 78zM629 1272q0 44 29 73t75 29q44 0 73.5 -29.5t29.5 -72.5q0 -46 -30 -77.5t-77 -31.5q-42 0 -71 31t-29 78z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1210" d="M139 573v144h930v-144h-930zM500 319q0 45 29.5 76t74.5 31q44 0 73.5 -31t29.5 -78q0 -46 -29.5 -78t-73.5 -32q-46 0 -75 32t-29 80zM500 975q0 44 29.5 76t74.5 32q44 0 73.5 -32.5t29.5 -79.5q0 -46 -29.5 -77.5t-73.5 -31.5q-47 0 -75.5 31.5t-28.5 81.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1120" d="M94 467q0 233 132 368.5t349 135.5q143 0 240 -51l92 131l82 -58l-92 -129q129 -123 129 -377q0 -127 -36 -227t-99.5 -162.5t-147 -94.5t-182.5 -32q-148 0 -256 60l-86 -123l-80 55l88 125q-133 130 -133 379zM268 487q0 -170 60 -258l395 562q-59 36 -156 36 q-145 0 -222 -88t-77 -252zM397 158q64 -41 166 -41q140 0 215.5 89.5t75.5 266.5q0 160 -57 248z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1200" d="M41 795v102q112 64 221 64q56 0 82.5 -30t26.5 -114q0 -22 -2 -210.5t-2 -268.5q0 -112 42.5 -160.5t145.5 -48.5q68 0 138.5 24t125.5 62v424q0 98 -19 129t-91 31q-28 0 -60 -4v102q110 64 236 64q52 0 78 -32t26 -118q0 -11 -2 -233.5t-2 -327.5q0 -79 18 -105t70 -26 q43 0 76 8v-111q-77 -32 -180 -32q-56 0 -96 30.5t-48 100.5q-139 -142 -340 -142q-71 0 -131 25.5t-94 69.5q-32 44 -45.5 100t-13.5 151v320q0 95 -18.5 127.5t-84.5 32.5q-8 0 -30 -2t-27 -2zM326 1423q0 31 25.5 53.5t56.5 22.5q28 0 48.5 -17.5t55.5 -72.5l180 -287 l-63 -51l-240 240q-35 36 -49 60.5t-14 51.5z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1200" d="M41 795v102q112 64 221 64q56 0 82.5 -30t26.5 -114q0 -22 -2 -210.5t-2 -268.5q0 -112 42.5 -160.5t145.5 -48.5q68 0 138.5 24t125.5 62v424q0 98 -19 129t-91 31q-28 0 -60 -4v102q110 64 236 64q52 0 78 -32t26 -118q0 -11 -2 -233.5t-2 -327.5q0 -79 18 -105t70 -26 q43 0 76 8v-111q-77 -32 -180 -32q-56 0 -96 30.5t-48 100.5q-139 -142 -340 -142q-71 0 -131 25.5t-94 69.5q-32 44 -45.5 100t-13.5 151v320q0 95 -18.5 127.5t-84.5 32.5q-8 0 -30 -2t-27 -2zM446 1122l179 287q35 54 56.5 72t49.5 18q29 0 55.5 -22.5t26.5 -53.5 q0 -27 -14.5 -51t-50.5 -61l-242 -240z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1200" d="M41 795v102q112 64 221 64q56 0 82.5 -30t26.5 -114q0 -22 -2 -210.5t-2 -268.5q0 -112 42.5 -160.5t145.5 -48.5q68 0 138.5 24t125.5 62v424q0 98 -19 129t-91 31q-28 0 -60 -4v102q110 64 236 64q52 0 78 -32t26 -118q0 -11 -2 -233.5t-2 -327.5q0 -79 18 -105t70 -26 q43 0 76 8v-111q-77 -32 -180 -32q-56 0 -96 30.5t-48 100.5q-139 -142 -340 -142q-71 0 -131 25.5t-94 69.5q-32 44 -45.5 100t-13.5 151v320q0 95 -18.5 127.5t-84.5 32.5q-8 0 -30 -2t-27 -2zM281 1092l213 311q31 45 75 45q52 0 80 -43l203 -311l-64 -52l-225 232 l-221 -232z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1200" d="M41 795v102q112 64 221 64q56 0 82.5 -30t26.5 -114q0 -22 -2 -210.5t-2 -268.5q0 -112 42.5 -160.5t145.5 -48.5q68 0 138.5 24t125.5 62v424q0 98 -19 129t-91 31q-28 0 -60 -4v102q110 64 236 64q52 0 78 -32t26 -118q0 -11 -2 -233.5t-2 -327.5q0 -79 18 -105t70 -26 q43 0 76 8v-111q-77 -32 -180 -32q-56 0 -96 30.5t-48 100.5q-139 -142 -340 -142q-71 0 -131 25.5t-94 69.5q-32 44 -45.5 100t-13.5 151v320q0 95 -18.5 127.5t-84.5 32.5q-8 0 -30 -2t-27 -2zM291 1272q0 43 28.5 72.5t73.5 29.5q46 0 74.5 -29t28.5 -73q0 -47 -29.5 -78 t-77.5 -31q-42 0 -70 31t-28 78zM621 1272q0 44 29 73t75 29q44 0 73 -29.5t29 -72.5q0 -46 -29.5 -77.5t-76.5 -31.5q-42 0 -71 31t-29 78z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1089" d="M10 834v110q136 -4 258 -4q69 0 205 4v-110q-15 -1 -88 -11q-47 -8 -47 -51q0 -28 29 -94q158 -361 231 -545q30 85 89 254.5t89 253.5q31 89 31 141q0 14 -9 25t-22 14q-50 10 -108 13v110q132 -4 213 -4q78 0 200 4v-110q-62 -3 -90 -25q-19 -16 -32.5 -44t-43.5 -106 l-241 -653q-107 -287 -160 -391q-49 -96 -113.5 -136t-152.5 -40q-176 0 -176 135q0 64 12 123h98q13 -73 24 -90q20 -27 70 -27q68 0 115 86q53 89 144 332q-54 0 -84 68l-277 628q-44 96 -72 117q-20 16 -92 23zM463 1122l178 287q34 54 56 72t51 18t55 -22.5t26 -53.5 q0 -27 -14.5 -51t-50.5 -61l-242 -240z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1169" d="M18 1333v103q119 61 230 61q56 0 81 -30.5t25 -114.5q0 -62 -3 -230t-3 -293q158 142 340 142q186 0 278.5 -131.5t92.5 -352.5q0 -230 -131 -370t-375 -140q-85 0 -203 25v-252q0 -113 25 -141q8 -10 19.5 -15t52 -10.5t114.5 -9.5v-111q-240 5 -270 5q-31 0 -266 -5 v111q74 6 104 14t41 23q12 16 12 106v1413q0 159 -26 185q-24 22 -76 22q-12 0 -62 -4zM350 154q72 -33 217 -33q153 0 231.5 95t78.5 255q0 72 -13.5 131.5t-43.5 109t-85 77.5t-131 28q-61 0 -130.5 -24t-123.5 -62v-577z" />
+<glyph unicode="&#xff;" horiz-adv-x="1089" d="M10 834v110q136 -4 258 -4q69 0 205 4v-110q-15 -1 -88 -11q-47 -8 -47 -51q0 -28 29 -94q158 -361 231 -545q30 85 89 254.5t89 253.5q31 89 31 141q0 14 -9 25t-22 14q-50 10 -108 13v110q132 -4 213 -4q78 0 200 4v-110q-62 -3 -90 -25q-19 -16 -32.5 -44t-43.5 -106 l-241 -653q-107 -287 -160 -391q-49 -96 -113.5 -136t-152.5 -40q-176 0 -176 135q0 64 12 123h98q13 -73 24 -90q20 -27 70 -27q68 0 115 86q53 89 144 332q-54 0 -84 68l-277 628q-44 96 -72 117q-20 16 -92 23zM307 1272q0 43 29 72.5t74 29.5q46 0 74 -29t28 -73 q0 -47 -29 -78t-77 -31q-42 0 -70.5 31t-28.5 78zM637 1272q0 44 29 73t75 29q44 0 73.5 -29.5t29.5 -72.5q0 -46 -30 -77.5t-77 -31.5q-42 0 -71 31t-29 78z" />
+<glyph unicode="&#x152;" horiz-adv-x="2011" d="M98 674q0 152 44 283t127 230.5t214 156.5t295 57q57 0 201 -8.5t184 -8.5h568q74 0 101.5 -25.5t27.5 -74.5q0 -97 -19 -237h-106q-15 141 -52 167q-22 17 -68.5 23t-164.5 6h-229v-461h145q83 0 116 7t52 28q32 45 37 123h100q-2 -53 -2 -219q0 -143 2 -227h-94 q-10 80 -39 127q-8 11 -21 17.5t-40.5 9t-46 3t-66.5 0.5h-143v-418q0 -44 13 -62.5t44 -23.5q71 -8 188 -8q138 0 201 13.5t90 42.5q46 46 78 172h102q-4 -209 -36 -308q-19 -59 -158 -59h-588q-43 0 -187 -6t-218 -6q-133 0 -241 33.5t-184 94t-127.5 146.5t-75.5 189 t-24 223zM297 696q0 -260 121 -412.5t352 -152.5q220 0 254 66q12 24 12 120v742q0 68 -5 101.5t-21 51.5q-21 24 -75.5 33.5t-160.5 9.5q-150 0 -259 -74t-163.5 -199.5t-54.5 -285.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="1744" d="M94 467q0 234 129 369t344 135q276 0 371 -195q52 97 143.5 146t212.5 49q100 0 173.5 -30.5t114.5 -84.5t60 -118t19 -140q0 -92 -27 -115q-20 -20 -88 -20h-536v-25q0 -141 76 -229t227 -88q87 0 156 28t151 84l63 -102q-188 -160 -399 -160q-133 0 -225.5 54 t-138.5 149q-117 -203 -369 -203q-227 0 -342 133.5t-115 362.5zM268 487q0 -372 287 -372q137 0 210 90t73 268q0 185 -68 271.5t-209 86.5q-142 0 -217.5 -89.5t-75.5 -254.5zM1018 588l475 6v16q0 104 -51 164t-176 60q-102 0 -168.5 -62.5t-79.5 -183.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="1280" d="M10 1276v110q234 -4 256 -4q67 0 275 4v-110q-72 -2 -108.5 -10t-45 -17.5t-8.5 -27.5q0 -26 43 -103q34 -57 246 -426q159 278 254 436q41 67 41 101q0 25 -32 35.5t-128 11.5v110q98 -4 272 -4q109 0 195 4v-110q-58 -3 -99 -31q-30 -23 -96 -131l-346 -549v-317 q0 -82 8 -98q9 -19 44.5 -27t140.5 -12v-113q-218 4 -275 4q-89 0 -289 -4v113q102 4 131.5 10t40.5 22q13 21 13 105v315l-330 549q-8 12 -20 32.5t-17 29t-13.5 21.5t-13 19t-10.5 13.5t-11 12t-11 7.5q-38 24 -107 29zM371 1628q0 45 28.5 75t73.5 30q46 0 74 -30t28 -75 q0 -44 -29 -75t-75 -31q-43 0 -71.5 30t-28.5 76zM727 1628q0 45 30 75t77 30q44 0 72 -30t28 -75q0 -44 -29.5 -75t-75.5 -31q-43 0 -72.5 30.5t-29.5 75.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M12 1092l213 311q31 45 76 45q52 0 80 -43l203 -311l-64 -52l-225 232l-221 -232z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-6 1135q26 98 71 161.5t107 63.5q47 0 115 -31l55 -26q59 -27 90 -27q27 0 49.5 25.5t48.5 80.5l74 -22q-26 -111 -70 -170.5t-96 -59.5q-41 0 -131 37l-51 25q-45 22 -88 22q-32 0 -53 -22.5t-49 -81.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="925" />
+<glyph unicode="&#x2001;" horiz-adv-x="1851" />
+<glyph unicode="&#x2002;" horiz-adv-x="925" />
+<glyph unicode="&#x2003;" horiz-adv-x="1851" />
+<glyph unicode="&#x2004;" horiz-adv-x="617" />
+<glyph unicode="&#x2005;" horiz-adv-x="462" />
+<glyph unicode="&#x2006;" horiz-adv-x="308" />
+<glyph unicode="&#x2007;" horiz-adv-x="308" />
+<glyph unicode="&#x2008;" horiz-adv-x="231" />
+<glyph unicode="&#x2009;" horiz-adv-x="370" />
+<glyph unicode="&#x200a;" horiz-adv-x="102" />
+<glyph unicode="&#x2010;" horiz-adv-x="546" d="M57 430v148h428v-148h-428z" />
+<glyph unicode="&#x2011;" horiz-adv-x="546" d="M57 430v148h428v-148h-428z" />
+<glyph unicode="&#x2012;" horiz-adv-x="546" d="M57 430v148h428v-148h-428z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1187" d="M90 438v133h1004v-133h-1004z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M90 438v133h1497v-133h-1497z" />
+<glyph unicode="&#x2018;" horiz-adv-x="425" d="M59 1055q0 235 303 422l50 -74q-193 -125 -193 -238q0 -46 45 -61q43 -14 64.5 -37t21.5 -72q0 -51 -37 -83.5t-94 -32.5q-72 0 -116 48.5t-44 127.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="425" d="M12 930q193 128 193 237q0 50 -45 64q-42 14 -65 37t-23 71q0 50 38 83.5t93 33.5q72 0 115.5 -48.5t43.5 -129.5q0 -237 -299 -418z" />
+<glyph unicode="&#x201a;" horiz-adv-x="425" d="M12 -309q193 122 193 235q0 46 -45 62q-42 14 -65 37t-23 71q0 51 37.5 84t93.5 33q74 0 116.5 -47t42.5 -131q0 -235 -299 -416z" />
+<glyph unicode="&#x201c;" horiz-adv-x="788" d="M59 1055q0 235 303 422l50 -74q-193 -125 -193 -238q0 -46 45 -61q43 -14 64.5 -37t21.5 -72q0 -51 -37 -83.5t-94 -32.5q-72 0 -116 48.5t-44 127.5zM424 1055q0 236 303 422l47 -74q-190 -123 -190 -238q0 -47 45 -61q42 -15 64 -37.5t22 -71.5q0 -51 -37 -83.5 t-94 -32.5q-72 0 -116 48.5t-44 127.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="788" d="M12 930q193 128 193 237q0 48 -45 64q-41 12 -64.5 36t-23.5 72q0 50 38 83.5t93 33.5q73 0 116 -48t43 -130q0 -237 -299 -418zM377 930q192 129 192 237q0 47 -47 64q-41 12 -63.5 36t-22.5 72q0 50 37 83.5t94 33.5q72 0 116 -48.5t44 -129.5q0 -238 -303 -418z" />
+<glyph unicode="&#x201e;" horiz-adv-x="788" d="M12 -309q193 122 193 235q0 46 -45 62q-42 14 -65 37t-23 71q0 51 37.5 84t93.5 33q74 0 116.5 -47t42.5 -131q0 -235 -299 -416zM377 -309q192 123 192 235q0 45 -47 62q-42 14 -64 37t-22 71q0 51 37 84t94 33q74 0 117 -47t43 -131q0 -236 -303 -416z" />
+<glyph unicode="&#x2022;" horiz-adv-x="710" d="M78 567q0 120 77 198.5t193 78.5q125 0 205 -77t80 -194q0 -131 -79 -211.5t-200 -80.5q-119 0 -197.5 82t-78.5 204z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1730" d="M158 115q0 58 36.5 96.5t92.5 38.5q59 0 97 -36t38 -93q0 -65 -36.5 -102t-96.5 -37q-57 0 -94 37.5t-37 95.5zM733 115q0 58 36.5 96.5t92.5 38.5q59 0 96 -36t37 -93q0 -65 -36 -102t-95 -37q-57 0 -94 37.5t-37 95.5zM1311 115q0 59 37 97t94 38q59 0 96 -36t37 -93 q0 -65 -36 -102t-95 -37q-58 0 -95.5 37t-37.5 96z" />
+<glyph unicode="&#x202f;" horiz-adv-x="370" />
+<glyph unicode="&#x2039;" horiz-adv-x="565" d="M63 459q0 43 37 76l340 321l72 -65l-272 -328l270 -340l-72 -70l-344 332q-31 27 -31 74z" />
+<glyph unicode="&#x203a;" horiz-adv-x="565" d="M53 121l275 325l-275 340l76 70l340 -332q33 -29 33 -75q0 -40 -39 -76l-338 -320z" />
+<glyph unicode="&#x205f;" horiz-adv-x="462" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1411" d="M147 504v98h144v43q0 35 4 105h-148v96h160q46 249 201 387.5t395 138.5q175 0 291 -47q45 -18 70.5 -49t25.5 -72q0 -81 -16 -217h-105q-10 127 -45 172q-56 66 -235 66q-152 0 -255 -96.5t-138 -282.5h483v-96h-498q-2 -29 -2 -88v-60h500v-98h-490q31 -197 135.5 -290 t262.5 -93q83 0 147 18t92 45q34 34 72 160h109q-10 -151 -27 -217q-20 -71 -121 -111q-133 -45 -295 -45q-237 0 -385 137.5t-180 395.5h-152z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1521" d="M55 1327q0 27 12.5 42t47.5 15h452q58 0 58 -53q0 -51 -4 -125h-52q-8 75 -26 88q-12 9 -39 12t-105 3v-396q0 -51 4 -59q9 -12 84 -16v-62q-41 2 -139 2q-108 0 -147 -2v62q74 2 82 16q8 8 8 57v398q-84 0 -111 -3t-39 -12q-23 -14 -30 -88h-48q-8 49 -8 121zM686 776 v62q63 3 74.5 14t11.5 74q1 84 2 150t2 99.5t1.5 56t0.5 31.5v13q0 21 -8 33q-10 10 -76 12v63q57 -2 123 -2q69 0 98 2q113 -266 152 -370q57 140 158 370q37 -2 110 -2q64 0 109 2v-63q-71 -3 -76 -12q-8 -11 -8 -49q0 -39 4 -340q0 -57 6 -66q4 -7 18.5 -10t61.5 -6v-62 q-45 2 -135 2q-93 0 -146 -2v62q71 5 78 16q8 8 8 47q0 277 2 367q-45 -111 -161 -373q-14 -33 -43 -33q-31 0 -47 35q-99 233 -154 373q0 -65 1 -221t1 -158v-20.5t3.5 -14t5 -9t10.5 -4.5t15 -2t23 -1t29 -2v-62q-41 2 -117 2q-94 0 -137 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="942" d="M0 0v942h942v-942h-942z" />
+<hkern u1="&#x20;" u2="&#x2026;" k="102" />
+<hkern u1="&#x20;" u2="&#x178;" k="29" />
+<hkern u1="&#x20;" u2="&#xdd;" k="29" />
+<hkern u1="&#x20;" u2="&#xc5;" k="45" />
+<hkern u1="&#x20;" u2="&#xc4;" k="45" />
+<hkern u1="&#x20;" u2="&#xc3;" k="45" />
+<hkern u1="&#x20;" u2="&#xc2;" k="45" />
+<hkern u1="&#x20;" u2="&#xc1;" k="45" />
+<hkern u1="&#x20;" u2="&#xc0;" k="45" />
+<hkern u1="&#x20;" u2="Y" k="29" />
+<hkern u1="&#x20;" u2="W" k="166" />
+<hkern u1="&#x20;" u2="V" k="-29" />
+<hkern u1="&#x20;" u2="A" k="45" />
+<hkern u1="&#x20;" u2="&#x2e;" k="102" />
+<hkern u1="&#x20;" u2="&#x2c;" k="102" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-25" />
+<hkern u1="&#x21;" u2="]" k="-25" />
+<hkern u1="&#x21;" u2="&#x29;" k="-25" />
+<hkern u1="&#x22;" u2="&#x31;" k="109" />
+<hkern u1="&#x26;" u2="[" k="57" />
+<hkern u1="&#x27;" u2="&#x31;" k="109" />
+<hkern u1="&#x28;" u2="y" k="-41" />
+<hkern u1="&#x28;" u2="W" k="-61" />
+<hkern u1="&#x28;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="127" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="127" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2d;" u2="W" k="102" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="147" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="147" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="109" />
+<hkern u1="&#x2f;" u2="&#x153;" k="121" />
+<hkern u1="&#x2f;" u2="&#x152;" k="82" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-41" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="121" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="121" />
+<hkern u1="&#x2f;" u2="&#xea;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="102" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd8;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd6;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc7;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="133" />
+<hkern u1="&#x2f;" u2="&#x7b;" k="102" />
+<hkern u1="&#x2f;" u2="q" k="121" />
+<hkern u1="&#x2f;" u2="o" k="121" />
+<hkern u1="&#x2f;" u2="l" k="-41" />
+<hkern u1="&#x2f;" u2="k" k="-41" />
+<hkern u1="&#x2f;" u2="h" k="-41" />
+<hkern u1="&#x2f;" u2="e" k="121" />
+<hkern u1="&#x2f;" u2="d" k="121" />
+<hkern u1="&#x2f;" u2="c" k="121" />
+<hkern u1="&#x2f;" u2="b" k="-41" />
+<hkern u1="&#x2f;" u2="a" k="102" />
+<hkern u1="&#x2f;" u2="V" k="-59" />
+<hkern u1="&#x2f;" u2="R" k="-18" />
+<hkern u1="&#x2f;" u2="Q" k="82" />
+<hkern u1="&#x2f;" u2="P" k="-18" />
+<hkern u1="&#x2f;" u2="O" k="82" />
+<hkern u1="&#x2f;" u2="N" k="-18" />
+<hkern u1="&#x2f;" u2="M" k="-18" />
+<hkern u1="&#x2f;" u2="L" k="-18" />
+<hkern u1="&#x2f;" u2="K" k="-18" />
+<hkern u1="&#x2f;" u2="I" k="-18" />
+<hkern u1="&#x2f;" u2="H" k="-18" />
+<hkern u1="&#x2f;" u2="G" k="82" />
+<hkern u1="&#x2f;" u2="F" k="-18" />
+<hkern u1="&#x2f;" u2="E" k="-18" />
+<hkern u1="&#x2f;" u2="D" k="-18" />
+<hkern u1="&#x2f;" u2="C" k="82" />
+<hkern u1="&#x2f;" u2="B" k="-18" />
+<hkern u1="&#x2f;" u2="A" k="133" />
+<hkern u1="&#x30;" u2="&#x153;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-70" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-70" />
+<hkern u1="&#x30;" u2="&#xea;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-70" />
+<hkern u1="&#x30;" u2="q" k="-70" />
+<hkern u1="&#x30;" u2="o" k="-70" />
+<hkern u1="&#x30;" u2="e" k="-70" />
+<hkern u1="&#x30;" u2="d" k="-70" />
+<hkern u1="&#x30;" u2="c" k="-70" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-61" />
+<hkern u1="&#x30;" u2="&#x25;" k="-100" />
+<hkern u1="&#x31;" u2="&#x2f;" k="41" />
+<hkern u1="&#x31;" u2="&#x27;" k="223" />
+<hkern u1="&#x31;" u2="&#x22;" k="223" />
+<hkern u1="&#x33;" g2="uniFB04" k="-61" />
+<hkern u1="&#x33;" g2="uniFB03" k="-61" />
+<hkern u1="&#x33;" g2="uniFB02" k="-61" />
+<hkern u1="&#x33;" g2="uniFB01" k="-61" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-61" />
+<hkern u1="&#x33;" u2="&#x7d;" k="41" />
+<hkern u1="&#x33;" u2="f" k="-61" />
+<hkern u1="&#x33;" u2="]" k="41" />
+<hkern u1="&#x33;" u2="&#x29;" k="41" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-131" />
+<hkern u1="&#x34;" u2="r" k="-131" />
+<hkern u1="&#x34;" u2="p" k="-131" />
+<hkern u1="&#x34;" u2="n" k="-131" />
+<hkern u1="&#x34;" u2="m" k="-131" />
+<hkern u1="&#x35;" u2="&#xe6;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe5;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe4;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe3;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe2;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe1;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe0;" k="-41" />
+<hkern u1="&#x35;" u2="a" k="-41" />
+<hkern u1="&#x36;" u2="]" k="-41" />
+<hkern u1="&#x37;" u2="&#x2026;" k="285" />
+<hkern u1="&#x37;" u2="&#xb0;" k="-61" />
+<hkern u1="&#x37;" u2="&#x2e;" k="285" />
+<hkern u1="&#x37;" u2="&#x2c;" k="305" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-82" />
+<hkern u1="&#x3a;" u2="&#x33;" k="-63" />
+<hkern u1="&#x3a;" u2="&#x31;" k="109" />
+<hkern u1="&#x3f;" u2="&#x203a;" k="-20" />
+<hkern u1="&#x3f;" u2="&#xbb;" k="-20" />
+<hkern u1="&#x3f;" u2="&#x3b;" k="-37" />
+<hkern u1="&#x3f;" u2="&#x3a;" k="-31" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="109" />
+<hkern u1="A" u2="&#xb5;" k="20" />
+<hkern u1="A" u2="W" k="82" />
+<hkern u1="A" u2="G" k="47" />
+<hkern u1="A" u2="&#x2f;" k="-100" />
+<hkern u1="B" u2="&#xee;" k="-12" />
+<hkern u1="B" u2="&#xec;" k="-6" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="y" k="27" />
+<hkern u1="B" u2="W" k="47" />
+<hkern u1="C" u2="&#xef;" k="-16" />
+<hkern u1="C" u2="&#xee;" k="-43" />
+<hkern u1="C" u2="&#xec;" k="8" />
+<hkern u1="C" u2="y" k="66" />
+<hkern u1="C" u2="e" k="37" />
+<hkern u1="C" u2="d" k="51" />
+<hkern u1="C" u2="W" k="14" />
+<hkern u1="C" u2="C" k="41" />
+<hkern u1="D" u2="&#xef;" k="-10" />
+<hkern u1="D" u2="&#xee;" k="-41" />
+<hkern u1="D" u2="&#xec;" k="-47" />
+<hkern u1="D" u2="&#xd0;" k="-20" />
+<hkern u1="D" u2="&#xc6;" k="184" />
+<hkern u1="D" u2="&#xc5;" k="76" />
+<hkern u1="D" u2="&#xc4;" k="76" />
+<hkern u1="D" u2="&#xc3;" k="76" />
+<hkern u1="D" u2="&#xc2;" k="76" />
+<hkern u1="D" u2="&#xc1;" k="76" />
+<hkern u1="D" u2="&#xc0;" k="76" />
+<hkern u1="D" u2="W" k="55" />
+<hkern u1="D" u2="A" k="76" />
+<hkern u1="E" u2="&#xb5;" k="20" />
+<hkern u1="E" u2="y" k="61" />
+<hkern u1="E" u2="W" k="33" />
+<hkern u1="F" g2="uniFB04" k="41" />
+<hkern u1="F" g2="uniFB03" k="41" />
+<hkern u1="F" g2="uniFB02" k="41" />
+<hkern u1="F" g2="uniFB01" k="41" />
+<hkern u1="F" u2="&#x2026;" k="285" />
+<hkern u1="F" u2="&#x201d;" k="-8" />
+<hkern u1="F" u2="&#x2019;" k="-8" />
+<hkern u1="F" u2="&#x178;" k="33" />
+<hkern u1="F" u2="&#x153;" k="102" />
+<hkern u1="F" u2="&#x152;" k="20" />
+<hkern u1="F" u2="&#xff;" k="106" />
+<hkern u1="F" u2="&#xfe;" k="49" />
+<hkern u1="F" u2="&#xfd;" k="106" />
+<hkern u1="F" u2="&#xfc;" k="76" />
+<hkern u1="F" u2="&#xfb;" k="76" />
+<hkern u1="F" u2="&#xfa;" k="76" />
+<hkern u1="F" u2="&#xf9;" k="76" />
+<hkern u1="F" u2="&#xf8;" k="102" />
+<hkern u1="F" u2="&#xf6;" k="102" />
+<hkern u1="F" u2="&#xf5;" k="102" />
+<hkern u1="F" u2="&#xf4;" k="102" />
+<hkern u1="F" u2="&#xf3;" k="102" />
+<hkern u1="F" u2="&#xf2;" k="102" />
+<hkern u1="F" u2="&#xf1;" k="94" />
+<hkern u1="F" u2="&#xf0;" k="102" />
+<hkern u1="F" u2="&#xef;" k="-4" />
+<hkern u1="F" u2="&#xee;" k="-2" />
+<hkern u1="F" u2="&#xed;" k="88" />
+<hkern u1="F" u2="&#xec;" k="49" />
+<hkern u1="F" u2="&#xeb;" k="102" />
+<hkern u1="F" u2="&#xea;" k="102" />
+<hkern u1="F" u2="&#xe9;" k="102" />
+<hkern u1="F" u2="&#xe8;" k="102" />
+<hkern u1="F" u2="&#xe7;" k="102" />
+<hkern u1="F" u2="&#xe6;" k="129" />
+<hkern u1="F" u2="&#xe5;" k="129" />
+<hkern u1="F" u2="&#xe4;" k="129" />
+<hkern u1="F" u2="&#xe3;" k="129" />
+<hkern u1="F" u2="&#xe2;" k="129" />
+<hkern u1="F" u2="&#xe1;" k="129" />
+<hkern u1="F" u2="&#xe0;" k="129" />
+<hkern u1="F" u2="&#xdf;" k="41" />
+<hkern u1="F" u2="&#xde;" k="4" />
+<hkern u1="F" u2="&#xdd;" k="33" />
+<hkern u1="F" u2="&#xd8;" k="20" />
+<hkern u1="F" u2="&#xd6;" k="20" />
+<hkern u1="F" u2="&#xd5;" k="20" />
+<hkern u1="F" u2="&#xd4;" k="20" />
+<hkern u1="F" u2="&#xd3;" k="20" />
+<hkern u1="F" u2="&#xd2;" k="20" />
+<hkern u1="F" u2="&#xd1;" k="4" />
+<hkern u1="F" u2="&#xd0;" k="4" />
+<hkern u1="F" u2="&#xcf;" k="4" />
+<hkern u1="F" u2="&#xce;" k="4" />
+<hkern u1="F" u2="&#xcd;" k="4" />
+<hkern u1="F" u2="&#xcc;" k="4" />
+<hkern u1="F" u2="&#xcb;" k="4" />
+<hkern u1="F" u2="&#xca;" k="4" />
+<hkern u1="F" u2="&#xc9;" k="4" />
+<hkern u1="F" u2="&#xc8;" k="4" />
+<hkern u1="F" u2="&#xc7;" k="20" />
+<hkern u1="F" u2="&#xc6;" k="231" />
+<hkern u1="F" u2="&#xc5;" k="150" />
+<hkern u1="F" u2="&#xc4;" k="150" />
+<hkern u1="F" u2="&#xc3;" k="150" />
+<hkern u1="F" u2="&#xc2;" k="150" />
+<hkern u1="F" u2="&#xc1;" k="150" />
+<hkern u1="F" u2="&#xc0;" k="150" />
+<hkern u1="F" u2="z" k="94" />
+<hkern u1="F" u2="y" k="57" />
+<hkern u1="F" u2="x" k="96" />
+<hkern u1="F" u2="w" k="82" />
+<hkern u1="F" u2="v" k="106" />
+<hkern u1="F" u2="u" k="76" />
+<hkern u1="F" u2="t" k="20" />
+<hkern u1="F" u2="s" k="59" />
+<hkern u1="F" u2="r" k="94" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="94" />
+<hkern u1="F" u2="o" k="102" />
+<hkern u1="F" u2="n" k="94" />
+<hkern u1="F" u2="m" k="94" />
+<hkern u1="F" u2="l" k="49" />
+<hkern u1="F" u2="k" k="49" />
+<hkern u1="F" u2="j" k="27" />
+<hkern u1="F" u2="i" k="63" />
+<hkern u1="F" u2="h" k="49" />
+<hkern u1="F" u2="g" k="121" />
+<hkern u1="F" u2="f" k="41" />
+<hkern u1="F" u2="e" k="102" />
+<hkern u1="F" u2="d" k="102" />
+<hkern u1="F" u2="c" k="102" />
+<hkern u1="F" u2="b" k="49" />
+<hkern u1="F" u2="a" k="129" />
+<hkern u1="F" u2="Z" k="41" />
+<hkern u1="F" u2="Y" k="33" />
+<hkern u1="F" u2="X" k="43" />
+<hkern u1="F" u2="W" k="35" />
+<hkern u1="F" u2="T" k="25" />
+<hkern u1="F" u2="S" k="16" />
+<hkern u1="F" u2="R" k="4" />
+<hkern u1="F" u2="Q" k="20" />
+<hkern u1="F" u2="P" k="4" />
+<hkern u1="F" u2="O" k="20" />
+<hkern u1="F" u2="N" k="4" />
+<hkern u1="F" u2="M" k="4" />
+<hkern u1="F" u2="L" k="4" />
+<hkern u1="F" u2="K" k="4" />
+<hkern u1="F" u2="J" k="27" />
+<hkern u1="F" u2="I" k="4" />
+<hkern u1="F" u2="H" k="4" />
+<hkern u1="F" u2="G" k="20" />
+<hkern u1="F" u2="F" k="4" />
+<hkern u1="F" u2="E" k="4" />
+<hkern u1="F" u2="D" k="4" />
+<hkern u1="F" u2="C" k="20" />
+<hkern u1="F" u2="B" k="4" />
+<hkern u1="F" u2="A" k="150" />
+<hkern u1="F" u2="&#x2f;" k="121" />
+<hkern u1="F" u2="&#x2e;" k="285" />
+<hkern u1="F" u2="&#x2c;" k="285" />
+<hkern u1="G" u2="&#xee;" k="-14" />
+<hkern u1="G" u2="&#xd0;" k="-20" />
+<hkern u1="G" u2="y" k="41" />
+<hkern u1="G" u2="W" k="41" />
+<hkern u1="G" u2="M" k="25" />
+<hkern u1="H" u2="&#xef;" k="-12" />
+<hkern u1="H" u2="&#xee;" k="-18" />
+<hkern u1="H" u2="&#xec;" k="-18" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-12" />
+<hkern u1="I" u2="&#xee;" k="-18" />
+<hkern u1="I" u2="&#xec;" k="-18" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xf1;" k="43" />
+<hkern u1="J" u2="&#xef;" k="-20" />
+<hkern u1="J" u2="&#xee;" k="-20" />
+<hkern u1="J" u2="&#xec;" k="-31" />
+<hkern u1="J" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xc6;" k="82" />
+<hkern u1="J" u2="y" k="25" />
+<hkern u1="K" u2="&#xef;" k="-29" />
+<hkern u1="K" u2="&#xec;" k="-12" />
+<hkern u1="K" u2="y" k="115" />
+<hkern u1="K" u2="W" k="29" />
+<hkern u1="L" u2="&#xf8;" k="27" />
+<hkern u1="L" u2="y" k="129" />
+<hkern u1="L" u2="b" k="27" />
+<hkern u1="L" u2="W" k="209" />
+<hkern u1="L" u2="&#x20;" k="82" />
+<hkern u1="M" u2="&#xf8;" k="-6" />
+<hkern u1="M" u2="&#xef;" k="-2" />
+<hkern u1="M" u2="&#xec;" k="-33" />
+<hkern u1="M" u2="&#xdd;" k="29" />
+<hkern u1="M" u2="&#xd0;" k="-20" />
+<hkern u1="M" u2="y" k="20" />
+<hkern u1="M" u2="W" k="20" />
+<hkern u1="N" u2="&#xf8;" k="-10" />
+<hkern u1="N" u2="&#xef;" k="-57" />
+<hkern u1="N" u2="&#xee;" k="-10" />
+<hkern u1="N" u2="&#xec;" k="-35" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="&#xef;" k="-10" />
+<hkern u1="O" u2="&#xee;" k="-6" />
+<hkern u1="O" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="W" k="55" />
+<hkern u1="P" u2="&#xef;" k="-14" />
+<hkern u1="P" u2="&#xee;" k="-25" />
+<hkern u1="P" u2="&#xec;" k="-2" />
+<hkern u1="P" u2="&#xe5;" k="78" />
+<hkern u1="P" u2="c" k="61" />
+<hkern u1="P" u2="W" k="20" />
+<hkern u1="P" u2="M" k="25" />
+<hkern u1="Q" u2="&#xef;" k="-10" />
+<hkern u1="Q" u2="&#xee;" k="-6" />
+<hkern u1="Q" u2="&#xd0;" k="-20" />
+<hkern u1="Q" u2="W" k="55" />
+<hkern u1="Q" u2="N" k="-14" />
+<hkern u1="Q" u2="&#x2c;" k="-104" />
+<hkern u1="R" u2="y" k="53" />
+<hkern u1="R" u2="W" k="68" />
+<hkern u1="S" u2="&#xf8;" k="-10" />
+<hkern u1="S" u2="&#xef;" k="-10" />
+<hkern u1="S" u2="&#xee;" k="-18" />
+<hkern u1="S" u2="&#xec;" k="-20" />
+<hkern u1="S" u2="y" k="61" />
+<hkern u1="S" u2="W" k="14" />
+<hkern u1="T" u2="&#x203a;" k="94" />
+<hkern u1="T" u2="&#x2039;" k="203" />
+<hkern u1="T" u2="&#xff;" k="152" />
+<hkern u1="T" u2="&#xf6;" k="121" />
+<hkern u1="T" u2="&#xf5;" k="147" />
+<hkern u1="T" u2="&#xf4;" k="147" />
+<hkern u1="T" u2="&#xf2;" k="147" />
+<hkern u1="T" u2="&#xf1;" k="147" />
+<hkern u1="T" u2="&#xef;" k="-43" />
+<hkern u1="T" u2="&#xee;" k="-29" />
+<hkern u1="T" u2="&#xed;" k="98" />
+<hkern u1="T" u2="&#xec;" k="-31" />
+<hkern u1="T" u2="&#xeb;" k="156" />
+<hkern u1="T" u2="&#xea;" k="145" />
+<hkern u1="T" u2="&#xe8;" k="137" />
+<hkern u1="T" u2="&#xe4;" k="129" />
+<hkern u1="T" u2="&#xe3;" k="113" />
+<hkern u1="T" u2="&#xcf;" k="33" />
+<hkern u1="T" u2="&#xce;" k="37" />
+<hkern u1="T" u2="&#xcc;" k="37" />
+<hkern u1="T" u2="y" k="125" />
+<hkern u1="T" u2="]" k="-61" />
+<hkern u1="T" u2="M" k="57" />
+<hkern u1="T" u2="&#x3f;" k="-20" />
+<hkern u1="T" u2="&#x2c;" k="203" />
+<hkern u1="U" u2="&#xf1;" k="43" />
+<hkern u1="U" u2="&#xef;" k="-18" />
+<hkern u1="U" u2="&#xee;" k="-10" />
+<hkern u1="U" u2="&#xec;" k="-37" />
+<hkern u1="U" u2="&#xd0;" k="-20" />
+<hkern u1="U" u2="y" k="25" />
+<hkern u1="V" u2="&#x203a;" k="61" />
+<hkern u1="V" u2="&#x2039;" k="86" />
+<hkern u1="V" u2="&#xef;" k="-74" />
+<hkern u1="V" u2="&#xee;" k="20" />
+<hkern u1="V" u2="&#xed;" k="88" />
+<hkern u1="V" u2="&#xec;" k="-63" />
+<hkern u1="V" u2="&#xe4;" k="113" />
+<hkern u1="V" u2="&#xe3;" k="92" />
+<hkern u1="V" u2="&#xe0;" k="92" />
+<hkern u1="V" u2="y" k="121" />
+<hkern u1="V" u2="M" k="23" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="102" />
+<hkern u1="W" g2="uniFB04" k="90" />
+<hkern u1="W" g2="uniFB03" k="90" />
+<hkern u1="W" g2="uniFB02" k="90" />
+<hkern u1="W" g2="uniFB01" k="90" />
+<hkern u1="W" u2="&#x203a;" k="82" />
+<hkern u1="W" u2="&#x2039;" k="84" />
+<hkern u1="W" u2="&#x2026;" k="279" />
+<hkern u1="W" u2="&#x153;" k="86" />
+<hkern u1="W" u2="&#x152;" k="33" />
+<hkern u1="W" u2="&#xff;" k="80" />
+<hkern u1="W" u2="&#xfe;" k="41" />
+<hkern u1="W" u2="&#xfd;" k="104" />
+<hkern u1="W" u2="&#xfc;" k="86" />
+<hkern u1="W" u2="&#xfb;" k="96" />
+<hkern u1="W" u2="&#xfa;" k="96" />
+<hkern u1="W" u2="&#xf9;" k="96" />
+<hkern u1="W" u2="&#xf8;" k="86" />
+<hkern u1="W" u2="&#xf6;" k="86" />
+<hkern u1="W" u2="&#xf5;" k="86" />
+<hkern u1="W" u2="&#xf4;" k="86" />
+<hkern u1="W" u2="&#xf3;" k="86" />
+<hkern u1="W" u2="&#xf2;" k="86" />
+<hkern u1="W" u2="&#xf1;" k="82" />
+<hkern u1="W" u2="&#xf0;" k="86" />
+<hkern u1="W" u2="&#xef;" k="-33" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="115" />
+<hkern u1="W" u2="&#xec;" k="-57" />
+<hkern u1="W" u2="&#xeb;" k="176" />
+<hkern u1="W" u2="&#xea;" k="115" />
+<hkern u1="W" u2="&#xe9;" k="86" />
+<hkern u1="W" u2="&#xe8;" k="150" />
+<hkern u1="W" u2="&#xe7;" k="86" />
+<hkern u1="W" u2="&#xe6;" k="152" />
+<hkern u1="W" u2="&#xe5;" k="152" />
+<hkern u1="W" u2="&#xe4;" k="115" />
+<hkern u1="W" u2="&#xe3;" k="72" />
+<hkern u1="W" u2="&#xe2;" k="152" />
+<hkern u1="W" u2="&#xe1;" k="152" />
+<hkern u1="W" u2="&#xe0;" k="72" />
+<hkern u1="W" u2="&#xdf;" k="90" />
+<hkern u1="W" u2="&#xde;" k="20" />
+<hkern u1="W" u2="&#xd8;" k="33" />
+<hkern u1="W" u2="&#xd6;" k="33" />
+<hkern u1="W" u2="&#xd5;" k="33" />
+<hkern u1="W" u2="&#xd4;" k="33" />
+<hkern u1="W" u2="&#xd3;" k="33" />
+<hkern u1="W" u2="&#xd2;" k="33" />
+<hkern u1="W" u2="&#xd1;" k="20" />
+<hkern u1="W" u2="&#xd0;" k="20" />
+<hkern u1="W" u2="&#xcf;" k="20" />
+<hkern u1="W" u2="&#xce;" k="20" />
+<hkern u1="W" u2="&#xcd;" k="20" />
+<hkern u1="W" u2="&#xcc;" k="20" />
+<hkern u1="W" u2="&#xcb;" k="20" />
+<hkern u1="W" u2="&#xca;" k="20" />
+<hkern u1="W" u2="&#xc9;" k="20" />
+<hkern u1="W" u2="&#xc8;" k="20" />
+<hkern u1="W" u2="&#xc7;" k="33" />
+<hkern u1="W" u2="&#xc6;" k="215" />
+<hkern u1="W" u2="&#xc5;" k="143" />
+<hkern u1="W" u2="&#xc4;" k="143" />
+<hkern u1="W" u2="&#xc3;" k="143" />
+<hkern u1="W" u2="&#xc2;" k="143" />
+<hkern u1="W" u2="&#xc1;" k="143" />
+<hkern u1="W" u2="&#xc0;" k="143" />
+<hkern u1="W" u2="&#xbb;" k="121" />
+<hkern u1="W" u2="&#xab;" k="121" />
+<hkern u1="W" u2="z" k="123" />
+<hkern u1="W" u2="y" k="113" />
+<hkern u1="W" u2="x" k="121" />
+<hkern u1="W" u2="w" k="47" />
+<hkern u1="W" u2="v" k="80" />
+<hkern u1="W" u2="u" k="96" />
+<hkern u1="W" u2="t" k="78" />
+<hkern u1="W" u2="s" k="133" />
+<hkern u1="W" u2="r" k="104" />
+<hkern u1="W" u2="q" k="86" />
+<hkern u1="W" u2="p" k="82" />
+<hkern u1="W" u2="o" k="86" />
+<hkern u1="W" u2="n" k="82" />
+<hkern u1="W" u2="m" k="82" />
+<hkern u1="W" u2="l" k="41" />
+<hkern u1="W" u2="k" k="41" />
+<hkern u1="W" u2="j" k="51" />
+<hkern u1="W" u2="i" k="61" />
+<hkern u1="W" u2="h" k="41" />
+<hkern u1="W" u2="g" k="143" />
+<hkern u1="W" u2="f" k="90" />
+<hkern u1="W" u2="e" k="147" />
+<hkern u1="W" u2="d" k="129" />
+<hkern u1="W" u2="c" k="127" />
+<hkern u1="W" u2="b" k="43" />
+<hkern u1="W" u2="a" k="152" />
+<hkern u1="W" u2="X" k="20" />
+<hkern u1="W" u2="W" k="-8" />
+<hkern u1="W" u2="R" k="20" />
+<hkern u1="W" u2="Q" k="33" />
+<hkern u1="W" u2="P" k="20" />
+<hkern u1="W" u2="O" k="33" />
+<hkern u1="W" u2="N" k="20" />
+<hkern u1="W" u2="M" k="23" />
+<hkern u1="W" u2="L" k="20" />
+<hkern u1="W" u2="K" k="20" />
+<hkern u1="W" u2="J" k="47" />
+<hkern u1="W" u2="I" k="20" />
+<hkern u1="W" u2="H" k="20" />
+<hkern u1="W" u2="G" k="33" />
+<hkern u1="W" u2="F" k="10" />
+<hkern u1="W" u2="E" k="20" />
+<hkern u1="W" u2="D" k="20" />
+<hkern u1="W" u2="C" k="33" />
+<hkern u1="W" u2="B" k="20" />
+<hkern u1="W" u2="A" k="143" />
+<hkern u1="W" u2="&#x3b;" k="141" />
+<hkern u1="W" u2="&#x3a;" k="141" />
+<hkern u1="W" u2="&#x2e;" k="279" />
+<hkern u1="W" u2="&#x2c;" k="244" />
+<hkern u1="X" u2="&#xef;" k="-2" />
+<hkern u1="X" u2="&#xee;" k="-4" />
+<hkern u1="X" u2="&#xed;" k="18" />
+<hkern u1="X" u2="&#xec;" k="-8" />
+<hkern u1="X" u2="y" k="111" />
+<hkern u1="X" u2="W" k="20" />
+<hkern u1="Y" u2="&#x203a;" k="100" />
+<hkern u1="Y" u2="&#x2039;" k="102" />
+<hkern u1="Y" u2="&#xf5;" k="205" />
+<hkern u1="Y" u2="&#xf2;" k="188" />
+<hkern u1="Y" u2="&#xef;" k="-37" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="129" />
+<hkern u1="Y" u2="&#xec;" k="-47" />
+<hkern u1="Y" u2="&#xe9;" k="184" />
+<hkern u1="Y" u2="&#xe8;" k="147" />
+<hkern u1="Y" u2="&#xe4;" k="111" />
+<hkern u1="Y" u2="&#xe3;" k="104" />
+<hkern u1="Y" u2="&#xe0;" k="106" />
+<hkern u1="Y" u2="&#xb5;" k="209" />
+<hkern u1="Y" u2="y" k="184" />
+<hkern u1="Y" u2="e" k="178" />
+<hkern u1="Y" u2="b" k="2" />
+<hkern u1="Y" u2="M" k="43" />
+<hkern u1="Y" u2="&#x3b;" k="121" />
+<hkern u1="Y" u2="&#x3a;" k="121" />
+<hkern u1="Y" u2="&#x2c;" k="244" />
+<hkern u1="Z" u2="&#xef;" k="-14" />
+<hkern u1="Z" u2="&#xee;" k="-6" />
+<hkern u1="Z" u2="&#xec;" k="-16" />
+<hkern u1="Z" u2="y" k="104" />
+<hkern u1="Z" u2="W" k="20" />
+<hkern u1="[" u2="&#x153;" k="-100" />
+<hkern u1="[" u2="&#xfe;" k="-61" />
+<hkern u1="[" u2="&#xf8;" k="-100" />
+<hkern u1="[" u2="&#xf6;" k="-100" />
+<hkern u1="[" u2="&#xf5;" k="-100" />
+<hkern u1="[" u2="&#xf4;" k="-100" />
+<hkern u1="[" u2="&#xf3;" k="-100" />
+<hkern u1="[" u2="&#xf2;" k="-100" />
+<hkern u1="[" u2="&#xf0;" k="-100" />
+<hkern u1="[" u2="&#xeb;" k="-100" />
+<hkern u1="[" u2="&#xea;" k="-100" />
+<hkern u1="[" u2="&#xe9;" k="-100" />
+<hkern u1="[" u2="&#xe8;" k="-100" />
+<hkern u1="[" u2="&#xe7;" k="-100" />
+<hkern u1="[" u2="y" k="-41" />
+<hkern u1="[" u2="q" k="-100" />
+<hkern u1="[" u2="o" k="-100" />
+<hkern u1="[" u2="l" k="-61" />
+<hkern u1="[" u2="k" k="-61" />
+<hkern u1="[" u2="j" k="-100" />
+<hkern u1="[" u2="h" k="-61" />
+<hkern u1="[" u2="e" k="-100" />
+<hkern u1="[" u2="d" k="-100" />
+<hkern u1="[" u2="c" k="-100" />
+<hkern u1="[" u2="b" k="-61" />
+<hkern u1="[" u2="W" k="-61" />
+<hkern u1="[" u2="J" k="-90" />
+<hkern u1="[" u2="&#x3f;" k="-55" />
+<hkern u1="a" u2="&#x2019;" k="61" />
+<hkern u1="a" u2="&#x2018;" k="162" />
+<hkern u1="a" u2="&#xff;" k="39" />
+<hkern u1="a" u2="&#xfd;" k="39" />
+<hkern u1="a" u2="y" k="47" />
+<hkern u1="a" u2="v" k="39" />
+<hkern u1="a" u2="&#x3f;" k="61" />
+<hkern u1="a" u2="&#x2f;" k="-59" />
+<hkern u1="a" u2="&#x21;" k="-6" />
+<hkern u1="b" u2="&#x2018;" k="41" />
+<hkern u1="b" u2="&#xff;" k="20" />
+<hkern u1="b" u2="&#xfd;" k="20" />
+<hkern u1="b" u2="y" k="20" />
+<hkern u1="b" u2="v" k="20" />
+<hkern u1="b" u2="&#x3f;" k="53" />
+<hkern u1="d" u2="&#xec;" k="-20" />
+<hkern u1="d" u2="y" k="49" />
+<hkern u1="e" u2="y" k="23" />
+<hkern u1="f" u2="&#x2018;" k="-182" />
+<hkern u1="f" u2="&#xef;" k="-217" />
+<hkern u1="f" u2="&#xee;" k="-133" />
+<hkern u1="f" u2="&#xec;" k="-174" />
+<hkern u1="f" u2="&#xe4;" k="-27" />
+<hkern u1="f" u2="y" k="-20" />
+<hkern u1="f" u2="l" k="-113" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="]" k="-227" />
+<hkern u1="f" u2="W" k="-225" />
+<hkern u1="f" u2="M" k="-100" />
+<hkern u1="f" u2="&#x3f;" k="-201" />
+<hkern u1="f" u2="&#x3a;" k="-25" />
+<hkern u1="f" u2="&#x2f;" k="-78" />
+<hkern u1="f" u2="&#x2c;" k="20" />
+<hkern u1="f" u2="&#x2a;" k="-182" />
+<hkern u1="f" u2="&#x27;" k="-203" />
+<hkern u1="f" u2="&#x22;" k="-203" />
+<hkern u1="f" u2="&#x21;" k="-102" />
+<hkern u1="f" u2="&#x20;" k="-63" />
+<hkern u1="g" u2="&#x2026;" k="-41" />
+<hkern u1="g" u2="&#x201d;" k="-74" />
+<hkern u1="g" u2="&#x201c;" k="-23" />
+<hkern u1="g" u2="&#x2019;" k="-74" />
+<hkern u1="g" u2="&#x2018;" k="-23" />
+<hkern u1="g" u2="&#xff;" k="-6" />
+<hkern u1="g" u2="&#xfd;" k="-6" />
+<hkern u1="g" u2="&#xf1;" k="-4" />
+<hkern u1="g" u2="&#x7d;" k="-51" />
+<hkern u1="g" u2="y" k="-6" />
+<hkern u1="g" u2="x" k="8" />
+<hkern u1="g" u2="w" k="16" />
+<hkern u1="g" u2="v" k="-6" />
+<hkern u1="g" u2="r" k="-4" />
+<hkern u1="g" u2="p" k="-4" />
+<hkern u1="g" u2="n" k="-4" />
+<hkern u1="g" u2="m" k="-4" />
+<hkern u1="g" u2="j" k="-29" />
+<hkern u1="g" u2="g" k="-4" />
+<hkern u1="g" u2="]" k="-92" />
+<hkern u1="g" u2="&#x2e;" k="-41" />
+<hkern u1="g" u2="&#x2c;" k="-41" />
+<hkern u1="g" u2="&#x29;" k="-51" />
+<hkern u1="h" u2="&#x2019;" k="61" />
+<hkern u1="h" u2="&#x2018;" k="162" />
+<hkern u1="h" u2="y" k="37" />
+<hkern u1="h" u2="&#x3f;" k="61" />
+<hkern u1="h" u2="&#x2f;" k="-59" />
+<hkern u1="h" u2="&#x21;" k="-6" />
+<hkern u1="i" u2="y" k="20" />
+<hkern u1="k" u2="&#xb5;" k="25" />
+<hkern u1="k" u2="y" k="23" />
+<hkern u1="l" u2="&#xef;" k="-10" />
+<hkern u1="l" u2="&#xee;" k="-10" />
+<hkern u1="l" u2="&#xec;" k="-35" />
+<hkern u1="l" u2="y" k="35" />
+<hkern u1="l" u2="]" k="-61" />
+<hkern u1="l" u2="&#x3f;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-41" />
+<hkern u1="l" u2="&#x21;" k="-29" />
+<hkern u1="m" u2="&#x2019;" k="61" />
+<hkern u1="m" u2="&#x2018;" k="162" />
+<hkern u1="m" u2="y" k="37" />
+<hkern u1="m" u2="w" k="25" />
+<hkern u1="m" u2="&#x3f;" k="61" />
+<hkern u1="m" u2="&#x2f;" k="-59" />
+<hkern u1="m" u2="&#x21;" k="-6" />
+<hkern u1="n" u2="&#x2019;" k="61" />
+<hkern u1="n" u2="&#x2018;" k="162" />
+<hkern u1="n" u2="y" k="37" />
+<hkern u1="n" u2="&#x3f;" k="61" />
+<hkern u1="n" u2="&#x2f;" k="-59" />
+<hkern u1="n" u2="&#x21;" k="-6" />
+<hkern u1="o" u2="&#x2018;" k="41" />
+<hkern u1="o" u2="y" k="23" />
+<hkern u1="o" u2="&#x3f;" k="53" />
+<hkern u1="p" u2="&#x2018;" k="41" />
+<hkern u1="p" u2="y" k="23" />
+<hkern u1="p" u2="&#x3f;" k="53" />
+<hkern u1="q" u2="&#x2026;" k="33" />
+<hkern u1="q" u2="&#x153;" k="-8" />
+<hkern u1="q" u2="&#xff;" k="29" />
+<hkern u1="q" u2="&#xfd;" k="29" />
+<hkern u1="q" u2="&#xfc;" k="23" />
+<hkern u1="q" u2="&#xfb;" k="23" />
+<hkern u1="q" u2="&#xfa;" k="23" />
+<hkern u1="q" u2="&#xf9;" k="23" />
+<hkern u1="q" u2="&#xf8;" k="-8" />
+<hkern u1="q" u2="&#xf6;" k="-8" />
+<hkern u1="q" u2="&#xf5;" k="-8" />
+<hkern u1="q" u2="&#xf4;" k="-8" />
+<hkern u1="q" u2="&#xf3;" k="-8" />
+<hkern u1="q" u2="&#xf2;" k="-8" />
+<hkern u1="q" u2="&#xf0;" k="-8" />
+<hkern u1="q" u2="&#xeb;" k="-8" />
+<hkern u1="q" u2="&#xea;" k="-8" />
+<hkern u1="q" u2="&#xe9;" k="-8" />
+<hkern u1="q" u2="&#xe8;" k="-8" />
+<hkern u1="q" u2="&#xe7;" k="-8" />
+<hkern u1="q" u2="&#x7d;" k="-61" />
+<hkern u1="q" u2="y" k="29" />
+<hkern u1="q" u2="x" k="20" />
+<hkern u1="q" u2="w" k="29" />
+<hkern u1="q" u2="v" k="29" />
+<hkern u1="q" u2="u" k="23" />
+<hkern u1="q" u2="q" k="-8" />
+<hkern u1="q" u2="o" k="-8" />
+<hkern u1="q" u2="j" k="-121" />
+<hkern u1="q" u2="g" k="-16" />
+<hkern u1="q" u2="e" k="-8" />
+<hkern u1="q" u2="d" k="-8" />
+<hkern u1="q" u2="c" k="-8" />
+<hkern u1="q" u2="]" k="-61" />
+<hkern u1="q" u2="&#x2e;" k="33" />
+<hkern u1="q" u2="&#x2c;" k="33" />
+<hkern u1="q" u2="&#x29;" k="-61" />
+<hkern u1="r" g2="uniFB02" k="25" />
+<hkern u1="r" u2="&#x2019;" k="-41" />
+<hkern u1="r" u2="y" k="-6" />
+<hkern u1="r" u2="&#x3b;" k="-18" />
+<hkern u1="r" u2="&#x2c;" k="102" />
+<hkern u1="s" u2="y" k="45" />
+<hkern u1="t" u2="y" k="20" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="u" u2="y" k="31" />
+<hkern u1="u" u2="&#x2c;" k="-20" />
+<hkern u1="v" u2="&#x2019;" k="-61" />
+<hkern u1="v" u2="&#x2c;" k="197" />
+<hkern u1="w" u2="p" k="6" />
+<hkern u1="w" u2="m" k="23" />
+<hkern u1="w" u2="&#x2c;" k="190" />
+<hkern u1="x" u2="&#x2026;" k="-20" />
+<hkern u1="x" u2="&#x153;" k="14" />
+<hkern u1="x" u2="&#xfc;" k="12" />
+<hkern u1="x" u2="&#xfb;" k="12" />
+<hkern u1="x" u2="&#xfa;" k="12" />
+<hkern u1="x" u2="&#xf9;" k="12" />
+<hkern u1="x" u2="&#xf8;" k="14" />
+<hkern u1="x" u2="&#xf6;" k="14" />
+<hkern u1="x" u2="&#xf5;" k="14" />
+<hkern u1="x" u2="&#xf4;" k="14" />
+<hkern u1="x" u2="&#xf3;" k="14" />
+<hkern u1="x" u2="&#xf2;" k="14" />
+<hkern u1="x" u2="&#xf0;" k="14" />
+<hkern u1="x" u2="&#xeb;" k="14" />
+<hkern u1="x" u2="&#xea;" k="14" />
+<hkern u1="x" u2="&#xe9;" k="14" />
+<hkern u1="x" u2="&#xe8;" k="14" />
+<hkern u1="x" u2="&#xe7;" k="14" />
+<hkern u1="x" u2="y" k="20" />
+<hkern u1="x" u2="u" k="12" />
+<hkern u1="x" u2="q" k="14" />
+<hkern u1="x" u2="o" k="14" />
+<hkern u1="x" u2="e" k="14" />
+<hkern u1="x" u2="d" k="14" />
+<hkern u1="x" u2="c" k="14" />
+<hkern u1="x" u2="&#x2e;" k="-20" />
+<hkern u1="x" u2="&#x2c;" k="-20" />
+<hkern u1="y" u2="&#x2019;" k="-61" />
+<hkern u1="y" u2="&#xe6;" k="39" />
+<hkern u1="y" u2="&#xe5;" k="39" />
+<hkern u1="y" u2="&#xe4;" k="39" />
+<hkern u1="y" u2="&#xe3;" k="39" />
+<hkern u1="y" u2="&#xe2;" k="39" />
+<hkern u1="y" u2="&#xe1;" k="39" />
+<hkern u1="y" u2="&#xe0;" k="39" />
+<hkern u1="y" u2="c" k="25" />
+<hkern u1="y" u2="a" k="39" />
+<hkern u1="y" u2="&#x2c;" k="197" />
+<hkern u1="z" u2="y" k="37" />
+<hkern u1="&#x7b;" u2="y" k="-41" />
+<hkern u1="&#x7b;" u2="W" k="-61" />
+<hkern u1="&#x7b;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x7c;" u2="J" k="-82" />
+<hkern u1="&#xa1;" u2="&#x178;" k="170" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="170" />
+<hkern u1="&#xa1;" u2="Y" k="170" />
+<hkern u1="&#xa1;" u2="W" k="123" />
+<hkern u1="&#xa1;" u2="V" k="147" />
+<hkern u1="&#xa1;" u2="T" k="109" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-72" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-100" />
+<hkern u1="&#xab;" u2="&#x2014;" k="-82" />
+<hkern u1="&#xab;" u2="&#x2013;" k="-82" />
+<hkern u1="&#xab;" u2="W" k="141" />
+<hkern u1="&#xab;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xab;" u2="&#x3a;" k="-23" />
+<hkern u1="&#xab;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xb5;" u2="y" k="31" />
+<hkern u1="&#xb5;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x2014;" k="-121" />
+<hkern u1="&#xbb;" u2="&#x2013;" k="-121" />
+<hkern u1="&#xbb;" u2="W" k="102" />
+<hkern u1="&#xbb;" u2="M" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xbf;" u2="T" k="127" />
+<hkern u1="&#xbf;" u2="S" k="43" />
+<hkern u1="&#xc0;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc0;" u2="W" k="82" />
+<hkern u1="&#xc0;" u2="G" k="47" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc1;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc1;" u2="W" k="82" />
+<hkern u1="&#xc1;" u2="G" k="47" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc2;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc2;" u2="W" k="82" />
+<hkern u1="&#xc2;" u2="G" k="47" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc3;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc3;" u2="W" k="82" />
+<hkern u1="&#xc3;" u2="G" k="47" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc4;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc4;" u2="W" k="82" />
+<hkern u1="&#xc4;" u2="G" k="47" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc5;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc5;" u2="W" k="82" />
+<hkern u1="&#xc5;" u2="G" k="47" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc6;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc6;" u2="y" k="61" />
+<hkern u1="&#xc6;" u2="W" k="33" />
+<hkern u1="&#xc7;" u2="&#xef;" k="-16" />
+<hkern u1="&#xc7;" u2="&#xee;" k="-43" />
+<hkern u1="&#xc7;" u2="&#xec;" k="8" />
+<hkern u1="&#xc7;" u2="y" k="66" />
+<hkern u1="&#xc7;" u2="e" k="37" />
+<hkern u1="&#xc7;" u2="d" k="51" />
+<hkern u1="&#xc7;" u2="W" k="14" />
+<hkern u1="&#xc7;" u2="C" k="41" />
+<hkern u1="&#xc8;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc8;" u2="y" k="61" />
+<hkern u1="&#xc8;" u2="W" k="33" />
+<hkern u1="&#xc9;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc9;" u2="y" k="61" />
+<hkern u1="&#xc9;" u2="W" k="33" />
+<hkern u1="&#xca;" u2="&#xb5;" k="20" />
+<hkern u1="&#xca;" u2="y" k="61" />
+<hkern u1="&#xca;" u2="W" k="33" />
+<hkern u1="&#xcb;" u2="&#xb5;" k="20" />
+<hkern u1="&#xcb;" u2="y" k="61" />
+<hkern u1="&#xcb;" u2="W" k="33" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcc;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-12" />
+<hkern u1="&#xce;" u2="&#xee;" k="-18" />
+<hkern u1="&#xce;" u2="&#xec;" k="-18" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcf;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd0;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="W" k="55" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd1;" u2="&#xee;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd2;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="W" k="55" />
+<hkern u1="&#xd3;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd3;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd3;" u2="W" k="55" />
+<hkern u1="&#xd4;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd4;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd4;" u2="W" k="55" />
+<hkern u1="&#xd5;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd5;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd5;" u2="W" k="55" />
+<hkern u1="&#xd6;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd6;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd6;" u2="W" k="55" />
+<hkern u1="&#xd8;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd8;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd8;" u2="W" k="55" />
+<hkern u1="&#xd9;" u2="&#xf1;" k="43" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-18" />
+<hkern u1="&#xd9;" u2="&#xee;" k="-10" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-37" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd9;" u2="y" k="25" />
+<hkern u1="&#xda;" u2="&#xf1;" k="43" />
+<hkern u1="&#xda;" u2="&#xef;" k="-18" />
+<hkern u1="&#xda;" u2="&#xee;" k="-10" />
+<hkern u1="&#xda;" u2="&#xec;" k="-37" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xda;" u2="y" k="25" />
+<hkern u1="&#xdb;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdb;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdb;" u2="y" k="25" />
+<hkern u1="&#xdc;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdc;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdc;" u2="y" k="25" />
+<hkern u1="&#xdd;" u2="&#x203a;" k="100" />
+<hkern u1="&#xdd;" u2="&#x2039;" k="102" />
+<hkern u1="&#xdd;" u2="&#xf5;" k="205" />
+<hkern u1="&#xdd;" u2="&#xf2;" k="188" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-37" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="129" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-47" />
+<hkern u1="&#xdd;" u2="&#xe9;" k="184" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="147" />
+<hkern u1="&#xdd;" u2="&#xe4;" k="111" />
+<hkern u1="&#xdd;" u2="&#xe3;" k="104" />
+<hkern u1="&#xdd;" u2="&#xe0;" k="106" />
+<hkern u1="&#xdd;" u2="&#xb5;" k="209" />
+<hkern u1="&#xdd;" u2="y" k="184" />
+<hkern u1="&#xdd;" u2="e" k="178" />
+<hkern u1="&#xdd;" u2="b" k="2" />
+<hkern u1="&#xdd;" u2="M" k="43" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="121" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="121" />
+<hkern u1="&#xdd;" u2="&#x2c;" k="244" />
+<hkern u1="&#xde;" u2="&#xef;" k="-10" />
+<hkern u1="&#xde;" u2="&#xee;" k="-6" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xde;" u2="W" k="55" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-18" />
+<hkern u1="&#xe0;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe0;" u2="y" k="37" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe0;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe1;" u2="y" k="37" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe2;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe2;" u2="y" k="37" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe2;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe3;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe3;" u2="y" k="37" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe3;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe4;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe4;" u2="y" k="37" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe4;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe5;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe5;" u2="y" k="37" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe5;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe6;" u2="y" k="23" />
+<hkern u1="&#xe8;" u2="y" k="23" />
+<hkern u1="&#xe9;" u2="y" k="23" />
+<hkern u1="&#xea;" u2="y" k="23" />
+<hkern u1="&#xeb;" u2="y" k="23" />
+<hkern u1="&#xec;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="k" k="-20" />
+<hkern u1="&#xee;" u2="y" k="20" />
+<hkern u1="&#xee;" u2="k" k="-20" />
+<hkern u1="&#xef;" u2="y" k="20" />
+<hkern u1="&#xf1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xf1;" u2="y" k="37" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xf1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xf2;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf2;" u2="y" k="23" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf3;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf3;" u2="y" k="23" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf4;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf4;" u2="y" k="23" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf5;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf5;" u2="y" k="23" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf6;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf6;" u2="y" k="23" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf8;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf8;" u2="y" k="23" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf9;" u2="y" k="31" />
+<hkern u1="&#xf9;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfa;" u2="y" k="31" />
+<hkern u1="&#xfa;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfb;" u2="y" k="31" />
+<hkern u1="&#xfb;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfc;" u2="y" k="31" />
+<hkern u1="&#xfc;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfd;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xfd;" u2="&#x2c;" k="197" />
+<hkern u1="&#xfe;" u2="&#x2018;" k="41" />
+<hkern u1="&#xfe;" u2="y" k="23" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="53" />
+<hkern u1="&#xff;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xff;" u2="&#x2c;" k="197" />
+<hkern u1="&#x152;" u2="&#xb5;" k="20" />
+<hkern u1="&#x152;" u2="y" k="61" />
+<hkern u1="&#x152;" u2="W" k="33" />
+<hkern u1="&#x153;" u2="y" k="23" />
+<hkern u1="&#x178;" u2="&#x203a;" k="100" />
+<hkern u1="&#x178;" u2="&#x2039;" k="102" />
+<hkern u1="&#x178;" u2="&#xf5;" k="205" />
+<hkern u1="&#x178;" u2="&#xf2;" k="188" />
+<hkern u1="&#x178;" u2="&#xef;" k="-37" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="129" />
+<hkern u1="&#x178;" u2="&#xec;" k="-47" />
+<hkern u1="&#x178;" u2="&#xe9;" k="184" />
+<hkern u1="&#x178;" u2="&#xe8;" k="147" />
+<hkern u1="&#x178;" u2="&#xe4;" k="111" />
+<hkern u1="&#x178;" u2="&#xe3;" k="104" />
+<hkern u1="&#x178;" u2="&#xe0;" k="106" />
+<hkern u1="&#x178;" u2="&#xb5;" k="209" />
+<hkern u1="&#x178;" u2="y" k="184" />
+<hkern u1="&#x178;" u2="e" k="178" />
+<hkern u1="&#x178;" u2="b" k="2" />
+<hkern u1="&#x178;" u2="M" k="43" />
+<hkern u1="&#x178;" u2="&#x3b;" k="121" />
+<hkern u1="&#x178;" u2="&#x3a;" k="121" />
+<hkern u1="&#x178;" u2="&#x2c;" k="244" />
+<hkern u1="&#x2013;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2013;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2013;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2013;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2013;" u2="W" k="102" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-100" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-61" />
+<hkern u1="&#x2014;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2014;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2014;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2014;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2014;" u2="W" k="102" />
+<hkern u1="&#x2014;" u2="&#x33;" k="145" />
+<hkern u1="&#x2018;" u2="&#xc5;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc4;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc3;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc2;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc1;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc0;" k="217" />
+<hkern u1="&#x2018;" u2="W" k="-72" />
+<hkern u1="&#x2018;" u2="V" k="-86" />
+<hkern u1="&#x2018;" u2="A" k="217" />
+<hkern u1="&#x2018;" u2="&#x2c;" k="170" />
+<hkern u1="&#x2019;" u2="s" k="43" />
+<hkern u1="&#x201a;" u2="&#x178;" k="223" />
+<hkern u1="&#x201a;" u2="&#x153;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf6;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf5;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf4;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf3;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf2;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf0;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xeb;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xea;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe9;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe7;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xdd;" k="223" />
+<hkern u1="&#x201a;" u2="q" k="-86" />
+<hkern u1="&#x201a;" u2="o" k="-86" />
+<hkern u1="&#x201a;" u2="j" k="-63" />
+<hkern u1="&#x201a;" u2="e" k="-86" />
+<hkern u1="&#x201a;" u2="d" k="-86" />
+<hkern u1="&#x201a;" u2="c" k="-86" />
+<hkern u1="&#x201a;" u2="Y" k="223" />
+<hkern u1="&#x201a;" u2="W" k="162" />
+<hkern u1="&#x201a;" u2="V" k="213" />
+<hkern u1="&#x201a;" u2="T" k="168" />
+<hkern u1="&#x201a;" u2="J" k="-104" />
+<hkern u1="&#x201c;" u2="W" k="-72" />
+<hkern u1="&#x201c;" u2="&#x2c;" k="170" />
+<hkern u1="&#x201e;" u2="W" k="201" />
+<hkern u1="&#x2039;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x153;" k="-41" />
+<hkern u1="&#x2039;" u2="&#x152;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf0;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xeb;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xea;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe9;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe6;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe5;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe4;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe3;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe2;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe1;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe0;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc1;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc0;" k="-41" />
+<hkern u1="&#x2039;" u2="s" k="-20" />
+<hkern u1="&#x2039;" u2="q" k="-41" />
+<hkern u1="&#x2039;" u2="o" k="-41" />
+<hkern u1="&#x2039;" u2="e" k="-41" />
+<hkern u1="&#x2039;" u2="d" k="-41" />
+<hkern u1="&#x2039;" u2="c" k="-41" />
+<hkern u1="&#x2039;" u2="a" k="-25" />
+<hkern u1="&#x2039;" u2="W" k="141" />
+<hkern u1="&#x2039;" u2="Q" k="-41" />
+<hkern u1="&#x2039;" u2="O" k="-41" />
+<hkern u1="&#x2039;" u2="M" k="-41" />
+<hkern u1="&#x2039;" u2="J" k="-82" />
+<hkern u1="&#x2039;" u2="G" k="-41" />
+<hkern u1="&#x2039;" u2="C" k="-41" />
+<hkern u1="&#x2039;" u2="A" k="-41" />
+<hkern u1="&#x2039;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x2039;" u2="&#x3a;" k="-23" />
+<hkern u1="&#x2039;" u2="&#x2c;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x153;" k="-27" />
+<hkern u1="&#x203a;" u2="&#x152;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xf8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf6;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf5;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf4;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf3;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf2;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf0;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xeb;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xea;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe9;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe7;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x203a;" u2="q" k="-27" />
+<hkern u1="&#x203a;" u2="o" k="-27" />
+<hkern u1="&#x203a;" u2="e" k="-27" />
+<hkern u1="&#x203a;" u2="d" k="-47" />
+<hkern u1="&#x203a;" u2="c" k="-27" />
+<hkern u1="&#x203a;" u2="W" k="102" />
+<hkern u1="&#x203a;" u2="Q" k="-41" />
+<hkern u1="&#x203a;" u2="O" k="-41" />
+<hkern u1="&#x203a;" u2="M" k="-20" />
+<hkern u1="&#x203a;" u2="G" k="-41" />
+<hkern u1="&#x203a;" u2="C" k="-41" />
+<hkern u1="&#x203a;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x3a;" k="-20" />
+<hkern g1="uniFB01" u2="y" k="20" />
+<hkern g1="uniFB02" u2="&#xef;" k="-10" />
+<hkern g1="uniFB02" u2="&#xee;" k="-10" />
+<hkern g1="uniFB02" u2="&#xec;" k="-35" />
+<hkern g1="uniFB02" u2="y" k="35" />
+<hkern g1="uniFB02" u2="]" k="-61" />
+<hkern g1="uniFB02" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB02" u2="&#x21;" k="-29" />
+<hkern g1="uniFB03" u2="y" k="20" />
+<hkern g1="uniFB04" u2="&#xef;" k="-10" />
+<hkern g1="uniFB04" u2="&#xee;" k="-10" />
+<hkern g1="uniFB04" u2="&#xec;" k="-35" />
+<hkern g1="uniFB04" u2="y" k="35" />
+<hkern g1="uniFB04" u2="]" k="-61" />
+<hkern g1="uniFB04" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB04" u2="&#x21;" k="-29" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="d" 	g2="w" 	k="31" />
+<hkern g1="d" 	g2="x" 	k="2" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-20" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-23" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="61" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="w" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-45" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-18" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="61" />
+<hkern g1="f" 	g2="T" 	k="-205" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-113" />
+<hkern g1="f" 	g2="v,y,yacute,ydieresis" 	k="-6" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-184" />
+<hkern g1="f" 	g2="w" 	k="-6" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-291" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-188" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-162" />
+<hkern g1="f" 	g2="S" 	k="-41" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-193" />
+<hkern g1="f" 	g2="V" 	k="-231" />
+<hkern g1="f" 	g2="X" 	k="-162" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-223" />
+<hkern g1="f" 	g2="Z" 	k="-82" />
+<hkern g1="f" 	g2="j" 	k="-70" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-57" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="v,y,yacute,ydieresis" 	k="31" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="w" 	k="20" />
+<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="k" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
+<hkern g1="k" 	g2="s" 	k="10" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="k" 	g2="w" 	k="31" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-18" />
+<hkern g1="k" 	g2="j" 	k="4" />
+<hkern g1="k" 	g2="t" 	k="27" />
+<hkern g1="k" 	g2="g" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteleft,quotedblleft" 	k="53" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="w" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-6" />
+<hkern g1="j" 	g2="j" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="145" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="29" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="g" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="w" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="6" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="27" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="102" />
+<hkern g1="r" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
+<hkern g1="r" 	g2="s" 	k="10" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="r" 	g2="w" 	k="-23" />
+<hkern g1="r" 	g2="x" 	k="8" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="102" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="r" 	g2="j" 	k="-37" />
+<hkern g1="r" 	g2="t" 	k="-20" />
+<hkern g1="r" 	g2="g" 	k="61" />
+<hkern g1="r" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="r" 	g2="z" 	k="23" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="14" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="29" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="12" />
+<hkern g1="s" 	g2="w" 	k="25" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-47" />
+<hkern g1="t" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-8" />
+<hkern g1="t" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="t" 	g2="w" 	k="20" />
+<hkern g1="t" 	g2="x" 	k="-18" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="t" 	g2="z" 	k="-6" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="v,y,yacute,ydieresis" 	k="-18" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="70" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="w" 	k="4" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="29" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="v,y,yacute,ydieresis" 	k="-10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="-37" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="w" 	k="-18" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="217" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="-43" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="14" />
+<hkern g1="w" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="w" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
+<hkern g1="w" 	g2="s" 	k="29" />
+<hkern g1="w" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="w" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="w" 	g2="w" 	k="-20" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="141" />
+<hkern g1="w" 	g2="quoteright,quotedblright" 	k="-49" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="z" 	k="18" />
+<hkern g1="z" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="178" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="80" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="223" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-43" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="205" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="74" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="166" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="AE" 	k="29" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-16" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-43" />
+<hkern g1="B" 	g2="T" 	k="51" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="w" 	k="31" />
+<hkern g1="B" 	g2="x" 	k="4" />
+<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
+<hkern g1="B" 	g2="V" 	k="53" />
+<hkern g1="B" 	g2="X" 	k="37" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="B" 	g2="Z" 	k="25" />
+<hkern g1="B" 	g2="g" 	k="6" />
+<hkern g1="B" 	g2="J" 	k="41" />
+<hkern g1="B" 	g2="AE" 	k="92" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="quoteleft,quotedblleft" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="comma,period,ellipsis" 	k="16" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-16" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="80" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="J" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="76" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="61" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="57" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="G" 	g2="T" 	k="61" />
+<hkern g1="G" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="G" 	g2="w" 	k="41" />
+<hkern g1="G" 	g2="x" 	k="4" />
+<hkern g1="G" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="G" 	g2="V" 	k="43" />
+<hkern g1="G" 	g2="X" 	k="35" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="G" 	g2="Z" 	k="14" />
+<hkern g1="G" 	g2="J" 	k="2" />
+<hkern g1="G" 	g2="AE" 	k="61" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="T" 	k="16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-45" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteright,quotedblright" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="V" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="J" 	k="4" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="29" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="K" 	g2="T" 	k="41" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
+<hkern g1="K" 	g2="s" 	k="25" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="109" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="43" />
+<hkern g1="K" 	g2="w" 	k="102" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
+<hkern g1="K" 	g2="S" 	k="45" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
+<hkern g1="K" 	g2="V" 	k="20" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="K" 	g2="j" 	k="25" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="82" />
+<hkern g1="K" 	g2="g" 	k="59" />
+<hkern g1="K" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="41" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="L" 	g2="T" 	k="221" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="L" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="L" 	g2="w" 	k="94" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="L" 	g2="S" 	k="31" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="158" />
+<hkern g1="L" 	g2="V" 	k="236" />
+<hkern g1="L" 	g2="X" 	k="25" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="199" />
+<hkern g1="L" 	g2="Z" 	k="10" />
+<hkern g1="L" 	g2="j" 	k="20" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="L" 	g2="t" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="47" />
+<hkern g1="L" 	g2="z" 	k="6" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
+<hkern g1="L" 	g2="J" 	k="27" />
+<hkern g1="L" 	g2="AE" 	k="49" />
+<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="M" 	g2="T" 	k="43" />
+<hkern g1="M" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="M" 	g2="w" 	k="41" />
+<hkern g1="M" 	g2="x" 	k="20" />
+<hkern g1="M" 	g2="V" 	k="18" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="29" />
+<hkern g1="M" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-14" />
+<hkern g1="M" 	g2="g" 	k="8" />
+<hkern g1="M" 	g2="J" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="20" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-86" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,ellipsis" 	k="-2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="S" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="49" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="53" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="31" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="63" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="102" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
+<hkern g1="P" 	g2="T" 	k="25" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="113" />
+<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="98" />
+<hkern g1="P" 	g2="s" 	k="109" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="49" />
+<hkern g1="P" 	g2="w" 	k="6" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="301" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="S" 	k="23" />
+<hkern g1="P" 	g2="V" 	k="41" />
+<hkern g1="P" 	g2="X" 	k="61" />
+<hkern g1="P" 	g2="Z" 	k="66" />
+<hkern g1="P" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
+<hkern g1="P" 	g2="J" 	k="2" />
+<hkern g1="P" 	g2="AE" 	k="227" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="203" />
+<hkern g1="R" 	g2="T" 	k="98" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="R" 	g2="w" 	k="53" />
+<hkern g1="R" 	g2="x" 	k="-41" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="R" 	g2="S" 	k="31" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
+<hkern g1="R" 	g2="V" 	k="84" />
+<hkern g1="R" 	g2="X" 	k="16" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="R" 	g2="Z" 	k="-12" />
+<hkern g1="R" 	g2="g" 	k="4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="R" 	g2="J" 	k="37" />
+<hkern g1="R" 	g2="AE" 	k="20" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="S" 	g2="T" 	k="20" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="39" />
+<hkern g1="S" 	g2="w" 	k="33" />
+<hkern g1="S" 	g2="x" 	k="41" />
+<hkern g1="S" 	g2="V" 	k="8" />
+<hkern g1="S" 	g2="X" 	k="23" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="S" 	g2="J" 	k="41" />
+<hkern g1="S" 	g2="AE" 	k="80" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="186" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="162" />
+<hkern g1="T" 	g2="s" 	k="176" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="125" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="111" />
+<hkern g1="T" 	g2="quoteleft,quotedblleft" 	k="-100" />
+<hkern g1="T" 	g2="w" 	k="100" />
+<hkern g1="T" 	g2="x" 	k="164" />
+<hkern g1="T" 	g2="parenright,bracketright,braceright" 	k="-25" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="115" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="170" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-31" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
+<hkern g1="T" 	g2="S" 	k="51" />
+<hkern g1="T" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
+<hkern g1="T" 	g2="V" 	k="-20" />
+<hkern g1="T" 	g2="X" 	k="68" />
+<hkern g1="T" 	g2="Z" 	k="35" />
+<hkern g1="T" 	g2="j" 	k="74" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="94" />
+<hkern g1="T" 	g2="t" 	k="102" />
+<hkern g1="T" 	g2="g" 	k="166" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="T" 	g2="z" 	k="141" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="76" />
+<hkern g1="T" 	g2="J" 	k="20" />
+<hkern g1="T" 	g2="AE" 	k="213" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="180" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="T" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,l,thorn" 	k="-16" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Z" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="121" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
+<hkern g1="V,W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="147" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="6" />
+<hkern g1="V,W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="113" />
+<hkern g1="V,W" 	g2="s" 	k="82" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="59" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="137" />
+<hkern g1="V,W" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="V,W" 	g2="w" 	k="121" />
+<hkern g1="V,W" 	g2="x" 	k="121" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="137" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="121" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="S" 	k="29" />
+<hkern g1="V,W" 	g2="X" 	k="20" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="-20" />
+<hkern g1="V,W" 	g2="Z" 	k="20" />
+<hkern g1="V,W" 	g2="j" 	k="10" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="V,W" 	g2="t" 	k="82" />
+<hkern g1="V,W" 	g2="g" 	k="145" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="100" />
+<hkern g1="V,W" 	g2="z" 	k="106" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="63" />
+<hkern g1="V,W" 	g2="J" 	k="61" />
+<hkern g1="V,W" 	g2="AE" 	k="244" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="152" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="133" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="143" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="203" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="160" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-39" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="96" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="29" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="111" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="109" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="154" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="236" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="195" />
+<hkern g1="X" 	g2="T" 	k="45" />
+<hkern g1="X" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="-10" />
+<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="X" 	g2="s" 	k="35" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="51" />
+<hkern g1="X" 	g2="w" 	k="111" />
+<hkern g1="X" 	g2="x" 	k="-16" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="4" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
+<hkern g1="X" 	g2="V" 	k="20" />
+<hkern g1="X" 	g2="X" 	k="-41" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="X" 	g2="j" 	k="8" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="18" />
+<hkern g1="X" 	g2="t" 	k="55" />
+<hkern g1="X" 	g2="g" 	k="25" />
+<hkern g1="X" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="70" />
+<hkern g1="X" 	g2="AE" 	k="41" />
+<hkern g1="Z" 	g2="T" 	k="23" />
+<hkern g1="Z" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="Z" 	g2="s" 	k="41" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="98" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="41" />
+<hkern g1="Z" 	g2="w" 	k="92" />
+<hkern g1="Z" 	g2="x" 	k="31" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-31" />
+<hkern g1="Z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="Z" 	g2="V" 	k="25" />
+<hkern g1="Z" 	g2="X" 	k="8" />
+<hkern g1="Z" 	g2="j" 	k="10" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
+<hkern g1="Z" 	g2="t" 	k="20" />
+<hkern g1="Z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Z" 	g2="z" 	k="37" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
+<hkern g1="Z" 	g2="J" 	k="18" />
+<hkern g1="Z" 	g2="AE" 	k="43" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="82" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-45" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="121" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-20" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="141" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-84" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-39" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="174" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="-23" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="w" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,ellipsis" 	k="213" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-29" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-86" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-6" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="252" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="147" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="152" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="213" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="139" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="256" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="209" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-90" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-86" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-86" />
+<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="V" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-49" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-117" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..95ebe15cbcf52c77b5b33f6e14d9fbd8f1b46002
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.woff
new file mode 100755
index 0000000000000000000000000000000000000000..f1a3d52d470508b59add3d57b431b3c2604dff38
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaReg.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.eot
new file mode 100755
index 0000000000000000000000000000000000000000..5242eb0a8092fb9a226760a5ba6ab77bbf2a9b63
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.svg
new file mode 100755
index 0000000000000000000000000000000000000000..0548bbce265c59a5c76806bcb2868b3b8644247a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.svg
@@ -0,0 +1,2142 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-extraboldregular" horiz-adv-x="1288" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1355" d="M14 707v180q64 12 103 39q25 20 35.5 47t15.5 80q10 87 42 157t72 113t95 82q64 42 170.5 67t220.5 25q60 0 136 -9t124 -26q48 -15 71 -46t23 -87q0 -39 -4.5 -119t-9.5 -120h-215q-4 29 -6.5 43t-7 33.5t-10 28t-15 19t-22.5 14t-31 6.5t-43 3q-129 0 -186.5 -49 t-57.5 -170v-96h297q143 45 233 45q71 0 111.5 -34.5t40.5 -129.5q0 -62 -3 -225t-3 -248q0 -94 18 -115q25 -22 125 -31v-186q-180 4 -301 4q-207 0 -301 -4v186q74 9 98 33q19 19 19 111v260q0 28 -3 47t-12 32.5t-18.5 20.5t-30.5 11t-40.5 5t-53.5 1h-176v-340 q0 -112 25 -148q12 -14 34 -21.5t84 -11.5v-186q-180 4 -290 4q-146 0 -334 -4v186q40 4 59 6t38.5 9t25.5 13t11.5 24.5t6 35t0.5 52.5v383h-160z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1382" d="M14 707v180q64 12 103 39q25 20 35.5 47t15.5 80q11 131 56 212t126 138q62 44 150.5 69t175.5 25q140 0 225 -33q88 33 184 33q69 0 104.5 -44t35.5 -124q0 -62 -2 -185.5t-2 -176.5v-637q0 -95 24 -119q17 -17 117 -27v-186q-180 4 -297 4q-225 0 -317 -4v186 q55 6 76 12.5t36 20.5q19 22 19 109v530q0 129 -5 246q-3 80 -43 106q-38 27 -129 27q-36 0 -76.5 -11.5t-62.5 -31.5q-49 -46 -49 -162v-108q126 0 242 -7v-204q-135 -6 -242 -6v-340q0 -112 25 -148q22 -28 135 -33v-186q-180 4 -307 4q-146 0 -334 -4v186q40 4 59 6 t38.5 9t25.5 13t11.5 24.5t6 35t0.5 52.5v383h-160z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="2082" d="M14 707v180q64 12 103 39q25 19 35 45.5t16 81.5q17 128 51.5 195.5t106.5 123.5q110 86 282 86q101 0 170 -22q99 -37 99 -138q0 -95 -19 -221h-172q0 4 -1 13q-2 31 -3.5 45t-6 31.5t-12.5 24.5t-22 12t-35 5q-22 0 -38 -7t-26 -23.5t-16 -32.5t-8.5 -44.5t-3 -48.5 t-0.5 -55v-84h205q101 0 127 23q37 23 49 117q16 127 70 210.5t139 141.5q64 42 170 67t219 25q165 0 260 -35q50 -15 73 -46t23 -87q0 -98 -16 -239h-215q-4 37 -7.5 57.5t-11.5 40.5t-22 29t-36 14.5t-56 5.5q-130 0 -187 -49t-57 -170v-96h295q143 45 236 45 q70 0 109.5 -34t39.5 -130q0 -62 -3 -225t-3 -248q0 -95 20 -115q22 -22 125 -31v-186q-180 4 -303 4q-201 0 -293 -4v186q45 4 62.5 10t32.5 19q16 16 16 115v260q0 28 -3 47t-11.5 32t-19 20.5t-31 11.5t-40.5 5t-55 1h-174v-340q0 -71 5.5 -100.5t19.5 -47.5 q12 -14 38 -21.5t93 -11.5v-186q-180 4 -305 4q-134 0 -326 -4v186q61 6 84.5 13.5t34.5 21.5q16 16 16 105v383h-387v-342q0 -112 25 -148q12 -14 41.5 -21.5t113.5 -11.5v-186q-180 4 -327 4q-146 0 -334 -4v186q40 4 59 6t38.5 9t25.5 13t11.5 24.5t6 35t0.5 52.5v383 h-160z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="2107" d="M14 707v180q64 12 103 39q13 10 21.5 21t14 27.5t9 33.5t6.5 45q17 128 51.5 195.5t106.5 123.5q110 86 282 86q101 0 170 -22q47 -18 73 -53t26 -85q0 -38 -6.5 -108t-12.5 -113h-172q0 4 -1 13q-1 23 -2 33t-3.5 26t-5.5 22.5t-8.5 15.5t-13.5 12.5t-19.5 6t-26.5 2.5 q-22 0 -38 -7t-26 -23.5t-16 -32.5t-8.5 -44.5t-3 -48.5t-0.5 -55v-84h205q101 0 127 23q21 13 32 40.5t17 76.5q14 131 58.5 211t123.5 139q63 44 150.5 69t175.5 25q141 0 223 -33q90 33 186 33q69 0 103.5 -44t34.5 -124q0 -62 -1 -194t-1 -185v-620q0 -26 0.5 -43.5 t4 -33t5.5 -24.5t11.5 -16.5t15.5 -11t22.5 -7t28 -5t37.5 -4.5q9 0 14 -1v-186q-180 4 -297 4q-213 0 -305 -4v186q49 6 67.5 12.5t32.5 20.5q21 21 21 109v530q0 152 -4 246q-3 78 -42.5 105.5t-132.5 27.5q-36 0 -76 -11.5t-63 -31.5q-47 -44 -47 -162v-108q123 0 242 -7 v-202q-135 -6 -242 -6v-342q0 -71 5.5 -100.5t19.5 -47.5q9 -10 18 -15t41 -10t90 -8v-186q-180 4 -323 4q-134 0 -326 -4v186q61 6 84.5 13.5t34.5 21.5q16 16 16 105v383h-387v-342q0 -112 25 -148q12 -14 42 -21.5t115 -11.5v-186q-180 4 -329 4q-146 0 -334 -4v186 q40 4 59 6t38.5 9t25.5 13t11.5 24.5t6 35t0.5 52.5v383h-160z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="634" d="M174 1276q0 31 10 59.5t31.5 55.5t62.5 43t97 16q96 0 146 -48t50 -122q0 -15 -2 -37.5t-7.5 -61.5t-11.5 -79t-18 -112.5t-22.5 -136.5t-29 -176.5t-34.5 -209.5h-149q-76 451 -99.5 603.5t-23.5 205.5zM176 162q0 76 50.5 127t127.5 51q79 0 131 -49.5t52 -124.5 q0 -87 -50.5 -135.5t-130.5 -48.5t-130 50t-50 130z" />
+<glyph unicode="&#x22;" horiz-adv-x="747" d="M63 1337q0 56 34 87.5t98 31.5q133 0 133 -119q0 -46 -15.5 -141t-66.5 -354h-111q-72 437 -72 495zM418 1337q0 56 34 87.5t99 31.5q135 0 135 -119q0 -18 -2 -38.5t-9 -64.5t-14 -82t-24 -133.5t-31 -176.5h-112q-13 82 -29 176.5t-22.5 134t-13.5 83.5t-9 64.5 t-2 36.5z" />
+<glyph unicode="#" horiz-adv-x="1177" d="M76 399v211h262l37 176h-215v213h260l76 375h133l-78 -375h211l80 375h133l-78 -375h207v-213h-252l-39 -176h205v-211h-248l-88 -426h-131l86 426h-213l-86 -426h-129l84 426h-217zM469 610h213l37 176h-213z" />
+<glyph unicode="$" horiz-adv-x="1218" d="M98 272q0 69 15 197h170q23 -115 73 -168q57 -63 209 -70v279l-127 43q-82 28 -141.5 64.5t-93 73t-53.5 82t-25.5 83.5t-5.5 86q0 167 112 279t334 133v211h125v-207q211 -8 318 -64q42 -21 58.5 -59.5t16.5 -106.5q0 -60 -18 -217h-172q-5 49 -23 97.5t-47 70.5 q-39 29 -133 39v-272l125 -43q164 -55 245 -144.5t81 -236.5q0 -191 -121 -298t-330 -128v-232h-125v226q-217 4 -313 49q-93 37 -123.5 89.5t-30.5 143.5zM469 1012q0 -92 86 -119l10 -4v223q-96 -19 -96 -100zM690 242q92 27 92 106q0 51 -22.5 77.5t-67.5 41.5h-2v-225z " />
+<glyph unicode="%" horiz-adv-x="1929" d="M53 930q0 211 104.5 324.5t295.5 113.5q106 0 179.5 -28.5t116.5 -84.5t61.5 -131t18.5 -176q0 -118 -29 -206t-82.5 -140t-122 -77t-153.5 -25q-201 0 -295 107t-94 323zM326 946q0 -143 28 -199.5t90 -56.5q59 0 86 61t27 189q0 135 -25 189.5t-86 54.5 q-63 0 -91.5 -58.5t-28.5 -179.5zM606 27l596 1366l137 -54l-594 -1368zM1100 414q0 212 103 325t294 113q206 0 291.5 -107t85.5 -315q0 -229 -105.5 -337.5t-281.5 -108.5q-201 0 -294 106.5t-93 323.5zM1370 428q0 -142 28.5 -199t90.5 -57q59 0 87 61.5t28 188.5 q0 136 -26 190t-87 54q-63 0 -92 -58.5t-29 -179.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="1730" d="M68 383q0 144 78 239.5t235 153.5q-42 76 -62 137.5t-20 133.5q0 368 492 368q190 0 298.5 -75.5t108.5 -206.5q0 -128 -78 -209.5t-268 -159.5q118 -161 272 -281q2 3 7.5 10.5t11.5 17t10 19.5q14 28 14 60q-1 21 -13.5 31.5t-37.5 15.5q-55 9 -74 10v187 q152 -5 289 -5q191 0 281 5v-187q-67 -3 -107 -24q-36 -20 -86 -109q-57 -99 -112 -174q129 -80 227 -80q45 0 72 4l2 -270q-68 -12 -160 -12q-115 0 -226.5 25t-170.5 67q-186 -101 -430 -101q-247 0 -400 112.5t-153 297.5zM459 426q0 -86 65.5 -144.5t141.5 -58.5 q87 0 139 23q-113 97 -172 162.5t-129 160.5q-45 -56 -45 -143zM686 1077q0 -33 12 -63.5t47 -77.5q88 39 123 76.5t35 77.5q0 42 -26 66t-78 24q-113 0 -113 -103z" />
+<glyph unicode="'" horiz-adv-x="389" d="M63 1337q0 56 34 87.5t98 31.5q133 0 133 -119q0 -46 -15.5 -141t-66.5 -354h-111q-72 437 -72 495z" />
+<glyph unicode="(" horiz-adv-x="696" d="M74 594q0 698 524 1010l80 -113q-173 -153 -256.5 -363t-83.5 -534q0 -285 93 -509.5t257 -383.5l-86 -104q-528 305 -528 997z" />
+<glyph unicode=")" horiz-adv-x="696" d="M8 1499l86 105q529 -306 529 -998q0 -697 -527 -1009l-80 112q175 153 258.5 362.5t83.5 534.5q0 285 -93 509.5t-257 383.5z" />
+<glyph unicode="*" horiz-adv-x="847" d="M72 1143q0 45 28.5 81t75.5 36q29 0 72.5 -30.5t146.5 -119.5q-11 29 -25.5 67.5t-22 58t-15 41.5t-10.5 36.5t-3 25.5q0 56 31 79.5t76 23.5q106 0 106 -101q0 -14 -3 -32.5t-11.5 -47t-13.5 -45t-18 -56.5t-17 -52q88 81 132.5 113t80.5 32q98 0 98 -108 q0 -101 -90 -107q-54 -4 -94 -4q-25 0 -111 4q119 -79 163 -125.5t44 -87.5q0 -39 -37 -69.5t-73 -30.5q-59 0 -85.5 48t-72.5 212q-41 -155 -77 -207.5t-89 -52.5q-37 0 -71.5 31.5t-34.5 72.5q0 34 49 82.5t180 126.5q-17 0 -49 -1t-45 -1q-65 0 -117 6q-50 7 -74 27.5 t-24 73.5z" />
+<glyph unicode="+" horiz-adv-x="1286" d="M188 545v198h359v394h196v-394h357v-198h-357v-393h-196v393h-359z" />
+<glyph unicode="," horiz-adv-x="503" d="M31 -295q184 142 184 242q0 22 -12.5 40t-36.5 25q-111 43 -111 156q0 67 53.5 119.5t141.5 52.5q98 0 152.5 -62t54.5 -163q0 -145 -86.5 -271t-255.5 -250z" />
+<glyph unicode="-" horiz-adv-x="585" d="M57 406v212h469v-212h-469z" />
+<glyph unicode="." horiz-adv-x="471" d="M55 162q0 76 50.5 127t127.5 51q79 0 131 -49.5t52 -124.5q0 -87 -50 -135.5t-130 -48.5t-130.5 50.5t-50.5 129.5z" />
+<glyph unicode="/" horiz-adv-x="702" d="M47 -133l465 1630l158 -35l-467 -1630z" />
+<glyph unicode="0" d="M70 666q0 341 154 523.5t438 182.5q125 0 220 -30.5t158.5 -86t103.5 -141t57.5 -187.5t17.5 -233q0 -190 -43.5 -332t-122.5 -226t-181 -124.5t-227 -40.5q-298 0 -436.5 172.5t-138.5 522.5zM444 692q0 -245 49.5 -350.5t153.5 -105.5q107 0 152 110t45 334 q0 234 -45.5 335t-147.5 101q-207 0 -207 -424z" />
+<glyph unicode="1" d="M203 1221q107 49 338 122q90 31 170 31q60 0 100.5 -38t40.5 -122q0 -34 -2 -157t-2 -234v-469q0 -100 18 -125q11 -19 54 -29t155 -16v-186q-168 4 -389 4q-264 0 -436 -4v186q114 5 158.5 16t60.5 29q13 11 16.5 39t3.5 88v441q0 126 -8 194q-4 28 -16 39.5t-35 11.5 q-69 0 -170 -30z" />
+<glyph unicode="2" d="M86 0v207q253 208 386.5 337.5t187 218t53.5 173.5q0 79 -43 129.5t-140 50.5q-35 0 -72.5 -10t-54.5 -25q-38 -27 -43 -166h-202q-21 151 -21 222q0 63 32.5 107t102.5 75q125 53 334 53q239 0 360 -104t121 -285q0 -180 -138 -351t-435 -360q42 0 141 1t125 1 q81 0 117 12t53 44q28 56 45 123h172q-4 -257 -22 -357q-19 -96 -156 -96h-903z" />
+<glyph unicode="3" d="M111 172q0 144 16 256h201q5 -110 49 -147q49 -43 196 -43q90 0 137.5 41.5t47.5 105.5q0 86 -48 122.5t-155 41.5q-47 2 -145 2v242q12 1 43 1.5t55 1.5t47 5q81 13 116.5 54.5t35.5 115.5q0 72 -37.5 108.5t-108.5 36.5q-116 0 -157.5 -34.5t-49.5 -147.5h-200 q-15 123 -15 199q0 117 99 165q46 26 150 50t216 24t196 -18.5t136 -49t84.5 -76t44.5 -93t12 -105.5q0 -37 -5 -69t-21.5 -70.5t-43.5 -70.5t-74 -63.5t-110 -54.5q166 -31 238 -108.5t72 -210.5q0 -199 -154.5 -305.5t-429.5 -106.5q-84 0 -180 13t-144 30 q-114 40 -114 158z" />
+<glyph unicode="4" d="M66 356v183l473 665q70 99 123 134.5t149 35.5q75 0 125.5 -45.5t50.5 -154.5q0 -46 -1 -167t-1 -155v-240h205v-254h-205v-30q0 -73 19 -103q26 -34 176 -41v-186q-168 4 -394 4q-178 0 -354 -4v186q169 10 189 41q18 30 18 109v22h-573zM354 606h285q4 369 8 428z" />
+<glyph unicode="5" d="M127 166q0 136 14 246h203q7 -101 45 -144q24 -22 69 -34.5t93 -12.5q107 0 164 54t57 137q0 100 -55 148t-178 48q-26 0 -101 -12t-106 -12q-129 0 -129 135q0 43 6 110l47 510h807v-274h-569l-21 -207q98 25 221 25q95 0 175 -23t143.5 -70t99 -126.5t35.5 -184.5 q0 -115 -35 -204.5t-92 -145.5t-137.5 -92.5t-164.5 -51t-179 -14.5q-177 0 -295 43q-64 26 -90.5 60.5t-26.5 91.5z" />
+<glyph unicode="6" d="M113 621q0 751 639 751q193 0 288 -45q50 -23 75.5 -57t25.5 -90q0 -102 -15 -224h-200q-8 58 -19 87t-33 44q-41 31 -126 31q-131 0 -198 -93.5t-69 -244.5q36 52 118 80.5t155 28.5q98 0 174 -26.5t122.5 -69t76.5 -102t41.5 -119.5t11.5 -128q0 -96 -34.5 -181 t-99 -150.5t-165.5 -103.5t-226 -38q-256 0 -399 170t-143 480zM479 528q0 -68 6 -112q26 -183 174 -183q84 0 131.5 52t47.5 151q0 187 -183 187q-47 0 -98.5 -27.5t-77.5 -67.5z" />
+<glyph unicode="7" d="M106 1208q0 131 127 131h916v-198l-475 -1118q-43 -103 -131 -103q-64 0 -113 31t-49 84q0 46 25 94l436 936h-236q-86 0 -124.5 -1t-80.5 -6t-63 -16q-49 -21 -70 -149h-147q-15 169 -15 315z" />
+<glyph unicode="8" d="M86 330q0 104 59.5 190t186.5 133q-63 37 -105 80t-62.5 88.5t-28 85.5t-7.5 88q0 57 18 110t58.5 102t99.5 85.5t148 58t198 21.5q122 0 215 -25.5t149.5 -70.5t84.5 -103.5t28 -128.5q0 -107 -54.5 -171t-162.5 -113q87 -46 142.5 -92.5t81.5 -95.5t34.5 -90.5 t8.5 -98.5q0 -63 -21 -122.5t-67 -112.5t-111.5 -93t-161.5 -63t-211 -23q-252 0 -386 95.5t-134 265.5zM422 360q0 -63 45.5 -104t140.5 -41q89 0 132.5 36.5t43.5 92.5t-54.5 100.5t-199.5 98.5q-108 -82 -108 -183zM500 1024q0 -50 47 -89t158 -77q86 71 86 160 q0 48 -39 81.5t-105 33.5q-78 0 -112.5 -32t-34.5 -77z" />
+<glyph unicode="9" d="M109 901q0 96 34 180.5t97.5 150t163.5 103t225 37.5q257 0 399.5 -168.5t142.5 -480.5q0 -133 -19.5 -241.5t-52 -185.5t-81.5 -135.5t-102.5 -94t-120 -57.5t-129 -30t-134.5 -8q-92 0 -172.5 13t-123.5 32q-101 46 -101 148q0 141 15 237h198q8 -54 22 -82t36 -47 q31 -36 147 -36q125 0 186 88t64 241q-36 -52 -116.5 -77t-156.5 -25q-82 0 -148.5 17.5t-111.5 49.5t-77 72.5t-50 91.5t-26 101t-8 106zM451 909q0 -104 47 -141t131 -37q50 0 100.5 23t75.5 63q0 85 -6 129q-27 170 -174 170q-84 0 -129 -51.5t-45 -155.5z" />
+<glyph unicode=":" horiz-adv-x="514" d="M98 162q0 76 50.5 127t127.5 51q79 0 131 -49.5t52 -124.5q0 -87 -50 -135.5t-130 -48.5t-130.5 50.5t-50.5 129.5zM98 774q0 76 50.5 127t127.5 51q79 0 131 -49.5t52 -124.5q0 -87 -50 -136.5t-130 -49.5q-79 0 -130 51t-51 131z" />
+<glyph unicode=";" horiz-adv-x="530" d="M74 -295q184 142 184 242q0 22 -12.5 40t-36.5 25q-111 43 -111 156q0 67 53.5 119.5t141.5 52.5q98 0 152.5 -62t54.5 -163q0 -145 -86.5 -271t-255.5 -250zM98 774q0 76 50.5 127t127.5 51q79 0 131 -49.5t52 -124.5q0 -87 -50 -136.5t-130 -49.5q-79 0 -130 51 t-51 131z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1284" d="M205 561v207l829 424v-231l-614 -297l614 -297v-238z" />
+<glyph unicode="=" horiz-adv-x="1284" d="M166 360v207h950v-207h-950zM166 776v203h950v-203h-950z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1284" d="M250 129v231l614 299l-614 295v238l829 -428v-209z" />
+<glyph unicode="?" horiz-adv-x="1003" d="M113 1231q0 57 24.5 92.5t73.5 58.5t136.5 37.5t160.5 14.5q106 -1 188.5 -20t136.5 -52t89 -80t50 -99.5t15 -113.5q0 -75 -18.5 -131.5t-66 -108.5t-124 -97t-196.5 -95q-32 -12 -47.5 -41.5t-22.5 -71.5q-9 -67 -10 -75h-162q-21 144 -21 251q0 31 12.5 57t36.5 46 t47 33t56 28q56 23 92 54.5t50 61.5t14 62q0 29 -6 53.5t-20.5 49.5t-45 39t-74.5 14q-29 0 -49.5 -2.5t-37.5 -9t-27.5 -17t-18.5 -27.5t-12 -40t-6 -55h-201q-16 86 -16 184zM244 162q0 76 50 127t126 51q54 0 96 -22.5t65 -62t23 -89.5q0 -87 -50 -135.5t-132 -48.5 q-78 0 -128 50.5t-50 129.5z" />
+<glyph unicode="@" horiz-adv-x="1740" d="M102 438q0 186 66.5 348.5t181 277.5t273.5 181t338 66q311 0 492 -165t181 -452q0 -150 -58.5 -283t-158.5 -216q-122 -101 -266 -101q-61 0 -99 17.5t-61 58.5q-9 21 -14 59q-121 -131 -275 -131q-107 0 -180 70.5t-73 208.5q0 104 42.5 219.5t114.5 198.5 q124 143 334 143q98 0 178 -41l41 53h168l-98 -428q-29 -123 -29 -188q0 -29 9.5 -43.5t39.5 -14.5q58 0 115 72q96 127 96 338q0 126 -37 220t-105.5 150t-158 83.5t-201.5 27.5q-150 0 -276 -55.5t-211 -152.5t-132.5 -231t-47.5 -288q0 -260 164 -421.5t444 -161.5 q164 0 291.5 37t255.5 108l67 -125q-306 -180 -639 -180q-348 0 -560 204.5t-212 536.5zM686 414q0 -76 31 -104.5t90 -28.5q32 0 78.5 16t83.5 45q5 25 12 69.5t12 71.5l56 250q-63 29 -111 29q-102 0 -158 -74q-38 -50 -66 -133.5t-28 -140.5z" />
+<glyph unicode="A" horiz-adv-x="1568" d="M10 -2v190q102 3 140 41q22 20 39 55t55 138l311 813q35 94 95.5 139t152.5 45q88 0 142.5 -42t84.5 -126l324 -891q23 -65 42 -95t50 -52q36 -23 113 -25v-190q-200 4 -287 4q-243 0 -473 -4v190q81 3 125 19q25 10 33 24t8 35q0 29 -25 109l-12 41h-398l-10 -29 q-31 -86 -31 -123q0 -13 1 -20t10 -18t26 -17q50 -18 150 -21v-190q-208 4 -412 4q-66 0 -254 -4zM600 670h240q-82 239 -115 364q-94 -280 -125 -364z" />
+<glyph unicode="B" horiz-adv-x="1363" d="M35 0v188q124 2 149 27q15 14 20 37t5 92v705q0 101 -19 120q-16 14 -42.5 19.5t-112.5 9.5v188h545q207 0 333 -18q154 -24 231 -102.5t77 -202.5q0 -258 -281 -324q170 -20 262 -108t92 -230q0 -230 -202 -335q-125 -66 -336 -66h-721zM580 295q0 -28 7 -40t27 -15 q23 -4 80 -4q199 0 199 182q0 101 -74 147q-54 29 -213 29h-26v-299zM582 842h41q91 0 120 10q99 25 99 135q0 98 -80 125q-46 14 -137 14h-43v-284z" />
+<glyph unicode="C" horiz-adv-x="1398" d="M74 668q0 353 199 551t563 198q245 0 358 -53q113 -55 113 -145q0 -123 -29 -283h-209q-14 122 -45 164q-26 32 -71 44.5t-128 12.5q-56 0 -106.5 -15t-98.5 -50t-82.5 -87.5t-55.5 -133.5t-21 -183q0 -87 16.5 -158.5t45.5 -119.5t64.5 -82.5t78 -53.5t82 -27.5 t79.5 -8.5q152 0 207 55q38 38 76 164h213q-10 -247 -43 -324q-28 -64 -143 -106q-54 -22 -148.5 -39t-204.5 -17q-338 0 -524 181.5t-186 515.5z" />
+<glyph unicode="D" horiz-adv-x="1527" d="M35 0v188q84 3 114.5 10t43.5 23q16 29 16 121v698q0 92 -8 113q-12 26 -39.5 33t-126.5 12v186h444q308 0 462 -24t253 -82q262 -156 262 -559q0 -232 -77 -385t-242 -240q-90 -46 -236 -70t-313 -24h-553zM580 338q0 -46 24 -62q31 -24 98 -24q192 0 274.5 99.5 t82.5 340.5q0 129 -21.5 211t-72.5 129.5t-124 65.5t-188 18h-73v-778z" />
+<glyph unicode="E" horiz-adv-x="1333" d="M35 0v188q136 11 158 33q11 12 13.5 37t2.5 92v692q0 103 -12 115q-14 16 -47.5 25t-114.5 16v186h1018q77 0 118 -28t41 -78q0 -119 -26 -285h-197q-18 103 -53 127q-25 19 -107 19h-249v-322h49q100 0 127 29q23 25 43 112h180q-2 -51 -2 -256q0 -172 4 -258h-176 q-14 91 -37 117q-20 19 -50.5 24t-88.5 5h-49v-252q0 -42 12.5 -63t42.5 -25q55 -8 151 -8q184 0 248 57q10 9 20.5 28t16.5 33.5t16.5 42t12.5 33.5h186q-6 -271 -39 -358q-12 -35 -68.5 -56.5t-131.5 -21.5h-1012z" />
+<glyph unicode="F" horiz-adv-x="1251" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v692q0 103 -12 115q-14 16 -47.5 25t-114.5 16v186h1024q153 0 153 -110q0 -51 -8.5 -149t-15.5 -142h-203q-21 107 -53 135q-29 19 -113 19h-239v-365h90q97 0 127 33q21 24 43 121h168q-2 -51 -2 -264q0 -181 4 -267 h-164q-15 97 -39 121q-19 19 -49 24t-88 5h-90v-166q0 -115 22 -148q29 -43 195 -43v-190q-176 4 -400 4q-182 0 -362 -4z" />
+<glyph unicode="G" horiz-adv-x="1492" d="M74 668q0 169 53 308.5t150 236.5t239 150.5t315 53.5q311 0 431 -67q81 -47 81 -138q0 -120 -26 -276h-207q-8 52 -14.5 81.5t-19 58t-27.5 41.5t-43 23.5t-62.5 13.5t-87.5 3q-56 0 -105 -9.5t-104.5 -40t-94.5 -80t-65 -136.5t-26 -203q0 -110 27 -194.5t66.5 -131.5 t92.5 -76.5t96 -38.5t86 -9q106 0 134 28q16 16 16 68v82q0 51 -29 69q-39 15 -147 23v190q118 -4 352 -4q147 0 299 4v-190q-74 -5 -97.5 -21.5t-23.5 -74.5v-242q0 -49 -17 -72t-61 -43q-87 -38 -211.5 -62t-255.5 -24q-158 0 -289 46t-225.5 133t-147 220t-52.5 300z" />
+<glyph unicode="H" horiz-adv-x="1591" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q270 -6 362 -6q93 0 357 6v-188q-59 -2 -93.5 -8t-45 -11.5t-19.5 -15.5q-16 -22 -16 -121v-186h432v186q0 103 -17 123q-13 16 -44.5 23t-112.5 10v188q270 -6 372 -6 q79 0 349 6v-188q-85 -3 -115.5 -10.5t-42.5 -24.5q-11 -11 -15 -35.5t-4 -85.5v-682q0 -112 19 -139q12 -15 39 -22t119 -11v-190q-180 4 -349 4q-192 0 -372 -4v190q81 3 112 10t45 21q17 20 17 131v244h-432v-234q0 -115 16 -137q10 -10 21 -15.5t45 -11t92 -8.5v-190 q-176 4 -357 4q-182 0 -362 -4z" />
+<glyph unicode="I" horiz-adv-x="788" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q141 -6 362 -6q117 0 357 6v-188q-59 -2 -93.5 -8t-45 -11.5t-19.5 -15.5q-16 -22 -16 -121v-682q0 -71 3 -97t13 -38q8 -11 19 -17t45 -11.5t94 -8.5v-190q-176 4 -357 4 q-182 0 -362 -4z" />
+<glyph unicode="J" horiz-adv-x="774" d="M-8 -158q57 33 102 77t66 85q47 94 47 342v701q0 99 -14 118q-11 15 -45 22.5t-115 10.5v188q141 -6 362 -6q108 0 348 6v-188q-58 -2 -91 -8t-40.5 -11t-17.5 -16q-16 -22 -16 -121v-692q0 -138 -23 -236.5t-82 -185.5q-54 -81 -159 -151t-218 -111z" />
+<glyph unicode="K" horiz-adv-x="1533" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q270 -6 362 -6q91 0 355 6v-188q-59 -2 -93 -8t-44 -11.5t-19 -15.5q-16 -22 -16 -121v-682q0 -116 16 -135q11 -11 21.5 -16.5t44 -11.5t92.5 -9v-190q-176 4 -357 4 q-182 0 -362 -4zM594 686q207 222 291 328q65 87 65 127q0 29 -18 41t-90 16v188q88 -4 350 -4q195 0 285 4v-188q-51 -3 -84 -18q-61 -19 -156 -127q-168 -192 -268 -301q220 -349 344 -471q50 -50 90.5 -69t112.5 -19v-191q-94 -10 -234 -10q-201 0 -305 104 q-51 52 -113 143t-110.5 173t-159.5 274z" />
+<glyph unicode="L" horiz-adv-x="1300" d="M35 0v188q137 12 158 33q11 12 13.5 37t2.5 92v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q141 -6 362 -6q117 0 357 6v-188q-59 -2 -93.5 -8t-45 -11.5t-19.5 -15.5q-16 -22 -16 -121v-694q0 -42 12.5 -63t42.5 -25q55 -8 151 -8q105 0 158 12.5t78 40.5 q31 36 57 139h170q-6 -279 -39 -366q-12 -36 -60.5 -57t-119.5 -21h-995z" />
+<glyph unicode="M" horiz-adv-x="1884" d="M35 -2v190q128 0 153 31q18 29 21 168q3 168 5.5 301t4 200.5t2.5 114t1.5 66t0.5 31.5q0 50 -14 67q-11 14 -40.5 21t-119.5 10v188q92 -4 357 -4q208 0 290 4q185 -499 240 -690q63 197 256 690q184 -4 313 -4q246 0 326 4v-188q-83 -1 -111.5 -8t-38.5 -23 q-16 -18 -16 -114v-31.5t1 -62t2 -106.5t3 -190.5t4 -289.5q2 -117 17 -152q9 -16 42 -23t117 -10v-190q-208 4 -352 4q-135 0 -377 -4v190q143 7 164 35q17 27 17 111q0 397 6 696q-55 -163 -273 -727q-43 -104 -159 -104q-66 0 -102 26t-56 80q-211 576 -260 727 q0 -109 3 -412t3 -315q0 -68 18 -86q23 -26 154 -31v-190q-176 4 -238 4q-156 0 -364 -4z" />
+<glyph unicode="N" horiz-adv-x="1597" d="M31 1198v188q90 -4 334 -4q190 0 262 4q428 -631 547 -821q-4 105 -6.5 247.5t-4.5 174.5q-5 90 -8.5 120.5t-13.5 49.5q-13 19 -48.5 28.5t-123.5 12.5v188q222 -4 317 -4q77 0 295 4v-188q-79 -4 -108 -11t-48 -24q-13 -12 -17.5 -46t-6.5 -130q-2 -86 -1 -459 q0 -33 0.5 -184t0.5 -197q0 -88 -41.5 -130t-138.5 -42q-65 0 -111.5 30t-85.5 89q-495 746 -584 887q3 -403 9 -584q3 -99 6.5 -131t13.5 -45q14 -16 44.5 -22.5t119.5 -10.5v-190q-218 4 -301 4q-89 0 -297 -4v190q89 4 119 12.5t41 28.5q11 22 14 170q6 307 6 586 q0 144 -12 168q-4 7 -9 13t-13 10t-15 7t-19.5 5.5t-19.5 4t-23 2.5t-23 1t-25 1t-25 1z" />
+<glyph unicode="O" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q353 0 520.5 -183t167.5 -517q0 -185 -55 -329t-152 -233.5t-224 -135.5t-278 -46q-175 0 -310 52t-220.5 147.5t-128.5 225.5t-43 290zM463 715q0 -253 81 -365t232 -112q307 0 307 464q0 239 -74 347t-229 108 q-154 0 -235.5 -114t-81.5 -328z" />
+<glyph unicode="P" horiz-adv-x="1357" d="M35 -2v190q105 3 137 19q22 10 29.5 33t7.5 98v713q0 63 -4.5 85.5t-16.5 34.5t-41.5 18t-111.5 9v186h559q250 0 373 -22q155 -31 239 -130t84 -257q0 -222 -133.5 -349.5t-406.5 -127.5q-121 0 -170 4v-146q0 -64 4.5 -93t17.5 -42q18 -18 54.5 -25t129.5 -8v-190 q-208 4 -430 4q-87 0 -321 -4zM580 756q33 -2 106 -2q116 0 171.5 44.5t55.5 145.5q0 115 -106 156q-44 16 -172 16h-55v-360z" />
+<glyph unicode="Q" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q353 0 520.5 -183t167.5 -517q0 -254 -104 -426t-281 -252q82 -79 162 -121q62 -33 146.5 -54.5t154.5 -21.5q37 0 47 2v-190q-97 -19 -178 -19q-110 0 -218 17.5t-170 42.5q-112 46 -194 108t-203 179q-190 23 -320.5 119 t-191.5 244t-61 343zM463 715q0 -253 81 -365t232 -112q307 0 307 464q0 239 -74 347t-229 108q-154 0 -235.5 -114t-81.5 -328z" />
+<glyph unicode="R" horiz-adv-x="1411" d="M35 -2v190q105 3 137 19q22 10 29.5 33t7.5 98v713q0 63 -4.5 85.5t-16.5 34.5t-41.5 18t-111.5 9v186h559q231 0 354 -22q163 -31 249.5 -128.5t86.5 -258.5q0 -318 -270 -416q78 -124 176 -233q68 -81 121 -107q45 -22 90 -24v-195q-28 -4 -119 -4q-79 0 -142.5 11 t-107.5 32t-70.5 39.5t-54.5 44.5q-136 125 -268 399q-35 0 -59 4v-170q0 -64 4.5 -93t17.5 -42q18 -18 44.5 -25t101.5 -8v-190q-204 4 -392 4q-87 0 -321 -4zM580 782q33 -2 120 -2q195 0 195 174q0 54 -25 93.5t-71 54.5q-49 14 -172 14h-47v-334z" />
+<glyph unicode="S" horiz-adv-x="1261" d="M90 268q0 126 12 232h183q25 -143 77 -199q34 -36 103.5 -56t150.5 -20q95 0 145 33t50 92q0 36 -13 61.5t-32.5 39t-50.5 24.5l-266 92q-62 21 -112 47t-85 53t-60.5 58.5t-41 60.5t-24.5 63.5t-12 63.5t-3 64q0 95 34.5 173.5t103 138.5t180 93t257.5 33q251 0 363 -65 q44 -26 61.5 -65.5t17.5 -110.5q0 -82 -18 -248h-184q-8 53 -15.5 86.5t-21 62.5t-31 44.5t-46.5 27t-65 15t-90 3.5q-93 0 -134.5 -31.5t-41.5 -82.5q0 -94 92 -127l271 -93q173 -59 258.5 -154t85.5 -249q0 -115 -44 -203t-123.5 -143t-186 -83t-236.5 -28 q-94 0 -191.5 15t-154.5 39q-97 40 -129.5 94.5t-32.5 148.5z" />
+<glyph unicode="T" horiz-adv-x="1427" d="M57 1235q0 68 34 108.5t108 40.5h1028q73 0 108 -35t35 -94q0 -219 -10 -366h-168q-11 109 -23 151.5t-39 63.5q-23 19 -71 24t-152 5v-773q0 -115 17 -135q16 -16 49 -24.5t127 -12.5v-190q-180 4 -375 4q-197 0 -381 -4v190q94 3 127.5 10.5t48.5 22.5q17 20 17 129 v783q-186 0 -232 -25q-26 -17 -43.5 -62t-25.5 -157h-166q-13 191 -13 346z" />
+<glyph unicode="U" horiz-adv-x="1630" d="M27 1198v188q164 -4 317 -4q274 0 434 4v-188q-153 -2 -176 -35q-17 -17 -20 -102q-2 -76 -2 -416q0 -195 34 -283q48 -129 256 -129q214 0 277 99q25 38 37.5 95.5t15 102t2.5 117.5q0 200 -8 391q-4 65 -8.5 91.5t-20.5 37.5q-17 16 -52.5 22t-111.5 9v188 q76 -2 359 -2q20 0 114.5 1t133.5 1v-188q-86 -7 -118.5 -18t-43.5 -29q-19 -36 -18 -129v-420q0 -188 -28.5 -290t-96.5 -179q-68 -79 -198.5 -122.5t-287.5 -43.5q-186 0 -323 51.5t-201 147.5q-45 69 -65.5 170t-20.5 297q0 107 1 253.5t1 155.5q0 92 -12 113 q-13 20 -47.5 29.5t-122.5 13.5z" />
+<glyph unicode="V" horiz-adv-x="1552" d="M10 1198v188q200 -4 393 -4q137 0 371 4v-188q-92 -3 -125 -18q-43 -16 -43 -66q0 -33 29 -115q162 -464 207 -612q77 256 194 612q25 73 25 125q0 46 -37 56q-41 15 -147 18v188q204 -4 280 -4q193 0 385 4v-188q-54 -2 -84 -9.5t-53 -27.5q-31 -29 -74 -143l-327 -875 q-32 -89 -88.5 -128.5t-147.5 -39.5q-92 0 -144 35t-81 117l-328 891q-24 67 -44 100t-50 53q-28 24 -111 27z" />
+<glyph unicode="W" horiz-adv-x="2224" d="M25 1198v188q262 -4 391 -4q295 0 381 4v-188q-61 0 -102 -7t-60.5 -21t-27 -28.5t-7.5 -35.5q0 -46 16 -111q26 -114 64 -272t59 -254q20 79 46 170.5t73.5 256.5t93.5 329q45 166 217 166q50 0 84.5 -10t56.5 -33t35 -49t27 -70q180 -580 225 -766q19 94 58.5 270 t56.5 258q19 88 19 119t-11 47t-53.5 27.5t-126.5 13.5v188q200 -4 371 -4q137 0 289 4v-188q-97 -5 -132 -31q-21 -14 -34.5 -45.5t-33.5 -98.5q-3 -11 -5 -17l-248 -859q-27 -92 -75 -132t-140 -40q-94 0 -138 34.5t-69 121.5q-191 650 -225 782q-48 -216 -213 -766 q-27 -90 -77 -131t-140 -41q-91 0 -137 36.5t-68 119.5l-256 936q-23 90 -68 109q-34 19 -116 22z" />
+<glyph unicode="X" horiz-adv-x="1628" d="M39 -2v190q111 4 151 33q38 36 68 78l315 438l-266 353q-16 23 -23 32.5t-22.5 26t-28.5 22.5q-47 24 -137 27v188q129 -4 357 -4q351 0 419 4v-188q-110 0 -110 -57q0 -30 45 -97l117 -165l110 170q37 55 37 96q0 26 -26 38t-91 15v188q86 -4 330 -4q158 0 256 4v-188 q-40 -2 -67.5 -8.5t-50 -23.5t-35 -31.5t-37.5 -45.5q-1 -2 -2 -3.5t-2.5 -3t-2.5 -3.5l-278 -383l305 -411q14 -22 68 -68q20 -16 49 -21t100 -8v-190q-262 4 -366 4q-199 0 -437 -4v190q78 4 107 20t29 42q0 32 -27 69l-170 222l-139 -211q-35 -50 -35 -80q0 -32 32.5 -45 t131.5 -17v-190q-230 4 -355 4q-202 0 -319 -4z" />
+<glyph unicode="Y" horiz-adv-x="1423" d="M12 1198v188q234 -4 324 -4q175 0 383 4v-188q-73 -4 -99 -19t-26 -42q0 -31 31 -90q110 -187 161 -283q29 55 86 155.5t78 139.5q29 56 29 86q0 24 -25.5 38t-101.5 15v188q96 -4 360 -4q113 0 199 4v-188q-65 -3 -96 -31q-31 -22 -144 -198l-284 -432v-207 q0 -58 10 -88q7 -23 44.5 -36.5t139.5 -17.5v-190q-222 4 -372 4q-169 0 -377 -4v190q103 7 132.5 15t39.5 26q12 17 12 101v205l-309 507q-34 57 -54 84t-44 43q-40 25 -97 29z" />
+<glyph unicode="Z" horiz-adv-x="1423" d="M66 0v106l692 1037q-185 0 -270.5 -5t-118.5 -20q-45 -20 -72 -172h-191q-16 153 -16 307q0 131 127 131h1083v-108l-696 -1030q73 -6 180 -6q159 0 222 12.5t90 48.5q29 41 55 141h192q-4 -241 -24 -354q-14 -88 -168 -88h-1085z" />
+<glyph unicode="[" horiz-adv-x="688" d="M178 -348v1892h473v-129h-227v-1632h227v-131h-473z" />
+<glyph unicode="\" horiz-adv-x="702" d="M49 1460l152 41l469 -1630l-156 -41z" />
+<glyph unicode="]" horiz-adv-x="688" d="M37 -219h225v1632h-225v131h471v-1892h-471v129z" />
+<glyph unicode="^" horiz-adv-x="1284" d="M199 702l350 744h188l346 -741h-211l-235 503l-227 -506h-211z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-4 -164h1014v-123h-1014v123z" />
+<glyph unicode="`" horiz-adv-x="604" d="M86 1407q0 49 38 81t85 32q35 0 63 -22t68 -87l176 -289l-92 -73l-260 231q-42 42 -60 70t-18 57z" />
+<glyph unicode="a" horiz-adv-x="1114" d="M49 272q0 151 116.5 224t383.5 73q53 0 69 -2v47q0 73 -25.5 102t-100.5 29q-84 0 -115.5 -28t-36.5 -115h-197q-16 86 -16 176q0 56 24.5 91.5t73.5 60.5q46 23 129.5 38t157.5 15q119 0 199 -15.5t115 -35t61 -49.5q65 -68 65 -234q0 -45 -1 -183.5t-1 -143.5 q0 -62 18.5 -86.5t53.5 -24.5q43 0 70 4v-197q-48 -16 -119 -26t-121 -10q-35 0 -59 3t-54 13t-51 34t-33 62q-117 -117 -282 -117q-61 0 -117 17t-103 51.5t-75.5 93t-28.5 133.5zM389 289q0 -43 28.5 -64.5t65.5 -21.5q74 0 135 26v146q-20 4 -63 4q-90 0 -128 -22 t-38 -68z" />
+<glyph unicode="b" horiz-adv-x="1232" d="M0 1237v180q179 80 354 80q129 0 129 -168q0 -293 -2 -467q145 123 320 123q100 0 173 -35.5t115 -101t62 -149t20 -187.5q0 -115 -35.5 -210.5t-104 -166t-177 -110t-246.5 -39.5q-110 0 -257 18.5t-216 48.5q4 98 4 266v725q0 94 -4.5 131t-19.5 50q-21 14 -70 14 q-31 0 -45 -2zM479 262q75 -14 137 -14q93 0 141 65.5t48 165.5q0 125 -43.5 187.5t-124.5 62.5q-84 0 -158 -39v-428z" />
+<glyph unicode="c" horiz-adv-x="1019" d="M63 453q0 125 40 226.5t111 167.5t166 101t206 35q141 0 227 -27q68 -22 99.5 -53t31.5 -90q0 -121 -16 -217h-201q-11 95 -47 117q-23 20 -88 20q-31 0 -60 -12.5t-56 -40t-43.5 -79.5t-16.5 -122q0 -77 19 -129t52.5 -76t66.5 -32.5t75 -8.5q111 0 250 66l92 -190 q-81 -66 -196 -102t-224 -36q-139 0 -249 56.5t-174.5 167t-64.5 258.5z" />
+<glyph unicode="d" horiz-adv-x="1282" d="M63 440q0 93 18 172.5t57.5 147.5t99 115.5t146.5 74.5t196 27q106 0 184 -33v127q0 73 -6 113q-5 55 -78 55q-35 0 -55 -2v180q167 80 352 80q39 0 66 -14.5t40.5 -39.5t19 -50t5.5 -54q0 -48 -2 -210.5t-2 -204.5v-621q0 -92 70 -92q44 0 71 4v-197q-116 -36 -248 -36 q-89 0 -130 27.5t-56 90.5q-119 -125 -303 -125q-206 0 -325.5 129.5t-119.5 335.5zM416 479q0 -122 56 -185t155 -63q81 0 137 50v415q-50 27 -135 27q-100 0 -156.5 -61t-56.5 -183z" />
+<glyph unicode="e" horiz-adv-x="1085" d="M63 455q0 250 144.5 389t378.5 139q217 0 325.5 -115.5t108.5 -306.5q0 -34 -9 -69t-22 -50q-31 -36 -108 -36h-473v-15q0 -61 57 -107t153 -46q161 0 330 79l96 -192q-90 -70 -217.5 -112t-271.5 -42q-139 0 -250 57t-176.5 168t-65.5 259zM408 604l288 6v21 q0 48 -35 80t-92 32q-67 0 -112 -33.5t-49 -105.5z" />
+<glyph unicode="f" horiz-adv-x="739" d="M14 707v180q64 12 103 39q26 20 37 47.5t16 79.5q8 90 29 156t54.5 112.5t84.5 85.5q57 42 139 66t154 24q115 0 186 -24q48 -18 71 -50t23 -88q0 -100 -14 -219h-199q-3 70 -17.5 100.5t-62.5 30.5q-51 0 -77 -37q-19 -26 -23 -59.5t-4 -114.5v-114q133 0 231 -4v-205 q-135 -6 -231 -6v-342q0 -112 25 -148q23 -26 166 -33v-186q-180 4 -338 4q-146 0 -334 -4v186q40 4 59 6t38.5 9t25.5 13t11.5 24.5t6 35t0.5 52.5v383h-160z" />
+<glyph unicode="g" horiz-adv-x="1136" d="M-12 -289q0 92 60.5 145t166.5 85q-94 50 -94 147q0 113 137 213q-203 84 -203 311q0 166 124 268.5t353 102.5q190 0 287 -61q183 0 316 -7v-204q-24 -1 -156 -6q10 -23 10 -76q0 -181 -120.5 -280t-352.5 -99q-67 0 -94 6q-27 -17 -27 -45q0 -44 101 -53q22 -2 81 -6.5 t125 -11t144 -17.5q145 -21 206.5 -98.5t61.5 -202.5q0 -180 -155 -287.5t-422 -107.5q-120 0 -214.5 15.5t-156.5 41.5t-102.5 62.5t-58 77t-17.5 87.5zM305 -207q0 -115 264 -115q183 0 183 84q0 55 -113 66q-221 21 -291 47q-43 -43 -43 -82zM399 621q0 -80 33.5 -114 t97.5 -34q59 0 93 38t34 110t-33 103.5t-96 31.5q-60 0 -94.5 -38t-34.5 -97z" />
+<glyph unicode="h" horiz-adv-x="1273" d="M25 -2v186q65 7 88.5 13.5t36.5 19.5q14 17 14 109v718q0 95 -5 131.5t-22 49.5q-19 14 -65 14q-33 0 -47 -2v180q179 80 352 80q131 0 131 -168q0 -79 -2 -244.5t-2 -253.5q60 67 153.5 106.5t176.5 39.5q129 0 198 -66q39 -36 56.5 -101t17.5 -173v-309q0 -83 10 -103 q8 -15 34.5 -23.5t98.5 -17.5v-186q-172 4 -278 4q-119 0 -299 -4v186q64 13 80 31q14 14 14 117v213q0 96 -21.5 128t-97.5 32q-55 0 -141 -27v-348q0 -66 3 -90.5t15 -34.5q16 -14 74 -21v-186q-180 4 -250 4q-231 0 -323 -4z" />
+<glyph unicode="i" horiz-adv-x="679" d="M33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 338 80q151 0 151 -172q0 -62 -4 -225t-4 -248q0 -91 21 -115q22 -22 124 -31v-186q-180 4 -301 4q-233 0 -325 -4zM131 1294q0 81 53 134t138 53 q95 0 140.5 -50.5t45.5 -132.5q0 -80 -51.5 -134t-141.5 -54q-83 0 -133.5 53.5t-50.5 130.5z" />
+<glyph unicode="j" horiz-adv-x="638" d="M-49 -408q52 31 95.5 74t64.5 82q41 81 41 340v490q0 89 -17 112t-78 23q-29 0 -47 -2v184q171 80 338 80q67 0 105.5 -38t38.5 -134q0 -62 1 -355t1 -378q0 -143 -17 -226.5t-71 -158.5q-59 -81 -165 -148t-212 -100zM111 1294q0 81 51.5 134t136.5 53q95 0 140.5 -50.5 t45.5 -132.5q0 -80 -51 -134t-141 -54q-83 0 -132.5 53.5t-49.5 130.5z" />
+<glyph unicode="k" horiz-adv-x="1280" d="M25 -2v186q65 7 88.5 13.5t36.5 19.5q14 17 14 109v723q0 144 -31 172q-16 18 -61 18q-33 0 -47 -2v180q179 80 350 80q133 0 133 -168q0 -62 -1 -160t-1 -137v-702q0 -96 19 -116t106 -28q5 -1 8.5 -1.5t7.5 -0.5v-186q-184 4 -299 4q-231 0 -323 -4zM520 475 q77 64 127 109q111 100 111 145q0 23 -21.5 33.5t-89.5 11.5v180q226 -4 297 -4q79 0 275 4v-182q-51 0 -89 -14q-52 -17 -143 -96q-25 -22 -74 -67t-57 -52q66 -98 154 -207q66 -75 110 -103q57 -39 148 -45v-186q-82 -6 -162 -6q-202 0 -287 76q-124 108 -299 403z" />
+<glyph unicode="l" horiz-adv-x="667" d="M25 -2v186q65 7 88.5 13.5t36.5 19.5q14 17 14 109v663q0 125 -7.5 172t-23.5 60q-18 18 -61 18q-33 0 -47 -2v180q187 80 350 80q133 0 133 -168q0 -62 -1 -185.5t-1 -176.5v-637q0 -96 19 -116t106 -28q5 -1 8.5 -1.5t7.5 -0.5v-186q-184 4 -299 4q-231 0 -323 -4z" />
+<glyph unicode="m" horiz-adv-x="1861" d="M33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 336 80q133 0 143 -144q60 68 153 107t175 39q94 0 155.5 -35.5t87.5 -118.5q62 69 159 111.5t179 42.5q135 0 201 -66q72 -72 72 -274v-309q0 -84 12 -103 q8 -15 34.5 -23.5t98.5 -17.5v-186q-176 4 -280 4q-113 0 -293 -4v186q58 5 75 25q13 15 13 123v213q0 95 -22 127.5t-99 32.5q-43 0 -129 -27q2 -20 2 -47v-303q0 -99 10 -113q9 -14 25.5 -20.5t60.5 -10.5v-186q-176 4 -233 4q-119 0 -299 -4v186q65 7 82 27q12 12 12 121 v213q0 96 -21.5 128t-97.5 32q-45 0 -131 -27v-348v-18q0 -39 1 -54t4.5 -33t14.5 -23.5t27 -10.5t45 -7v-186q-180 4 -248 4q-233 0 -325 -4z" />
+<glyph unicode="n" horiz-adv-x="1282" d="M33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 336 80q130 0 143 -144q60 67 153.5 106.5t176.5 39.5q129 0 198 -66q40 -38 57 -102t17 -172v-309q0 -89 10 -105t35.5 -24.5t97.5 -14.5v-186 q-172 4 -278 4q-119 0 -299 -4v186q59 10 78 29q16 16 16 119v213q0 95 -22 127.5t-99 32.5q-53 0 -139 -27v-348v-25v-43.5t3 -29.5t7.5 -21.5t16.5 -11.5t26 -9.5t39 -5.5v-186q-180 4 -248 4q-233 0 -325 -4z" />
+<glyph unicode="o" horiz-adv-x="1196" d="M63 473q0 234 151.5 372t395.5 138q256 0 389.5 -131.5t133.5 -359.5q0 -124 -41.5 -224t-114.5 -164.5t-171 -98.5t-212 -34q-261 0 -396 136.5t-135 365.5zM416 492q0 -144 45.5 -206.5t134.5 -62.5q94 0 139 60t45 190q0 138 -44.5 199t-139.5 61q-88 0 -134 -61.5 t-46 -179.5z" />
+<glyph unicode="p" horiz-adv-x="1247" d="M14 -354q24 3 39 4.5t31 6t24.5 5.5t17.5 8.5t13 9.5t8.5 15t5.5 18t2 24.5t1 28.5v37v775q0 88 -16.5 111.5t-76.5 23.5q-31 0 -49 -2v184q171 80 336 80q62 0 99.5 -26.5t44.5 -102.5q61 60 144.5 99.5t178.5 39.5q99 0 172 -35.5t116 -101t63 -149t20 -187.5 q0 -115 -36 -210.5t-105 -166t-177.5 -110t-246.5 -39.5q-47 0 -125 8v-166q0 -71 5 -100t19 -47q22 -26 166 -35v-183q-235 5 -340 5q-94 0 -334 -5v183zM494 262q72 -14 137 -14q96 0 143 62.5t47 168.5q0 240 -168 240q-77 0 -159 -45v-412z" />
+<glyph unicode="q" horiz-adv-x="1257" d="M63 440q0 269 140.5 406t433.5 137q281 0 471 -68q-4 -49 -4 -253v-859v-16v-51.5t5.5 -34t11.5 -24.5t24.5 -13t38 -10.5t59.5 -7.5v-183q-235 5 -334 5q-106 0 -336 -5v183q86 6 119.5 14t46.5 21q13 18 18 47.5t5 99.5v231q-104 -84 -254 -84q-206 0 -325.5 129.5 t-119.5 335.5zM416 479q0 -122 56 -185t155 -63q36 0 73.5 13.5t63.5 36.5v421q-54 29 -135 29q-99 0 -156 -64.5t-57 -187.5z" />
+<glyph unicode="r" horiz-adv-x="917" d="M33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 336 80q120 0 141 -121q41 56 108 91.5t130 35.5q147 0 147 -139q0 -61 -23 -219h-204q-9 58 -25.5 81t-48.5 23q-39 0 -80 -33v-360q0 -100 24.5 -121.5 t124.5 -27.5q8 -1 13 -1v-186q-180 4 -318 4q-233 0 -325 -4z" />
+<glyph unicode="s" horiz-adv-x="991" d="M63 182q0 131 11 199h178q14 -94 63 -133q54 -51 166 -51q109 0 109 51q0 25 -11 36t-40 23l-189 70q-89 33 -144 64t-83 68t-37.5 73t-9.5 90q0 134 122 222.5t341 88.5q73 0 150 -12.5t124 -34.5q72 -38 72 -135q0 -87 -17 -187h-174q-10 54 -22 78.5t-33 38.5 q-46 27 -143 27q-84 0 -84 -53q0 -39 49 -54l192 -69q86 -30 139.5 -59t84 -64.5t42 -74.5t11.5 -95q0 -106 -64 -179t-166 -106t-233 -33q-158 0 -256 31q-87 28 -117.5 69t-30.5 111z" />
+<glyph unicode="t" horiz-adv-x="772" d="M-10 707v180q133 23 166 92q18 41 45 139q16 56 51.5 84.5t101.5 28.5q65 0 98 -28.5t33 -96.5v-184q116 0 230 -7v-204q-156 -4 -230 -4v-209v-36q-1 -41 -0.5 -61.5t3.5 -53t9.5 -49t18.5 -34.5t31.5 -25.5t46.5 -7.5q73 0 129 13l39 -203q-60 -33 -158 -49.5 t-188 -16.5q-277 0 -277 289q0 119 8 443h-157z" />
+<glyph unicode="u" horiz-adv-x="1241" d="M-4 711v184q166 80 336 80q68 0 108.5 -38t40.5 -134q0 -47 -4 -194.5t-4 -217.5q0 -49 11 -80t32.5 -44t39 -17t42.5 -4q83 0 145 35v297q0 107 -30 122q-21 13 -64 13q-29 0 -47 -2v184q166 80 340 80q67 0 106 -38t39 -134q0 -56 -3 -243.5t-3 -211.5q0 -83 14 -110 t66 -27q35 0 64 4v-190q-130 -50 -291 -50q-61 0 -112.5 33t-63.5 103q-51 -62 -133 -99t-176 -37q-170 0 -243 91.5t-73 277.5v234q0 105 -27 122q-26 13 -57 13q-6 0 -26 -1t-27 -1z" />
+<glyph unicode="v" horiz-adv-x="1210" d="M10 764v190q144 -4 385 -4q98 0 250 4v-190q-56 -6 -67 -8q-27 -7 -36.5 -17.5t-9.5 -31.5q0 -36 21 -89q107 -280 123 -327q20 54 63.5 167.5t59.5 157.5q18 53 18 91q0 24 -17 37t-31.5 15t-50.5 4q-3 1 -5.5 1h-5.5v190q136 -4 237 -4q128 0 254 4v-190 q-30 -2 -51.5 -8.5t-35.5 -14t-28 -27.5t-21.5 -35t-23.5 -50l-260 -580q-43 -90 -170 -90q-139 0 -180 92l-250 570q-43 97 -72 120q-30 23 -96 23z" />
+<glyph unicode="w" horiz-adv-x="1730" d="M27 764v190q94 -4 297 -4q248 0 352 4v-190q-7 0 -27.5 -1t-30 -1.5t-26.5 -2.5t-26 -6t-19 -10t-14.5 -15.5t-4.5 -22.5q0 -11 13 -76q11 -48 39 -153t34 -130q52 156 177 498q20 56 55 86.5t106 30.5q68 0 97 -27t51 -88q12 -34 53 -149t69 -197.5t50 -153.5 q8 33 32.5 130.5t34.5 141.5q11 45 11 87q0 43 -35 49q-54 8 -96 10v190q88 -4 284 -4q125 0 203 4v-190q-73 -4 -94.5 -22.5t-44.5 -92.5l-201 -596q-30 -94 -166 -94t-170 94q-70 202 -153 473q-8 -23 -40.5 -116.5t-62 -170t-76.5 -190.5q-19 -43 -61 -66.5t-102 -23.5 q-143 0 -173 94l-194 606q-18 57 -41 80q-12 12 -33 17t-67 8z" />
+<glyph unicode="x" horiz-adv-x="1259" d="M18 0v184q33 2 57.5 8t37 9t31.5 19t23.5 20.5t29.5 31.5l206 222l-182 192q-36 37 -72.5 57t-97.5 21v190q106 -4 309 -4q209 0 318 4v-190q-53 -3 -53 -35q0 -20 39 -59l55 -58l51 58q29 32 29 61q0 30 -49 33v190q92 -4 219 -4q153 0 235 4v-190q-24 -1 -44.5 -5.5 t-33 -9.5t-26.5 -15.5t-19 -15t-16.5 -17.5t-13.5 -15l-203 -211l217 -221q44 -44 74 -57t102 -13v-184q-61 0 -191 1t-153 1q-196 0 -305 -2v184q59 6 59 39q0 7 -3 13.5t-10.5 16t-13 15t-19.5 19t-21 20.5l-52 49l-45 -57q-24 -29 -32.5 -43.5t-8.5 -30.5q0 -18 13.5 -28 t58.5 -13v-184q-102 4 -258 4q-82 0 -242 -4z" />
+<glyph unicode="y" horiz-adv-x="1210" d="M12 764v190q140 -4 383 -4q108 0 260 4v-190q-68 -7 -75 -8q-26 -4 -34.5 -16t-8.5 -35q0 -37 38 -123q68 -146 123 -291q16 49 50.5 145t52.5 150q30 86 30 127q0 17 -8 27.5t-25.5 15t-30.5 6t-38 2t-33 0.5v190q132 -4 248 -4q128 0 254 4v-190q-39 -3 -62.5 -10 t-41 -28t-26 -40t-26.5 -65l-219 -578q-88 -230 -134.5 -336.5t-92.5 -163.5q-41 -52 -106.5 -78t-124.5 -26q-82 0 -150 22q-50 19 -85.5 66t-35.5 113q0 67 12 137h191q4 -57 18 -80t56 -23q36 0 73 50q48 79 117 270q-50 0 -79.5 25t-57.5 83l-242 525q-42 90 -76 114 q-32 19 -94 23z" />
+<glyph unicode="z" horiz-adv-x="1089" d="M39 0v119l493 643q-118 0 -167 -4q-61 -3 -78 -45q-19 -35 -35 -133h-186q-17 113 -17 231q0 65 37 103t109 38h800v-127l-491 -641q59 -2 137 -2q77 0 133 23q16 7 34 30t28 46q29 66 41 116h172q0 -143 -19 -301q-11 -96 -143 -96h-848z" />
+<glyph unicode="{" horiz-adv-x="663" d="M18 532v138q50 5 82.5 16.5t54.5 31t33.5 55t16 80.5t4.5 116v239q0 67 14 122.5t46.5 103t83.5 80t128.5 51t177.5 18.5v-129q-57 0 -93.5 -10t-60.5 -28t-36 -55.5t-16 -81t-4 -114.5v-276q0 -70 -18 -120.5t-55 -82t-79 -50.5t-104 -34q60 -13 101.5 -30.5t79 -49.5 t56.5 -84t19 -125v-282q0 -77 7 -123.5t29 -84.5t64 -53.5t110 -15.5v-133q-228 0 -337 84t-109 264v285q0 145 -40.5 207t-154.5 71z" />
+<glyph unicode="|" horiz-adv-x="563" d="M174 -375v1950h213v-1950h-213z" />
+<glyph unicode="}" horiz-adv-x="663" d="M4 -250q47 0 80 6t57 21t38 35t22.5 55t11 74t2.5 98v276q0 70 18 120.5t55 82.5t79 51t104 35q-59 12 -101 29.5t-79.5 49t-56.5 84.5t-19 126v281q0 61 -4.5 101.5t-17 76.5t-36 55.5t-61 31t-92.5 11.5v133q228 0 337.5 -84t109.5 -264v-285q0 -144 40 -206t154 -72 v-137q-119 -10 -154.5 -69t-35.5 -230v-240q0 -85 -23 -151t-73.5 -117.5t-140 -79t-214.5 -27.5v129z" />
+<glyph unicode="~" horiz-adv-x="1284" d="M119 516q152 205 321 205q51 0 97.5 -16t150.5 -76q56 -32 88 -45t62 -13q48 0 91.5 31t104.5 109l131 -142q-72 -100 -155 -152t-162 -52q-84 0 -197 63q-92 51 -129.5 67.5t-70.5 16.5q-57 0 -103 -33t-92 -106z" />
+<glyph unicode="&#xa1;" horiz-adv-x="634" d="M66 -250q0 97 122 807h148q16 -98 34.5 -209.5t29 -176.5t22.5 -136.5t18 -111.5t11.5 -78.5t7.5 -61t2 -37.5q0 -74 -49.5 -122t-147.5 -48q-55 0 -95.5 16t-61.5 43t-31 55.5t-10 59.5zM68 864q0 79 49.5 129.5t128.5 50.5q80 0 130 -48.5t50 -135.5q0 -76 -51 -125 t-131 -49q-77 0 -126.5 50.5t-49.5 127.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1009" d="M92 446q0 108 31 198t87 152t132.5 100.5t167.5 49.5v219h125v-217q84 -6 162 -24q40 -9 66 -25t41.5 -44t15.5 -67q0 -106 -13 -213h-192q-6 65 -22.5 92.5t-57.5 32.5v-456q108 0 225 57l86 -180q-123 -102 -311 -123v-234h-125v230q-185 11 -301.5 132t-116.5 320z M424 471q0 -156 86 -203v414q-86 -53 -86 -211z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1314" d="M43 0v190q138 26 198 85.5t60 197.5q0 9 -1 29t-1 33h-201v184h178q-32 122 -32 219q0 98 30 175.5t93 136.5t169.5 90.5t251.5 31.5q85 0 165.5 -13t121.5 -30q48 -21 70 -57t22 -103q0 -37 -4.5 -125.5t-9.5 -121.5h-182q-6 62 -14.5 95.5t-28.5 58t-53.5 32.5t-90.5 8 q-93 0 -135.5 -46.5t-42.5 -162.5q0 -27 7.5 -100t7.5 -88h303v-184h-289v-27q0 -71 -34.5 -129t-117.5 -121q90 4 250 4q224 0 252 35q27 39 55 135h168q-2 -77 -11 -194.5t-21 -165.5q-18 -72 -123 -72h-1010z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1294" d="M96 274l142 142q-78 115 -78 264q0 145 78 268l-142 142l156 157l135 -139q115 78 262 78q142 0 260 -78l135 139l154 -157l-137 -142q76 -94 76 -268q0 -158 -76 -264l137 -142l-154 -157l-135 139q-113 -78 -260 -78q-151 0 -262 78l-135 -141zM379 686 q0 -128 76 -211.5t194 -83.5q113 0 189.5 84t76.5 205q0 123 -76 206t-190 83q-115 0 -192.5 -82t-77.5 -201z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1443" d="M37 1151v190q113 -2 319 -2q269 0 371 2v-190q-69 -4 -94 -19t-25 -40q0 -38 29 -86q45 -69 162 -263q28 48 79 140t74 131q27 49 27 88q0 46 -125 49v190q94 -2 350 -2q115 0 199 2v-190q-58 -3 -100 -33q-39 -36 -138 -188l-121 -182h175v-132h-258l-62 -96v-18h320 v-131h-320v-41q0 -56 10 -86q9 -25 45.5 -38.5t135.5 -17.5v-190q-212 4 -367 4q-171 0 -367 -4v190q97 7 126 15.5t42 27.5q15 18 15 99v41h-322v131h322v18l-64 96h-258v132h174l-158 253q-57 95 -100 123q-34 22 -96 27z" />
+<glyph unicode="&#xa6;" horiz-adv-x="563" d="M174 -244v690h213v-690h-213zM174 752v692h213v-692h-213z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1087" d="M59 586q0 61 22.5 115t80.5 105t147 83q-61 58 -85.5 117.5t-24.5 140.5q0 45 12.5 88.5t42.5 87.5t75 77t117 54t162 21q132 0 244 -39q92 -35 92 -125q0 -103 -16 -205h-178q-6 76 -37.5 109.5t-106.5 33.5q-48 0 -78 -21t-30 -57q0 -42 30.5 -75.5t128.5 -100.5 l113 -75q78 -60 123.5 -100t80 -83.5t47.5 -86.5t13 -97q0 -207 -258 -299q94 -82 122 -142.5t28 -156.5q0 -69 -29.5 -131.5t-85 -112.5t-146.5 -80t-204 -30q-146 0 -252 41q-53 22 -73.5 52t-20.5 87q0 77 14 201h186q3 -79 35 -111q16 -18 48.5 -31.5t74.5 -13.5 q66 0 100.5 25.5t34.5 70.5q0 44 -32.5 80.5t-133.5 116.5l-194 149q-108 84 -148.5 158t-40.5 160zM340 682q0 -47 28 -83.5t111 -98.5l103 -80q73 -55 77 -60q76 50 76 101q0 46 -33.5 89t-123.5 109l-97 72q-34 23 -69 55q-29 -15 -50.5 -41.5t-21.5 -62.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M-16 1260q0 59 38 100t101 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -97 39.5t-38 102.5zM348 1260q0 59 39 100t102 41q60 0 99 -41.5t39 -99.5t-40 -100t-102 -42q-59 0 -98 40t-39 102z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1611" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM203 694q0 -130 47.5 -246.5t128.5 -200t194.5 -132.5t241.5 -49 q166 0 301.5 81.5t213 224t77.5 316.5q0 133 -45 250t-123 201t-189 133t-239 49q-171 0 -310.5 -83t-218.5 -226.5t-79 -317.5zM389 668q0 209 121 325.5t344 116.5q150 0 221 -33q68 -27 68 -84q0 -63 -19 -168h-133q-6 75 -26 95q-14 21 -39 27.5t-78 6.5 q-92 0 -154.5 -65.5t-62.5 -208.5q0 -76 20.5 -131.5t55 -83.5t70.5 -40.5t75 -12.5q88 0 117 37q28 20 45 94h139q-5 -154 -27 -193q-7 -17 -31 -33.5t-55 -25.5q-98 -35 -217 -35q-206 0 -320 108t-114 304z" />
+<glyph unicode="&#xaa;" horiz-adv-x="757" d="M76 743q0 97 75 145t244 48q29 0 43 -2v29q0 47 -17.5 65.5t-64.5 18.5q-53 0 -72 -17.5t-24 -75.5h-121q-14 46 -14 115t63 98q71 33 183 33q108 0 159 -17t80 -46q41 -52 41 -152q0 -27 -1 -117t-1 -94q0 -40 10.5 -54.5t32.5 -14.5q29 0 45 2v-127q-77 -25 -151 -25 q-22 0 -38 2t-34.5 9t-32 23t-20.5 40q-76 -76 -178 -76q-84 0 -145.5 48t-61.5 142zM293 754q0 -28 17 -42t40 -14q39 0 88 17v96q-4 0 -19 1t-20 1q-57 0 -81.5 -14.5t-24.5 -44.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="1030" d="M31 459q0 55 51 102l371 326l118 -109l-256 -315l250 -336l-123 -109l-372 347q-39 31 -39 94zM461 459q0 51 51 102l371 326l118 -109l-256 -315l250 -336l-123 -109l-372 347q-39 35 -39 94z" />
+<glyph unicode="&#xac;" horiz-adv-x="1284" d="M152 543v202h913v-593h-193v391h-720z" />
+<glyph unicode="&#xad;" horiz-adv-x="585" d="M57 406v212h469v-212h-469z" />
+<glyph unicode="&#xae;" horiz-adv-x="1611" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM203 694q0 -130 47.5 -246.5t128.5 -200t194.5 -132.5t241.5 -49 q166 0 301.5 81.5t213 224t77.5 316.5q0 133 -45 250t-123 201t-189 133t-239 49q-171 0 -310.5 -83t-218.5 -226.5t-79 -317.5zM422 297v115q59 0 82 10q7 4 11 9t7.5 21.5t3.5 45.5v405q0 58 -14 72q-16 12 -90 14v113h330q121 0 209 -15q92 -17 141 -74.5t49 -150.5 q0 -179 -154 -239q42 -59 107 -131q20 -25 70 -64q23 -11 55 -14v-117q-3 0 -31 -1t-41 -1q-62 0 -108.5 12.5t-67 25.5t-45.5 36q-78 69 -156 233q-25 0 -37 2v-96q0 -64 11 -78q14 -10 30 -14t58 -4v-115q-34 0 -128 1t-102 1q-18 0 -85.5 -1t-104.5 -1zM743 752 q16 -2 72 -2q113 0 113 102q0 61 -56 82q-27 8 -100 8h-29v-190z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M18 1116v180h560v-180h-560z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M80 1163q0 124 80.5 200.5t197.5 76.5q116 0 193.5 -72.5t77.5 -202.5q0 -124 -79 -197t-196 -73q-118 0 -196 71.5t-78 196.5zM203 1165q0 -71 40.5 -117.5t110.5 -46.5q73 0 114.5 46t41.5 116q0 75 -42 120.5t-114 45.5q-67 0 -109 -46t-42 -118z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1284" d="M184 0v199h912v-199h-912zM184 702v193h361v381h196v-381h355v-193h-355v-380h-196v380h-361z" />
+<glyph unicode="&#xb2;" horiz-adv-x="882" d="M80 860v152q171 133 254.5 207.5t115 122t31.5 94.5q0 92 -110 92q-48 0 -72 -17q-27 -24 -27 -106h-149q-10 78 -10 156q0 77 90 116q90 35 223 35q160 0 242 -66.5t82 -179.5q0 -106 -86 -202t-281 -209q26 0 87 1t77 1q53 0 75.5 7.5t32.5 29.5q17 43 23 71h123 q0 -149 -15 -241q-12 -64 -104 -64h-602z" />
+<glyph unicode="&#xb3;" horiz-adv-x="882" d="M96 981q0 97 15 168h143q3 -72 34 -94.5t111 -22.5q113 0 113 76q0 43 -27.5 61.5t-85.5 20.5q-33 2 -98 2v168q63 0 98 4q82 12 82 88q0 38 -24.5 57t-65.5 19q-66 0 -91.5 -22.5t-33.5 -88.5h-143q-8 62 -8 139q0 78 63 107q33 17 104 33t146 16q95 0 160.5 -17t99 -49 t47 -68t13.5 -83q0 -68 -33 -116.5t-125 -86.5q106 -20 150 -66t44 -126q0 -124 -103.5 -190t-289.5 -66q-56 0 -120.5 7.5t-94.5 16.5q-36 14 -58 43.5t-22 69.5z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M86 1122l176 289q42 66 69.5 87.5t63.5 21.5q47 0 84 -32t37 -81q0 -30 -17.5 -58t-58.5 -69l-262 -231z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1298" d="M51 711v184q171 80 336 80q69 0 109.5 -38t40.5 -134q0 -47 -3.5 -194.5t-3.5 -217.5q0 -49 11 -80t32.5 -44t39 -17t42.5 -4q82 0 144 35v297q0 106 -29 122q-23 13 -65 13q-30 0 -48 -2v184q166 80 340 80q148 0 148 -172q0 -56 -4 -243.5t-4 -211.5q0 -83 14.5 -110 t65.5 -27q34 0 63 4v-190q-127 -50 -291 -50q-61 0 -112 33t-62 103q-47 -63 -97 -92t-126 -29q-55 0 -92 26q5 -87 12.5 -179t12.5 -145.5t5 -68.5q0 -62 -47 -96.5t-123 -34.5q-52 0 -88 12.5t-52.5 35t-23 45t-6.5 50.5v943q0 104 -28 122q-26 13 -56 13q-7 0 -27 -1 t-28 -1z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1148" d="M90 827q0 115 42 214.5t123.5 176.5t215.5 121.5t305 44.5h336v-192q-85 -3 -116.5 -9.5t-43.5 -19.5q-11 -13 -14.5 -42t-3.5 -99q0 -174 3 -368.5t3 -307.5q0 -102 -4 -348q-4 -203 -126 -338.5t-355 -198.5l-56 181q117 47 193.5 131.5t87.5 208.5q8 91 8 276v43 q-25 -2 -72 -2q-86 0 -163.5 20.5t-144 63t-115 104.5t-76 149t-27.5 191z" />
+<glyph unicode="&#xb7;" horiz-adv-x="471" d="M55 508q0 77 50.5 128.5t127.5 51.5q80 0 131.5 -50t51.5 -126q0 -86 -50 -135t-130 -49q-79 0 -130 51t-51 129z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M90 -459q106 22 154.5 54.5t48.5 82.5q0 56 -80 103q-43 21 -43 61q0 33 53 168h144q-31 -74 -31 -96q0 -29 39 -51q78 -44 105.5 -79.5t27.5 -92.5q0 -111 -107 -182t-286 -95z" />
+<glyph unicode="&#xb9;" horiz-adv-x="882" d="M156 1618q114 45 229 74q84 22 121 22q41 0 71.5 -26t30.5 -84q0 -34 -1 -106t-1 -128v-268q0 -65 12 -80q15 -22 136 -27v-137q-110 4 -265 4q-191 0 -301 -4v137q117 4 146 29q12 12 12 82v237q0 55 -6 105q-3 33 -33 33q-48 0 -110 -17z" />
+<glyph unicode="&#xba;" horiz-adv-x="786" d="M55 874q0 151 95 238.5t251 87.5q163 0 247.5 -83.5t84.5 -229.5q0 -159 -95.5 -246.5t-246.5 -87.5q-166 0 -251 87.5t-85 233.5zM281 887q0 -89 27.5 -127.5t82.5 -38.5q60 0 87.5 36.5t27.5 116.5q0 87 -26 123.5t-85 36.5q-114 0 -114 -147z" />
+<glyph unicode="&#xbb;" horiz-adv-x="1030" d="M29 129l256 315l-250 336l123 107l372 -344q39 -35 39 -94q0 -54 -53 -103l-369 -328zM459 129l256 315l-250 336l123 107l373 -344q38 -30 38 -94q0 -56 -51 -103l-370 -328z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1904" d="M111 1276q119 42 229 74q77 20 121 20q41 0 71.5 -26t30.5 -84q0 -34 -1 -106t-1 -126v-270q0 -62 12 -80q14 -20 136 -25v-139q-165 6 -265 6q-136 0 -301 -6v139q119 4 146 27q12 14 12 82v237q0 57 -6 107q-3 31 -33 31q-48 0 -110 -17zM575 27l596 1366l138 -54 l-594 -1368zM981 223v121l293 391q54 70 91 94.5t108 24.5q53 0 88.5 -32t35.5 -107q0 -27 -1 -105t-1 -100v-115h136v-172h-136v-10q0 -40 15 -55q8 -12 32.5 -18t81.5 -7v-135q-110 4 -268 4q-134 0 -244 -4v135q109 5 123 25q13 16 13 55v10h-367zM1182 389h166 q0 189 6 234z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1904" d="M82 1276q119 42 229 74q77 20 121 20q42 0 72.5 -26t30.5 -84q0 -34 -1.5 -106t-1.5 -126v-270q0 -60 13 -80q14 -20 135 -25v-139q-165 6 -264 6q-136 0 -301 -6v139q118 4 145 27q12 14 12 82v237q0 57 -6 107q-3 31 -33 31q-48 0 -110 -17zM535 27l595 1366l138 -54 l-594 -1368zM1059 0v152q249 194 325 274.5t76 148.5q0 93 -110 93q-48 0 -72 -17q-27 -24 -27 -106h-149q-10 78 -10 155q0 78 90 117q90 35 223 35q160 0 242 -66.5t82 -179.5q0 -106 -86 -202t-281 -209q26 0 87 1t77 1q53 0 75.5 7t32.5 29q17 42 23 72h123 q0 -150 -15 -242q-11 -63 -104 -63h-602z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1904" d="M139 637q0 97 15 168h143q3 -71 33.5 -93t111.5 -22q60 0 86.5 18t26.5 56q0 44 -27.5 62t-85.5 20q-33 2 -98 2v170q63 0 98 4q82 12 82 88q0 37 -25 56.5t-65 19.5q-64 0 -90.5 -23.5t-34.5 -87.5h-143q-8 62 -8 137t63 109q35 16 105.5 31.5t144.5 15.5 q77 0 134.5 -11.5t92.5 -30.5t56.5 -47.5t29 -58.5t7.5 -67q0 -68 -33 -117t-125 -86q107 -21 150.5 -67t43.5 -127q0 -124 -103.5 -190t-289.5 -66q-57 0 -121.5 8t-93.5 18q-35 13 -57.5 42t-22.5 69zM633 27l596 1366l137 -54l-594 -1368zM1024 223v121l293 391 q54 70 91 94.5t108 24.5q53 0 88.5 -32t35.5 -107q0 -27 -1 -105t-1 -100v-115h136v-172h-136v-10q0 -40 15 -55q8 -12 32.5 -18t81.5 -7v-135q-110 4 -268 4q-134 0 -244 -4v135q109 5 123 25q13 16 13 55v10h-367zM1225 389h166q0 189 6 234z" />
+<glyph unicode="&#xbf;" horiz-adv-x="1005" d="M16 -43q0 148 87 241t319 189q21 9 34.5 23t21 35.5t11 38t7 48t6.5 46.5h162q22 -151 22 -252q0 -59 -41 -96t-113 -68q-82 -34 -118.5 -81t-36.5 -97q0 -29 6 -53.5t21 -49t45.5 -39t74.5 -14.5q86 0 115.5 28.5t34.5 120.5h200q19 -102 19 -182q0 -109 -100 -153 q-46 -21 -135 -35.5t-162 -14.5q-106 1 -189 20t-137 52t-89 80t-50 99.5t-15 113.5zM401 860q0 87 49.5 135.5t131.5 48.5q79 0 128.5 -50.5t49.5 -129.5q0 -77 -49.5 -127.5t-126.5 -50.5q-81 0 -132 48.5t-51 125.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1568" d="M10 -2v190q102 3 140 41q22 20 39 55t55 138l311 813q35 94 95.5 139t152.5 45q88 0 142.5 -42t84.5 -126l324 -891q23 -65 42 -95t50 -52q36 -23 113 -25v-190q-200 4 -287 4q-243 0 -473 -4v190q81 3 125 19q25 10 33 24t8 35q0 29 -25 109l-12 41h-398l-10 -29 q-31 -86 -31 -123q0 -13 1 -20t10 -18t26 -17q50 -18 150 -21v-190q-208 4 -412 4q-66 0 -254 -4zM485 1780q0 48 31.5 83t75.5 35q37 0 66 -15t79 -68l246 -256l-76 -91l-321 187q-49 28 -75 61.5t-26 63.5zM600 670h240q-82 239 -115 364q-94 -280 -125 -364z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1568" d="M10 -2v190q102 3 140 41q22 20 39 55t55 138l311 813q35 94 95.5 139t152.5 45q88 0 142.5 -42t84.5 -126l324 -891q23 -65 42 -95t50 -52q36 -23 113 -25v-190q-200 4 -287 4q-243 0 -473 -4v190q81 3 125 19q25 10 33 24t8 35q0 29 -25 109l-12 41h-398l-10 -29 q-31 -86 -31 -123q0 -13 1 -20t10 -18t26 -17q50 -18 150 -21v-190q-208 4 -412 4q-66 0 -254 -4zM600 670h240q-82 239 -115 364q-94 -280 -125 -364zM604 1556l246 256q52 54 81 69t66 15q43 0 74 -35.5t31 -82.5q0 -69 -98 -125l-324 -187z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1568" d="M10 -2v190q102 3 140 41q22 20 39 55t55 138l311 813q35 94 95.5 139t152.5 45q88 0 142.5 -42t84.5 -126l324 -891q23 -65 42 -95t50 -52q36 -23 113 -25v-190q-200 4 -287 4q-243 0 -473 -4v190q81 3 125 19q25 10 33 24t8 35q0 29 -25 109l-12 41h-398l-10 -29 q-31 -86 -31 -123q0 -13 1 -20t10 -18t26 -17q50 -18 150 -21v-190q-208 4 -412 4q-66 0 -254 -4zM455 1542l247 275q45 55 101 55q54 0 104 -53l244 -275l-84 -80l-268 174l-267 -174zM600 670h240q-82 239 -115 364q-94 -280 -125 -364z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1568" d="M10 -2v190q102 3 140 41q22 20 39 55t55 138l311 813q35 94 95.5 139t152.5 45q88 0 142.5 -42t84.5 -126l324 -891q23 -65 42 -95t50 -52q36 -23 113 -25v-190q-200 4 -287 4q-243 0 -473 -4v190q81 3 125 19q25 10 33 24t8 35q0 29 -25 109l-12 41h-398l-10 -29 q-31 -86 -31 -123q0 -13 1 -20t10 -18t26 -17q50 -18 150 -21v-190q-208 4 -412 4q-66 0 -254 -4zM436 1532q16 68 41 126t67 102t91 44q47 0 125 -35l88 -34q7 -3 24 -9.5t26.5 -10t23 -6.5t24.5 -3q26 0 46 23.5t48 82.5l105 -28q-21 -125 -70 -201t-119 -76 q-46 0 -145 39l-82 35q-52 23 -84 23q-33 0 -56.5 -22.5t-51.5 -80.5zM600 670h240q-82 239 -115 364q-94 -280 -125 -364z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1568" d="M10 -2v190q102 3 140 41q22 20 39 55t55 138l311 813q35 94 95.5 139t152.5 45q88 0 142.5 -42t84.5 -126l324 -891q23 -65 42 -95t50 -52q36 -23 113 -25v-190q-200 4 -287 4q-243 0 -473 -4v190q81 3 125 19q25 10 33 24t8 35q0 29 -25 109l-12 41h-398l-10 -29 q-31 -86 -31 -123q0 -13 1 -20t10 -18t26 -17q50 -18 150 -21v-190q-208 4 -412 4q-66 0 -254 -4zM461 1659q0 59 38.5 99t102.5 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39.5 -100t-103.5 -41q-58 0 -96.5 39.5t-38.5 101.5zM600 670h240q-82 239 -115 364 q-94 -280 -125 -364zM850 1659q0 59 38 99t101 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39 -100t-102 -41q-59 0 -97 39t-38 102z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1568" d="M10 -2v190q102 3 140 41q22 20 39 55t55 138l311 813q35 94 95.5 139t152.5 45q88 0 142.5 -42t84.5 -126l324 -891q23 -65 42 -95t50 -52q36 -23 113 -25v-190q-200 4 -287 4q-243 0 -473 -4v190q81 3 125 19q25 10 33 24t8 35q0 29 -25 109l-12 41h-398l-10 -29 q-31 -86 -31 -123q0 -13 1 -20t10 -18t26 -17q50 -18 150 -21v-190q-208 4 -412 4q-66 0 -254 -4zM598 1647q0 84 59.5 141t143.5 57q88 0 142 -54t54 -140t-57 -143.5t-141 -57.5q-85 0 -143 55.5t-58 141.5zM600 670h240q-82 239 -115 364q-94 -280 -125 -364zM705 1651 q0 -46 26.5 -75.5t67.5 -29.5q38 0 64 28.5t26 76.5q0 47 -26 73.5t-64 26.5q-39 0 -66.5 -27.5t-27.5 -72.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2217" d="M25 -2v190q39 1 69.5 5.5t53.5 10t43.5 18.5t34 23t30.5 33t28 39.5t31 49.5l416 677q27 52 27 97q0 21 -10.5 31t-34.5 16q-51 10 -160 10v186h1384q76 0 118 -28t42 -78q0 -110 -29 -295h-204q-14 95 -52 125q-27 18 -112 18h-238v-309h51q98 0 127 29q18 23 43 112 h179q-2 -51 -2 -256q0 -172 4 -258h-174q-13 89 -39 117q-20 18 -51 23.5t-87 5.5h-51v-242q0 -80 58 -88q53 -8 149 -8q185 0 248 53q10 9 20.5 27.5t16.5 32.5t15.5 39t12.5 32h187q-6 -271 -39 -358q-28 -78 -199 -78h-1013v188q95 6 118 14q43 14 51 54q5 31 5 94v70 h-439l-41 -70q-37 -55 -37 -104q0 -13 8 -26t21 -17q36 -13 125 -15v-190q-204 4 -371 4q-141 0 -333 -4zM799 670h293v415q0 39 -19 39q-11 0 -20.5 -10.5t-22.5 -36.5q-23 -40 -57 -101t-78 -139t-96 -167z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1398" d="M74 668q0 353 199 551t563 198q245 0 358 -53q113 -55 113 -145q0 -123 -29 -283h-209q-14 122 -45 164q-26 32 -71 44.5t-128 12.5q-56 0 -106.5 -15t-98.5 -50t-82.5 -87.5t-55.5 -133.5t-21 -183q0 -87 16.5 -158.5t45.5 -119.5t64.5 -82.5t78 -53.5t82 -27.5 t79.5 -8.5q152 0 207 55q38 38 76 164h213q-10 -247 -43 -324q-28 -64 -143 -106q-119 -50 -328 -56q-16 -43 -16 -61q0 -28 41 -51q81 -46 110 -83.5t29 -97.5q0 -115 -111 -187.5t-299 -98.5l-24 133q109 22 160 55.5t51 85.5q0 61 -84 105q-45 25 -45 65q0 48 41 141 q-282 32 -435 210t-153 481z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1333" d="M35 0v188q136 11 158 33q11 12 13.5 37t2.5 92v692q0 103 -12 115q-14 16 -47.5 25t-114.5 16v186h1018q77 0 118 -28t41 -78q0 -119 -26 -285h-197q-18 103 -53 127q-25 19 -107 19h-249v-322h49q100 0 127 29q23 25 43 112h180q-2 -51 -2 -256q0 -172 4 -258h-176 q-14 91 -37 117q-20 19 -50.5 24t-88.5 5h-49v-252q0 -42 12.5 -63t42.5 -25q55 -8 151 -8q184 0 248 57q10 9 20.5 28t16.5 33.5t16.5 42t12.5 33.5h186q-6 -271 -39 -358q-12 -35 -68.5 -56.5t-131.5 -21.5h-1012zM350 1778q0 48 31.5 83t75.5 35q37 0 65.5 -15t79.5 -69 l246 -256l-76 -90l-321 187q-49 28 -75 61.5t-26 63.5z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1333" d="M35 0v188q136 11 158 33q11 12 13.5 37t2.5 92v692q0 103 -12 115q-14 16 -47.5 25t-114.5 16v186h1018q77 0 118 -28t41 -78q0 -119 -26 -285h-197q-18 103 -53 127q-25 19 -107 19h-249v-322h49q100 0 127 29q23 25 43 112h180q-2 -51 -2 -256q0 -172 4 -258h-176 q-14 91 -37 117q-20 19 -50.5 24t-88.5 5h-49v-252q0 -42 12.5 -63t42.5 -25q55 -8 151 -8q184 0 248 57q10 9 20.5 28t16.5 33.5t16.5 42t12.5 33.5h186q-6 -271 -39 -358q-12 -35 -68.5 -56.5t-131.5 -21.5h-1012zM479 1556l246 256q52 54 81 69t66 15q43 0 74 -35.5 t31 -82.5q0 -69 -98 -125l-324 -187z" />
+<glyph unicode="&#xca;" horiz-adv-x="1333" d="M35 0v188q136 11 158 33q11 12 13.5 37t2.5 92v692q0 103 -12 115q-14 16 -47.5 25t-114.5 16v186h1018q77 0 118 -28t41 -78q0 -119 -26 -285h-197q-18 103 -53 127q-25 19 -107 19h-249v-322h49q100 0 127 29q23 25 43 112h180q-2 -51 -2 -256q0 -172 4 -258h-176 q-14 91 -37 117q-20 19 -50.5 24t-88.5 5h-49v-252q0 -42 12.5 -63t42.5 -25q55 -8 151 -8q184 0 248 57q10 9 20.5 28t16.5 33.5t16.5 42t12.5 33.5h186q-6 -271 -39 -358q-12 -35 -68.5 -56.5t-131.5 -21.5h-1012zM330 1542l248 275q45 55 100 55q54 0 104 -53l244 -275 l-84 -80l-268 174l-266 -174z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1333" d="M35 0v188q136 11 158 33q11 12 13.5 37t2.5 92v692q0 103 -12 115q-14 16 -47.5 25t-114.5 16v186h1018q77 0 118 -28t41 -78q0 -119 -26 -285h-197q-18 103 -53 127q-25 19 -107 19h-249v-322h49q100 0 127 29q23 25 43 112h180q-2 -51 -2 -256q0 -172 4 -258h-176 q-14 91 -37 117q-20 19 -50.5 24t-88.5 5h-49v-252q0 -42 12.5 -63t42.5 -25q55 -8 151 -8q184 0 248 57q10 9 20.5 28t16.5 33.5t16.5 42t12.5 33.5h186q-6 -271 -39 -358q-12 -35 -68.5 -56.5t-131.5 -21.5h-1012zM362 1661q0 59 39 99t103 40q60 0 98.5 -40.5t38.5 -98.5 q0 -59 -39.5 -100t-103.5 -41q-58 0 -97 39.5t-39 101.5zM752 1661q0 59 38 99t101 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39 -100t-102 -41q-59 0 -97 39t-38 102z" />
+<glyph unicode="&#xcc;" horiz-adv-x="788" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q141 -6 362 -6q117 0 357 6v-188q-59 -2 -93.5 -8t-45 -11.5t-19.5 -15.5q-16 -22 -16 -121v-682q0 -71 3 -97t13 -38q8 -11 19 -17t45 -11.5t94 -8.5v-190q-176 4 -357 4 q-182 0 -362 -4zM94 1778q0 48 31.5 83t75.5 35q37 0 65.5 -15t79.5 -69l246 -256l-76 -90l-321 187q-49 28 -75 61.5t-26 63.5z" />
+<glyph unicode="&#xcd;" horiz-adv-x="788" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q141 -6 362 -6q117 0 357 6v-188q-59 -2 -93.5 -8t-45 -11.5t-19.5 -15.5q-16 -22 -16 -121v-682q0 -71 3 -97t13 -38q8 -11 19 -17t45 -11.5t94 -8.5v-190q-176 4 -357 4 q-182 0 -362 -4zM182 1556l246 256q52 54 81 69t66 15q43 0 74 -35.5t31 -82.5q0 -69 -98 -125l-324 -187z" />
+<glyph unicode="&#xce;" horiz-adv-x="788" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q141 -6 362 -6q117 0 357 6v-188q-59 -2 -93.5 -8t-45 -11.5t-19.5 -15.5q-16 -22 -16 -121v-682q0 -71 3 -97t13 -38q8 -11 19 -17t45 -11.5t94 -8.5v-190q-176 4 -357 4 q-182 0 -362 -4zM53 1542l248 275q45 55 100 55t105 -53l244 -275l-84 -80l-269 174l-266 -174z" />
+<glyph unicode="&#xcf;" horiz-adv-x="788" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q141 -6 362 -6q117 0 357 6v-188q-59 -2 -93.5 -8t-45 -11.5t-19.5 -15.5q-16 -22 -16 -121v-682q0 -71 3 -97t13 -38q8 -11 19 -17t45 -11.5t94 -8.5v-190q-176 4 -357 4 q-182 0 -362 -4zM72 1661q0 59 38.5 99t102.5 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39.5 -100t-103.5 -41q-58 0 -96.5 39.5t-38.5 101.5zM461 1661q0 59 38 99t101 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39 -100t-102 -41q-59 0 -97 39t-38 102z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1527" d="M29 641v166h180v233q0 92 -8 113q-12 26 -39.5 33t-126.5 12v186h444q308 0 462 -24t253 -82q262 -156 262 -559q0 -232 -77 -385t-242 -240q-90 -46 -236 -70t-313 -24h-553v188q84 3 114.5 10t43.5 23q16 29 16 121v299h-180zM580 348q0 -56 24 -72q31 -24 98 -24 q192 0 274.5 99.5t82.5 340.5q0 129 -21.5 211t-72.5 129.5t-124 65.5t-188 18h-73v-309h307v-166h-307v-293z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1597" d="M31 1198v188q90 -4 334 -4q190 0 262 4q428 -631 547 -821q-4 105 -6.5 247.5t-4.5 174.5q-5 90 -8.5 120.5t-13.5 49.5q-13 19 -48.5 28.5t-123.5 12.5v188q222 -4 317 -4q77 0 295 4v-188q-79 -4 -108 -11t-48 -24q-13 -12 -17.5 -46t-6.5 -130q-2 -86 -2 -459 q0 -33 1 -184t1 -197q0 -88 -41.5 -130t-138.5 -42q-65 0 -111.5 30t-85.5 89q-495 746 -584 887q3 -403 9 -584q3 -99 6.5 -131t13.5 -45q14 -16 44.5 -22.5t119.5 -10.5v-190q-218 4 -301 4q-89 0 -297 -4v190q89 4 119 12.5t41 28.5q11 22 14 170q6 307 6 586 q0 144 -12 168q-4 7 -9 13t-13 10t-15 7t-19.5 5.5t-19.5 4t-23 2.5t-23 1t-25 1t-25 1zM492 1532q16 69 40.5 126.5t66.5 101.5t91 44q48 0 125 -35l88 -34q7 -3 24 -9.5t26.5 -10t23 -6.5t24.5 -3q26 0 46.5 24t48.5 82l104 -28q-21 -125 -69.5 -201t-118.5 -76 q-47 0 -146 39l-82 35q-52 23 -84 23q-33 0 -56.5 -22.5t-51.5 -80.5z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q353 0 520.5 -183t167.5 -517q0 -185 -55 -329t-152 -233.5t-224 -135.5t-278 -46q-175 0 -310 52t-220.5 147.5t-128.5 225.5t-43 290zM461 1778q0 48 31 83t75 35q37 0 66 -15.5t80 -68.5l245 -256l-75 -90l-322 187 q-49 28 -74.5 61t-25.5 64zM463 715q0 -253 81 -365t232 -112q307 0 307 464q0 239 -74 347t-229 108q-154 0 -235.5 -114t-81.5 -328z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q353 0 520.5 -183t167.5 -517q0 -185 -55 -329t-152 -233.5t-224 -135.5t-278 -46q-175 0 -310 52t-220.5 147.5t-128.5 225.5t-43 290zM463 715q0 -253 81 -365t232 -112q307 0 307 464q0 239 -74 347t-229 108 q-154 0 -235.5 -114t-81.5 -328zM549 1556l246 256q52 54 81 69t66 15q43 0 74 -35.5t31 -82.5q0 -68 -99 -125l-323 -187z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q353 0 520.5 -183t167.5 -517q0 -185 -55 -329t-152 -233.5t-224 -135.5t-278 -46q-175 0 -310 52t-220.5 147.5t-128.5 225.5t-43 290zM438 1542l248 275q45 55 100 55t105 -53l244 -275l-84 -80l-269 174l-266 -174zM463 715 q0 -253 81 -365t232 -112q307 0 307 464q0 239 -74 347t-229 108q-154 0 -235.5 -114t-81.5 -328z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q353 0 520.5 -183t167.5 -517q0 -185 -55 -329t-152 -233.5t-224 -135.5t-278 -46q-175 0 -310 52t-220.5 147.5t-128.5 225.5t-43 290zM424 1532q16 68 41 126t67 102t91 44q47 0 125 -35l88 -34q7 -3 24 -9.5t26.5 -10t23 -6.5 t24.5 -3q26 0 46 23.5t48 82.5l105 -28q-21 -125 -70 -201t-119 -76q-46 0 -145 39l-82 35q-52 23 -84 23q-33 0 -57 -22.5t-52 -80.5zM463 715q0 -253 81 -365t232 -112q307 0 307 464q0 239 -74 347t-229 108q-154 0 -235.5 -114t-81.5 -328z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q353 0 520.5 -183t167.5 -517q0 -185 -55 -329t-152 -233.5t-224 -135.5t-278 -46q-175 0 -310 52t-220.5 147.5t-128.5 225.5t-43 290zM463 715q0 -253 81 -365t232 -112q307 0 307 464q0 239 -74 347t-229 108 q-154 0 -235.5 -114t-81.5 -328zM463 1661q0 59 38.5 99t102.5 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39.5 -100t-103.5 -41q-58 0 -96.5 39.5t-38.5 101.5zM852 1661q0 59 38 99t101 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39 -100t-102 -41q-59 0 -97 39t-38 102z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1232" d="M197 950l139 140l280 -297l277 297l137 -129l-280 -308l286 -307l-137 -139l-285 299l-276 -299l-135 131l284 309z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1552" d="M72 686q0 225 91.5 391t254.5 252t377 86q204 0 354 -67l121 168l125 -89l-117 -159q205 -179 205 -553q0 -185 -55 -329t-152 -233.5t-224 -135.5t-278 -46q-224 0 -379 82l-116 -159l-125 83l118 164q-200 188 -200 545zM463 715q0 -152 33 -264l471 647 q-68 59 -187 59q-154 0 -235.5 -114t-81.5 -328zM580 307q72 -69 196 -69q307 0 307 464q0 155 -30 254z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1630" d="M27 1198v188q164 -4 317 -4q274 0 434 4v-188q-153 -2 -176 -35q-17 -17 -20 -102q-2 -76 -2 -416q0 -195 34 -283q48 -129 256 -129q214 0 277 99q25 38 37.5 95.5t15 102t2.5 117.5q0 200 -8 391q-4 65 -8.5 91.5t-20.5 37.5q-17 16 -52.5 22t-111.5 9v188 q76 -2 359 -2q20 0 114.5 1t133.5 1v-188q-86 -7 -118.5 -18t-43.5 -29q-19 -36 -19 -129v-420q0 -188 -28 -290t-96 -179q-68 -79 -198.5 -122.5t-287.5 -43.5q-186 0 -323 51.5t-201 147.5q-45 69 -65.5 170t-20.5 297q0 107 1 253.5t1 155.5q0 92 -12 113 q-13 20 -47.5 29.5t-122.5 13.5zM549 1778q0 48 31 83t75 35q37 0 66 -15.5t80 -68.5l246 -256l-76 -90l-322 187q-49 28 -74.5 61t-25.5 64z" />
+<glyph unicode="&#xda;" horiz-adv-x="1630" d="M27 1198v188q164 -4 317 -4q274 0 434 4v-188q-153 -2 -176 -35q-17 -17 -20 -102q-2 -76 -2 -416q0 -195 34 -283q48 -129 256 -129q214 0 277 99q25 38 37.5 95.5t15 102t2.5 117.5q0 200 -8 391q-4 65 -8.5 91.5t-20.5 37.5q-17 16 -52.5 22t-111.5 9v188 q76 -2 359 -2q20 0 114.5 1t133.5 1v-188q-86 -7 -118.5 -18t-43.5 -29q-19 -36 -19 -129v-420q0 -188 -28 -290t-96 -179q-68 -79 -198.5 -122.5t-287.5 -43.5q-186 0 -323 51.5t-201 147.5q-45 69 -65.5 170t-20.5 297q0 107 1 253.5t1 155.5q0 92 -12 113 q-13 20 -47.5 29.5t-122.5 13.5zM676 1556l246 256q52 54 81 69t66 15q43 0 74 -35.5t31 -82.5q0 -68 -99 -125l-323 -187z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1630" d="M27 1198v188q164 -4 317 -4q274 0 434 4v-188q-153 -2 -176 -35q-17 -17 -20 -102q-2 -76 -2 -416q0 -195 34 -283q48 -129 256 -129q214 0 277 99q25 38 37.5 95.5t15 102t2.5 117.5q0 200 -8 391q-4 65 -8.5 91.5t-20.5 37.5q-17 16 -52.5 22t-111.5 9v188 q76 -2 359 -2q20 0 114.5 1t133.5 1v-188q-86 -7 -118.5 -18t-43.5 -29q-19 -36 -19 -129v-420q0 -188 -28 -290t-96 -179q-68 -79 -198.5 -122.5t-287.5 -43.5q-186 0 -323 51.5t-201 147.5q-45 69 -65.5 170t-20.5 297q0 107 1 253.5t1 155.5q0 92 -12 113 q-13 20 -47.5 29.5t-122.5 13.5zM508 1542l248 275q45 55 100 55t105 -53l243 -275l-84 -80l-268 174l-266 -174z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1630" d="M27 1198v188q164 -4 317 -4q274 0 434 4v-188q-153 -2 -176 -35q-17 -17 -20 -102q-2 -76 -2 -416q0 -195 34 -283q48 -129 256 -129q214 0 277 99q25 38 37.5 95.5t15 102t2.5 117.5q0 200 -8 391q-4 65 -8.5 91.5t-20.5 37.5q-17 16 -52.5 22t-111.5 9v188 q76 -2 359 -2q20 0 114.5 1t133.5 1v-188q-86 -7 -118.5 -18t-43.5 -29q-19 -36 -19 -129v-420q0 -188 -28 -290t-96 -179q-68 -79 -198.5 -122.5t-287.5 -43.5q-186 0 -323 51.5t-201 147.5q-45 69 -65.5 170t-20.5 297q0 107 1 253.5t1 155.5q0 92 -12 113 q-13 20 -47.5 29.5t-122.5 13.5zM539 1661q0 59 38.5 99t102.5 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39.5 -100t-103.5 -41q-58 0 -96.5 39.5t-38.5 101.5zM928 1661q0 59 38 99t101 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39 -100t-102 -41q-59 0 -97 39t-38 102z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1423" d="M12 1198v188q234 -4 324 -4q175 0 383 4v-188q-73 -4 -99 -19t-26 -42q0 -31 31 -90q110 -187 161 -283q29 55 86 155.5t78 139.5q29 56 29 86q0 24 -25.5 38t-101.5 15v188q96 -4 360 -4q113 0 199 4v-188q-65 -3 -96 -31q-31 -22 -144 -198l-284 -432v-207 q0 -58 10 -88q7 -23 44.5 -36.5t139.5 -17.5v-190q-222 4 -372 4q-169 0 -377 -4v190q103 7 132.5 15t39.5 26q12 17 12 101v205l-309 507q-34 57 -54 84t-44 43q-40 25 -97 29zM573 1556l246 256q52 53 81.5 68.5t66.5 15.5q42 0 73 -35t31 -83q0 -69 -98 -125l-324 -187z " />
+<glyph unicode="&#xde;" horiz-adv-x="1357" d="M35 -2v190q83 3 112.5 10t45.5 23q16 19 16 129v697q0 99 -14 118q-11 16 -44.5 23t-115.5 10v188q141 -6 362 -6q117 0 357 6v-188q-92 -3 -121 -8.5t-41 -20.5t-12 -47v-14h18q253 0 365 -23q154 -28 236.5 -117.5t82.5 -232.5q0 -201 -132 -315.5t-402 -114.5 q-119 0 -168 4v-12q0 -52 16 -72q37 -33 184 -37v-190q-176 4 -383 4q-182 0 -362 -4zM580 537q33 -2 106 -2q114 0 168.5 40.5t54.5 131.5q0 40 -13.5 69t-36 46t-59.5 26.5t-74.5 12.5t-90.5 3h-55v-327z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1355" d="M14 707v180q87 16 119 55q28 24 37 92q18 134 55 209.5t90 126.5q69 68 175.5 98.5t201.5 30.5q213 0 312.5 -77.5t99.5 -209.5q0 -131 -103 -243q-5 -6 -16.5 -18t-16 -17l-13.5 -15t-12.5 -14.5t-10 -12.5t-9 -13.5t-5.5 -12t-4 -12.5t-1 -12q0 -34 37 -68 q17 -16 63 -54t89 -75q103 -87 139.5 -159.5t36.5 -153.5q0 -163 -106 -262t-320 -99q-127 0 -215 43q-24 14 -40.5 47t-16.5 76q0 113 12 201h151q3 -9 9 -27.5t9.5 -27t10 -19t14.5 -16.5q35 -25 72 -25q27 0 47.5 16t20.5 37q0 37 -15.5 63.5t-68.5 66.5 q-108 81 -160 133q-43 43 -67.5 87t-24.5 109q0 58 29 114t88 126q86 102 86 166q0 39 -34.5 71.5t-90.5 32.5q-45 0 -82 -27.5t-51 -80.5q-21 -76 -21 -213v-637q0 -216 8 -289q-114 4 -164 4q-165 0 -325 -4v186q51 3 77 7.5t41.5 20.5t19 38t3.5 67v390h-160z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1114" d="M49 272q0 151 116.5 224t383.5 73q53 0 69 -2v47q0 73 -25.5 102t-100.5 29q-84 0 -115.5 -28t-36.5 -115h-197q-16 86 -16 176q0 56 24.5 91.5t73.5 60.5q46 23 129.5 38t157.5 15q119 0 199 -15.5t115 -35t61 -49.5q65 -68 65 -234q0 -45 -1 -183.5t-1 -143.5 q0 -62 18.5 -86.5t53.5 -24.5q43 0 70 4v-197q-48 -16 -119 -26t-121 -10q-35 0 -59 3t-54 13t-51 34t-33 62q-117 -117 -282 -117q-61 0 -117 17t-103 51.5t-75.5 93t-28.5 133.5zM268 1407q0 49 38 81t85 32q35 0 63 -22t68 -87l176 -289l-92 -73l-260 231q-42 42 -60 70 t-18 57zM389 289q0 -43 28.5 -64.5t65.5 -21.5q74 0 135 26v146q-20 4 -63 4q-90 0 -128 -22t-38 -68z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1114" d="M49 272q0 151 116.5 224t383.5 73q53 0 69 -2v47q0 73 -25.5 102t-100.5 29q-84 0 -115.5 -28t-36.5 -115h-197q-16 86 -16 176q0 56 24.5 91.5t73.5 60.5q46 23 129.5 38t157.5 15q119 0 199 -15.5t115 -35t61 -49.5q65 -68 65 -234q0 -45 -1 -183.5t-1 -143.5 q0 -62 18.5 -86.5t53.5 -24.5q43 0 70 4v-197q-48 -16 -119 -26t-121 -10q-35 0 -59 3t-54 13t-51 34t-33 62q-117 -117 -282 -117q-61 0 -117 17t-103 51.5t-75.5 93t-28.5 133.5zM389 289q0 -43 28.5 -64.5t65.5 -21.5q74 0 135 26v146q-20 4 -63 4q-90 0 -128 -22 t-38 -68zM389 1122l176 289q42 66 69.5 87.5t63.5 21.5q47 0 84 -32t37 -81q0 -30 -17.5 -58t-58.5 -69l-262 -231z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1114" d="M49 272q0 151 116.5 224t383.5 73q53 0 69 -2v47q0 73 -25.5 102t-100.5 29q-84 0 -115.5 -28t-36.5 -115h-197q-16 86 -16 176q0 56 24.5 91.5t73.5 60.5q46 23 129.5 38t157.5 15q119 0 199 -15.5t115 -35t61 -49.5q65 -68 65 -234q0 -45 -1 -183.5t-1 -143.5 q0 -62 18.5 -86.5t53.5 -24.5q43 0 70 4v-197q-48 -16 -119 -26t-121 -10q-35 0 -59 3t-54 13t-51 34t-33 62q-117 -117 -282 -117q-61 0 -117 17t-103 51.5t-75.5 93t-28.5 133.5zM219 1106l223 321q39 60 101 60t104 -55l217 -324l-98 -74l-227 209l-226 -209zM389 289 q0 -43 28.5 -64.5t65.5 -21.5q74 0 135 26v146q-20 4 -63 4q-90 0 -128 -22t-38 -68z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1114" d="M49 272q0 151 116.5 224t383.5 73q53 0 69 -2v47q0 73 -25.5 102t-100.5 29q-84 0 -115.5 -28t-36.5 -115h-197q-16 86 -16 176q0 56 24.5 91.5t73.5 60.5q46 23 129.5 38t157.5 15q119 0 199 -15.5t115 -35t61 -49.5q65 -68 65 -234q0 -45 -1 -183.5t-1 -143.5 q0 -62 18.5 -86.5t53.5 -24.5q43 0 70 4v-197q-48 -16 -119 -26t-121 -10q-35 0 -59 3t-54 13t-51 34t-33 62q-117 -117 -282 -117q-61 0 -117 17t-103 51.5t-75.5 93t-28.5 133.5zM221 1120q18 70 42 127t66.5 101.5t92.5 44.5q46 0 129 -35l59 -29q63 -29 99 -29 q26 0 45.5 24t48.5 83l102 -29q-20 -123 -68 -198.5t-118 -75.5q-64 0 -146 39l-57 24q-59 23 -88 23q-33 0 -55.5 -21t-50.5 -79zM389 289q0 -43 28.5 -64.5t65.5 -21.5q74 0 135 26v146q-20 4 -63 4q-90 0 -128 -22t-38 -68z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1114" d="M49 272q0 151 116.5 224t383.5 73q53 0 69 -2v47q0 73 -25.5 102t-100.5 29q-84 0 -115.5 -28t-36.5 -115h-197q-16 86 -16 176q0 56 24.5 91.5t73.5 60.5q46 23 129.5 38t157.5 15q119 0 199 -15.5t115 -35t61 -49.5q65 -68 65 -234q0 -45 -1 -183.5t-1 -143.5 q0 -62 18.5 -86.5t53.5 -24.5q43 0 70 4v-197q-48 -16 -119 -26t-121 -10q-35 0 -59 3t-54 13t-51 34t-33 62q-117 -117 -282 -117q-61 0 -117 17t-103 51.5t-75.5 93t-28.5 133.5zM209 1260q0 59 38 100t101 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42 q-59 0 -97 39.5t-38 102.5zM389 289q0 -43 28.5 -64.5t65.5 -21.5q74 0 135 26v146q-20 4 -63 4q-90 0 -128 -22t-38 -68zM573 1260q0 59 39.5 100t102.5 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -98.5 40t-39.5 102z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1114" d="M49 272q0 151 116.5 224t383.5 73q53 0 69 -2v47q0 73 -25.5 102t-100.5 29q-84 0 -115.5 -28t-36.5 -115h-197q-16 86 -16 176q0 56 24.5 91.5t73.5 60.5q46 23 129.5 38t157.5 15q119 0 199 -15.5t115 -35t61 -49.5q65 -68 65 -234q0 -45 -1 -183.5t-1 -143.5 q0 -62 18.5 -86.5t53.5 -24.5q43 0 70 4v-197q-48 -16 -119 -26t-121 -10q-35 0 -59 3t-54 13t-51 34t-33 62q-117 -117 -282 -117q-61 0 -117 17t-103 51.5t-75.5 93t-28.5 133.5zM346 1255q0 85 59.5 142t143.5 57q88 0 142 -54t54 -140q0 -84 -57.5 -141.5t-140.5 -57.5 q-85 0 -143 54.5t-58 139.5zM389 289q0 -43 28.5 -64.5t65.5 -21.5q74 0 135 26v146q-20 4 -63 4q-90 0 -128 -22t-38 -68zM453 1260q0 -44 26.5 -73.5t67.5 -29.5q38 0 64 28.5t26 74.5q0 49 -26 75.5t-64 26.5q-39 0 -66.5 -27.5t-27.5 -74.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1603" d="M49 285q0 155 120 226t392 71h47v32q0 70 -24.5 100.5t-91.5 30.5q-81 0 -113.5 -27.5t-38.5 -107.5h-201q-16 86 -16 168q0 110 98 152q50 23 129.5 38t155.5 15q138 0 216 -25.5t118 -78.5q30 43 107.5 73.5t164.5 30.5q110 0 193 -34t132.5 -95t74 -139t24.5 -172 q0 -83 -31 -119q-30 -37 -106 -37h-459v-10q0 -61 53 -100t152 -39q150 0 319 79l99 -192q-91 -71 -214.5 -112.5t-267.5 -41.5q-203 0 -329 117q-72 -54 -158.5 -83.5t-220.5 -29.5q-61 0 -117 18.5t-103 55t-75.5 98t-28.5 138.5zM389 293q0 -86 109 -86q83 0 151 37 q-24 44 -28 143h-60q-95 0 -133.5 -22.5t-38.5 -71.5zM944 586l268 6v29q0 55 -30 85.5t-88 30.5q-142 0 -150 -151z" />
+<glyph unicode="&#xe7;" horiz-adv-x="1019" d="M63 453q0 125 40 226.5t111 167.5t166 101t206 35q141 0 227 -27q68 -22 99.5 -53t31.5 -90q0 -121 -16 -217h-201q-11 95 -47 117q-23 20 -88 20q-31 0 -60 -12.5t-56 -40t-43.5 -79.5t-16.5 -122q0 -77 19 -129t52.5 -76t66.5 -32.5t75 -8.5q111 0 250 66l92 -190 q-70 -59 -168 -93.5t-199 -42.5q-16 -40 -16 -59q0 -29 39 -51q78 -44 105.5 -79.5t27.5 -92.5q0 -111 -107 -182t-286 -95l-25 127q106 22 154.5 54.5t48.5 82.5q0 56 -80 103q-43 21 -43 61q0 37 39 135q-178 27 -288 153t-110 323z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1085" d="M63 455q0 250 144.5 389t378.5 139q217 0 325.5 -115.5t108.5 -306.5q0 -34 -9 -69t-22 -50q-31 -36 -108 -36h-473v-15q0 -61 57 -107t153 -46q161 0 330 79l96 -192q-90 -70 -217.5 -112t-271.5 -42q-139 0 -250 57t-176.5 168t-65.5 259zM317 1407q0 49 38 81t85 32 q35 0 63 -22t68 -87l177 -289l-93 -73l-260 231q-42 42 -60 70t-18 57zM408 604l288 6v21q0 48 -35 80t-92 32q-67 0 -112 -33.5t-49 -105.5z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1085" d="M63 455q0 250 144.5 389t378.5 139q217 0 325.5 -115.5t108.5 -306.5q0 -34 -9 -69t-22 -50q-31 -36 -108 -36h-473v-15q0 -61 57 -107t153 -46q161 0 330 79l96 -192q-90 -70 -217.5 -112t-271.5 -42q-139 0 -250 57t-176.5 168t-65.5 259zM408 604l288 6v21 q0 48 -35 80t-92 32q-67 0 -112 -33.5t-49 -105.5zM424 1122l176 289q42 66 69.5 87.5t63.5 21.5q47 0 84 -32t37 -81q0 -30 -17.5 -58t-58.5 -69l-262 -231z" />
+<glyph unicode="&#xea;" horiz-adv-x="1085" d="M63 455q0 250 144.5 389t378.5 139q217 0 325.5 -115.5t108.5 -306.5q0 -34 -9 -69t-22 -50q-31 -36 -108 -36h-473v-15q0 -61 57 -107t153 -46q161 0 330 79l96 -192q-90 -70 -217.5 -112t-271.5 -42q-139 0 -250 57t-176.5 168t-65.5 259zM242 1106l223 321 q39 60 100 60q63 0 105 -55l217 -324l-99 -74l-227 209l-225 -209zM408 604l288 6v21q0 48 -35 80t-92 32q-67 0 -112 -33.5t-49 -105.5z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1085" d="M63 455q0 250 144.5 389t378.5 139q217 0 325.5 -115.5t108.5 -306.5q0 -34 -9 -69t-22 -50q-31 -36 -108 -36h-473v-15q0 -61 57 -107t153 -46q161 0 330 79l96 -192q-90 -70 -217.5 -112t-271.5 -42q-139 0 -250 57t-176.5 168t-65.5 259zM256 1260q0 59 38 100t101 41 q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -97 39.5t-38 102.5zM408 604l288 6v21q0 48 -35 80t-92 32q-67 0 -112 -33.5t-49 -105.5zM621 1260q0 59 39 100t102 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -98 40t-39 102z" />
+<glyph unicode="&#xec;" horiz-adv-x="679" d="M33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 338 80q151 0 151 -172q0 -62 -4 -225t-4 -248q0 -91 21 -115q22 -22 124 -31v-186q-180 4 -301 4q-233 0 -325 -4zM51 1407q0 49 38 81t85 32q35 0 63 -22 t68 -87l176 -289l-92 -73l-260 231q-42 42 -60 70t-18 57z" />
+<glyph unicode="&#xed;" horiz-adv-x="679" d="M33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 338 80q151 0 151 -172q0 -62 -4 -225t-4 -248q0 -91 21 -115q22 -22 124 -31v-186q-180 4 -301 4q-233 0 -325 -4zM135 1122l176 289q42 66 69.5 87.5 t63.5 21.5q47 0 84 -32t37 -81q0 -30 -17.5 -58t-58.5 -69l-262 -231z" />
+<glyph unicode="&#xee;" horiz-adv-x="679" d="M-12 1106l223 321q39 60 100 60q63 0 105 -55l217 -324l-98 -74l-228 209l-225 -209zM33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 338 80q151 0 151 -172q0 -62 -4 -225t-4 -248q0 -91 21 -115 q22 -22 124 -31v-186q-180 4 -301 4q-233 0 -325 -4z" />
+<glyph unicode="&#xef;" horiz-adv-x="679" d="M-16 1260q0 59 38 100t101 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -97 39.5t-38 102.5zM33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 338 80q151 0 151 -172q0 -62 -4 -225t-4 -248 q0 -91 21 -115q22 -22 124 -31v-186q-180 4 -301 4q-233 0 -325 -4zM348 1260q0 59 39 100t102 41q60 0 99 -41.5t39 -99.5t-40 -100t-102 -42q-59 0 -98 40t-39 102z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1193" d="M63 432q0 103 30.5 191t89 154.5t150 104.5t206.5 38q83 0 139 -33q-23 88 -94 180l-195 -115l-70 115l187 111q-89 95 -225 174l120 166q214 -77 349 -193l161 96l72 -114l-131 -80q139 -143 210 -316.5t71 -398.5q0 -244 -148 -392.5t-397 -148.5q-129 0 -231 37.5 t-165 102t-96 146.5t-33 175zM416 483q0 -133 50.5 -191.5t143.5 -58.5q72 0 122 54.5t50 154.5q0 127 -39.5 188.5t-140.5 61.5q-84 0 -135 -56.5t-51 -152.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1282" d="M33 -2v186q65 7 88.5 13.5t36.5 19.5q16 16 16 111v250q0 105 -31 122q-21 13 -63 13q-31 0 -47 -2v184q166 80 336 80q130 0 143 -144q60 67 153.5 106.5t176.5 39.5q129 0 198 -66q40 -38 57 -102t17 -172v-309q0 -89 10 -105t35.5 -24.5t97.5 -14.5v-186 q-172 4 -278 4q-119 0 -299 -4v186q59 10 78 29q16 16 16 119v213q0 95 -22 127.5t-99 32.5q-53 0 -139 -27v-348v-25v-43.5t3 -29.5t7.5 -21.5t16.5 -11.5t26 -9.5t39 -5.5v-186q-180 4 -248 4q-233 0 -325 -4zM299 1120q18 70 42 127t66.5 101.5t92.5 44.5q46 0 129 -35 l59 -29q63 -29 98 -29q26 0 46.5 24.5t48.5 82.5l102 -29q-20 -123 -68 -198.5t-118 -75.5q-64 0 -146 39l-57 24q-59 23 -88 23q-34 0 -56.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1196" d="M63 473q0 234 151.5 372t395.5 138q256 0 389.5 -131.5t133.5 -359.5q0 -124 -41.5 -224t-114.5 -164.5t-171 -98.5t-212 -34q-261 0 -396 136.5t-135 365.5zM328 1407q0 49 38 81t85 32q35 0 63 -22t68 -87l176 -289l-92 -73l-260 231q-42 42 -60 70t-18 57zM416 492 q0 -144 45.5 -206.5t134.5 -62.5q94 0 139 60t45 190q0 138 -44.5 199t-139.5 61q-88 0 -134 -61.5t-46 -179.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1196" d="M63 473q0 234 151.5 372t395.5 138q256 0 389.5 -131.5t133.5 -359.5q0 -124 -41.5 -224t-114.5 -164.5t-171 -98.5t-212 -34q-261 0 -396 136.5t-135 365.5zM416 492q0 -144 45.5 -206.5t134.5 -62.5q94 0 139 60t45 190q0 138 -44.5 199t-139.5 61q-88 0 -134 -61.5 t-46 -179.5zM469 1122l176 289q42 66 69.5 87.5t63.5 21.5q47 0 84 -32t37 -81q0 -30 -17.5 -58t-58.5 -69l-262 -231z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1196" d="M63 473q0 234 151.5 372t395.5 138q256 0 389.5 -131.5t133.5 -359.5q0 -124 -41.5 -224t-114.5 -164.5t-171 -98.5t-212 -34q-261 0 -396 136.5t-135 365.5zM285 1106l223 321q39 60 100 60q63 0 105 -55l217 -324l-99 -74l-227 209l-225 -209zM416 492 q0 -144 45.5 -206.5t134.5 -62.5q94 0 139 60t45 190q0 138 -44.5 199t-139.5 61q-88 0 -134 -61.5t-46 -179.5z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1196" d="M63 473q0 234 151.5 372t395.5 138q256 0 389.5 -131.5t133.5 -359.5q0 -124 -41.5 -224t-114.5 -164.5t-171 -98.5t-212 -34q-261 0 -396 136.5t-135 365.5zM256 1120q18 70 42 127t66.5 101.5t92.5 44.5q47 0 129 -35l59 -29q63 -29 98 -29q26 0 46.5 24.5t48.5 82.5 l102 -29q-20 -123 -68 -198.5t-118 -75.5q-64 0 -146 39l-57 24q-59 23 -88 23q-34 0 -56.5 -21.5t-50.5 -78.5zM416 492q0 -144 45.5 -206.5t134.5 -62.5q94 0 139 60t45 190q0 138 -44.5 199t-139.5 61q-88 0 -134 -61.5t-46 -179.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1196" d="M63 473q0 234 151.5 372t395.5 138q256 0 389.5 -131.5t133.5 -359.5q0 -124 -41.5 -224t-114.5 -164.5t-171 -98.5t-212 -34q-261 0 -396 136.5t-135 365.5zM283 1260q0 59 38 100t101 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -97 39.5t-38 102.5z M416 492q0 -144 45.5 -206.5t134.5 -62.5q94 0 139 60t45 190q0 138 -44.5 199t-139.5 61q-88 0 -134 -61.5t-46 -179.5zM647 1260q0 59 39 100t102 41q60 0 99 -41.5t39 -99.5t-40 -100t-102 -42q-59 0 -98 40t-39 102z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1284" d="M166 567v209h950v-209h-950zM500 322q0 65 40 107t99 42q61 0 102 -42.5t41 -109.5q0 -63 -41 -104t-102 -41t-100 42t-39 106zM500 1022q0 63 40 104t99 41q61 0 102 -41.5t41 -105.5q0 -66 -41 -108t-102 -42t-100 43t-39 109z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1196" d="M63 473q0 234 151.5 372t395.5 138q133 0 236 -39l98 135l113 -80l-88 -122q164 -129 164 -385q0 -124 -41.5 -224t-114.5 -164.5t-171 -98.5t-212 -34q-139 0 -250 43l-92 -127l-115 78l86 119q-160 132 -160 389zM406 492q0 -84 14 -136l264 365q-40 16 -88 16 q-92 0 -141 -62.5t-49 -182.5zM506 238q34 -19 90 -19q98 0 146.5 61t48.5 193q0 72 -17 135z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1241" d="M-4 711v184q166 80 336 80q68 0 108.5 -38t40.5 -134q0 -47 -4 -194.5t-4 -217.5q0 -49 11 -80t32.5 -44t39 -17t42.5 -4q83 0 145 35v297q0 107 -30 122q-21 13 -64 13q-29 0 -47 -2v184q166 80 340 80q67 0 106 -38t39 -134q0 -56 -3 -243.5t-3 -211.5q0 -83 14 -110 t66 -27q35 0 64 4v-190q-130 -50 -291 -50q-61 0 -112.5 33t-63.5 103q-51 -62 -133 -99t-176 -37q-170 0 -243 91.5t-73 277.5v234q0 105 -27 122q-26 13 -57 13q-6 0 -26 -1t-27 -1zM344 1407q0 49 38 81t85 32q35 0 63 -22t68 -87l176 -289l-92 -73l-260 231 q-42 42 -60 70t-18 57z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1241" d="M-4 711v184q166 80 336 80q68 0 108.5 -38t40.5 -134q0 -47 -4 -194.5t-4 -217.5q0 -49 11 -80t32.5 -44t39 -17t42.5 -4q83 0 145 35v297q0 107 -30 122q-21 13 -64 13q-29 0 -47 -2v184q166 80 340 80q67 0 106 -38t39 -134q0 -56 -3 -243.5t-3 -211.5q0 -83 14 -110 t66 -27q35 0 64 4v-190q-130 -50 -291 -50q-61 0 -112.5 33t-63.5 103q-51 -62 -133 -99t-176 -37q-170 0 -243 91.5t-73 277.5v234q0 105 -27 122q-26 13 -57 13q-6 0 -26 -1t-27 -1zM481 1122l176 289q41 65 69 87t65 22q47 0 83.5 -32t36.5 -81q0 -30 -17 -58t-58 -69 l-263 -231z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1241" d="M-4 711v184q166 80 336 80q68 0 108.5 -38t40.5 -134q0 -47 -4 -194.5t-4 -217.5q0 -49 11 -80t32.5 -44t39 -17t42.5 -4q83 0 145 35v297q0 107 -30 122q-21 13 -64 13q-29 0 -47 -2v184q166 80 340 80q67 0 106 -38t39 -134q0 -56 -3 -243.5t-3 -211.5q0 -83 14 -110 t66 -27q35 0 64 4v-190q-130 -50 -291 -50q-61 0 -112.5 33t-63.5 103q-51 -62 -133 -99t-176 -37q-170 0 -243 91.5t-73 277.5v234q0 105 -27 122q-26 13 -57 13q-6 0 -26 -1t-27 -1zM276 1106l224 321q39 60 100 60q63 0 105 -55l217 -324l-99 -74l-227 209l-225 -209z " />
+<glyph unicode="&#xfc;" horiz-adv-x="1241" d="M-4 711v184q166 80 336 80q68 0 108.5 -38t40.5 -134q0 -47 -4 -194.5t-4 -217.5q0 -49 11 -80t32.5 -44t39 -17t42.5 -4q83 0 145 35v297q0 107 -30 122q-21 13 -64 13q-29 0 -47 -2v184q166 80 340 80q67 0 106 -38t39 -134q0 -56 -3 -243.5t-3 -211.5q0 -83 14 -110 t66 -27q35 0 64 4v-190q-130 -50 -291 -50q-61 0 -112.5 33t-63.5 103q-51 -62 -133 -99t-176 -37q-170 0 -243 91.5t-73 277.5v234q0 105 -27 122q-26 13 -57 13q-6 0 -26 -1t-27 -1zM305 1260q0 59 38 100t101 41q60 0 99 -41.5t39 -99.5t-40 -100t-102 -42 q-59 0 -97 39.5t-38 102.5zM670 1260q0 59 39 100t102 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -98 40t-39 102z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1210" d="M12 764v190q140 -4 383 -4q108 0 260 4v-190q-68 -7 -75 -8q-26 -4 -34.5 -16t-8.5 -35q0 -37 38 -123q68 -146 123 -291q16 49 50.5 145t52.5 150q30 86 30 127q0 17 -8 27.5t-25.5 15t-30.5 6t-38 2t-33 0.5v190q132 -4 248 -4q128 0 254 4v-190q-39 -3 -62.5 -10 t-41 -28t-26 -40t-26.5 -65l-219 -578q-88 -230 -134.5 -336.5t-92.5 -163.5q-41 -52 -106.5 -78t-124.5 -26q-82 0 -150 22q-50 19 -85.5 66t-35.5 113q0 67 12 137h191q4 -57 18 -80t56 -23q36 0 73 50q48 79 117 270q-50 0 -79.5 25t-57.5 83l-242 525q-42 90 -76 114 q-32 19 -94 23zM514 1122l176 289q42 66 69.5 87.5t63.5 21.5q47 0 84 -32t37 -81q0 -30 -17.5 -58t-58.5 -69l-262 -231z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1247" d="M2 -354q40 5 59.5 7.5t38 10.5t24.5 13t11.5 24t5.5 34v52v16v1241q0 94 -4.5 131t-19.5 50q-21 14 -68 14q-33 0 -47 -2v180q179 80 354 80q131 0 131 -168q0 -95 -3 -269.5t-3 -213.5q59 59 143.5 99t178.5 40q100 0 173 -35.5t115.5 -101t62.5 -149t20 -187.5 q0 -115 -35.5 -210.5t-104.5 -166t-177.5 -110t-246.5 -39.5q-47 0 -125 8v-166q0 -70 5 -99.5t18 -47.5q13 -13 46.5 -21t119.5 -14v-183q-230 5 -338 5q-99 0 -334 -5v183zM481 262q72 -14 137 -14q96 0 142.5 62t46.5 169q0 240 -168 240q-76 0 -158 -45v-412z" />
+<glyph unicode="&#xff;" horiz-adv-x="1210" d="M12 764v190q140 -4 383 -4q108 0 260 4v-190q-68 -7 -75 -8q-26 -4 -34.5 -16t-8.5 -35q0 -37 38 -123q68 -146 123 -291q16 49 50.5 145t52.5 150q30 86 30 127q0 17 -8 27.5t-25.5 15t-30.5 6t-38 2t-33 0.5v190q132 -4 248 -4q128 0 254 4v-190q-39 -3 -62.5 -10 t-41 -28t-26 -40t-26.5 -65l-219 -578q-88 -230 -134.5 -336.5t-92.5 -163.5q-41 -52 -106.5 -78t-124.5 -26q-82 0 -150 22q-50 19 -85.5 66t-35.5 113q0 67 12 137h191q4 -57 18 -80t56 -23q36 0 73 50q48 79 117 270q-50 0 -79.5 25t-57.5 83l-242 525q-42 90 -76 114 q-32 19 -94 23zM328 1260q0 59 38 100t101 41q60 0 98.5 -41.5t38.5 -99.5t-39.5 -100t-101.5 -42q-59 0 -97 39.5t-38 102.5zM692 1260q0 59 39.5 100t102.5 41q60 0 98.5 -41.5t38.5 -99.5t-40 -100t-102 -42q-59 0 -98 40t-39 102z" />
+<glyph unicode="&#x152;" horiz-adv-x="2131" d="M70 674q0 153 45.5 283t134 230t231 157t324.5 57q62 0 181.5 -8.5t158.5 -8.5h708q87 0 123.5 -27t36.5 -79q0 -116 -28 -295h-205q-14 96 -51 125q-27 18 -113 18h-238v-309h49q100 0 129 29q18 23 43 112h179q-2 -51 -2 -256q0 -172 4 -258h-174q-13 89 -39 117 q-20 19 -51 24t-89 5h-49v-242q0 -80 58 -88q53 -8 149 -8q192 0 248 53q23 23 65 131h187q-6 -271 -39 -358q-13 -38 -55 -58t-133 -20h-723q-43 0 -166 -6t-197 -6q-184 0 -320 49t-219 141.5t-123 216t-40 279.5zM463 696q0 -86 10.5 -153.5t37 -126t68.5 -97t106.5 -60 t150.5 -21.5q120 0 157 57q15 25 15 96v596q0 99 -29 133.5t-123 34.5q-107 0 -184.5 -34.5t-122.5 -98t-65.5 -144.5t-20.5 -182z" />
+<glyph unicode="&#x153;" horiz-adv-x="1765" d="M63 473q0 234 147 372t388 138q257 0 350 -117q57 55 144 86t184 31q110 0 192.5 -31.5t132.5 -89t74.5 -133t24.5 -168.5q0 -36 -8.5 -70.5t-22.5 -48.5q-27 -36 -106 -36h-457v-15q0 -62 53 -107.5t150 -45.5q150 0 319 79l98 -192q-197 -154 -475 -154q-98 0 -184 30 t-139 87q-135 -117 -344 -117q-261 0 -391 136t-130 366zM416 492q0 -143 46 -206t136 -63q94 0 138 59.5t44 190.5q0 141 -40 200.5t-138 59.5q-90 0 -138 -61.5t-48 -179.5zM1110 604l266 6v21q0 45 -31.5 75.5t-87.5 30.5q-65 0 -104 -32.5t-43 -100.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="1423" d="M12 1198v188q234 -4 324 -4q175 0 383 4v-188q-73 -4 -99 -19t-26 -42q0 -31 31 -90q110 -187 161 -283q29 55 86 155.5t78 139.5q29 56 29 86q0 24 -25.5 38t-101.5 15v188q96 -4 360 -4q113 0 199 4v-188q-65 -3 -96 -31q-31 -22 -144 -198l-284 -432v-207 q0 -58 10 -88q7 -23 44.5 -36.5t139.5 -17.5v-190q-222 4 -372 4q-169 0 -377 -4v190q103 7 132.5 15t39.5 26q12 17 12 101v205l-309 507q-34 57 -54 84t-44 43q-40 25 -97 29zM389 1661q0 59 38.5 99t102.5 40q60 0 99 -40.5t39 -98.5q0 -59 -40 -100t-104 -41 q-58 0 -96.5 39.5t-38.5 101.5zM778 1661q0 59 38.5 99t101.5 40q60 0 98.5 -40.5t38.5 -98.5q0 -59 -39.5 -100t-102.5 -41q-59 0 -97 39t-38 102z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M-25 1106l224 321q39 60 100 60q62 0 104 -55l218 -324l-99 -74l-227 209l-225 -209z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-43 1120q18 70 42 127t66.5 101.5t92.5 44.5q46 0 129 -35l59 -29q63 -29 98 -29q26 0 46.5 24.5t48.5 82.5l102 -29q-20 -123 -68 -198.5t-118 -75.5q-64 0 -146 39l-57 24q-59 23 -88 23q-34 0 -56.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="949" />
+<glyph unicode="&#x2001;" horiz-adv-x="1898" />
+<glyph unicode="&#x2002;" horiz-adv-x="949" />
+<glyph unicode="&#x2003;" horiz-adv-x="1898" />
+<glyph unicode="&#x2004;" horiz-adv-x="632" />
+<glyph unicode="&#x2005;" horiz-adv-x="474" />
+<glyph unicode="&#x2006;" horiz-adv-x="316" />
+<glyph unicode="&#x2007;" horiz-adv-x="316" />
+<glyph unicode="&#x2008;" horiz-adv-x="237" />
+<glyph unicode="&#x2009;" horiz-adv-x="379" />
+<glyph unicode="&#x200a;" horiz-adv-x="105" />
+<glyph unicode="&#x2010;" horiz-adv-x="585" d="M57 406v212h469v-212h-469z" />
+<glyph unicode="&#x2011;" horiz-adv-x="585" d="M57 406v212h469v-212h-469z" />
+<glyph unicode="&#x2012;" horiz-adv-x="585" d="M57 406v212h469v-212h-469z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1155" d="M57 418v198h1039v-198h-1039z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M57 418v198h1565v-198h-1565z" />
+<glyph unicode="&#x2018;" horiz-adv-x="514" d="M59 1001q0 141 85.5 261.5t254.5 238.5l82 -106q-87 -64 -135.5 -123.5t-48.5 -106.5q0 -46 49 -63q52 -20 81.5 -54t29.5 -96q0 -67 -53 -116.5t-140 -49.5q-97 0 -151 59.5t-54 155.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="514" d="M35 874q182 133 182 230q0 47 -49 63q-52 20 -81.5 54t-29.5 96q0 67 53 116.5t140 49.5q97 0 151 -59.5t54 -155.5q0 -141 -85.5 -261.5t-252.5 -238.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="514" d="M35 -358q182 133 182 229q0 47 -49 63q-52 20 -81.5 54t-29.5 96q0 67 53 116.5t140 49.5q97 0 151 -59.5t54 -155.5q0 -141 -85.5 -261.5t-252.5 -238.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="985" d="M59 1001q0 141 85.5 261.5t254.5 238.5l82 -106q-87 -64 -135.5 -123.5t-48.5 -106.5q0 -46 49 -63q52 -20 81.5 -54t29.5 -96q0 -67 -53 -116.5t-140 -49.5q-97 0 -151 59.5t-54 155.5zM530 1001q0 141 85.5 261.5t252.5 238.5l82 -106q-182 -133 -182 -230 q0 -47 49 -63q51 -20 80 -54t29 -96q0 -67 -52 -116.5t-139 -49.5q-97 0 -151 59.5t-54 155.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="985" d="M35 874q182 133 182 230q0 47 -49 63q-52 20 -81.5 54t-29.5 96q0 67 53 116.5t140 49.5q97 0 151 -59.5t54 -155.5q0 -141 -85.5 -261.5t-252.5 -238.5zM504 874q87 64 135.5 123.5t48.5 106.5q0 22 -14 38.5t-37 24.5q-51 20 -80 54t-29 96q0 67 52 116.5t139 49.5 q98 0 151.5 -59t53.5 -156q0 -141 -85.5 -261.5t-252.5 -238.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="985" d="M35 -358q182 133 182 229q0 47 -49 63q-52 20 -81.5 54t-29.5 96q0 67 53 116.5t140 49.5q97 0 151 -59.5t54 -155.5q0 -141 -85.5 -261.5t-252.5 -238.5zM504 -358q184 134 184 229q0 47 -51 63q-51 20 -80 54t-29 96q0 67 52 116.5t139 49.5q98 0 151.5 -59t53.5 -156 q0 -141 -85.5 -261.5t-252.5 -238.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="813" d="M70 567q0 143 93.5 238.5t237.5 95.5q151 0 246.5 -93.5t95.5 -232.5q0 -158 -94 -254t-243 -96q-146 0 -241 98t-95 244z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1830" d="M125 162q0 76 50 127t126 51q81 0 132.5 -49t51.5 -125q0 -87 -50 -135.5t-132 -48.5q-78 0 -128 50.5t-50 129.5zM735 162q0 76 49.5 127t126.5 51q81 0 132 -49t51 -125q0 -87 -49.5 -135.5t-131.5 -48.5q-79 0 -128.5 50t-49.5 130zM1346 162q0 76 50.5 127t127.5 51 q79 0 130.5 -49.5t51.5 -124.5q0 -87 -50 -135.5t-130 -48.5t-130 50t-50 130z" />
+<glyph unicode="&#x202f;" horiz-adv-x="379" />
+<glyph unicode="&#x2039;" horiz-adv-x="598" d="M31 459q0 55 51 102l371 326l118 -109l-256 -315l250 -336l-123 -109l-372 347q-39 31 -39 94z" />
+<glyph unicode="&#x203a;" horiz-adv-x="598" d="M29 129l256 315l-250 336l123 107l372 -344q39 -35 39 -94q0 -54 -53 -103l-369 -328z" />
+<glyph unicode="&#x205f;" horiz-adv-x="474" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1484" d="M111 492v131h135v18q0 34 4 96h-139v131h157q55 239 223.5 371.5t432.5 132.5q101 0 187.5 -15.5t131.5 -37.5q100 -49 100 -148q0 -111 -24 -264h-186q-14 117 -41 148q-43 61 -177 61q-97 0 -170.5 -60t-105.5 -188h332v-131h-353q-2 -25 -2 -75v-39h355v-131h-338 q16 -73 47.5 -125.5t72 -80t80.5 -39t85 -11.5q135 0 184 55q33 36 67 149h191q-10 -235 -39 -307q-31 -67 -127 -108q-123 -54 -315 -54q-263 0 -424.5 135.5t-198.5 385.5h-145z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1628" d="M76 1319q0 65 67 65h475q35 0 52.5 -15t17.5 -40q0 -106 -6 -162h-78q-6 48 -12 69t-17 32q-22 12 -108 12v-346q0 -52 8 -60q5 -5 9.5 -7t20.5 -4.5t48 -4.5v-82q-49 2 -162 2q-131 0 -174 -2v82q67 2 76 14q8 8 8 58v350q-91 0 -108 -10q-28 -20 -35 -103h-78 q-4 74 -4 152zM731 776v82q22 0 34 0.5t22.5 5t14 7.5t6.5 16t3 22.5v34.5q2 116 3.5 191.5t2 96.5t0.5 25q0 24 -6 33q-15 11 -74 13v81q43 -2 164 -2q100 0 137 2q90 -231 107 -288q15 45 112 288q43 -2 146 -2q112 0 147 2v-81q-13 -1 -23 -1.5t-17 -1t-11.5 -1.5 t-8 -2.5t-5 -3t-2.5 -3.5q-8 -11 -8 -51q0 -7 0.5 -27t2 -91.5t3.5 -182.5q0 -54 6 -66q4 -7 18 -9.5t56 -4.5v-82q-47 2 -162 2q-117 0 -170 -2v82q59 2 71 14q11 11 11 48q0 176 2 309q-14 -38 -133 -328q-19 -45 -66 -45q-46 0 -63 47q-98 247 -127 330q0 -48 1 -183.5 t1 -140.5q0 -34 10.5 -41.5t54.5 -8.5q9 -1 15 -1v-82q-41 2 -132 2q-94 0 -143 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="952" d="M0 0v952h952v-952h-952z" />
+<hkern u1="&#x20;" u2="&#x2026;" k="102" />
+<hkern u1="&#x20;" u2="&#x178;" k="57" />
+<hkern u1="&#x20;" u2="&#xdd;" k="57" />
+<hkern u1="&#x20;" u2="&#xc5;" k="45" />
+<hkern u1="&#x20;" u2="&#xc4;" k="45" />
+<hkern u1="&#x20;" u2="&#xc3;" k="45" />
+<hkern u1="&#x20;" u2="&#xc2;" k="45" />
+<hkern u1="&#x20;" u2="&#xc1;" k="45" />
+<hkern u1="&#x20;" u2="&#xc0;" k="45" />
+<hkern u1="&#x20;" u2="Y" k="57" />
+<hkern u1="&#x20;" u2="W" k="166" />
+<hkern u1="&#x20;" u2="V" k="-29" />
+<hkern u1="&#x20;" u2="A" k="45" />
+<hkern u1="&#x20;" u2="&#x2e;" k="102" />
+<hkern u1="&#x20;" u2="&#x2c;" k="102" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-45" />
+<hkern u1="&#x21;" u2="]" k="-45" />
+<hkern u1="&#x21;" u2="&#x29;" k="-45" />
+<hkern u1="&#x22;" u2="&#x31;" k="109" />
+<hkern u1="&#x26;" u2="[" k="57" />
+<hkern u1="&#x27;" u2="&#x31;" k="109" />
+<hkern u1="&#x28;" u2="y" k="-41" />
+<hkern u1="&#x28;" u2="W" k="-61" />
+<hkern u1="&#x28;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x28;" u2="&#x21;" k="16" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="127" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="127" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2d;" u2="W" k="102" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="147" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="147" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="109" />
+<hkern u1="&#x2f;" u2="&#x153;" k="121" />
+<hkern u1="&#x2f;" u2="&#x152;" k="63" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-41" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="121" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="121" />
+<hkern u1="&#x2f;" u2="&#xea;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="102" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xd8;" k="63" />
+<hkern u1="&#x2f;" u2="&#xd6;" k="63" />
+<hkern u1="&#x2f;" u2="&#xd5;" k="63" />
+<hkern u1="&#x2f;" u2="&#xd4;" k="63" />
+<hkern u1="&#x2f;" u2="&#xd3;" k="63" />
+<hkern u1="&#x2f;" u2="&#xd2;" k="63" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-27" />
+<hkern u1="&#x2f;" u2="&#xc7;" k="63" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="133" />
+<hkern u1="&#x2f;" u2="&#x7b;" k="102" />
+<hkern u1="&#x2f;" u2="q" k="121" />
+<hkern u1="&#x2f;" u2="o" k="121" />
+<hkern u1="&#x2f;" u2="l" k="-41" />
+<hkern u1="&#x2f;" u2="k" k="-41" />
+<hkern u1="&#x2f;" u2="h" k="-41" />
+<hkern u1="&#x2f;" u2="e" k="121" />
+<hkern u1="&#x2f;" u2="d" k="121" />
+<hkern u1="&#x2f;" u2="c" k="121" />
+<hkern u1="&#x2f;" u2="b" k="-41" />
+<hkern u1="&#x2f;" u2="a" k="102" />
+<hkern u1="&#x2f;" u2="V" k="-59" />
+<hkern u1="&#x2f;" u2="R" k="-27" />
+<hkern u1="&#x2f;" u2="Q" k="63" />
+<hkern u1="&#x2f;" u2="P" k="-27" />
+<hkern u1="&#x2f;" u2="O" k="63" />
+<hkern u1="&#x2f;" u2="N" k="-27" />
+<hkern u1="&#x2f;" u2="M" k="-27" />
+<hkern u1="&#x2f;" u2="L" k="-27" />
+<hkern u1="&#x2f;" u2="K" k="-27" />
+<hkern u1="&#x2f;" u2="I" k="-27" />
+<hkern u1="&#x2f;" u2="H" k="-27" />
+<hkern u1="&#x2f;" u2="G" k="63" />
+<hkern u1="&#x2f;" u2="F" k="-27" />
+<hkern u1="&#x2f;" u2="E" k="-27" />
+<hkern u1="&#x2f;" u2="D" k="-27" />
+<hkern u1="&#x2f;" u2="C" k="63" />
+<hkern u1="&#x2f;" u2="B" k="-27" />
+<hkern u1="&#x2f;" u2="A" k="133" />
+<hkern u1="&#x30;" u2="&#x153;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-70" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-70" />
+<hkern u1="&#x30;" u2="&#xea;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-70" />
+<hkern u1="&#x30;" u2="q" k="-70" />
+<hkern u1="&#x30;" u2="o" k="-70" />
+<hkern u1="&#x30;" u2="e" k="-70" />
+<hkern u1="&#x30;" u2="d" k="-70" />
+<hkern u1="&#x30;" u2="c" k="-70" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-61" />
+<hkern u1="&#x30;" u2="&#x25;" k="-100" />
+<hkern u1="&#x31;" u2="&#x2026;" k="41" />
+<hkern u1="&#x31;" u2="&#x2f;" k="41" />
+<hkern u1="&#x31;" u2="&#x2e;" k="41" />
+<hkern u1="&#x31;" u2="&#x2c;" k="41" />
+<hkern u1="&#x31;" u2="&#x27;" k="223" />
+<hkern u1="&#x31;" u2="&#x22;" k="223" />
+<hkern u1="&#x33;" g2="uniFB04" k="-61" />
+<hkern u1="&#x33;" g2="uniFB03" k="-61" />
+<hkern u1="&#x33;" g2="uniFB02" k="-61" />
+<hkern u1="&#x33;" g2="uniFB01" k="-61" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-61" />
+<hkern u1="&#x33;" u2="&#x7d;" k="41" />
+<hkern u1="&#x33;" u2="f" k="-61" />
+<hkern u1="&#x33;" u2="]" k="41" />
+<hkern u1="&#x33;" u2="&#x29;" k="41" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-131" />
+<hkern u1="&#x34;" u2="r" k="-131" />
+<hkern u1="&#x34;" u2="p" k="-131" />
+<hkern u1="&#x34;" u2="n" k="-131" />
+<hkern u1="&#x34;" u2="m" k="-131" />
+<hkern u1="&#x35;" u2="&#xe6;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe5;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe4;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe3;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe2;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe1;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe0;" k="-41" />
+<hkern u1="&#x35;" u2="a" k="-41" />
+<hkern u1="&#x36;" u2="]" k="-41" />
+<hkern u1="&#x37;" u2="&#x2026;" k="223" />
+<hkern u1="&#x37;" u2="&#xb0;" k="-61" />
+<hkern u1="&#x37;" u2="&#x2e;" k="223" />
+<hkern u1="&#x37;" u2="&#x2c;" k="244" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-76" />
+<hkern u1="&#x3a;" u2="&#x33;" k="-61" />
+<hkern u1="&#x3a;" u2="&#x31;" k="109" />
+<hkern u1="&#x3f;" u2="&#x203a;" k="-20" />
+<hkern u1="&#x3f;" u2="&#x2039;" k="41" />
+<hkern u1="&#x3f;" u2="&#xbb;" k="-20" />
+<hkern u1="&#x3f;" u2="&#xab;" k="41" />
+<hkern u1="&#x3f;" u2="&#x3b;" k="-37" />
+<hkern u1="&#x3f;" u2="&#x3a;" k="-31" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="109" />
+<hkern u1="A" u2="&#xb5;" k="20" />
+<hkern u1="A" u2="W" k="172" />
+<hkern u1="A" u2="G" k="47" />
+<hkern u1="A" u2="&#x2f;" k="-100" />
+<hkern u1="B" u2="&#xee;" k="-12" />
+<hkern u1="B" u2="&#xec;" k="-6" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="y" k="27" />
+<hkern u1="B" u2="W" k="47" />
+<hkern u1="C" u2="&#xef;" k="-16" />
+<hkern u1="C" u2="&#xee;" k="-43" />
+<hkern u1="C" u2="&#xec;" k="8" />
+<hkern u1="C" u2="y" k="66" />
+<hkern u1="C" u2="e" k="37" />
+<hkern u1="C" u2="d" k="51" />
+<hkern u1="C" u2="W" k="43" />
+<hkern u1="C" u2="C" k="41" />
+<hkern u1="D" u2="&#xef;" k="-10" />
+<hkern u1="D" u2="&#xee;" k="-41" />
+<hkern u1="D" u2="&#xec;" k="-47" />
+<hkern u1="D" u2="&#xd0;" k="-41" />
+<hkern u1="D" u2="&#xc6;" k="184" />
+<hkern u1="D" u2="&#xc5;" k="80" />
+<hkern u1="D" u2="&#xc4;" k="80" />
+<hkern u1="D" u2="&#xc3;" k="80" />
+<hkern u1="D" u2="&#xc2;" k="80" />
+<hkern u1="D" u2="&#xc1;" k="80" />
+<hkern u1="D" u2="&#xc0;" k="80" />
+<hkern u1="D" u2="W" k="72" />
+<hkern u1="D" u2="A" k="80" />
+<hkern u1="E" u2="&#xb5;" k="20" />
+<hkern u1="E" u2="y" k="61" />
+<hkern u1="E" u2="W" k="74" />
+<hkern u1="F" g2="uniFB04" k="41" />
+<hkern u1="F" g2="uniFB03" k="41" />
+<hkern u1="F" g2="uniFB02" k="41" />
+<hkern u1="F" g2="uniFB01" k="41" />
+<hkern u1="F" u2="&#x2026;" k="285" />
+<hkern u1="F" u2="&#x201d;" k="-8" />
+<hkern u1="F" u2="&#x2019;" k="-8" />
+<hkern u1="F" u2="&#x178;" k="2" />
+<hkern u1="F" u2="&#x153;" k="129" />
+<hkern u1="F" u2="&#x152;" k="20" />
+<hkern u1="F" u2="&#xff;" k="106" />
+<hkern u1="F" u2="&#xfe;" k="49" />
+<hkern u1="F" u2="&#xfd;" k="106" />
+<hkern u1="F" u2="&#xfc;" k="76" />
+<hkern u1="F" u2="&#xfb;" k="76" />
+<hkern u1="F" u2="&#xfa;" k="76" />
+<hkern u1="F" u2="&#xf9;" k="76" />
+<hkern u1="F" u2="&#xf8;" k="129" />
+<hkern u1="F" u2="&#xf6;" k="129" />
+<hkern u1="F" u2="&#xf5;" k="129" />
+<hkern u1="F" u2="&#xf4;" k="129" />
+<hkern u1="F" u2="&#xf3;" k="129" />
+<hkern u1="F" u2="&#xf2;" k="129" />
+<hkern u1="F" u2="&#xf1;" k="94" />
+<hkern u1="F" u2="&#xf0;" k="129" />
+<hkern u1="F" u2="&#xef;" k="-20" />
+<hkern u1="F" u2="&#xee;" k="-2" />
+<hkern u1="F" u2="&#xed;" k="88" />
+<hkern u1="F" u2="&#xec;" k="49" />
+<hkern u1="F" u2="&#xeb;" k="129" />
+<hkern u1="F" u2="&#xea;" k="129" />
+<hkern u1="F" u2="&#xe9;" k="129" />
+<hkern u1="F" u2="&#xe8;" k="129" />
+<hkern u1="F" u2="&#xe7;" k="129" />
+<hkern u1="F" u2="&#xe6;" k="125" />
+<hkern u1="F" u2="&#xe5;" k="125" />
+<hkern u1="F" u2="&#xe4;" k="125" />
+<hkern u1="F" u2="&#xe3;" k="125" />
+<hkern u1="F" u2="&#xe2;" k="125" />
+<hkern u1="F" u2="&#xe1;" k="125" />
+<hkern u1="F" u2="&#xe0;" k="125" />
+<hkern u1="F" u2="&#xdf;" k="41" />
+<hkern u1="F" u2="&#xde;" k="4" />
+<hkern u1="F" u2="&#xdd;" k="2" />
+<hkern u1="F" u2="&#xd8;" k="20" />
+<hkern u1="F" u2="&#xd6;" k="20" />
+<hkern u1="F" u2="&#xd5;" k="20" />
+<hkern u1="F" u2="&#xd4;" k="20" />
+<hkern u1="F" u2="&#xd3;" k="20" />
+<hkern u1="F" u2="&#xd2;" k="20" />
+<hkern u1="F" u2="&#xd1;" k="4" />
+<hkern u1="F" u2="&#xd0;" k="4" />
+<hkern u1="F" u2="&#xcf;" k="4" />
+<hkern u1="F" u2="&#xce;" k="4" />
+<hkern u1="F" u2="&#xcd;" k="4" />
+<hkern u1="F" u2="&#xcc;" k="4" />
+<hkern u1="F" u2="&#xcb;" k="4" />
+<hkern u1="F" u2="&#xca;" k="4" />
+<hkern u1="F" u2="&#xc9;" k="4" />
+<hkern u1="F" u2="&#xc8;" k="4" />
+<hkern u1="F" u2="&#xc7;" k="20" />
+<hkern u1="F" u2="&#xc6;" k="231" />
+<hkern u1="F" u2="&#xc5;" k="162" />
+<hkern u1="F" u2="&#xc4;" k="162" />
+<hkern u1="F" u2="&#xc3;" k="162" />
+<hkern u1="F" u2="&#xc2;" k="162" />
+<hkern u1="F" u2="&#xc1;" k="162" />
+<hkern u1="F" u2="&#xc0;" k="162" />
+<hkern u1="F" u2="z" k="94" />
+<hkern u1="F" u2="y" k="61" />
+<hkern u1="F" u2="w" k="82" />
+<hkern u1="F" u2="v" k="106" />
+<hkern u1="F" u2="u" k="76" />
+<hkern u1="F" u2="t" k="20" />
+<hkern u1="F" u2="s" k="59" />
+<hkern u1="F" u2="r" k="94" />
+<hkern u1="F" u2="q" k="129" />
+<hkern u1="F" u2="p" k="94" />
+<hkern u1="F" u2="o" k="129" />
+<hkern u1="F" u2="n" k="94" />
+<hkern u1="F" u2="m" k="94" />
+<hkern u1="F" u2="l" k="49" />
+<hkern u1="F" u2="k" k="49" />
+<hkern u1="F" u2="j" k="27" />
+<hkern u1="F" u2="i" k="63" />
+<hkern u1="F" u2="h" k="49" />
+<hkern u1="F" u2="g" k="121" />
+<hkern u1="F" u2="f" k="41" />
+<hkern u1="F" u2="e" k="129" />
+<hkern u1="F" u2="d" k="129" />
+<hkern u1="F" u2="c" k="129" />
+<hkern u1="F" u2="b" k="49" />
+<hkern u1="F" u2="a" k="125" />
+<hkern u1="F" u2="Z" k="41" />
+<hkern u1="F" u2="Y" k="2" />
+<hkern u1="F" u2="X" k="43" />
+<hkern u1="F" u2="W" k="25" />
+<hkern u1="F" u2="V" k="-8" />
+<hkern u1="F" u2="T" k="25" />
+<hkern u1="F" u2="S" k="16" />
+<hkern u1="F" u2="R" k="4" />
+<hkern u1="F" u2="Q" k="20" />
+<hkern u1="F" u2="P" k="4" />
+<hkern u1="F" u2="O" k="20" />
+<hkern u1="F" u2="N" k="4" />
+<hkern u1="F" u2="M" k="4" />
+<hkern u1="F" u2="L" k="4" />
+<hkern u1="F" u2="K" k="4" />
+<hkern u1="F" u2="J" k="27" />
+<hkern u1="F" u2="I" k="4" />
+<hkern u1="F" u2="H" k="4" />
+<hkern u1="F" u2="G" k="20" />
+<hkern u1="F" u2="F" k="4" />
+<hkern u1="F" u2="E" k="4" />
+<hkern u1="F" u2="D" k="4" />
+<hkern u1="F" u2="C" k="20" />
+<hkern u1="F" u2="B" k="4" />
+<hkern u1="F" u2="A" k="162" />
+<hkern u1="F" u2="&#x2f;" k="121" />
+<hkern u1="F" u2="&#x2e;" k="285" />
+<hkern u1="F" u2="&#x2c;" k="285" />
+<hkern u1="G" u2="&#xee;" k="-14" />
+<hkern u1="G" u2="&#xd0;" k="-20" />
+<hkern u1="G" u2="y" k="41" />
+<hkern u1="G" u2="W" k="55" />
+<hkern u1="G" u2="M" k="25" />
+<hkern u1="H" u2="&#xef;" k="-12" />
+<hkern u1="H" u2="&#xee;" k="-18" />
+<hkern u1="H" u2="&#xec;" k="-18" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-12" />
+<hkern u1="I" u2="&#xee;" k="-18" />
+<hkern u1="I" u2="&#xec;" k="-18" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xf1;" k="43" />
+<hkern u1="J" u2="&#xef;" k="-20" />
+<hkern u1="J" u2="&#xee;" k="-20" />
+<hkern u1="J" u2="&#xec;" k="-31" />
+<hkern u1="J" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xc6;" k="82" />
+<hkern u1="J" u2="y" k="25" />
+<hkern u1="K" u2="&#xef;" k="-29" />
+<hkern u1="K" u2="&#xec;" k="-12" />
+<hkern u1="K" u2="y" k="115" />
+<hkern u1="K" u2="W" k="29" />
+<hkern u1="L" u2="&#xf8;" k="27" />
+<hkern u1="L" u2="y" k="129" />
+<hkern u1="L" u2="b" k="27" />
+<hkern u1="L" u2="W" k="240" />
+<hkern u1="L" u2="&#x20;" k="82" />
+<hkern u1="M" u2="&#xf8;" k="-6" />
+<hkern u1="M" u2="&#xef;" k="-2" />
+<hkern u1="M" u2="&#xec;" k="-33" />
+<hkern u1="M" u2="&#xdd;" k="29" />
+<hkern u1="M" u2="&#xd0;" k="-20" />
+<hkern u1="M" u2="y" k="20" />
+<hkern u1="M" u2="W" k="20" />
+<hkern u1="N" u2="&#xf8;" k="-10" />
+<hkern u1="N" u2="&#xef;" k="-57" />
+<hkern u1="N" u2="&#xee;" k="-10" />
+<hkern u1="N" u2="&#xec;" k="-35" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="&#xef;" k="-10" />
+<hkern u1="O" u2="&#xee;" k="-6" />
+<hkern u1="O" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="W" k="72" />
+<hkern u1="P" u2="&#xef;" k="-14" />
+<hkern u1="P" u2="&#xee;" k="-25" />
+<hkern u1="P" u2="&#xec;" k="-2" />
+<hkern u1="P" u2="&#xe5;" k="78" />
+<hkern u1="P" u2="c" k="61" />
+<hkern u1="P" u2="W" k="35" />
+<hkern u1="P" u2="M" k="33" />
+<hkern u1="Q" u2="&#xef;" k="-10" />
+<hkern u1="Q" u2="&#xee;" k="-6" />
+<hkern u1="Q" u2="&#xd0;" k="-20" />
+<hkern u1="Q" u2="W" k="72" />
+<hkern u1="Q" u2="N" k="-14" />
+<hkern u1="Q" u2="&#x2c;" k="-104" />
+<hkern u1="R" u2="y" k="70" />
+<hkern u1="R" u2="W" k="84" />
+<hkern u1="S" u2="&#xf8;" k="-10" />
+<hkern u1="S" u2="&#xef;" k="-10" />
+<hkern u1="S" u2="&#xee;" k="-18" />
+<hkern u1="S" u2="&#xec;" k="-20" />
+<hkern u1="S" u2="y" k="61" />
+<hkern u1="S" u2="W" k="55" />
+<hkern u1="T" u2="&#x203a;" k="94" />
+<hkern u1="T" u2="&#x2039;" k="203" />
+<hkern u1="T" u2="&#xff;" k="152" />
+<hkern u1="T" u2="&#xf6;" k="145" />
+<hkern u1="T" u2="&#xf5;" k="147" />
+<hkern u1="T" u2="&#xf4;" k="147" />
+<hkern u1="T" u2="&#xf2;" k="147" />
+<hkern u1="T" u2="&#xf1;" k="147" />
+<hkern u1="T" u2="&#xef;" k="-43" />
+<hkern u1="T" u2="&#xee;" k="-29" />
+<hkern u1="T" u2="&#xed;" k="98" />
+<hkern u1="T" u2="&#xec;" k="-2" />
+<hkern u1="T" u2="&#xeb;" k="156" />
+<hkern u1="T" u2="&#xea;" k="145" />
+<hkern u1="T" u2="&#xe8;" k="137" />
+<hkern u1="T" u2="&#xe4;" k="129" />
+<hkern u1="T" u2="&#xe3;" k="113" />
+<hkern u1="T" u2="&#xcf;" k="33" />
+<hkern u1="T" u2="&#xce;" k="37" />
+<hkern u1="T" u2="&#xcc;" k="37" />
+<hkern u1="T" u2="y" k="55" />
+<hkern u1="T" u2="r" k="74" />
+<hkern u1="T" u2="]" k="-61" />
+<hkern u1="T" u2="W" k="20" />
+<hkern u1="T" u2="M" k="57" />
+<hkern u1="T" u2="&#x3f;" k="-20" />
+<hkern u1="T" u2="&#x2c;" k="203" />
+<hkern u1="U" u2="&#xf1;" k="43" />
+<hkern u1="U" u2="&#xef;" k="-18" />
+<hkern u1="U" u2="&#xee;" k="-10" />
+<hkern u1="U" u2="&#xec;" k="-37" />
+<hkern u1="U" u2="&#xd0;" k="-20" />
+<hkern u1="U" u2="y" k="25" />
+<hkern u1="V" u2="&#x203a;" k="61" />
+<hkern u1="V" u2="&#x2039;" k="86" />
+<hkern u1="V" u2="&#xf1;" k="195" />
+<hkern u1="V" u2="&#xef;" k="-33" />
+<hkern u1="V" u2="&#xee;" k="20" />
+<hkern u1="V" u2="&#xed;" k="109" />
+<hkern u1="V" u2="&#xec;" k="18" />
+<hkern u1="V" u2="&#xe4;" k="113" />
+<hkern u1="V" u2="&#xe3;" k="92" />
+<hkern u1="V" u2="&#xe0;" k="92" />
+<hkern u1="V" u2="y" k="162" />
+<hkern u1="V" u2="W" k="6" />
+<hkern u1="V" u2="M" k="23" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="102" />
+<hkern u1="W" g2="uniFB04" k="90" />
+<hkern u1="W" g2="uniFB03" k="90" />
+<hkern u1="W" g2="uniFB02" k="90" />
+<hkern u1="W" g2="uniFB01" k="90" />
+<hkern u1="W" u2="&#x203a;" k="82" />
+<hkern u1="W" u2="&#x2039;" k="84" />
+<hkern u1="W" u2="&#x2026;" k="279" />
+<hkern u1="W" u2="&#x153;" k="143" />
+<hkern u1="W" u2="&#x152;" k="47" />
+<hkern u1="W" u2="&#xff;" k="104" />
+<hkern u1="W" u2="&#xfe;" k="41" />
+<hkern u1="W" u2="&#xfd;" k="104" />
+<hkern u1="W" u2="&#xfc;" k="86" />
+<hkern u1="W" u2="&#xfb;" k="98" />
+<hkern u1="W" u2="&#xfa;" k="98" />
+<hkern u1="W" u2="&#xf9;" k="98" />
+<hkern u1="W" u2="&#xf8;" k="143" />
+<hkern u1="W" u2="&#xf6;" k="143" />
+<hkern u1="W" u2="&#xf5;" k="143" />
+<hkern u1="W" u2="&#xf4;" k="143" />
+<hkern u1="W" u2="&#xf3;" k="143" />
+<hkern u1="W" u2="&#xf2;" k="143" />
+<hkern u1="W" u2="&#xf1;" k="195" />
+<hkern u1="W" u2="&#xf0;" k="143" />
+<hkern u1="W" u2="&#xef;" k="-33" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="115" />
+<hkern u1="W" u2="&#xec;" k="2" />
+<hkern u1="W" u2="&#xeb;" k="176" />
+<hkern u1="W" u2="&#xea;" k="115" />
+<hkern u1="W" u2="&#xe9;" k="143" />
+<hkern u1="W" u2="&#xe8;" k="150" />
+<hkern u1="W" u2="&#xe7;" k="143" />
+<hkern u1="W" u2="&#xe6;" k="152" />
+<hkern u1="W" u2="&#xe5;" k="152" />
+<hkern u1="W" u2="&#xe4;" k="115" />
+<hkern u1="W" u2="&#xe3;" k="72" />
+<hkern u1="W" u2="&#xe2;" k="152" />
+<hkern u1="W" u2="&#xe1;" k="152" />
+<hkern u1="W" u2="&#xe0;" k="72" />
+<hkern u1="W" u2="&#xdf;" k="90" />
+<hkern u1="W" u2="&#xde;" k="20" />
+<hkern u1="W" u2="&#xd8;" k="47" />
+<hkern u1="W" u2="&#xd6;" k="47" />
+<hkern u1="W" u2="&#xd5;" k="47" />
+<hkern u1="W" u2="&#xd4;" k="47" />
+<hkern u1="W" u2="&#xd3;" k="47" />
+<hkern u1="W" u2="&#xd2;" k="47" />
+<hkern u1="W" u2="&#xd1;" k="20" />
+<hkern u1="W" u2="&#xd0;" k="20" />
+<hkern u1="W" u2="&#xcf;" k="20" />
+<hkern u1="W" u2="&#xce;" k="20" />
+<hkern u1="W" u2="&#xcd;" k="20" />
+<hkern u1="W" u2="&#xcc;" k="20" />
+<hkern u1="W" u2="&#xcb;" k="20" />
+<hkern u1="W" u2="&#xca;" k="20" />
+<hkern u1="W" u2="&#xc9;" k="20" />
+<hkern u1="W" u2="&#xc8;" k="20" />
+<hkern u1="W" u2="&#xc7;" k="47" />
+<hkern u1="W" u2="&#xc6;" k="215" />
+<hkern u1="W" u2="&#xc5;" k="190" />
+<hkern u1="W" u2="&#xc4;" k="190" />
+<hkern u1="W" u2="&#xc3;" k="190" />
+<hkern u1="W" u2="&#xc2;" k="190" />
+<hkern u1="W" u2="&#xc1;" k="190" />
+<hkern u1="W" u2="&#xc0;" k="190" />
+<hkern u1="W" u2="&#xbb;" k="121" />
+<hkern u1="W" u2="&#xab;" k="121" />
+<hkern u1="W" u2="z" k="123" />
+<hkern u1="W" u2="y" k="125" />
+<hkern u1="W" u2="w" k="70" />
+<hkern u1="W" u2="v" k="80" />
+<hkern u1="W" u2="u" k="98" />
+<hkern u1="W" u2="t" k="78" />
+<hkern u1="W" u2="s" k="133" />
+<hkern u1="W" u2="r" k="104" />
+<hkern u1="W" u2="q" k="143" />
+<hkern u1="W" u2="p" k="82" />
+<hkern u1="W" u2="o" k="143" />
+<hkern u1="W" u2="n" k="82" />
+<hkern u1="W" u2="m" k="82" />
+<hkern u1="W" u2="l" k="41" />
+<hkern u1="W" u2="k" k="41" />
+<hkern u1="W" u2="j" k="51" />
+<hkern u1="W" u2="i" k="61" />
+<hkern u1="W" u2="h" k="41" />
+<hkern u1="W" u2="g" k="143" />
+<hkern u1="W" u2="f" k="90" />
+<hkern u1="W" u2="e" k="147" />
+<hkern u1="W" u2="d" k="129" />
+<hkern u1="W" u2="c" k="127" />
+<hkern u1="W" u2="b" k="43" />
+<hkern u1="W" u2="a" k="152" />
+<hkern u1="W" u2="X" k="35" />
+<hkern u1="W" u2="W" k="16" />
+<hkern u1="W" u2="R" k="20" />
+<hkern u1="W" u2="Q" k="47" />
+<hkern u1="W" u2="P" k="20" />
+<hkern u1="W" u2="O" k="47" />
+<hkern u1="W" u2="N" k="20" />
+<hkern u1="W" u2="M" k="23" />
+<hkern u1="W" u2="L" k="20" />
+<hkern u1="W" u2="K" k="20" />
+<hkern u1="W" u2="J" k="47" />
+<hkern u1="W" u2="I" k="20" />
+<hkern u1="W" u2="H" k="20" />
+<hkern u1="W" u2="G" k="47" />
+<hkern u1="W" u2="F" k="6" />
+<hkern u1="W" u2="E" k="20" />
+<hkern u1="W" u2="D" k="20" />
+<hkern u1="W" u2="C" k="47" />
+<hkern u1="W" u2="B" k="20" />
+<hkern u1="W" u2="A" k="190" />
+<hkern u1="W" u2="&#x3b;" k="141" />
+<hkern u1="W" u2="&#x3a;" k="141" />
+<hkern u1="W" u2="&#x2e;" k="279" />
+<hkern u1="W" u2="&#x2c;" k="244" />
+<hkern u1="X" u2="&#xef;" k="-2" />
+<hkern u1="X" u2="&#xee;" k="-4" />
+<hkern u1="X" u2="&#xed;" k="18" />
+<hkern u1="X" u2="&#xec;" k="-8" />
+<hkern u1="X" u2="y" k="111" />
+<hkern u1="X" u2="W" k="57" />
+<hkern u1="Y" u2="&#x203a;" k="100" />
+<hkern u1="Y" u2="&#x2039;" k="102" />
+<hkern u1="Y" u2="&#xf5;" k="205" />
+<hkern u1="Y" u2="&#xf2;" k="188" />
+<hkern u1="Y" u2="&#xef;" k="-45" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="129" />
+<hkern u1="Y" u2="&#xec;" k="-47" />
+<hkern u1="Y" u2="&#xe9;" k="184" />
+<hkern u1="Y" u2="&#xe8;" k="147" />
+<hkern u1="Y" u2="&#xe4;" k="111" />
+<hkern u1="Y" u2="&#xe3;" k="104" />
+<hkern u1="Y" u2="&#xe0;" k="106" />
+<hkern u1="Y" u2="&#xb5;" k="209" />
+<hkern u1="Y" u2="y" k="184" />
+<hkern u1="Y" u2="e" k="201" />
+<hkern u1="Y" u2="b" k="-8" />
+<hkern u1="Y" u2="W" k="10" />
+<hkern u1="Y" u2="M" k="29" />
+<hkern u1="Y" u2="&#x3b;" k="121" />
+<hkern u1="Y" u2="&#x3a;" k="121" />
+<hkern u1="Y" u2="&#x2c;" k="244" />
+<hkern u1="Z" u2="&#xef;" k="-14" />
+<hkern u1="Z" u2="&#xee;" k="-6" />
+<hkern u1="Z" u2="&#xec;" k="-16" />
+<hkern u1="Z" u2="y" k="104" />
+<hkern u1="Z" u2="W" k="20" />
+<hkern u1="[" u2="&#x153;" k="-100" />
+<hkern u1="[" u2="&#xfe;" k="-61" />
+<hkern u1="[" u2="&#xf8;" k="-100" />
+<hkern u1="[" u2="&#xf6;" k="-100" />
+<hkern u1="[" u2="&#xf5;" k="-100" />
+<hkern u1="[" u2="&#xf4;" k="-100" />
+<hkern u1="[" u2="&#xf3;" k="-100" />
+<hkern u1="[" u2="&#xf2;" k="-100" />
+<hkern u1="[" u2="&#xf0;" k="-100" />
+<hkern u1="[" u2="&#xeb;" k="-100" />
+<hkern u1="[" u2="&#xea;" k="-100" />
+<hkern u1="[" u2="&#xe9;" k="-100" />
+<hkern u1="[" u2="&#xe8;" k="-100" />
+<hkern u1="[" u2="&#xe7;" k="-100" />
+<hkern u1="[" u2="y" k="-41" />
+<hkern u1="[" u2="q" k="-100" />
+<hkern u1="[" u2="o" k="-100" />
+<hkern u1="[" u2="l" k="-61" />
+<hkern u1="[" u2="k" k="-61" />
+<hkern u1="[" u2="j" k="-100" />
+<hkern u1="[" u2="h" k="-61" />
+<hkern u1="[" u2="e" k="-100" />
+<hkern u1="[" u2="d" k="-100" />
+<hkern u1="[" u2="c" k="-100" />
+<hkern u1="[" u2="b" k="-61" />
+<hkern u1="[" u2="W" k="-61" />
+<hkern u1="[" u2="J" k="-90" />
+<hkern u1="[" u2="&#x3f;" k="-55" />
+<hkern u1="[" u2="&#x21;" k="16" />
+<hkern u1="a" u2="&#x2019;" k="61" />
+<hkern u1="a" u2="&#x2018;" k="162" />
+<hkern u1="a" u2="&#xff;" k="72" />
+<hkern u1="a" u2="&#xfd;" k="72" />
+<hkern u1="a" u2="y" k="47" />
+<hkern u1="a" u2="v" k="72" />
+<hkern u1="a" u2="&#x3f;" k="61" />
+<hkern u1="a" u2="&#x3b;" k="-10" />
+<hkern u1="a" u2="&#x2f;" k="-59" />
+<hkern u1="a" u2="&#x21;" k="-6" />
+<hkern u1="b" u2="&#x2018;" k="41" />
+<hkern u1="b" u2="&#xff;" k="20" />
+<hkern u1="b" u2="&#xfd;" k="20" />
+<hkern u1="b" u2="y" k="20" />
+<hkern u1="b" u2="v" k="20" />
+<hkern u1="b" u2="&#x3f;" k="78" />
+<hkern u1="d" u2="&#xec;" k="-20" />
+<hkern u1="d" u2="y" k="59" />
+<hkern u1="e" u2="y" k="23" />
+<hkern u1="e" u2="&#x3a;" k="-12" />
+<hkern u1="f" u2="&#x2018;" k="-182" />
+<hkern u1="f" u2="&#xef;" k="-217" />
+<hkern u1="f" u2="&#xee;" k="-174" />
+<hkern u1="f" u2="&#xec;" k="-174" />
+<hkern u1="f" u2="&#xe4;" k="-27" />
+<hkern u1="f" u2="y" k="-20" />
+<hkern u1="f" u2="l" k="-133" />
+<hkern u1="f" u2="b" k="-160" />
+<hkern u1="f" u2="]" k="-227" />
+<hkern u1="f" u2="W" k="-225" />
+<hkern u1="f" u2="M" k="-100" />
+<hkern u1="f" u2="&#x3f;" k="-195" />
+<hkern u1="f" u2="&#x3a;" k="-25" />
+<hkern u1="f" u2="&#x2f;" k="-78" />
+<hkern u1="f" u2="&#x2c;" k="10" />
+<hkern u1="f" u2="&#x2a;" k="-182" />
+<hkern u1="f" u2="&#x27;" k="-203" />
+<hkern u1="f" u2="&#x22;" k="-203" />
+<hkern u1="f" u2="&#x21;" k="-102" />
+<hkern u1="f" u2="&#x20;" k="-63" />
+<hkern u1="g" u2="&#x2026;" k="18" />
+<hkern u1="g" u2="&#x201d;" k="-74" />
+<hkern u1="g" u2="&#x201c;" k="-23" />
+<hkern u1="g" u2="&#x2019;" k="-74" />
+<hkern u1="g" u2="&#x2018;" k="-23" />
+<hkern u1="g" u2="&#x153;" k="27" />
+<hkern u1="g" u2="&#xff;" k="-6" />
+<hkern u1="g" u2="&#xfd;" k="-6" />
+<hkern u1="g" u2="&#xfc;" k="-31" />
+<hkern u1="g" u2="&#xfb;" k="-31" />
+<hkern u1="g" u2="&#xfa;" k="-31" />
+<hkern u1="g" u2="&#xf9;" k="-31" />
+<hkern u1="g" u2="&#xf8;" k="27" />
+<hkern u1="g" u2="&#xf6;" k="27" />
+<hkern u1="g" u2="&#xf5;" k="27" />
+<hkern u1="g" u2="&#xf4;" k="27" />
+<hkern u1="g" u2="&#xf3;" k="27" />
+<hkern u1="g" u2="&#xf2;" k="27" />
+<hkern u1="g" u2="&#xf1;" k="-18" />
+<hkern u1="g" u2="&#xf0;" k="27" />
+<hkern u1="g" u2="&#xeb;" k="27" />
+<hkern u1="g" u2="&#xea;" k="27" />
+<hkern u1="g" u2="&#xe9;" k="27" />
+<hkern u1="g" u2="&#xe8;" k="27" />
+<hkern u1="g" u2="&#xe7;" k="27" />
+<hkern u1="g" u2="&#x7d;" k="-51" />
+<hkern u1="g" u2="y" k="-6" />
+<hkern u1="g" u2="w" k="16" />
+<hkern u1="g" u2="v" k="-6" />
+<hkern u1="g" u2="u" k="-31" />
+<hkern u1="g" u2="t" k="-25" />
+<hkern u1="g" u2="r" k="-18" />
+<hkern u1="g" u2="q" k="27" />
+<hkern u1="g" u2="p" k="-18" />
+<hkern u1="g" u2="o" k="27" />
+<hkern u1="g" u2="n" k="-18" />
+<hkern u1="g" u2="m" k="-18" />
+<hkern u1="g" u2="j" k="-29" />
+<hkern u1="g" u2="g" k="-29" />
+<hkern u1="g" u2="e" k="27" />
+<hkern u1="g" u2="d" k="27" />
+<hkern u1="g" u2="c" k="27" />
+<hkern u1="g" u2="]" k="-92" />
+<hkern u1="g" u2="&#x2e;" k="18" />
+<hkern u1="g" u2="&#x2c;" k="-41" />
+<hkern u1="g" u2="&#x29;" k="-51" />
+<hkern u1="h" u2="&#x2019;" k="61" />
+<hkern u1="h" u2="&#x2018;" k="162" />
+<hkern u1="h" u2="y" k="37" />
+<hkern u1="h" u2="&#x3f;" k="61" />
+<hkern u1="h" u2="&#x3b;" k="-10" />
+<hkern u1="h" u2="&#x2f;" k="-59" />
+<hkern u1="h" u2="&#x21;" k="-6" />
+<hkern u1="i" u2="y" k="35" />
+<hkern u1="i" u2="c" k="2" />
+<hkern u1="k" u2="&#xb5;" k="25" />
+<hkern u1="k" u2="y" k="39" />
+<hkern u1="k" u2="m" k="12" />
+<hkern u1="l" u2="&#xef;" k="-10" />
+<hkern u1="l" u2="&#xee;" k="-10" />
+<hkern u1="l" u2="&#xec;" k="-35" />
+<hkern u1="l" u2="y" k="35" />
+<hkern u1="l" u2="]" k="-61" />
+<hkern u1="l" u2="&#x3f;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-41" />
+<hkern u1="l" u2="&#x21;" k="-29" />
+<hkern u1="m" u2="&#x2019;" k="61" />
+<hkern u1="m" u2="&#x2018;" k="162" />
+<hkern u1="m" u2="&#xff;" k="45" />
+<hkern u1="m" u2="&#xfd;" k="45" />
+<hkern u1="m" u2="y" k="53" />
+<hkern u1="m" u2="w" k="53" />
+<hkern u1="m" u2="v" k="45" />
+<hkern u1="m" u2="&#x3f;" k="61" />
+<hkern u1="m" u2="&#x3b;" k="-10" />
+<hkern u1="m" u2="&#x2f;" k="-59" />
+<hkern u1="m" u2="&#x21;" k="-6" />
+<hkern u1="n" u2="&#x2019;" k="61" />
+<hkern u1="n" u2="&#x2018;" k="162" />
+<hkern u1="n" u2="y" k="37" />
+<hkern u1="n" u2="&#x3f;" k="61" />
+<hkern u1="n" u2="&#x3b;" k="-10" />
+<hkern u1="n" u2="&#x2f;" k="-59" />
+<hkern u1="n" u2="&#x21;" k="-6" />
+<hkern u1="o" u2="&#x2018;" k="41" />
+<hkern u1="o" u2="y" k="23" />
+<hkern u1="o" u2="&#x3f;" k="78" />
+<hkern u1="p" u2="&#x2018;" k="41" />
+<hkern u1="p" u2="y" k="23" />
+<hkern u1="p" u2="&#x3f;" k="78" />
+<hkern u1="q" u2="&#x2026;" k="33" />
+<hkern u1="q" u2="&#x153;" k="-8" />
+<hkern u1="q" u2="&#xff;" k="35" />
+<hkern u1="q" u2="&#xfd;" k="35" />
+<hkern u1="q" u2="&#xfc;" k="23" />
+<hkern u1="q" u2="&#xfb;" k="23" />
+<hkern u1="q" u2="&#xfa;" k="23" />
+<hkern u1="q" u2="&#xf9;" k="23" />
+<hkern u1="q" u2="&#xf8;" k="-8" />
+<hkern u1="q" u2="&#xf6;" k="-8" />
+<hkern u1="q" u2="&#xf5;" k="-8" />
+<hkern u1="q" u2="&#xf4;" k="-8" />
+<hkern u1="q" u2="&#xf3;" k="-8" />
+<hkern u1="q" u2="&#xf2;" k="-8" />
+<hkern u1="q" u2="&#xf0;" k="-8" />
+<hkern u1="q" u2="&#xeb;" k="-8" />
+<hkern u1="q" u2="&#xea;" k="-8" />
+<hkern u1="q" u2="&#xe9;" k="-8" />
+<hkern u1="q" u2="&#xe8;" k="-8" />
+<hkern u1="q" u2="&#xe7;" k="-8" />
+<hkern u1="q" u2="&#x7d;" k="-61" />
+<hkern u1="q" u2="y" k="35" />
+<hkern u1="q" u2="x" k="6" />
+<hkern u1="q" u2="w" k="35" />
+<hkern u1="q" u2="v" k="35" />
+<hkern u1="q" u2="u" k="23" />
+<hkern u1="q" u2="q" k="-8" />
+<hkern u1="q" u2="o" k="-8" />
+<hkern u1="q" u2="j" k="-121" />
+<hkern u1="q" u2="g" k="-16" />
+<hkern u1="q" u2="e" k="-8" />
+<hkern u1="q" u2="d" k="-8" />
+<hkern u1="q" u2="c" k="-8" />
+<hkern u1="q" u2="]" k="-61" />
+<hkern u1="q" u2="&#x2e;" k="33" />
+<hkern u1="q" u2="&#x2c;" k="33" />
+<hkern u1="q" u2="&#x29;" k="-61" />
+<hkern u1="r" g2="uniFB02" k="23" />
+<hkern u1="r" u2="&#x2019;" k="-41" />
+<hkern u1="r" u2="y" k="-6" />
+<hkern u1="r" u2="e" k="41" />
+<hkern u1="r" u2="&#x3b;" k="-18" />
+<hkern u1="r" u2="&#x2c;" k="102" />
+<hkern u1="s" u2="y" k="45" />
+<hkern u1="t" u2="y" k="20" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="u" u2="y" k="59" />
+<hkern u1="u" u2="&#x2c;" k="-20" />
+<hkern u1="v" u2="&#x2019;" k="-61" />
+<hkern u1="v" u2="&#x2c;" k="197" />
+<hkern u1="w" u2="p" k="6" />
+<hkern u1="w" u2="m" k="23" />
+<hkern u1="w" u2="&#x2c;" k="190" />
+<hkern u1="x" u2="&#x153;" k="20" />
+<hkern u1="x" u2="&#xff;" k="10" />
+<hkern u1="x" u2="&#xfd;" k="10" />
+<hkern u1="x" u2="&#xf8;" k="20" />
+<hkern u1="x" u2="&#xf6;" k="20" />
+<hkern u1="x" u2="&#xf5;" k="20" />
+<hkern u1="x" u2="&#xf4;" k="20" />
+<hkern u1="x" u2="&#xf3;" k="20" />
+<hkern u1="x" u2="&#xf2;" k="20" />
+<hkern u1="x" u2="&#xf0;" k="20" />
+<hkern u1="x" u2="&#xeb;" k="20" />
+<hkern u1="x" u2="&#xea;" k="20" />
+<hkern u1="x" u2="&#xe9;" k="20" />
+<hkern u1="x" u2="&#xe8;" k="20" />
+<hkern u1="x" u2="&#xe7;" k="20" />
+<hkern u1="x" u2="y" k="10" />
+<hkern u1="x" u2="w" k="10" />
+<hkern u1="x" u2="v" k="10" />
+<hkern u1="x" u2="q" k="20" />
+<hkern u1="x" u2="o" k="20" />
+<hkern u1="x" u2="g" k="12" />
+<hkern u1="x" u2="e" k="20" />
+<hkern u1="x" u2="d" k="20" />
+<hkern u1="x" u2="c" k="20" />
+<hkern u1="y" u2="&#x2019;" k="-61" />
+<hkern u1="y" u2="&#xe6;" k="39" />
+<hkern u1="y" u2="&#xe5;" k="39" />
+<hkern u1="y" u2="&#xe4;" k="39" />
+<hkern u1="y" u2="&#xe3;" k="39" />
+<hkern u1="y" u2="&#xe2;" k="39" />
+<hkern u1="y" u2="&#xe1;" k="39" />
+<hkern u1="y" u2="&#xe0;" k="39" />
+<hkern u1="y" u2="c" k="29" />
+<hkern u1="y" u2="a" k="39" />
+<hkern u1="y" u2="&#x2c;" k="197" />
+<hkern u1="z" u2="y" k="37" />
+<hkern u1="&#x7b;" u2="y" k="-41" />
+<hkern u1="&#x7b;" u2="W" k="-61" />
+<hkern u1="&#x7b;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x7b;" u2="&#x21;" k="16" />
+<hkern u1="&#x7c;" u2="J" k="-82" />
+<hkern u1="&#xa1;" u2="&#x178;" k="170" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="170" />
+<hkern u1="&#xa1;" u2="Y" k="170" />
+<hkern u1="&#xa1;" u2="W" k="123" />
+<hkern u1="&#xa1;" u2="V" k="147" />
+<hkern u1="&#xa1;" u2="T" k="109" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-72" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-100" />
+<hkern u1="&#xab;" u2="&#x2014;" k="-82" />
+<hkern u1="&#xab;" u2="&#x2013;" k="-82" />
+<hkern u1="&#xab;" u2="W" k="141" />
+<hkern u1="&#xab;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xab;" u2="&#x3a;" k="-23" />
+<hkern u1="&#xab;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xb5;" u2="y" k="59" />
+<hkern u1="&#xb5;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x2014;" k="-121" />
+<hkern u1="&#xbb;" u2="&#x2013;" k="-121" />
+<hkern u1="&#xbb;" u2="W" k="102" />
+<hkern u1="&#xbb;" u2="M" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xbf;" u2="T" k="127" />
+<hkern u1="&#xbf;" u2="S" k="43" />
+<hkern u1="&#xc0;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc0;" u2="W" k="172" />
+<hkern u1="&#xc0;" u2="G" k="47" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc1;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc1;" u2="W" k="172" />
+<hkern u1="&#xc1;" u2="G" k="47" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc2;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc2;" u2="W" k="172" />
+<hkern u1="&#xc2;" u2="G" k="47" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc3;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc3;" u2="W" k="172" />
+<hkern u1="&#xc3;" u2="G" k="47" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc4;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc4;" u2="W" k="172" />
+<hkern u1="&#xc4;" u2="G" k="47" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc5;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc5;" u2="W" k="172" />
+<hkern u1="&#xc5;" u2="G" k="47" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc6;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc6;" u2="y" k="61" />
+<hkern u1="&#xc6;" u2="W" k="74" />
+<hkern u1="&#xc7;" u2="&#xef;" k="-16" />
+<hkern u1="&#xc7;" u2="&#xee;" k="-43" />
+<hkern u1="&#xc7;" u2="&#xec;" k="8" />
+<hkern u1="&#xc7;" u2="y" k="66" />
+<hkern u1="&#xc7;" u2="e" k="37" />
+<hkern u1="&#xc7;" u2="d" k="51" />
+<hkern u1="&#xc7;" u2="W" k="43" />
+<hkern u1="&#xc7;" u2="C" k="41" />
+<hkern u1="&#xc8;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc8;" u2="y" k="61" />
+<hkern u1="&#xc8;" u2="W" k="74" />
+<hkern u1="&#xc9;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc9;" u2="y" k="61" />
+<hkern u1="&#xc9;" u2="W" k="74" />
+<hkern u1="&#xca;" u2="&#xb5;" k="20" />
+<hkern u1="&#xca;" u2="y" k="61" />
+<hkern u1="&#xca;" u2="W" k="74" />
+<hkern u1="&#xcb;" u2="&#xb5;" k="20" />
+<hkern u1="&#xcb;" u2="y" k="61" />
+<hkern u1="&#xcb;" u2="W" k="74" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcc;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-12" />
+<hkern u1="&#xce;" u2="&#xee;" k="-18" />
+<hkern u1="&#xce;" u2="&#xec;" k="-18" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcf;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd0;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="W" k="72" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd1;" u2="&#xee;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd2;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="W" k="72" />
+<hkern u1="&#xd3;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd3;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd3;" u2="W" k="72" />
+<hkern u1="&#xd4;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd4;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd4;" u2="W" k="72" />
+<hkern u1="&#xd5;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd5;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd5;" u2="W" k="72" />
+<hkern u1="&#xd6;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd6;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd6;" u2="W" k="72" />
+<hkern u1="&#xd8;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd8;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd8;" u2="W" k="72" />
+<hkern u1="&#xd9;" u2="&#xf1;" k="43" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-18" />
+<hkern u1="&#xd9;" u2="&#xee;" k="-10" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-37" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd9;" u2="y" k="25" />
+<hkern u1="&#xda;" u2="&#xf1;" k="43" />
+<hkern u1="&#xda;" u2="&#xef;" k="-18" />
+<hkern u1="&#xda;" u2="&#xee;" k="-10" />
+<hkern u1="&#xda;" u2="&#xec;" k="-37" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xda;" u2="y" k="25" />
+<hkern u1="&#xdb;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdb;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdb;" u2="y" k="25" />
+<hkern u1="&#xdc;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdc;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdc;" u2="y" k="25" />
+<hkern u1="&#xdd;" u2="&#x203a;" k="100" />
+<hkern u1="&#xdd;" u2="&#x2039;" k="102" />
+<hkern u1="&#xdd;" u2="&#xf5;" k="205" />
+<hkern u1="&#xdd;" u2="&#xf2;" k="188" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-45" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="129" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-47" />
+<hkern u1="&#xdd;" u2="&#xe9;" k="184" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="147" />
+<hkern u1="&#xdd;" u2="&#xe4;" k="111" />
+<hkern u1="&#xdd;" u2="&#xe3;" k="104" />
+<hkern u1="&#xdd;" u2="&#xe0;" k="106" />
+<hkern u1="&#xdd;" u2="&#xb5;" k="209" />
+<hkern u1="&#xdd;" u2="y" k="184" />
+<hkern u1="&#xdd;" u2="e" k="201" />
+<hkern u1="&#xdd;" u2="b" k="-8" />
+<hkern u1="&#xdd;" u2="W" k="10" />
+<hkern u1="&#xdd;" u2="M" k="29" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="121" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="121" />
+<hkern u1="&#xdd;" u2="&#x2c;" k="244" />
+<hkern u1="&#xde;" u2="&#xef;" k="-10" />
+<hkern u1="&#xde;" u2="&#xee;" k="-6" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xde;" u2="W" k="72" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-18" />
+<hkern u1="&#xe0;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe0;" u2="y" k="37" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe0;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe1;" u2="y" k="37" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe2;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe2;" u2="y" k="37" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe2;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe3;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe3;" u2="y" k="37" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe3;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe4;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe4;" u2="y" k="37" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe4;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe5;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe5;" u2="y" k="37" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe5;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe6;" u2="y" k="23" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xe8;" u2="y" k="23" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xe9;" u2="y" k="23" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xea;" u2="y" k="23" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xeb;" u2="y" k="23" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-12" />
+<hkern u1="&#xec;" u2="y" k="35" />
+<hkern u1="&#xec;" u2="c" k="2" />
+<hkern u1="&#xed;" u2="y" k="35" />
+<hkern u1="&#xed;" u2="k" k="-20" />
+<hkern u1="&#xed;" u2="c" k="2" />
+<hkern u1="&#xee;" u2="y" k="35" />
+<hkern u1="&#xee;" u2="k" k="-20" />
+<hkern u1="&#xee;" u2="c" k="2" />
+<hkern u1="&#xef;" u2="y" k="35" />
+<hkern u1="&#xef;" u2="c" k="2" />
+<hkern u1="&#xf1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xf1;" u2="y" k="37" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-10" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xf1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xf2;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf2;" u2="y" k="23" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf3;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf3;" u2="y" k="23" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf4;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf4;" u2="y" k="23" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf5;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf5;" u2="y" k="23" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf6;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf6;" u2="y" k="23" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf8;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf8;" u2="y" k="23" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="78" />
+<hkern u1="&#xf9;" u2="y" k="59" />
+<hkern u1="&#xf9;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfa;" u2="y" k="59" />
+<hkern u1="&#xfa;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfb;" u2="y" k="59" />
+<hkern u1="&#xfb;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfc;" u2="y" k="59" />
+<hkern u1="&#xfc;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfd;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xfd;" u2="&#x2c;" k="197" />
+<hkern u1="&#xfe;" u2="&#x2018;" k="41" />
+<hkern u1="&#xfe;" u2="y" k="23" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="78" />
+<hkern u1="&#xff;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xff;" u2="&#x2c;" k="197" />
+<hkern u1="&#x152;" u2="&#xb5;" k="20" />
+<hkern u1="&#x152;" u2="y" k="61" />
+<hkern u1="&#x152;" u2="W" k="74" />
+<hkern u1="&#x153;" u2="y" k="23" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-12" />
+<hkern u1="&#x178;" u2="&#x203a;" k="100" />
+<hkern u1="&#x178;" u2="&#x2039;" k="102" />
+<hkern u1="&#x178;" u2="&#xf5;" k="205" />
+<hkern u1="&#x178;" u2="&#xf2;" k="188" />
+<hkern u1="&#x178;" u2="&#xef;" k="-45" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="129" />
+<hkern u1="&#x178;" u2="&#xec;" k="-47" />
+<hkern u1="&#x178;" u2="&#xe9;" k="184" />
+<hkern u1="&#x178;" u2="&#xe8;" k="147" />
+<hkern u1="&#x178;" u2="&#xe4;" k="111" />
+<hkern u1="&#x178;" u2="&#xe3;" k="104" />
+<hkern u1="&#x178;" u2="&#xe0;" k="106" />
+<hkern u1="&#x178;" u2="&#xb5;" k="209" />
+<hkern u1="&#x178;" u2="y" k="184" />
+<hkern u1="&#x178;" u2="e" k="201" />
+<hkern u1="&#x178;" u2="b" k="-8" />
+<hkern u1="&#x178;" u2="W" k="10" />
+<hkern u1="&#x178;" u2="M" k="29" />
+<hkern u1="&#x178;" u2="&#x3b;" k="121" />
+<hkern u1="&#x178;" u2="&#x3a;" k="121" />
+<hkern u1="&#x178;" u2="&#x2c;" k="244" />
+<hkern u1="&#x2013;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2013;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2013;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2013;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2013;" u2="W" k="102" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-100" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-61" />
+<hkern u1="&#x2014;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2014;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2014;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2014;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2014;" u2="W" k="102" />
+<hkern u1="&#x2014;" u2="&#x33;" k="145" />
+<hkern u1="&#x2018;" u2="&#xc5;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc4;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc3;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc2;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc1;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc0;" k="217" />
+<hkern u1="&#x2018;" u2="W" k="-72" />
+<hkern u1="&#x2018;" u2="V" k="-37" />
+<hkern u1="&#x2018;" u2="A" k="217" />
+<hkern u1="&#x2018;" u2="&#x2c;" k="170" />
+<hkern u1="&#x2019;" u2="s" k="43" />
+<hkern u1="&#x201a;" u2="&#x178;" k="223" />
+<hkern u1="&#x201a;" u2="&#x153;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf6;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf5;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf4;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf3;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf2;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf0;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xeb;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xea;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe9;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe7;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xdd;" k="223" />
+<hkern u1="&#x201a;" u2="q" k="-86" />
+<hkern u1="&#x201a;" u2="o" k="-86" />
+<hkern u1="&#x201a;" u2="j" k="-63" />
+<hkern u1="&#x201a;" u2="e" k="-86" />
+<hkern u1="&#x201a;" u2="d" k="-86" />
+<hkern u1="&#x201a;" u2="c" k="-86" />
+<hkern u1="&#x201a;" u2="Y" k="223" />
+<hkern u1="&#x201a;" u2="W" k="180" />
+<hkern u1="&#x201a;" u2="V" k="264" />
+<hkern u1="&#x201a;" u2="T" k="168" />
+<hkern u1="&#x201a;" u2="J" k="-104" />
+<hkern u1="&#x201c;" u2="W" k="-72" />
+<hkern u1="&#x201c;" u2="&#x2c;" k="170" />
+<hkern u1="&#x201e;" u2="W" k="262" />
+<hkern u1="&#x2039;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x153;" k="-41" />
+<hkern u1="&#x2039;" u2="&#x152;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf0;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xeb;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xea;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe9;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe6;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe5;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe4;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe3;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe2;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe1;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe0;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc1;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc0;" k="-41" />
+<hkern u1="&#x2039;" u2="s" k="-20" />
+<hkern u1="&#x2039;" u2="q" k="-41" />
+<hkern u1="&#x2039;" u2="o" k="-41" />
+<hkern u1="&#x2039;" u2="e" k="-41" />
+<hkern u1="&#x2039;" u2="d" k="-41" />
+<hkern u1="&#x2039;" u2="c" k="-41" />
+<hkern u1="&#x2039;" u2="a" k="-25" />
+<hkern u1="&#x2039;" u2="W" k="141" />
+<hkern u1="&#x2039;" u2="Q" k="-41" />
+<hkern u1="&#x2039;" u2="O" k="-41" />
+<hkern u1="&#x2039;" u2="M" k="-41" />
+<hkern u1="&#x2039;" u2="J" k="-82" />
+<hkern u1="&#x2039;" u2="G" k="-41" />
+<hkern u1="&#x2039;" u2="C" k="-41" />
+<hkern u1="&#x2039;" u2="A" k="-41" />
+<hkern u1="&#x2039;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x2039;" u2="&#x3a;" k="-23" />
+<hkern u1="&#x2039;" u2="&#x2c;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x153;" k="-27" />
+<hkern u1="&#x203a;" u2="&#x152;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xf8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf6;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf5;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf4;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf3;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf2;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf0;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xeb;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xea;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe9;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe7;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x203a;" u2="q" k="-27" />
+<hkern u1="&#x203a;" u2="o" k="-27" />
+<hkern u1="&#x203a;" u2="e" k="-27" />
+<hkern u1="&#x203a;" u2="d" k="-47" />
+<hkern u1="&#x203a;" u2="c" k="-27" />
+<hkern u1="&#x203a;" u2="W" k="102" />
+<hkern u1="&#x203a;" u2="Q" k="-41" />
+<hkern u1="&#x203a;" u2="O" k="-41" />
+<hkern u1="&#x203a;" u2="M" k="-20" />
+<hkern u1="&#x203a;" u2="G" k="-41" />
+<hkern u1="&#x203a;" u2="C" k="-41" />
+<hkern u1="&#x203a;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x3a;" k="-20" />
+<hkern g1="uniFB01" u2="y" k="35" />
+<hkern g1="uniFB01" u2="c" k="2" />
+<hkern g1="uniFB02" u2="&#xef;" k="-10" />
+<hkern g1="uniFB02" u2="&#xee;" k="-10" />
+<hkern g1="uniFB02" u2="&#xec;" k="-35" />
+<hkern g1="uniFB02" u2="y" k="35" />
+<hkern g1="uniFB02" u2="]" k="-61" />
+<hkern g1="uniFB02" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB02" u2="&#x21;" k="-29" />
+<hkern g1="uniFB03" u2="y" k="35" />
+<hkern g1="uniFB03" u2="c" k="2" />
+<hkern g1="uniFB04" u2="&#xef;" k="-10" />
+<hkern g1="uniFB04" u2="&#xee;" k="-10" />
+<hkern g1="uniFB04" u2="&#xec;" k="-35" />
+<hkern g1="uniFB04" u2="y" k="35" />
+<hkern g1="uniFB04" u2="]" k="-61" />
+<hkern g1="uniFB04" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB04" u2="&#x21;" k="-29" />
+<hkern g1="d" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-6" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="d" 	g2="w" 	k="31" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-20" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-23" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="61" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="w" 	k="37" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-45" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-27" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="61" />
+<hkern g1="f" 	g2="T" 	k="-205" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-158" />
+<hkern g1="f" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-41" />
+<hkern g1="f" 	g2="v,y,yacute,ydieresis" 	k="-6" />
+<hkern g1="f" 	g2="m,n,p,r,ntilde" 	k="-16" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-170" />
+<hkern g1="f" 	g2="w" 	k="-6" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-291" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-209" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-162" />
+<hkern g1="f" 	g2="S" 	k="-41" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-193" />
+<hkern g1="f" 	g2="V" 	k="-231" />
+<hkern g1="f" 	g2="X" 	k="-162" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-223" />
+<hkern g1="f" 	g2="Z" 	k="-82" />
+<hkern g1="f" 	g2="j" 	k="-92" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-68" />
+<hkern g1="f" 	g2="t" 	k="-47" />
+<hkern g1="f" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-20" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="v,y,yacute,ydieresis" 	k="55" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="w" 	k="37" />
+<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="31" />
+<hkern g1="k" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
+<hkern g1="k" 	g2="s" 	k="10" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="k" 	g2="w" 	k="49" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-18" />
+<hkern g1="k" 	g2="j" 	k="4" />
+<hkern g1="k" 	g2="t" 	k="27" />
+<hkern g1="k" 	g2="g" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-16" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-8" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteleft,quotedblleft" 	k="53" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="w" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-6" />
+<hkern g1="j" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="j" 	g2="w" 	k="37" />
+<hkern g1="j" 	g2="j" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="55" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="145" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="59" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="parenright,bracketright,braceright" 	k="14" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="t" 	k="4" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="g" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="w" 	k="39" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="33" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="80" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="23" />
+<hkern g1="r" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="57" />
+<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
+<hkern g1="r" 	g2="s" 	k="10" />
+<hkern g1="r" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-20" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="r" 	g2="w" 	k="-23" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="102" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="r" 	g2="j" 	k="-37" />
+<hkern g1="r" 	g2="t" 	k="-20" />
+<hkern g1="r" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="10" />
+<hkern g1="r" 	g2="g" 	k="55" />
+<hkern g1="r" 	g2="z" 	k="23" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="18" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="29" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="12" />
+<hkern g1="s" 	g2="w" 	k="25" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-47" />
+<hkern g1="t" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-8" />
+<hkern g1="t" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="t" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="t" 	g2="w" 	k="20" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="t" 	g2="g" 	k="8" />
+<hkern g1="t" 	g2="z" 	k="-10" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="v,y,yacute,ydieresis" 	k="33" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="m,n,p,r,ntilde" 	k="-6" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="70" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="w" 	k="37" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="29" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-6" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="v,y,yacute,ydieresis" 	k="-10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="2" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="-37" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="w" 	k="-18" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="217" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="-43" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="j" 	k="-2" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="t" 	k="-12" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="x" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="14" />
+<hkern g1="w" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="16" />
+<hkern g1="w" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
+<hkern g1="w" 	g2="s" 	k="29" />
+<hkern g1="w" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="w" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="w" 	g2="w" 	k="-20" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="141" />
+<hkern g1="w" 	g2="quoteright,quotedblright" 	k="-49" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="w" 	g2="t" 	k="-4" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="z" 	k="18" />
+<hkern g1="z" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="z" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="186" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="27" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="80" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="223" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-43" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="205" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="33" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="76" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="197" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="8" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="182" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="AE" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-16" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-43" />
+<hkern g1="B" 	g2="T" 	k="51" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="w" 	k="31" />
+<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
+<hkern g1="B" 	g2="V" 	k="63" />
+<hkern g1="B" 	g2="X" 	k="37" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="B" 	g2="Z" 	k="25" />
+<hkern g1="B" 	g2="g" 	k="6" />
+<hkern g1="B" 	g2="J" 	k="41" />
+<hkern g1="B" 	g2="AE" 	k="92" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="quoteleft,quotedblleft" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="comma,period,ellipsis" 	k="16" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-16" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="80" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="J" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="80" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="37" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="G" 	g2="T" 	k="61" />
+<hkern g1="G" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="G" 	g2="w" 	k="41" />
+<hkern g1="G" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="G" 	g2="S" 	k="2" />
+<hkern g1="G" 	g2="V" 	k="51" />
+<hkern g1="G" 	g2="X" 	k="49" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="88" />
+<hkern g1="G" 	g2="Z" 	k="14" />
+<hkern g1="G" 	g2="J" 	k="2" />
+<hkern g1="G" 	g2="AE" 	k="61" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="T" 	k="16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="31" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-45" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteright,quotedblright" 	k="-33" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="V" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="J" 	k="4" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="29" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="6" />
+<hkern g1="K" 	g2="T" 	k="49" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="70" />
+<hkern g1="K" 	g2="s" 	k="25" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="109" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="K" 	g2="w" 	k="102" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
+<hkern g1="K" 	g2="S" 	k="61" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
+<hkern g1="K" 	g2="V" 	k="31" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="K" 	g2="j" 	k="25" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="82" />
+<hkern g1="K" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="41" />
+<hkern g1="K" 	g2="g" 	k="59" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="K" 	g2="AE" 	k="12" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="14" />
+<hkern g1="L" 	g2="T" 	k="244" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="L" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="45" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="143" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="L" 	g2="w" 	k="123" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="33" />
+<hkern g1="L" 	g2="S" 	k="43" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="147" />
+<hkern g1="L" 	g2="V" 	k="225" />
+<hkern g1="L" 	g2="X" 	k="53" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="240" />
+<hkern g1="L" 	g2="Z" 	k="37" />
+<hkern g1="L" 	g2="j" 	k="20" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="L" 	g2="t" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="47" />
+<hkern g1="L" 	g2="z" 	k="6" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="63" />
+<hkern g1="L" 	g2="J" 	k="47" />
+<hkern g1="L" 	g2="AE" 	k="49" />
+<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="18" />
+<hkern g1="M" 	g2="T" 	k="43" />
+<hkern g1="M" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="M" 	g2="w" 	k="41" />
+<hkern g1="M" 	g2="V" 	k="18" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="29" />
+<hkern g1="M" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-14" />
+<hkern g1="M" 	g2="g" 	k="8" />
+<hkern g1="M" 	g2="J" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="20" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-86" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,ellipsis" 	k="-2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="S" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="31" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="-78" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="102" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
+<hkern g1="P" 	g2="T" 	k="25" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="113" />
+<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="98" />
+<hkern g1="P" 	g2="s" 	k="109" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="2" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="49" />
+<hkern g1="P" 	g2="w" 	k="6" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="301" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="S" 	k="37" />
+<hkern g1="P" 	g2="V" 	k="41" />
+<hkern g1="P" 	g2="X" 	k="61" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="27" />
+<hkern g1="P" 	g2="Z" 	k="66" />
+<hkern g1="P" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="z" 	k="6" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
+<hkern g1="P" 	g2="J" 	k="2" />
+<hkern g1="P" 	g2="AE" 	k="268" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="207" />
+<hkern g1="R" 	g2="T" 	k="78" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="R" 	g2="w" 	k="53" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="R" 	g2="S" 	k="31" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
+<hkern g1="R" 	g2="V" 	k="86" />
+<hkern g1="R" 	g2="X" 	k="16" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="R" 	g2="Z" 	k="-12" />
+<hkern g1="R" 	g2="g" 	k="4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="R" 	g2="J" 	k="37" />
+<hkern g1="R" 	g2="AE" 	k="20" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="S" 	g2="T" 	k="39" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="39" />
+<hkern g1="S" 	g2="w" 	k="53" />
+<hkern g1="S" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="20" />
+<hkern g1="S" 	g2="V" 	k="35" />
+<hkern g1="S" 	g2="X" 	k="47" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="74" />
+<hkern g1="S" 	g2="Z" 	k="4" />
+<hkern g1="S" 	g2="J" 	k="41" />
+<hkern g1="S" 	g2="AE" 	k="80" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="178" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="162" />
+<hkern g1="T" 	g2="s" 	k="182" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="156" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="74" />
+<hkern g1="T" 	g2="quoteleft,quotedblleft" 	k="-100" />
+<hkern g1="T" 	g2="w" 	k="70" />
+<hkern g1="T" 	g2="parenright,bracketright,braceright" 	k="-25" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="-8" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="131" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-31" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="T" 	g2="S" 	k="51" />
+<hkern g1="T" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
+<hkern g1="T" 	g2="V" 	k="12" />
+<hkern g1="T" 	g2="X" 	k="68" />
+<hkern g1="T" 	g2="Z" 	k="33" />
+<hkern g1="T" 	g2="j" 	k="51" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="T" 	g2="t" 	k="102" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="T" 	g2="g" 	k="166" />
+<hkern g1="T" 	g2="z" 	k="137" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="76" />
+<hkern g1="T" 	g2="J" 	k="20" />
+<hkern g1="T" 	g2="AE" 	k="213" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="180" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="T" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,l,thorn" 	k="-16" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="45" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="35" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Z" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="121" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="82" />
+<hkern g1="V,W" 	g2="T" 	k="18" />
+<hkern g1="V,W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="170" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="39" />
+<hkern g1="V,W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="145" />
+<hkern g1="V,W" 	g2="s" 	k="172" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="100" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="137" />
+<hkern g1="V,W" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="V,W" 	g2="w" 	k="121" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="137" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="121" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
+<hkern g1="V,W" 	g2="S" 	k="35" />
+<hkern g1="V,W" 	g2="X" 	k="20" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="-12" />
+<hkern g1="V,W" 	g2="Z" 	k="20" />
+<hkern g1="V,W" 	g2="j" 	k="10" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="V,W" 	g2="t" 	k="82" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="100" />
+<hkern g1="V,W" 	g2="g" 	k="145" />
+<hkern g1="V,W" 	g2="z" 	k="106" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="V,W" 	g2="J" 	k="61" />
+<hkern g1="V,W" 	g2="AE" 	k="244" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="207" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="186" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="217" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="156" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="125" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="143" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="203" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-39" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="96" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="47" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="29" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="98" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="109" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="150" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="154" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="106" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="250" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="195" />
+<hkern g1="X" 	g2="T" 	k="45" />
+<hkern g1="X" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="-10" />
+<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="X" 	g2="s" 	k="35" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="51" />
+<hkern g1="X" 	g2="w" 	k="111" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="4" />
+<hkern g1="X" 	g2="S" 	k="29" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="39" />
+<hkern g1="X" 	g2="V" 	k="20" />
+<hkern g1="X" 	g2="X" 	k="-33" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="X" 	g2="j" 	k="8" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="18" />
+<hkern g1="X" 	g2="t" 	k="55" />
+<hkern g1="X" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="X" 	g2="g" 	k="25" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="88" />
+<hkern g1="X" 	g2="AE" 	k="41" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="18" />
+<hkern g1="Z" 	g2="T" 	k="49" />
+<hkern g1="Z" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="Z" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="Z" 	g2="s" 	k="41" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="98" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="41" />
+<hkern g1="Z" 	g2="w" 	k="92" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-6" />
+<hkern g1="Z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="Z" 	g2="S" 	k="2" />
+<hkern g1="Z" 	g2="V" 	k="25" />
+<hkern g1="Z" 	g2="X" 	k="8" />
+<hkern g1="Z" 	g2="j" 	k="10" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
+<hkern g1="Z" 	g2="t" 	k="20" />
+<hkern g1="Z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Z" 	g2="z" 	k="37" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="55" />
+<hkern g1="Z" 	g2="J" 	k="18" />
+<hkern g1="Z" 	g2="AE" 	k="43" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="82" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-45" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="90" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotright,guilsinglright" 	g2="s" 	k="-14" />
+<hkern g1="guillemotright,guilsinglright" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-16" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="141" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-8" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-84" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-39" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="174" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="-23" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="w" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,ellipsis" 	k="213" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-29" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-70" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-6" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-57" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="252" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="147" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="160" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="213" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="150" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="346" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="209" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-90" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-45" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-63" />
+<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="V" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-49" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-94" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..0e9ecdcbc429c5ed4800e27681b4d677f324f541
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.woff
new file mode 100755
index 0000000000000000000000000000000000000000..f1e37d9b7493bd87fbd7925a3367e29ae62853f7
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBold.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.eot
new file mode 100755
index 0000000000000000000000000000000000000000..b433584e120ffb6548e94687ba900bdc9336a4bf
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.svg
new file mode 100755
index 0000000000000000000000000000000000000000..4715964b73b05f7d7eb45b61df016f37e3315c7e
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.svg
@@ -0,0 +1,1567 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-extrabolditalicregular" horiz-adv-x="1288" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1351" d="M-348 -412q0 71 33 203h174q0 -70 13.5 -94.5t64.5 -24.5q18 0 40 10.5t35 26.5q34 39 58 172l141 830h-166l35 182q78 11 123 41q22 13 35.5 39.5t27.5 81.5q68 237 266 362q129 80 369 80q62 0 131 -10t109 -29q36 -15 56 -48.5t20 -78.5q0 -87 -43 -229h-211 q0 94 -27 125q-25 22 -88 22q-95 0 -146 -39q-69 -54 -96 -211l-16 -84h317q81 41 174 41q75 0 113.5 -26t38.5 -103q0 -25 -5 -58.5t-10.5 -59t-15.5 -67t-14 -62.5l-31 -134q-33 -144 -33 -174q0 -35 15.5 -48t48.5 -13q40 0 102 20l-45 -196q-64 -27 -150 -40t-145 -13 q-104 0 -151 37t-47 108q0 49 28 178l51 225q17 75 17 115q0 47 -37 53q-28 7 -94 7h-166l-150 -787q-30 -162 -79.5 -253.5t-133.5 -149.5q-119 -78 -290 -78q-67 0 -119.5 13t-89.5 48.5t-37 89.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1368" d="M-348 -412q0 71 33 203h174q0 -70 13.5 -94.5t64.5 -24.5q18 0 40 10.5t35 26.5q34 39 58 172l141 830h-166l35 182q78 11 123 41q22 13 35.5 39.5t27.5 81.5q78 269 244 362q137 80 317 80q125 0 246 -37q69 37 158 37q74 0 107.5 -31.5t33.5 -99.5q0 -75 -43 -260 l-149 -660q-31 -140 -31 -174q0 -35 14.5 -48t46.5 -13q43 0 105 20l-45 -196q-65 -27 -150.5 -40t-144.5 -13q-199 0 -199 145q0 53 27 178l145 660q20 87 27 180q0 36 -23 67q-27 41 -108 41q-60 0 -96 -11.5t-62 -39.5q-50 -50 -74 -172l-22 -108q80 0 221 -9l-37 -202 q-117 -6 -223 -6l-150 -787q-30 -160 -81.5 -251.5t-139.5 -151.5q-116 -78 -282 -78q-67 0 -119.5 13t-89.5 48.5t-37 89.5z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="2062" d="M-348 -412q0 71 33 203h174q0 -70 13.5 -94.5t64.5 -24.5q18 0 40 10.5t35 26.5q34 39 58 172l141 830h-166l35 182q78 11 123 41q22 13 35.5 39.5t27.5 81.5q40 139 91 215t137 123q33 18 61.5 29.5t60 19.5t65.5 11t77 3q47 0 86.5 -8t74.5 -25t54.5 -48.5t19.5 -74.5 q0 -67 -30 -208h-164q0 91 -27 106q-18 10 -45 10q-37 0 -59 -22q-23 -23 -38 -66.5t-28 -130.5l-14 -82h196q79 0 129 23q47 25 76 125q70 251 254 362q64 39 164.5 59.5t204.5 20.5q62 0 130.5 -10t108.5 -29q36 -15 57 -48.5t21 -78.5q0 -80 -45 -229h-211q0 95 -26 125 q-25 22 -86 22q-97 0 -148 -39q-69 -54 -96 -211l-17 -84h318q81 41 174 41q78 0 115 -25t37 -104q0 -78 -41 -239l-35 -142q-33 -136 -33 -174q0 -35 15 -48t48 -13q41 0 103 20l-45 -196q-64 -27 -149.5 -40t-145.5 -13q-199 0 -199 145q0 56 29 178l51 225q19 87 19 115 q0 46 -39 53q-28 7 -95 7h-165l-142 -744q-30 -159 -81.5 -250.5t-137.5 -152.5q-65 -43 -124.5 -60.5t-137.5 -17.5q-102 0 -172 36.5t-70 114.5q0 65 33 197h156q0 -77 24 -98q15 -15 52 -15q21 0 38.5 8t30 24.5t21.5 34t16 44t11 48t9 50.5l134 787h-371l-150 -793 q-30 -160 -81.5 -251.5t-139.5 -151.5q-116 -78 -282 -78q-67 0 -119.5 13t-89.5 48.5t-37 89.5z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="2078" d="M-348 -412q0 71 33 203h174q0 -70 13.5 -94.5t64.5 -24.5q18 0 40 10.5t35 26.5q34 39 58 172l141 830h-166l35 182q78 11 123 41q22 13 35.5 39.5t27.5 81.5q40 139 91 215t137 123q33 18 61.5 29.5t60 19.5t65.5 11t77 3q47 0 86.5 -8t74.5 -25t54.5 -48.5t19.5 -74.5 q0 -67 -30 -208h-164q0 91 -27 106q-18 10 -45 10q-37 0 -59 -22q-23 -23 -38 -66.5t-28 -130.5l-14 -82h196q79 0 129 23q47 25 76 125q74 268 242 360q142 82 307 82q129 0 246 -37q69 37 158 37q74 0 107.5 -31.5t33.5 -99.5q0 -75 -43 -260l-148 -660q-32 -151 -32 -174 q0 -35 14.5 -48t46.5 -13q42 0 104 20l-45 -196q-65 -27 -150 -40t-144 -13q-199 0 -199 145q0 47 29 178l143 660q25 118 27 180q0 36 -23 67q-27 41 -107 41q-60 0 -95.5 -11.5t-63.5 -39.5q-48 -48 -74 -172l-23 -108q81 0 222 -9l-37 -202q-117 -6 -223 -6l-142 -744 q-31 -163 -77.5 -252.5t-133.5 -152.5q-106 -76 -270 -76q-102 0 -172 36.5t-70 114.5q0 65 33 197h156q0 -77 24 -98q15 -15 52 -15q21 0 38.5 8t30 24.5t21.5 34t16 44t11 48t9 50.5l134 787h-371l-150 -793q-30 -160 -81.5 -251.5t-139.5 -151.5q-116 -78 -282 -78 q-67 0 -119.5 13t-89.5 48.5t-37 89.5z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="634" d="M131 154q0 75 53 130.5t135 55.5q77 0 125 -45t48 -117q0 -91 -52 -143.5t-141 -52.5q-76 0 -122 47.5t-46 124.5zM276 467q15 697 33 809q28 174 217 174q87 0 133 -36t46 -95q0 -43 -17 -105q-57 -180 -264 -747h-148z" />
+<glyph unicode="&#x22;" horiz-adv-x="747" d="M215 842q6 274 10 365.5t13 131.5q22 117 145 117q62 0 89.5 -27t27.5 -69q0 -20 -13 -74q-40 -131 -161 -444h-111zM571 842q10 437 21 497q25 117 147 117q62 0 89.5 -27t27.5 -69q0 -16 -14 -74q-28 -100 -162 -444h-109z" />
+<glyph unicode="#" horiz-adv-x="1177" d="M113 399l34 211h244l53 176h-233l37 213h260l110 375h134l-113 -375h213l113 375h131l-111 -375h207l-37 -213h-235l-54 -176h221l-34 -211h-250l-125 -426h-131l125 426h-213l-125 -426h-129l123 426h-215zM524 610h213l51 176h-213z" />
+<glyph unicode="$" horiz-adv-x="1218" d="M78 195q0 125 33 274h170q8 -124 81 -190q54 -51 158 -54l55 287l-118 57q-98 46 -156 102.5t-77 109.5t-19 118q0 197 136 317.5t400 137.5l41 211h125l-41 -207q57 -2 110 -10.5t105 -26t83.5 -51.5t31.5 -80q0 -127 -37 -279h-172q-12 111 -53 162q-38 41 -113 49 l-55 -278l131 -62q128 -61 188 -134t60 -183q0 -93 -29 -169t-78.5 -128.5t-119.5 -89.5t-148.5 -57t-169.5 -27l-45 -230h-125l43 226q-195 3 -301 59q-94 52 -94 146zM575 1006q0 -72 66 -103l10 -6l43 221q-62 -11 -90.5 -42t-28.5 -70zM647 233q117 25 117 117 q0 36 -21.5 66.5t-52.5 40.5z" />
+<glyph unicode="%" horiz-adv-x="1935" d="M129 811q0 110 34 223.5t103 194.5q122 137 340 137q318 0 318 -293q0 -113 -36.5 -238.5t-111.5 -207.5q-116 -127 -307 -127q-156 0 -248 75t-92 236zM401 815q0 -68 19.5 -97.5t64.5 -29.5q64 0 103 76q30 62 48.5 151t18.5 154q0 61 -20.5 88t-63.5 27 q-71 0 -110 -82q-60 -137 -60 -287zM588 70l727 1296l133 -63l-727 -1305zM1102 295q0 110 34 223.5t103 194.5q124 139 338 139q319 0 319 -295q0 -113 -36.5 -237.5t-112.5 -206.5q-116 -127 -305 -127q-157 0 -248.5 74.5t-91.5 234.5zM1372 299q0 -67 20.5 -97t63.5 -30 q46 0 81.5 43t53.5 107.5t26.5 123.5t8.5 107q0 61 -20 88t-64 27q-72 0 -108 -82q-62 -142 -62 -287z" />
+<glyph unicode="&#x26;" horiz-adv-x="1730" d="M78 360q0 90 26 159t79 119t116.5 84t153.5 66q-56 126 -56 218q0 409 529 409q176 0 275 -73.5t99 -186.5q0 -48 -12.5 -90.5t-31 -75t-51 -63.5t-62.5 -52t-76 -44.5t-80 -38t-86 -35.5q85 -148 229 -283q70 70 70 113q0 9 -2 16t-7 12.5t-9.5 9t-13.5 6.5t-15 4.5 t-17.5 2.5t-17.5 1.5t-19 1.5t-18 1l39 180q114 -4 287 -4q209 0 283 4l-39 -180q-71 -4 -113 -23q-32 -18 -96 -104q-68 -89 -150 -182q65 -44 116 -58t114 -14q46 0 71 4l-53 -268q-71 -12 -145 -12q-112 0 -217 27.5t-156 70.5q-223 -109 -457 -109q-223 0 -355 108.5 t-132 278.5zM463 412q0 -88 55.5 -138.5t128.5 -50.5q71 0 152 31q-93 97 -145 166.5t-109 161.5q-82 -78 -82 -170zM778 1053q0 -57 41 -127q176 77 176 168q0 36 -24.5 63t-71.5 27q-54 0 -87.5 -34.5t-33.5 -96.5z" />
+<glyph unicode="'" horiz-adv-x="391" d="M215 842q6 274 10 365.5t13 131.5q22 117 145 117q62 0 89.5 -27t27.5 -69q0 -20 -13 -74q-40 -131 -161 -444h-111z" />
+<glyph unicode="(" horiz-adv-x="696" d="M68 395q0 408 188.5 718.5t542.5 490.5l69 -113q-242 -151 -391 -446.5t-149 -653.5q0 -223 54 -403t148 -293l-90 -98q-178 119 -275 325.5t-97 472.5z" />
+<glyph unicode=")" horiz-adv-x="696" d="M-111 -291q242 151 391.5 446.5t149.5 651.5q0 223 -54 404t-147 294l90 99q177 -120 275 -327.5t98 -471.5q0 -407 -189 -717t-544 -491z" />
+<glyph unicode="*" horiz-adv-x="847" d="M229 1176q0 48 30.5 86t78.5 38q36 0 76 -35.5t131 -148.5q-7 40 -17.5 94.5t-15 81.5t-4.5 45q0 54 29 78.5t67 24.5q119 0 119 -84q0 -70 -105 -254q156 106 222 106q94 0 94 -104q0 -51 -25.5 -79t-70.5 -28q-22 0 -50.5 3.5t-46.5 6.5t-60 11.5t-58 11.5 q94 -90 131 -141.5t37 -87.5q0 -42 -37.5 -69t-79.5 -27q-62 0 -82 54t-39 230q-62 -133 -103 -182t-83 -49q-38 0 -74.5 31.5t-36.5 76.5q0 31 15.5 53t74.5 55t174 75q-171 25 -217 41q-72 30 -74 86z" />
+<glyph unicode="+" horiz-adv-x="1232" d="M166 545l45 198h360l88 394h195l-92 -394h356l-41 -198h-358l-88 -393h-191l90 393h-364z" />
+<glyph unicode="," horiz-adv-x="503" d="M-123 -246q238 121 238 213q0 22 -12 41.5t-31 28.5q-80 39 -80 133q0 72 52 121t138 49q92 0 147.5 -57.5t55.5 -151.5q0 -288 -448 -498z" />
+<glyph unicode="-" horiz-adv-x="585" d="M53 406l41 212h469l-41 -212h-469z" />
+<glyph unicode="." horiz-adv-x="471" d="M4 154q0 75 53.5 130.5t135.5 55.5q76 0 124 -45t48 -117q0 -91 -52 -143.5t-141 -52.5q-76 0 -122 47.5t-46 124.5z" />
+<glyph unicode="/" horiz-adv-x="702" d="M-43 -123l709 1630l151 -53l-711 -1630z" />
+<glyph unicode="0" d="M98 446q0 130 28 266.5t96.5 278t168.5 230.5q167 151 414 151q110 0 197 -26t152.5 -80t100.5 -142.5t35 -208.5q0 -127 -25 -260t-87.5 -274t-153.5 -234q-176 -176 -436 -176q-232 0 -361 116.5t-129 358.5zM475 451q0 -38 2.5 -65.5t11 -59t23.5 -51.5t42 -33t64 -13 q52 0 90.5 27t71.5 84q61 111 97 285t36 299q0 103 -33.5 150.5t-103.5 47.5q-99 0 -162 -102q-60 -100 -99.5 -273t-39.5 -296z" />
+<glyph unicode="1" d="M178 -2l37 186q76 4 121.5 11.5t60.5 14.5t29 19q16 11 25.5 40t19.5 87l84 441q31 155 31 198q0 27 -11.5 37t-35.5 10q-50 0 -160 -18l-41 205q102 44 371 117q86 28 184 28q48 0 78 -26.5t30 -85.5q0 -44 -8 -76q-9 -56 -37.5 -197.5t-33.5 -165.5l-93 -467 q-12 -56 -12 -96q0 -45 45 -57q50 -13 182 -19l-36 -186q-164 4 -410 4q-244 0 -420 -4z" />
+<glyph unicode="2" d="M16 0l39 203q103 73 164 116.5t139 100.5t121 90.5t97 77.5t81.5 72t61 64t48.5 62t29.5 58t19.5 61t5 62q0 65 -37 109t-118 44q-37 0 -78 -10.5t-60 -28.5q-20 -16 -36 -52t-35 -114h-203q4 140 20 222q11 64 49 108t113 74q53 21 147.5 37t194.5 16q212 0 321 -93.5 t109 -242.5q0 -59 -15 -116.5t-39 -106.5t-63.5 -100t-78 -91t-94.5 -84.5t-100.5 -76.5t-108.5 -71.5t-106 -64t-105 -59.5q42 0 148 1t132 1q80 0 118 12.5t62 45.5q15 19 68 123h172q-56 -279 -88 -353q-20 -45 -58.5 -70.5t-113.5 -25.5h-922z" />
+<glyph unicode="3" d="M98 178q0 97 52 260h198q0 -96 35 -149q42 -51 186 -51q92 0 152.5 40.5t60.5 127.5q0 64 -46.5 101.5t-133.5 41.5q-47 2 -143 2l41 242q13 1 44 1.5t55.5 1.5t49.5 5q81 14 127.5 68t46.5 139q0 51 -40 79.5t-103 28.5q-92 0 -131 -33q-44 -33 -80 -149h-201 q3 21 10.5 98.5t10.5 100.5q16 103 125 165q47 28 148.5 51t215.5 23q95 0 169.5 -16.5t121.5 -44t77.5 -66t43 -80t12.5 -88.5q0 -143 -74.5 -229t-228.5 -146q134 -27 197 -98t63 -174q0 -99 -37.5 -178.5t-100 -131t-148.5 -86t-178 -49t-193 -14.5q-92 0 -181 13.5 t-133 33.5q-49 23 -69.5 59t-20.5 101z" />
+<glyph unicode="4" d="M68 356l32 181l605 667q92 100 148.5 135t141.5 35q64 0 109 -33t45 -104q0 -50 -12 -100q-8 -56 -101 -527h205l-49 -252h-205l-6 -28q-10 -63 -10 -72q0 -41 49 -55q45 -13 141 -19l-37 -186q-164 4 -405 4q-172 0 -348 -4l37 186q158 9 190 41q22 22 39 109l4 22h-573 zM422 604h268q67 322 90 408z" />
+<glyph unicode="5" d="M141 162q0 89 35 250h203q6 -103 41 -148q44 -47 160 -47q104 0 168.5 54.5t64.5 156.5q0 89 -47 136.5t-156 47.5q-43 0 -100 -8q-72 -16 -111 -16q-114 0 -114 102q0 47 20 139l115 510h801l-43 -270h-557l-48 -215q90 23 218 23q87 0 160 -22.5t128.5 -67.5t87 -117.5 t31.5 -165.5q0 -138 -51 -242.5t-142.5 -167t-211 -93t-265.5 -30.5q-190 0 -288 43q-47 22 -73 61t-26 87z" />
+<glyph unicode="6" d="M154 453q0 194 51 379t162 317q108 127 240 175t290 48q177 0 281 -49q44 -21 59.5 -51t15.5 -88q0 -90 -36 -228h-193q-7 90 -55 134q-29 32 -113 32q-239 0 -295 -342q42 53 119.5 81t159.5 28q86 0 152.5 -21t107.5 -55t67.5 -82.5t36.5 -98t10 -106.5 q0 -253 -156.5 -404t-422.5 -151q-227 0 -354 125t-127 357zM506 416q0 -94 42.5 -142.5t115.5 -48.5q95 0 148.5 62.5t53.5 161.5q0 178 -157 178q-56 0 -107 -25t-86 -70q-10 -71 -10 -116z" />
+<glyph unicode="7" d="M217 893q11 148 35 315q20 131 149 131h918l-35 -198l-657 -1118q-16 -27 -25.5 -40.5t-27.5 -30.5t-41 -24.5t-54 -7.5q-64 0 -102.5 26t-38.5 79q0 42 41 110l596 934h-244q-133 0 -184.5 -5t-89.5 -22q-50 -19 -90 -149h-150z" />
+<glyph unicode="8" d="M100 330q0 112 80.5 203.5t241.5 142.5q-85 55 -124.5 130t-39.5 155t30.5 150.5t94 130.5t174.5 95t258 35q232 0 347.5 -87t115.5 -220q0 -69 -23.5 -123.5t-66.5 -91t-88.5 -59.5t-104.5 -41q113 -68 164 -155.5t51 -174.5q0 -69 -20.5 -132t-67 -121.5t-115 -101 t-173 -67.5t-232.5 -25q-244 0 -373 97t-129 260zM449 350q0 -51 45.5 -92t123.5 -41q93 0 143 41t50 104q0 53 -45 98t-162 95q-155 -77 -155 -205zM639 1012q0 -45 37 -82.5t129 -75.5q131 86 131 168q0 43 -38 79t-97 36q-84 0 -123 -36t-39 -89z" />
+<glyph unicode="9" d="M131 162q0 111 29 225h194q6 -79 62 -135q37 -33 133 -33q49 0 100.5 19t81.5 55q72 89 103 276q-42 -52 -119 -78t-162 -26q-86 0 -152.5 20t-108 52.5t-68 79.5t-36.5 96t-10 106q0 252 157.5 402.5t422.5 150.5q229 0 356 -124.5t127 -354.5q0 -451 -199 -700 q-54 -68 -118.5 -114t-136 -68.5t-136 -31t-143.5 -8.5q-98 0 -179 15.5t-122 36.5q-43 20 -59.5 50.5t-16.5 88.5zM528 889q0 -89 39.5 -124.5t118.5 -35.5q128 0 191 88q10 69 10 119q0 93 -42.5 139.5t-115.5 46.5q-97 0 -149 -66.5t-52 -166.5z" />
+<glyph unicode=":" horiz-adv-x="514" d="M47 154q0 75 53.5 130.5t135.5 55.5q76 0 124 -45t48 -117q0 -91 -52 -143.5t-141 -52.5q-76 0 -122 47.5t-46 124.5zM164 756q0 76 52.5 132t133.5 56q77 0 125.5 -45.5t48.5 -116.5q0 -91 -51.5 -144.5t-140.5 -53.5q-76 0 -122 48t-46 124z" />
+<glyph unicode=";" horiz-adv-x="530" d="M-88 -246q238 121 238 213q0 22 -12.5 41.5t-31.5 28.5q-79 39 -79 133q0 73 51.5 121.5t138.5 48.5q92 0 147.5 -57.5t55.5 -151.5q0 -285 -449 -498zM164 756q0 76 52.5 132t133.5 56q77 0 125.5 -45.5t48.5 -116.5q0 -91 -51.5 -144.5t-140.5 -53.5q-76 0 -122 48 t-46 124z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1232" d="M236 539l47 198l888 408l-51 -232l-657 -284l528 -287l-47 -217z" />
+<glyph unicode="=" horiz-adv-x="1232" d="M115 344l45 199h913l-45 -199h-913zM205 745l43 195h915l-49 -195h-909z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1232" d="M135 125l49 229l658 287l-523 283l48 221l702 -410l-43 -200z" />
+<glyph unicode="?" horiz-adv-x="1003" d="M195 154q0 75 52 130.5t134 55.5q78 0 125 -45t47 -117q0 -91 -51 -143.5t-140 -52.5q-77 0 -122 47.5t-45 124.5zM219 1047q0 64 21 184q10 56 42 91t87 60q117 52 307 52q111 -1 194 -27.5t129.5 -71.5t68.5 -99t22 -116q0 -59 -15 -110.5t-38 -90.5t-64 -76t-77 -62 t-95 -54t-101 -46.5t-110 -43.5q-23 -8 -39.5 -22.5t-28 -35t-18 -39t-15.5 -46.5t-16 -45h-164q9 141 31 241q14 68 53.5 106t132.5 68q195 66 195 201q0 51 -29.5 92t-95.5 41q-86 0 -118.5 -30t-57.5 -121h-201z" />
+<glyph unicode="@" horiz-adv-x="1740" d="M125 406q0 144 41.5 279.5t121.5 248t188.5 197.5t250 132.5t299.5 47.5q298 0 473.5 -152.5t175.5 -415.5q0 -156 -64.5 -304t-185.5 -244q-128 -101 -272 -101q-166 0 -166 135q-131 -131 -282 -131q-102 0 -170 65t-68 191q0 113 50 231t134 210q131 143 336 143 q103 0 180 -41l45 53h168l-125 -428q-38 -133 -38 -188q0 -29 8.5 -43.5t36.5 -14.5q58 0 118 72q61 74 91 174.5t30 208.5q0 114 -36.5 199t-103 136t-153.5 76t-194 25q-156 0 -288.5 -59.5t-222.5 -162t-140 -240.5t-50 -293q0 -159 67 -284t198 -198t307 -73 q166 0 296 37t263 108l57 -125q-313 -180 -647 -180q-332 0 -530.5 195t-198.5 514zM707 397q0 -66 29 -91t85 -25q32 0 79 16t87 45q13 66 33 141l70 250q-63 29 -109 29q-105 0 -162 -74q-47 -61 -79.5 -139t-32.5 -152z" />
+<glyph unicode="A" horiz-adv-x="1597" d="M-72 -2l37 190q56 1 85 10.5t52 30.5q27 20 52 55.5t84 137.5l477 831q54 93 112 129.5t152 36.5q92 0 140 -34.5t61 -114.5l153 -910q11 -62 25 -94t41 -53q27 -22 117 -25l-37 -190q-200 4 -295 4q-205 0 -443 -4l37 190q56 2 119 15q31 7 43 25t12 53q0 23 -6 94 l-4 41h-393l-17 -29q-53 -85 -53 -125q0 -39 31 -53q46 -18 149 -21l-36 -190q-200 4 -449 4q-50 0 -246 -4zM668 670h235q-34 229 -43 364q-51 -101 -192 -364z" />
+<glyph unicode="B" horiz-adv-x="1363" d="M-43 -2l37 186q119 4 147 29q18 14 28.5 38.5t23.5 90.5l135 709q12 67 12 86q0 24 -10.5 36.5t-36.5 16.5q-47 7 -121 10l37 184h526q267 0 369 -30q119 -34 173 -101.5t54 -167.5q0 -288 -334 -346q143 -17 223 -99t80 -198q0 -263 -241 -379q-60 -29 -169 -47 t-226 -18q-39 0 -212 2t-229 2q-110 0 -266 -4zM551 272q0 -8 2.5 -14t7.5 -10t10 -7t14 -5t15 -3t17 -1t16.5 -0.5t16.5 -0.5h14q109 0 172 54.5t63 136.5q0 93 -55 135q-27 23 -75 32t-134 9h-25l-55 -293q-4 -16 -4 -33zM662 842h40q84 0 123 10q60 12 91.5 52t31.5 100 q0 36 -16.5 66.5t-46.5 43.5q-41 16 -127 16h-43z" />
+<glyph unicode="C" horiz-adv-x="1411" d="M117 553q0 210 77 393.5t238 308.5q211 162 561 162q104 0 193.5 -16.5t138.5 -42.5q43 -24 64.5 -58t21.5 -69q0 -96 -41 -295h-209q0 131 -45 176t-174 45q-91 0 -173 -38.5t-134 -112.5q-60 -85 -93.5 -200.5t-33.5 -221.5q0 -95 25.5 -165t69.5 -108.5t94 -56.5 t106 -18q158 0 219 55q47 44 100 166h203q-29 -157 -45.5 -224t-38.5 -100q-45 -69 -154 -108q-165 -54 -356 -54q-293 0 -453.5 157t-160.5 425z" />
+<glyph unicode="D" horiz-adv-x="1517" d="M-41 0l35 184q84 4 113 11.5t45 23.5q21 31 38 121l136 694q12 64 12 103q0 46 -33 51q-44 9 -133 12l35 184h420q299 0 451.5 -33.5t244.5 -101.5q82 -60 130 -165.5t48 -215.5q0 -96 -9 -178.5t-34.5 -174.5t-68 -166t-114 -142.5t-167.5 -114.5q-191 -92 -594 -92 h-555zM557 305q0 -57 123 -57q430 0 430 579q0 71 -28 138t-76 104q-72 57 -246 57h-49l-146 -768q-8 -36 -8 -53z" />
+<glyph unicode="E" horiz-adv-x="1333" d="M-41 0l35 184q110 0 156 33q10 10 17 26.5t12 37.5t14 67l133 692q14 77 14 101q0 10 -3 18t-10 13.5t-14 10t-19.5 7t-21.5 4.5t-25 3t-25.5 1.5t-27.5 0.5q-15 1 -22 1l37 184h967q79 0 117 -25t38 -81q0 -82 -49 -295h-182q0 41 -11.5 77t-29.5 54q-24 21 -109 21 h-237l-60 -318h49q97 0 136 29q5 4 9.5 9t8 9.5t8 13t6.5 13t7 15t6.5 14.5t7 16.5t6.5 15.5h172q-55 -229 -94 -506h-168q0 29 -1 43t-4.5 35.5t-13.5 34t-26 19.5q-28 12 -103 12h-49l-45 -242q-1 -5 -3 -16.5t-3.5 -21.5t-1.5 -15q0 -47 45 -53q57 -9 168 -9 q178 0 258 58q38 31 90 145h189q-13 -84 -44.5 -194.5t-66.5 -163.5q-53 -78 -213 -78h-1024z" />
+<glyph unicode="F" horiz-adv-x="1239" d="M-43 -2l37 186q74 3 108 11t52 26q19 22 39 129l135 697q12 74 12 86q0 49 -43 57q-35 7 -125 10l37 184h989q141 0 141 -94q0 -118 -57 -307h-176q-3 105 -31 133q-19 19 -108 19h-254l-68 -359h90q99 0 133 29q36 36 68 121h164q-42 -183 -103 -531h-159q0 51 -9 88 q-12 41 -43 52q-40 14 -94 14h-90l-33 -170q-16 -98 -16 -113q0 -18 5 -31t16.5 -21.5t23 -13.5t32.5 -7.5t36.5 -3.5t43 -2.5t44.5 -2.5l-37 -186q-172 4 -404 4q-172 0 -356 -4z" />
+<glyph unicode="G" horiz-adv-x="1492" d="M117 555q0 132 33 258t106.5 244.5t181.5 199.5q213 160 533 160q143 0 233 -16t156 -51q41 -23 57.5 -55.5t16.5 -84.5q0 -44 -13 -128t-30 -146h-207q-2 35 -4 59t-5.5 43t-8 32t-11.5 22q-51 65 -192 65q-40 0 -79.5 -7t-84.5 -23t-87.5 -47.5t-76.5 -75.5 q-58 -76 -91.5 -188t-33.5 -226q0 -84 19 -149t49 -103.5t70.5 -63t78 -33t78.5 -8.5q108 0 137 29q18 18 29 66l12 61q6 41 6 57q0 32 -22 41q-36 15 -144 23l29 186q114 -4 350 -4q147 0 299 4l-26 -186q-90 -6 -111 -27q-16 -19 -27 -77l-41 -226q-15 -88 -90 -125 q-190 -86 -471 -86q-290 0 -454 154.5t-164 431.5z" />
+<glyph unicode="H" horiz-adv-x="1591" d="M-43 -2l37 186q59 3 91.5 8.5t42 10.5t24.5 16q21 21 41 129l135 701q12 67 12 88q0 40 -37 51q-34 9 -131 12l37 186q135 -6 371 -6q60 0 348 6l-35 -186q-61 -1 -94.5 -6t-42.5 -11t-19 -18q-19 -19 -39 -123l-36 -186h432l36 188q13 64 13 97q0 10 -2.5 18.5t-9 14 t-12.5 10t-17.5 7t-19.5 4.5t-24 2.5t-25.5 1t-27.5 1t-28 0.5l35 186q270 -6 383 -6q68 0 338 6l-37 -186q-61 -2 -93 -7t-41 -10t-22 -18q-20 -20 -39 -121l-133 -686q-14 -77 -14 -108q0 -44 45 -53q36 -7 119 -13l-37 -186q-172 4 -355 4q-178 0 -366 -4l37 186 q81 4 110 11.5t45 21.5q23 23 43 131l47 246h-432l-45 -236q-16 -85 -16 -106q0 -41 45 -53q50 -10 119 -15l-37 -186q-172 4 -363 4q-172 0 -356 -4z" />
+<glyph unicode="I" horiz-adv-x="792" d="M-43 -2l37 186q78 4 108 12t50 23q21 21 41 129l135 701q12 67 12 94q0 19 -7 29t-28 16q-34 9 -133 12l37 186q264 -6 375 -6q74 0 350 6l-37 -186q-60 -2 -93.5 -7.5t-43 -11t-19.5 -16.5q-21 -24 -39 -121l-133 -686q-16 -85 -16 -108q0 -37 39 -49q38 -11 125 -17 l-37 -186q-172 4 -367 4q-172 0 -356 -4z" />
+<glyph unicode="J" horiz-adv-x="774" d="M-164 -176q118 40 190.5 103.5t102.5 162.5q45 150 76 309l125 648q12 61 12 98q0 12 -4.5 21.5t-15.5 15t-20.5 9t-28.5 5.5t-30.5 2.5t-35 1t-33.5 0.5l37 186q135 -6 373 -6q94 0 340 6l-37 -186q-77 -3 -104.5 -10.5t-41.5 -22.5q-19 -23 -39 -123l-118 -620 q-36 -185 -73 -285.5t-99 -191.5q-62 -93 -206.5 -174t-314.5 -121z" />
+<glyph unicode="K" horiz-adv-x="1556" d="M-43 -2l37 186q59 3 91.5 8.5t42 10.5t24.5 16q20 20 41 131l135 699q12 67 12 92q0 13 -4.5 23t-16 16t-21.5 10t-30.5 6t-33 2.5t-37.5 0.5q-6 0 -9 0.5t-7.5 0.5h-8.5l37 186q264 -6 371 -6q72 0 342 6l-37 -186q-77 -1 -105.5 -9.5t-42.5 -25.5q-19 -19 -39 -121 l-133 -684q-16 -85 -16 -108q0 -39 41 -51q32 -8 123 -17l-37 -186q-172 4 -363 4q-172 0 -356 -4zM641 686q95 80 188 172.5t150 155.5q34 40 53.5 67t27 42.5t7.5 27.5q0 18 -9 27t-30.5 14t-66.5 8l36 186q86 -4 357 -4q184 0 274 4l-39 -186q-44 -3 -80 -14 q-36 -12 -75.5 -40t-96.5 -91q-90 -97 -319 -318q106 -251 280 -461q40 -47 83.5 -67.5t109.5 -20.5l-37 -186q-106 -12 -219 -12q-198 0 -281 110q-154 209 -313 586z" />
+<glyph unicode="L" horiz-adv-x="1300" d="M-43 0l37 184q71 3 104 10t52 23q13 15 22 42t21 89l135 699q12 67 12 94q0 13 -5 23t-16 16.5t-21.5 10t-31 5.5t-33 2.5t-37.5 0.5q-6 1 -8.5 1h-7h-8.5l37 186q135 -6 371 -6q219 0 348 6l-35 -186q-126 0 -152 -33q-23 -23 -43 -125l-131 -667q-1 -4 -3.5 -19.5 t-4.5 -28.5t-2 -18q0 -45 45 -51q51 -8 148 -8q183 0 245 53q39 34 86 139h170q-8 -31 -20 -79.5t-17 -70t-14 -55t-14 -50t-13 -39t-15.5 -38.5t-16.5 -32q-21 -36 -72.5 -57t-122.5 -21h-989z" />
+<glyph unicode="M" horiz-adv-x="1884" d="M-45 -2l39 186q128 9 149 33q25 32 54 166q35 164 64.5 301t43 200t24 110.5t13.5 63t4 25.5q2 10 4 21.5t3 18t1 12.5q0 29 -11.5 40.5t-39.5 16.5q-22 4 -119 8l37 186q92 -4 357 -4q204 0 288 4q92 -531 111 -688q162 322 375 688q180 -4 323 -4q236 0 318 4l-37 -186 q-83 -1 -107.5 -7.5t-38.5 -23.5q-20 -17 -36 -114q-5 -25 -109 -680q-12 -86 -12 -125t39 -51q50 -15 123 -15l-39 -186q-204 4 -359 4q-124 0 -370 -4l38 186q130 5 162 37q24 32 39 113q1 4 21 120t49 281t53 297q-190 -362 -395 -729q-29 -51 -68 -77.5t-102 -26.5 q-122 0 -142 118q-35 202 -76 419.5t-53 297.5q-24 -121 -74.5 -392.5t-58.5 -324.5q-10 -62 -10 -67q0 -44 53 -53q32 -6 113 -13l-39 -186q-172 4 -244 4q-140 0 -358 -4z" />
+<glyph unicode="N" horiz-adv-x="1597" d="M-45 -2l39 186q46 3 75.5 6.5t46 9.5t23.5 10.5t15 12.5q18 25 47 172q27 129 67.5 337t48.5 245q21 108 21 149q0 13 -2.5 23t-8 19t-15.5 14.5t-25 7.5q-27 5 -115 10l37 186q86 -4 336 -4q151 0 223 4q264 -573 395 -878q14 90 28.5 177t23 136.5t16 94.5t10.5 71 q12 89 12 131q0 19 -4.5 32.5t-16 22t-21.5 14t-31.5 8t-35.5 3.5t-43 1q-12 1 -18 1l37 186q218 -4 320 -4q56 0 282 4l-36 -186q-85 -4 -113.5 -11t-42.5 -24q-17 -17 -51 -178q-80 -396 -162 -840q-16 -91 -57 -131.5t-136 -40.5q-74 0 -116 29t-68 90q-331 749 -395 901 q-101 -561 -107 -600q-18 -100 -18 -145q0 -49 55 -55q27 -5 107 -11l-37 -186q-212 4 -299 4q-73 0 -291 -4z" />
+<glyph unicode="O" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q151 0 264 -38.5t182.5 -110t103.5 -167.5t34 -216q0 -182 -60.5 -367.5t-181.5 -310.5q-219 -232 -563 -232q-130 0 -239 32t-194 97.5t-133 175.5t-48 254zM512 547q0 -309 242 -309q86 0 145 30.5 t109 110.5q61 94 94 236.5t33 256.5q0 146 -55.5 214.5t-174.5 68.5q-147 0 -237 -108q-72 -89 -114 -233t-42 -267z" />
+<glyph unicode="P" horiz-adv-x="1357" d="M-43 -2l37 186q93 5 133 21q24 10 36.5 34t26.5 97l136 702q12 66 12 95q0 48 -47 57q-47 8 -119 10l37 184h569q139 0 212.5 -6t146.5 -24q132 -33 194 -125t62 -219q0 -251 -158 -380.5t-449 -129.5q-147 0 -194 4l-27 -144q-16 -94 -16 -106q0 -46 49 -55 q46 -9 145 -15l-36 -186q-200 4 -435 4q-77 0 -315 -4zM641 754q33 -2 121 -2q118 0 182 48.5t64 162.5q0 93 -58.5 126t-181.5 33h-57z" />
+<glyph unicode="Q" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q151 0 264 -38.5t182.5 -110t103.5 -167.5t34 -216q0 -182 -60.5 -367.5t-181.5 -310.5q-126 -132 -284 -187q45 -47 137 -100q58 -33 148.5 -55.5t162.5 -22.5q25 0 33 2l-37 -190q-66 -14 -162 -14 q-108 0 -217 19.5t-168 45.5q-110 47 -187.5 111t-172.5 178q-198 40 -314 174.5t-116 365.5zM512 547q0 -309 242 -309q86 0 145 30.5t109 110.5q61 94 94 236.5t33 256.5q0 146 -55.5 214.5t-174.5 68.5q-147 0 -237 -108q-72 -89 -114 -233t-42 -267z" />
+<glyph unicode="R" horiz-adv-x="1419" d="M-43 -2l37 186q93 5 133 21q24 10 36.5 34t26.5 97l138 717q12 65 12 88q0 13 -4.5 23t-15 16t-20 10t-28.5 5.5t-30 2.5t-35.5 1.5t-34.5 0.5l37 184h547q222 0 348 -34q122 -36 189 -126t67 -210q0 -366 -334 -463q50 -112 133 -229q23 -31 56.5 -61t60.5 -44 q51 -23 96 -29l-41 -190q-28 -4 -121 -4q-100 0 -175 22t-108.5 46.5t-62.5 58.5q-109 128 -198 401q-36 0 -70 6l-31 -172q-16 -98 -16 -102q0 -14 4 -24.5t14.5 -17.5t18.5 -11.5t26.5 -7.5t28 -4t33.5 -2.5t33 -2.5l-37 -186q-200 4 -398 4q-77 0 -315 -4zM647 782 q31 -2 121 -2q211 0 211 187q0 41 -20.5 77.5t-53.5 49.5q-55 24 -147 24h-45z" />
+<glyph unicode="S" horiz-adv-x="1241" d="M68 217q2 88 41 291h180q11 -147 57 -203q73 -86 240 -86q200 0 200 135q0 46 -20.5 72t-67.5 47l-235 109q-78 36 -131.5 78t-81.5 89t-39.5 92t-11.5 99q1 120 49 212.5t134 149t197.5 85t245.5 28.5q239 0 344 -65q58 -38 58 -117q0 -151 -43 -307h-183 q0 136 -54 190.5t-179 54.5q-90 0 -136 -33.5t-46 -90.5q0 -90 84 -125l241 -105q136 -59 201.5 -145.5t65.5 -210.5q0 -102 -33 -184.5t-92 -139t-141.5 -94t-178.5 -55t-207 -17.5q-97 0 -190.5 17.5t-145.5 44.5q-70 36 -96 79.5t-26 104.5z" />
+<glyph unicode="T" horiz-adv-x="1427" d="M168 889q15 171 41 342q23 153 166 153h1001q142 0 142 -98q0 -44 -23 -169.5t-49 -227.5h-162q0 109 -8.5 153t-28.5 64q-20 19 -62 24t-143 5l-149 -777q-14 -74 -14 -106q0 -39 43 -51q35 -8 143 -17l-37 -186q-172 4 -389 4q-183 0 -367 -4l35 186q65 3 101 8.5 t46 10.5t25 16q21 21 41 129l152 787q-178 0 -228 -27q-67 -38 -110 -219h-166z" />
+<glyph unicode="U" horiz-adv-x="1630" d="M162 1200l37 186q160 -4 336 -4q251 0 415 4l-37 -186q-62 -1 -97 -6t-45.5 -11t-22.5 -18q-23 -23 -39 -102q-56 -266 -84 -422q-23 -138 -23 -203q0 -108 64.5 -158.5t177.5 -50.5q205 0 286 99q33 38 57.5 97t35.5 103.5t26 118.5q31 162 68 393q8 52 8 84 q0 47 -43 62q-43 11 -145 14l37 186q74 -2 374 -2q22 0 107.5 1t124.5 1l-37 -186q-77 -5 -108 -17t-46 -30q-25 -41 -41 -129l-82 -422q-37 -195 -78 -295t-116 -174q-85 -81 -220 -123.5t-296 -42.5q-82 0 -155 10.5t-145.5 37.5t-124.5 68.5t-84 108.5t-32 152 q0 114 35 289q14 74 34.5 168t33.5 155.5t16 87.5q10 72 10 82q0 47 -43 60q-43 10 -139 14z" />
+<glyph unicode="V" horiz-adv-x="1587" d="M168 1200l37 186q200 -4 399 -4q129 0 367 4l-37 -186q-101 -3 -129 -13q-53 -17 -53 -75q0 -28 10 -111q57 -414 84 -632q12 24 55.5 116.5t106.5 218t153 297.5q43 80 43 134q0 35 -26 45q-45 20 -144 20l37 186q204 -4 287 -4q187 0 379 4l-37 -186q-57 -2 -88 -9 t-53 -28q-44 -41 -101 -143l-485 -877q-51 -92 -111.5 -130t-156.5 -38q-94 0 -148 45t-68 127l-145 877q-12 73 -24.5 108t-38.5 46q-34 19 -113 22z" />
+<glyph unicode="W" horiz-adv-x="2250" d="M190 1200l35 186q258 -4 373 -4q309 0 399 4l-36 -186h-10l-39 -1.5t-34.5 -2t-33 -4t-27.5 -6t-25 -9.5t-18.5 -14t-15 -18.5t-8.5 -24.5q-5 -22 -5 -102q0 -20 7.5 -235t9.5 -328q108 248 358 772q17 36 34 61.5t44.5 51t67.5 38.5t92 13q97 0 134.5 -38.5t45.5 -121.5 q39 -379 66 -780q10 26 221 542q39 95 39 144q0 20 -8.5 32t-34.5 19q-44 9 -133 12l36 186q196 -4 332 -4q170 0 322 4l-35 -186q-93 -5 -131 -31q-24 -16 -46 -52t-57 -109l-407 -865q-43 -91 -99 -129.5t-149 -38.5q-97 0 -138.5 34.5t-47.5 117.5q-13 166 -29.5 343.5 t-24.5 274.5t-10 158q-88 -217 -346 -760q-43 -91 -100 -129.5t-148 -38.5q-93 0 -137.5 35.5t-50.5 116.5l-68 942q-6 86 -49 105q-34 21 -115 26z" />
+<glyph unicode="X" horiz-adv-x="1628" d="M-33 -2l33 186q107 7 150 35q51 39 88 78l403 440l-209 355q-2 3 -8.5 14t-9.5 16t-9.5 14t-11 14t-10.5 10.5t-12 8.5q-40 28 -140 31l33 186q131 -4 369 -4q317 0 389 4l-35 -186q-27 0 -44.5 -1.5t-36.5 -6.5t-28.5 -17.5t-9.5 -31.5q0 -39 33 -96l86 -168l141 170 q56 63 56 100q0 16 -9 26t-28.5 15t-35 7t-42.5 3l35 186q86 -4 342 -4q156 0 258 4l-33 -186q-69 -3 -115 -31q-41 -21 -100 -88l-356 -385l235 -413q32 -58 69.5 -74.5t143.5 -24.5l-32 -186q-266 4 -383 4q-156 0 -402 -4l31 186q53 4 106 17q47 13 47 51q0 26 -26 65 l-131 224l-178 -213q-30 -35 -40 -51t-10 -35q0 -16 7.5 -25.5t29.5 -15.5q46 -12 125 -17l-33 -186q-230 4 -372 4q-201 0 -320 -4z" />
+<glyph unicode="Y" horiz-adv-x="1423" d="M147 1200l35 186q230 -4 330 -4q153 0 365 4l-37 -186q-65 -3 -103 -16q-37 -16 -37 -56q0 -30 17 -79q84 -223 106 -285q37 51 219 289q45 57 45 92q0 10 -1.5 16.5t-9.5 14.5t-23 14q-27 10 -82 10l37 186q96 -4 383 -4q110 0 198 4l-37 -186q-63 -3 -102 -31 q-5 -3 -10.5 -7.5t-12.5 -11.5l-13.5 -13.5t-17 -18.5t-18.5 -21.5t-22.5 -26.5t-25 -29t-29 -34t-31.5 -38l-369 -432l-37 -187q-10 -58 -10 -86q0 -13 2 -22t13.5 -21t33.5 -18q43 -14 127 -19l-37 -186q-218 4 -375 4q-166 0 -374 -4l37 186q91 6 126 15t48 26 q20 27 34 105l41 205l-211 509q-2 6 -7 16q-13 31 -19 44.5t-17.5 33t-21 27t-25.5 17t-35.5 13t-46.5 5.5z" />
+<glyph unicode="Z" horiz-adv-x="1423" d="M8 0l25 106l858 1037q-190 0 -259 -4t-104 -21q-59 -25 -106 -172h-191q22 208 45 307q14 61 57 96t113 35h1045l-29 -108l-854 -1030q73 -6 180 -6q159 0 223 12.5t97 48.5q37 39 82 141h192q-50 -252 -90 -354q-31 -88 -182 -88h-1102z" />
+<glyph unicode="[" horiz-adv-x="688" d="M8 -348l369 1892h471l-25 -129h-227l-315 -1632h225l-25 -131h-473z" />
+<glyph unicode="\" horiz-adv-x="751" d="M229 1468l152 25l242 -1632l-156 -23z" />
+<glyph unicode="]" horiz-adv-x="688" d="M-113 -348l27 129h223l318 1632h-226l25 131h473l-369 -1892h-471z" />
+<glyph unicode="^" horiz-adv-x="1284" d="M236 733l507 772h215l154 -770h-209l-98 535l-336 -537h-233z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-125 -287l25 123h1011l-24 -123h-1012z" />
+<glyph unicode="`" horiz-adv-x="604" d="M92 1415q0 49 36 81t83 32q40 0 69 -22t66 -93l162 -297l-96 -67l-248 243q-72 69 -72 123z" />
+<glyph unicode="a" horiz-adv-x="1261" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l47 65h254l-135 -565q-27 -110 -27 -152q0 -32 12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-86 0 -132 38.5t-46 112.5q-57 -76 -137.5 -117t-173.5 -41q-169 0 -254.5 91 t-85.5 249zM410 369q0 -65 32 -101.5t90 -36.5q86 0 156 76q9 58 31 150l59 225q-51 29 -106 29q-98 0 -162 -64q-44 -48 -72 -129t-28 -149z" />
+<glyph unicode="b" horiz-adv-x="1196" d="M27 57q44 157 65 262l154 701q1 5 9.5 45t12.5 68t4 53q0 55 -67 55q-47 0 -86 -8l39 176q206 88 368 88q59 0 96 -29t37 -90q0 -63 -20 -149q-40 -196 -102 -432q68 84 154.5 132t182.5 48q273 0 273 -299q0 -152 -50.5 -292t-152.5 -243q-157 -157 -448 -157 q-108 0 -257 20.5t-212 50.5zM420 262q72 -14 117 -14q55 0 101 25.5t73 68.5q31 50 46 116.5t15 116.5q0 67 -26.5 93t-77.5 26q-83 0 -166 -73z" />
+<glyph unicode="c" horiz-adv-x="995" d="M49 362q0 143 52.5 276.5t156.5 215.5q161 121 369 121q123 0 209 -27q64 -21 87 -47t23 -86q0 -79 -39 -235h-192q-5 97 -37 122q-10 10 -32 17.5t-44 7.5q-51 0 -91 -29.5t-63 -77.5t-35 -102t-12 -108q0 -103 41.5 -142t112.5 -39q125 0 274 66l86 -184 q-196 -140 -440 -140q-198 0 -312 103.5t-114 287.5z" />
+<glyph unicode="d" horiz-adv-x="1253" d="M45 317q0 130 43 255t129 216q83 90 187 134.5t251 44.5q107 0 172 -27l31 131q14 65 14 113q0 57 -67 57q-46 0 -86 -8l39 176q208 88 368 88q77 0 105.5 -34t28.5 -93q0 -19 -3 -45.5t-10 -64t-13 -67.5t-17.5 -81t-18 -78.5t-20.5 -85.5t-19 -78l-108 -469 q-23 -97 -23 -129t12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-176 0 -176 153q-117 -160 -311 -160q-169 0 -255.5 92t-86.5 250zM410 381q0 -72 29.5 -111t86.5 -39q43 0 89.5 20t78.5 58q1 9 27 142l53 237q-52 27 -127 27q-87 0 -143 -62 q-41 -48 -67.5 -127.5t-26.5 -144.5z" />
+<glyph unicode="e" horiz-adv-x="1036" d="M49 367q0 128 39.5 238.5t113 193t186 129.5t249.5 47q183 0 270.5 -71.5t87.5 -194.5q0 -48 -11 -88t-48.5 -85t-100 -76.5t-173.5 -52.5t-261 -22q-2 -8 -2 -20q0 -60 41.5 -98t134.5 -38q127 0 310 84l90 -188q-233 -154 -510 -154q-194 0 -305 103t-111 293zM426 580 q283 0 283 112q0 60 -86 60q-76 0 -126.5 -47t-70.5 -125z" />
+<glyph unicode="f" horiz-adv-x="751" d="M-348 -412q0 71 33 203h174q0 -70 13.5 -94.5t64.5 -24.5q18 0 40 10.5t35 26.5q34 39 58 172l141 830h-166l35 182q78 11 123 41q40 23 63 121q65 269 234 368q126 74 286 74q45 0 81 -3t73.5 -13.5t62 -27t40.5 -46t16 -68.5q0 -62 -31 -225h-186q0 28 -1 44.5t-5 36.5 t-12.5 30t-24 17t-37.5 7q-56 0 -88 -35q-48 -51 -72 -188l-18 -104q86 0 227 -9l-37 -202q-117 -6 -223 -6l-150 -787q-30 -160 -81.5 -251.5t-139.5 -151.5q-116 -78 -282 -78q-67 0 -119.5 13t-89.5 48.5t-37 89.5z" />
+<glyph unicode="g" horiz-adv-x="1105" d="M-78 -299q0 50 20 90.5t57 70.5t76 50t91 39q-38 19 -58 53.5t-20 69.5q0 136 150 225q-83 33 -126.5 100.5t-43.5 157.5q0 132 68.5 228.5t180.5 143t254 46.5q204 0 293 -62q231 0 307 -2l-45 -209q-73 -6 -135 -6q4 -16 4 -59q0 -210 -184 -311q-134 -74 -322 -74 q-59 0 -86 4q-22 -22 -22 -49q0 -19 19.5 -30t78.5 -21q136 -27 322 -56q119 -18 176 -86t57 -166q0 -92 -33.5 -163.5t-89 -117.5t-133.5 -76t-162 -42t-180 -12q-112 0 -200.5 14.5t-146.5 39t-96 58.5t-54.5 71.5t-16.5 80.5zM238 -211q0 -106 247 -106q183 0 183 77 q0 30 -20.5 47.5t-74.5 24.5q-251 39 -282 55q-53 -42 -53 -98zM403 580q0 -52 34.5 -78.5t86.5 -26.5q69 0 110.5 45.5t41.5 118.5q0 109 -119 109q-68 0 -111 -48.5t-43 -119.5z" />
+<glyph unicode="h" horiz-adv-x="1224" d="M25 0l221 1020q1 5 9.5 45t12.5 68t4 53q0 55 -67 55q-47 0 -86 -8l39 176q206 88 368 88q59 0 97.5 -29t38.5 -90q0 -50 -23 -149q-37 -175 -104 -430q69 80 161.5 125t186.5 45q114 0 161.5 -52t47.5 -155q0 -58 -29 -184l-33 -132q-33 -130 -33 -174q0 -35 15.5 -48 t48.5 -13q40 0 102 20l-45 -196q-64 -27 -150 -40t-145 -13q-104 0 -151 37t-47 108q0 63 28 178l47 195q21 93 21 123q0 59 -59 59q-85 0 -164 -76l-138 -606h-335z" />
+<glyph unicode="i" horiz-adv-x="690" d="M43 702l39 177q180 88 301 88q100 0 141 -41t41 -131q0 -53 -37 -217l-32 -132q-33 -136 -33 -174q0 -35 15 -48t48 -13q41 0 103 20l-45 -196q-64 -27 -150 -40t-145 -13q-199 0 -199 145q0 44 29 178l51 225q20 88 20 119q0 60 -61 60q-39 0 -86 -7zM252 1282 q0 80 57 139.5t144 59.5q88 0 131 -45.5t43 -118.5q0 -89 -54 -148t-147 -59q-79 0 -126.5 50t-47.5 122z" />
+<glyph unicode="j" horiz-adv-x="675" d="M-213 -379q143 40 199 119q21 29 41 86t31.5 104.5t35.5 155.5q54 240 90 444q15 80 15 119q0 60 -60 60q-39 0 -86 -7l39 177q176 88 309 88q94 0 133 -41t39 -131q0 -48 -36 -228q-59 -281 -97 -481q-37 -195 -86 -302.5t-131 -186.5q-59 -56 -175 -103.5t-212 -56.5z M262 1282q0 80 57 139.5t144 59.5q88 0 131 -45.5t43 -118.5q0 -89 -53.5 -148t-145.5 -59q-80 0 -128 50t-48 122z" />
+<glyph unicode="k" horiz-adv-x="1224" d="M25 0l221 1020q1 5 9.5 45t12.5 68t4 53q0 55 -67 55q-47 0 -86 -8l39 176q206 88 368 88q59 0 97.5 -29t38.5 -90q0 -64 -23 -168l-279 -1210h-335zM500 516q126 200 239 309q83 81 151.5 113.5t149.5 32.5q68 0 109 -37t41 -94q0 -56 -29 -189h-160q-3 41 -36 41 q-39 0 -101 -47q-53 -43 -78 -74q61 -158 154 -286q46 -74 129 -74q39 0 100 14l-43 -194q-26 -17 -84.5 -35.5t-113.5 -18.5q-92 0 -148.5 25t-97.5 76q-54 69 -102 191t-80 247z" />
+<glyph unicode="l" horiz-adv-x="657" d="M66 127q0 58 26 178l146 660q38 172 38 215q0 61 -61 61q-38 0 -92 -8l39 176q69 34 168 61t174 27q93 0 125.5 -30t32.5 -101q0 -50 -44 -260l-149 -660q-31 -140 -31 -174q0 -35 14.5 -48t47.5 -13q42 0 104 20l-47 -196q-64 -27 -149.5 -40t-145.5 -13 q-196 0 -196 145z" />
+<glyph unicode="m" horiz-adv-x="1798" d="M49 702l39 177q71 36 166.5 63t169.5 27q137 0 137 -123q0 -28 -6 -64q74 81 170.5 134t179.5 53q95 0 141.5 -41.5t49.5 -143.5q76 86 171 135.5t183 49.5q116 0 166.5 -53t50.5 -152q0 -52 -25 -168l-36 -150q-33 -130 -33 -170q0 -35 13 -50t44 -15q47 0 109 20 l-45 -196q-58 -27 -147 -40t-148 -13q-199 0 -199 145q0 52 29 178l51 209q16 69 16 104q0 64 -53 64q-78 0 -151 -61q-1 -9 -27 -140l-109 -481h-344l117 514q16 69 16 104q0 64 -53 64q-74 0 -157 -76q-4 -27 -33 -164l-103 -442h-336l103 467q31 148 31 184 q0 33 -19 46.5t-55 13.5q-22 0 -74 -9z" />
+<glyph unicode="n" horiz-adv-x="1261" d="M49 702l39 177q72 35 167 62.5t169 27.5q137 0 137 -117q0 -50 -6 -70q73 81 174.5 134t192.5 53q114 0 161 -51.5t47 -155.5q0 -63 -28 -184l-33 -132q-33 -130 -33 -174q0 -35 15.5 -48t48.5 -13q40 0 102 20l-45 -196q-64 -27 -150 -40t-145 -13q-104 0 -151 37 t-47 108q0 63 28 178l47 195q21 93 21 123q0 59 -60 59q-84 0 -163 -76q-3 -25 -16.5 -83t-18.5 -81l-103 -442h-336l97 442q37 167 37 205q0 36 -18.5 50t-55.5 14q-29 0 -74 -9z" />
+<glyph unicode="o" horiz-adv-x="1146" d="M49 360q0 129 39.5 250.5t126.5 208.5q156 156 418 156q92 0 172 -20t148 -62.5t107.5 -118t39.5 -176.5q0 -122 -43 -252.5t-127 -216.5q-74 -77 -186.5 -117.5t-243.5 -40.5q-93 0 -171.5 21.5t-142.5 65.5t-100.5 121.5t-36.5 180.5zM401 381q0 -70 31 -115t103 -45 q105 0 153 92q25 48 39 126t14 141q0 147 -135 147q-84 0 -135 -63q-35 -49 -52.5 -127.5t-17.5 -155.5z" />
+<glyph unicode="p" horiz-adv-x="1239" d="M-57 -535l221 994q33 153 33 188q0 36 -18.5 50t-55.5 14q-29 0 -74 -9l39 177q72 35 167 62.5t169 27.5q131 0 131 -121q0 -46 -4 -66q68 83 167 139t200 56q146 0 209 -78.5t63 -220.5q0 -150 -51 -292t-152 -243q-157 -157 -448 -157q-89 0 -144 8l-116 -529h-336z M461 264q82 -16 119 -16q55 0 101 25.5t73 68.5q31 50 46 116.5t15 116.5q0 67 -26.5 93t-77.5 26q-85 0 -179 -90q0 -7 -22 -112z" />
+<glyph unicode="q" horiz-adv-x="1226" d="M45 317q0 130 43 255t129 216q86 93 208.5 141t315.5 48q70 0 193 -20t235 -60q-33 -127 -82 -340l-247 -1092h-336l143 623q-43 -57 -116.5 -85t-151.5 -28q-170 0 -252 91t-82 251zM410 381q0 -72 29.5 -111t86.5 -39q42 0 87 21t77 61l88 381q-49 21 -131 21 q-92 0 -145 -64q-40 -50 -66 -127.5t-26 -142.5z" />
+<glyph unicode="r" horiz-adv-x="944" d="M37 702l39 177q72 35 167.5 62.5t170.5 27.5q131 0 131 -117q0 -50 -4 -70q43 70 124.5 129.5t174.5 59.5q60 0 93.5 -28t33.5 -81q0 -111 -47 -248h-189q0 46 -13.5 68.5t-49.5 22.5q-38 0 -79 -38t-63 -85q-15 -107 -41 -220l-86 -362h-336l93 424q26 130 26 221 q0 66 -71 66q-33 0 -74 -9z" />
+<glyph unicode="s" horiz-adv-x="989" d="M33 162q6 97 33 207h165q0 -100 50 -140q25 -22 67.5 -35.5t83.5 -13.5q67 0 91 17.5t24 46.5q0 41 -43 59l-162 70q-129 56 -177 121t-48 147q0 92 41 159.5t112.5 104t154.5 53.5t181 17q73 0 147 -13.5t111 -35.5q34 -19 47 -46t13 -81q0 -42 -29 -189h-168 q-5 91 -49 123q-36 23 -117 23q-95 0 -102 -64q0 -39 41 -55l166 -68q126 -51 177.5 -112.5t51.5 -139.5q0 -79 -28 -140t-75 -99.5t-113 -63t-135 -34t-149 -9.5q-148 0 -239 31q-70 25 -96.5 63.5t-26.5 96.5z" />
+<glyph unicode="t" horiz-adv-x="759" d="M29 711l30 178q65 11 129 33q46 20 66 59q63 104 82 141q28 55 67.5 83t100.5 28q108 0 108 -88q0 -36 -39 -223q76 0 220 -9l-37 -202q-120 -6 -224 -6l-40 -207q-25 -119 -25 -179q0 -41 24.5 -64.5t65.5 -23.5q55 0 113 13l28 -201q-156 -68 -356 -68 q-114 0 -177 58.5t-63 167.5q0 44 23 166q68 334 70 344h-166z" />
+<glyph unicode="u" horiz-adv-x="1241" d="M37 698l39 176q73 36 169 63.5t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q83 0 164 78q5 37 35 164l102 442h336l-96 -442q-47 -217 -47 -242q0 -32 13 -44.5t46 -12.5q51 0 107 18l-45 -194q-154 -56 -281 -56 q-78 0 -125 41t-47 119q-71 -76 -171 -117t-197 -41q-226 0 -226 207q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9z" />
+<glyph unicode="v" horiz-adv-x="1167" d="M29 702l39 177q68 37 166 63.5t155 26.5q91 0 124.5 -34t33.5 -108q0 -32 -27 -182l-37 -205q-18 -110 -18 -133q0 -55 65 -55q40 0 87 23t79 59q57 67 84 158t27 143q0 49 -23 65.5t-73 16.5q-40 0 -90 -8l36 180q58 37 137 58.5t140 21.5q99 0 139.5 -44.5t40.5 -131.5 q0 -162 -72.5 -336t-181.5 -279q-220 -207 -504 -207q-117 0 -181 56.5t-64 154.5q0 82 20 187l25 131q16 84 16 153q0 58 -70 58q-17 0 -73 -9z" />
+<glyph unicode="w" horiz-adv-x="1693" d="M29 702l39 177q74 36 167.5 63t149.5 27q34 0 60 -4t44 -12.5t30 -20t19 -28t10 -35t3 -42.5q0 -32 -27 -182l-37 -205q-18 -103 -18 -133.5t14.5 -42.5t42.5 -12q22 0 50.5 11t52.5 30q32 22 51 57l96 561h328l-76 -471q-14 -100 -14 -133q0 -55 65 -55q70 0 142 82 q41 46 68.5 113.5t35.5 113t8 74.5q0 49 -23 65.5t-71 16.5q-32 0 -78 -8l35 180q58 38 130.5 59t127.5 21q56 0 93.5 -12.5t57.5 -37.5t27.5 -56t7.5 -75q0 -167 -69.5 -337t-179.5 -273q-225 -207 -502 -207q-100 0 -149 46t-54 145q-131 -191 -342 -191q-105 0 -169 57.5 t-64 153.5q0 82 20 187l25 131q16 84 16 153q0 58 -70 58q-17 0 -73 -9z" />
+<glyph unicode="x" horiz-adv-x="1155" d="M-27 127q0 88 19 190h178q3 -59 29 -59q9 0 16 1t16.5 4.5t20.5 12.5t24 23q19 22 36 45.5t28 41t32 52t36 58.5q-5 20 -22.5 68t-27.5 67q-28 55 -51.5 73.5t-58.5 18.5q-47 0 -111 -35l31 184q151 93 281 93q34 0 60 -7t44 -18t33.5 -30.5t25.5 -38.5t23 -48 q9 -19 41 -106q12 21 29.5 48t38 53.5t36.5 43.5q50 56 107 78.5t106 22.5q39 0 67.5 -6.5t52 -22.5t36 -46.5t12.5 -74.5q0 -37 -6.5 -96.5t-17.5 -98.5h-181q-5 54 -38 54q-9 0 -16 -1.5t-17 -6t-22 -15t-25 -26.5q-44 -58 -86 -129q16 -51 44 -125t44 -107 q45 -78 118 -78q39 0 115 31l-35 -186q-43 -24 -113 -40t-124 -16q-33 0 -62 4.5t-51.5 11t-42.5 19.5t-34 24t-28 31t-22 33.5t-19 38.5t-16.5 39t-15.5 43q-3 7 -4.5 11t-3.5 10.5t-4 11.5q-5 -8 -22.5 -39.5t-25.5 -44.5t-25 -38.5t-36 -49.5q-44 -57 -100.5 -81 t-132.5 -24q-91 0 -137 47t-46 107z" />
+<glyph unicode="y" horiz-adv-x="1216" d="M18 -387q0 34 10.5 107t22.5 122h187q0 -78 24 -112q13 -17 47 -28t72 -11q103 0 150.5 51t78.5 164q48 198 52 213q-74 -69 -152 -106.5t-186 -37.5q-116 0 -172 53.5t-56 153.5q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9l39 176q73 36 169 63.5 t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q77 0 162 78l139 606h336q-79 -396 -170 -883q-34 -183 -82.5 -294.5t-115.5 -178.5q-144 -147 -443 -147q-75 0 -149.5 12.5t-114.5 38.5q-37 24 -53 49.5t-19 69.5z" />
+<glyph unicode="z" horiz-adv-x="1095" d="M-10 0l20 119l543 637q-98 0 -147 -4q-61 -3 -87 -45q-26 -43 -53 -134h-180q6 158 16 230q11 66 51 104.5t109 38.5h787l-25 -127l-532 -635q55 -2 137 -2q73 0 129 23q19 7 41 30t35 46q22 33 53 116h172q-23 -156 -62 -301q-25 -96 -153 -96h-854z" />
+<glyph unicode="{" horiz-adv-x="663" d="M18 557l27 139q121 10 168 69t80 230l43 232q16 86 48.5 148t91.5 110.5t154 73t228 24.5l-24 -129q-134 0 -184 -57t-83 -232l-51 -258q-13 -71 -40.5 -121.5t-71 -82.5t-88.5 -50.5t-111 -34.5q102 -23 155.5 -68t53.5 -140q0 -39 -8 -80l-62 -299q-16 -88 -16 -137 q0 -73 39 -106.5t135 -33.5l-27 -133q-196 0 -291.5 62.5t-95.5 193.5q0 34 10 92l60 312q14 69 14 125q0 73 -36 109t-118 42z" />
+<glyph unicode="|" horiz-adv-x="563" d="M6 -375l379 1950h213l-379 -1950h-213z" />
+<glyph unicode="}" horiz-adv-x="663" d="M-143 -379l22 129q57 0 95.5 9.5t66.5 27.5t47 54.5t32 81t27 116.5l50 258q14 71 41.5 121.5t70.5 82.5t88 50.5t111 34.5q-102 23 -155.5 68.5t-53.5 140.5q0 38 8 79l62 300q16 88 16 137q0 73 -39 106t-135 33l27 133q196 0 291.5 -62.5t95.5 -193.5q0 -28 -11 -92 l-59 -311q-14 -69 -14 -125q0 -73 35.5 -109.5t117.5 -42.5l-26 -139q-121 -10 -168 -69t-80 -230l-43 -232q-16 -86 -48.5 -148t-91.5 -110.5t-153.5 -73t-226.5 -24.5z" />
+<glyph unicode="~" horiz-adv-x="1214" d="M119 520q170 199 327 199q49 0 93.5 -16t146.5 -76q52 -32 83 -45t62 -13q49 0 95 29.5t110 110.5l113 -138q-169 -206 -322 -206q-50 0 -91.5 13.5t-100.5 51.5q-79 48 -119.5 65t-75.5 17q-58 0 -107.5 -32t-99.5 -105z" />
+<glyph unicode="&#xa1;" horiz-adv-x="634" d="M-31 -295q0 51 19 102q37 126 262 748h149q-17 -681 -34 -807q-24 -174 -215 -174q-87 0 -134 36t-47 95zM182 844q0 91 52 144.5t141 53.5q77 0 122.5 -48t45.5 -124q0 -75 -53 -131.5t-134 -56.5q-77 0 -125.5 45.5t-48.5 116.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1009" d="M102 365q0 124 52.5 246.5t150.5 207.5q138 117 336 129l43 217h125l-43 -219q83 -7 129 -22q54 -17 77 -47.5t23 -83.5q0 -83 -41 -218h-174q0 41 -10.5 73t-24.5 44q-10 7 -26 10l-90 -462q108 3 219 53l72 -172q-67 -49 -157.5 -80.5t-180.5 -42.5l-45 -234h-125 l43 230q-158 8 -255.5 109.5t-97.5 261.5zM436 403q0 -101 72 -141l86 438q-58 -17 -90 -55q-68 -85 -68 -242z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1314" d="M25 0l34 188q157 31 227 108.5t85 238.5h-207l37 184h176q-4 31 -4 127q0 260 159.5 393t448.5 133q170 0 258 -43q43 -22 62.5 -51t19.5 -84q0 -82 -45 -272h-176q0 108 -31 153q-30 43 -133 43q-88 0 -135 -47.5t-64 -163.5q-16 -131 -16 -188h305l-37 -184h-282 q-12 -90 -57.5 -155t-139.5 -124q92 4 250 4q237 0 272 35q28 32 78 137h168q-66 -299 -90 -360q-28 -72 -135 -72h-1028z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1294" d="M147 274l140 142q-78 115 -78 264q0 145 78 268l-140 142l154 157l137 -139q112 78 260 78q142 0 260 -78l136 139l153 -157l-137 -142q78 -96 78 -268q0 -155 -78 -264l137 -142l-153 -157l-136 139q-113 -78 -260 -78q-152 0 -260 78l-137 -141zM428 686 q0 -128 76 -211.5t194 -83.5q114 0 190.5 84t76.5 205q0 123 -76 206t-191 83t-192.5 -82t-77.5 -201z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1443" d="M172 1151l39 190q111 -2 317 -2q247 0 349 2l-39 -190q-131 -3 -131 -70q0 -37 20 -77q9 -21 111 -263q18 24 90 122.5t114 150.5q35 46 35 86q0 25 -26 37.5t-86 13.5l39 190q92 -2 309 -2q178 0 264 2l-39 -190q-59 -3 -104 -33q-45 -33 -177 -188l-153 -182h174 l-27 -132h-258l-82 -96l-2 -18h322l-27 -131h-321l-6 -33q-9 -52 -9 -80q0 -34 34.5 -50t139.5 -20l-36 -190q-208 4 -369 4q-165 0 -365 -4l35 190q69 4 105 10.5t46.5 12.5t22.5 20q22 22 35 97l8 43h-321l26 131h320l2 18l-43 96h-258l26 132h175l-111 253q-24 55 -39 81 t-37 42q-32 22 -92 27z" />
+<glyph unicode="&#xa6;" horiz-adv-x="563" d="M33 -244l133 690h213l-133 -690h-213zM223 752l137 692h213l-135 -692h-215z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1087" d="M6 -238q0 89 29 228h182q4 -41 12.5 -69t25.5 -50.5t45.5 -33.5t70.5 -11q66 0 105.5 28.5t39.5 75.5q0 40 -27 76.5t-104 112.5l-164 162q-131 131 -131 276q0 111 69.5 197.5t241.5 148.5q-35 40 -53 104t-18 113q0 45 11.5 89.5t44 94t83 86.5t137 61t197.5 24 q155 0 246 -52q55 -28 55 -88q0 -35 -9.5 -107t-23.5 -122h-174q-12 79 -38 110t-99 31q-49 0 -82 -25.5t-33 -72.5q0 -33 22 -64t89 -90l108 -94q108 -94 151.5 -161.5t43.5 -145.5q0 -29 -3 -52.5t-19.5 -66.5t-46.5 -78t-91 -76.5t-145 -74.5q63 -63 84.5 -122t21.5 -132 q0 -69 -30 -135t-91 -125t-168.5 -95t-246.5 -36q-52 0 -103.5 8t-101.5 25.5t-81.5 50.5t-31.5 77zM395 668q0 -33 22.5 -66.5t80.5 -91.5l90 -90q38 -35 61 -62q62 30 81.5 58t19.5 69q0 33 -27 68t-96 98l-88 80q-48 48 -54 55q-2 -1 -7 -3q-20 -11 -30.5 -18t-25 -20.5 t-21 -32.5t-6.5 -44z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M-16 1253q0 59 40 103.5t101 44.5q58 0 94.5 -36t36.5 -91q0 -71 -40 -113.5t-105 -42.5q-58 0 -92.5 37t-34.5 98zM342 1253q0 59 41 103.5t102 44.5q58 0 94.5 -36t36.5 -91q0 -71 -41 -113.5t-106 -42.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1611" d="M137 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t229 -151.5t152.5 -227t56.5 -278q0 -153 -55.5 -289t-151 -233t-227.5 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM256 694q0 -130 47.5 -246.5t129 -200t195 -132.5t240.5 -49 q166 0 301.5 81.5t213 224t77.5 316.5q0 133 -45 250t-123 201t-189 133t-239 49q-171 0 -310.5 -83t-218.5 -226.5t-79 -317.5zM440 621q0 195 125 337q127 148 381 148q139 0 211 -31q57 -23 57 -88q0 -67 -24 -166h-131q0 57 -25 94q-15 21 -38.5 29t-69.5 8 q-117 0 -181 -86q-63 -89 -63 -221q0 -123 56.5 -181t138.5 -58q92 0 131 34q28 23 57 99h133q-25 -154 -45 -191q-20 -39 -88 -61q-103 -35 -234 -35q-187 0 -289 99t-102 270z" />
+<glyph unicode="&#xaa;" horiz-adv-x="784" d="M109 772q0 78 29.5 158.5t82.5 140.5q101 113 283 113q30 0 68.5 -7.5t58.5 -17.5l28 41h158l-84 -360q-3 -17 -10.5 -52t-7.5 -45q0 -38 35 -38q37 0 69 12l-28 -127q-101 -35 -170 -35q-53 0 -82 26t-29 74q-70 -102 -193 -102q-105 0 -156.5 57.5t-51.5 161.5z M332 805q0 -41 20.5 -64.5t57.5 -23.5q52 0 94 51q7 45 22 94l35 142q-30 18 -65 18q-63 0 -101 -41q-28 -29 -45.5 -80.5t-17.5 -95.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="1030" d="M10 446q0 64 76 121l436 320l94 -115l-325 -321l180 -326l-121 -96l-303 329q-37 41 -37 88zM455 446q0 65 75 121l435 320l96 -115l-326 -321l180 -326l-120 -96l-303 329q-37 37 -37 88z" />
+<glyph unicode="&#xac;" horiz-adv-x="1232" d="M160 543l45 202h909l-131 -593h-192l90 391h-721z" />
+<glyph unicode="&#xad;" horiz-adv-x="585" d="M53 406l41 212h469l-41 -212h-469z" />
+<glyph unicode="&#xae;" horiz-adv-x="1611" d="M137 694q0 197 96 362t262.5 261t366.5 96q146 0 279 -56.5t229 -151.5t152.5 -227t56.5 -278q0 -153 -55.5 -289t-151 -233t-227.5 -154t-279 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM256 694q0 -130 47.5 -246.5t129 -200t195 -132.5t240.5 -49 q166 0 301.5 81.5t213 224t77.5 316.5q0 133 -45 250t-123 201t-189 133t-239 49q-171 0 -310.5 -83t-218.5 -226.5t-79 -317.5zM418 301l22 111q56 0 76 10q14 7 22 21t15 55l80 413q6 37 6 47q0 15 -6 23.5t-23 11.5q-28 4 -69 4l22 109h311q84 0 148 -10t117.5 -33.5 t81.5 -67t28 -106.5q0 -193 -196 -262q41 -71 82 -135q26 -39 51.5 -56.5t75.5 -21.5l-23 -113q-2 0 -32.5 -1t-45.5 -1q-62 0 -107.5 13t-64.5 26.5t-39 34.5q-53 57 -110 231q-27 0 -47 4l-19 -100q-2 -11 -4.5 -24t-4 -21.5t-1.5 -13.5q0 -13 7 -21t23.5 -11.5t28.5 -4 t37 -0.5l-22 -111q-34 0 -131 1t-105 1q-20 0 -83.5 -1t-100.5 -1zM821 756q16 -2 72 -2q55 0 93 26.5t38 79.5q0 55 -33.5 72.5t-103.5 17.5h-27z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M0 1116l37 180h557l-37 -180h-557z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M213 1163q0 124 81 200.5t198 76.5q116 0 193 -72.5t77 -202.5q0 -124 -79 -197t-196 -73q-118 0 -196 71.5t-78 196.5zM336 1165q0 -71 40.5 -117.5t110.5 -46.5q73 0 115.5 46t42.5 116q0 74 -42.5 120t-115.5 46q-66 0 -108.5 -46t-42.5 -118z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1232" d="M78 96l49 197h911l-47 -197h-913zM225 799l43 192h363l90 381h188l-86 -381h357l-39 -192h-363l-82 -381h-194l86 381h-363z" />
+<glyph unicode="&#xb2;" horiz-adv-x="882" d="M158 862l30 150q122 83 197.5 137t135 100.5t88.5 79.5t43 61t14 58q0 82 -93 82q-46 0 -75 -19q-15 -12 -25 -33t-18 -71h-148q4 100 12 156q6 39 33.5 66.5t79.5 49.5q38 14 99 24.5t122 10.5q79 0 136.5 -16.5t89.5 -47t46.5 -67.5t14.5 -82q0 -122 -104.5 -225.5 t-333.5 -218.5q14 0 39 -0.5t43 -0.5t43 0.5t43.5 1.5t39 4t35 7t26 11t17.5 16q29 49 37 71h123q-24 -176 -55 -241q-15 -30 -39.5 -47t-75.5 -17h-620z" />
+<glyph unicode="&#xb3;" horiz-adv-x="882" d="M217 967q0 70 29 184h137q2 -38 8.5 -60.5t23.5 -35.5t40.5 -17t64.5 -4q51 0 91 20.5t40 63.5q0 68 -102 74q-31 2 -98 2l36 168q34 0 56.5 1t51 7t45 16t28.5 30t12 48q0 30 -22 48t-56 18q-67 0 -96 -22.5t-47 -86.5h-144q0 50 13 138q12 71 86 106q100 49 243 49 q153 0 223 -55.5t70 -134.5q0 -92 -46.5 -145.5t-141.5 -82.5q83 -18 124.5 -64t41.5 -106q0 -64 -25.5 -114t-66.5 -80.5t-99 -50.5t-117 -27.5t-126 -7.5q-119 0 -215 31q-62 27 -62 90z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M63 1135l224 266q75 90 135 90q47 0 82 -34t35 -83q0 -35 -23.5 -63.5t-79.5 -65.5l-293 -196z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1298" d="M12 -395q0 26 13 73l174 822q22 112 22 147q0 60 -69 60q-20 0 -76 -9l39 176q73 36 169 63.5t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -50 -31 -184l-49 -199q-22 -86 -22 -123q0 -61 61 -61q81 0 164 76q21 113 35 172l104 440h336l-96 -440l-14 -63t-16 -74 t-11.5 -60.5t-5.5 -44.5q0 -32 13 -44.5t46 -12.5q51 0 107 18l-47 -194q-150 -56 -279 -56q-77 0 -124.5 41t-47.5 119q-105 -137 -225 -137q-75 0 -98 37q-48 -388 -56 -420q-20 -121 -184 -121q-83 0 -118.5 32.5t-35.5 80.5z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1148" d="M129 745q0 203 99 349t270 218t395 72h379l-37 -192q-83 -1 -114.5 -7t-45.5 -20q-17 -13 -28 -44.5t-23 -98.5q-38 -189 -82.5 -435.5t-58.5 -320.5q-45 -242 -78 -348q-56 -171 -192.5 -283.5t-372.5 -166.5l-33 149q90 30 155.5 68t121 105.5t79.5 158.5 q26 105 66 309l8 43q-23 -2 -70 -2q-193 0 -315.5 120t-122.5 326z" />
+<glyph unicode="&#xb7;" horiz-adv-x="471" d="M68 500q0 75 52 131.5t134 56.5q77 0 124.5 -45.5t47.5 -116.5q0 -91 -50.5 -144.5t-139.5 -53.5q-77 0 -122.5 48t-45.5 124z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M74 -459q50 11 75 17.5t61 19t52.5 25t29.5 32.5t13 46q0 59 -61 102q-33 20 -33 51q0 8 3 19t9 25t11.5 25t16 29t16 26.5t17.5 27.5t15 24h143q-51 -73 -51 -104q0 -11 6 -20t9.5 -12t15.5 -11q104 -66 104 -150q0 -59 -30.5 -108.5t-76.5 -81t-109 -55t-119.5 -35.5 t-116.5 -19v127z" />
+<glyph unicode="&#xb9;" horiz-adv-x="882" d="M268 860l25 137q108 4 145 29q18 15 29 82l49 238q14 82 14 104q0 33 -34 33q-38 0 -105 -13l-22 154q78 30 243 70q84 22 133 22q80 0 80 -78q0 -36 -7.5 -80.5t-20 -100.5t-17.5 -85l-53 -268l-10 -55q0 -35 45 -41q49 -11 98 -11l-26 -137q-110 4 -273 4 q-183 0 -293 -4z" />
+<glyph unicode="&#xba;" horiz-adv-x="786" d="M125 811q0 78 27.5 153t83.5 128q106 106 294 106q138 0 211.5 -67.5t73.5 -178.5q0 -172 -100 -280q-52 -58 -127 -88.5t-160 -30.5q-80 0 -146.5 25.5t-111.5 85.5t-45 147zM348 829q0 -108 92 -108q71 0 103 53q45 65 45 164q0 50 -21.5 73t-68.5 23q-68 0 -109 -59 q-41 -67 -41 -146z" />
+<glyph unicode="&#xbb;" horiz-adv-x="1030" d="M-14 143l323 322l-180 326l121 96l303 -330q37 -37 37 -88q0 -67 -76 -121l-434 -319zM428 143l326 322l-181 326l121 96l303 -330q37 -37 37 -88q0 -64 -76 -121l-434 -319z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1904" d="M143 514l25 139q111 4 145 27q14 14 29 82l49 237q15 67 15 107q0 31 -35 31t-107 -13l-20 156q60 20 243 70q77 20 134 20q79 0 79 -78q0 -35 -7.5 -79.5t-20 -101t-17.5 -83.5l-53 -270q-10 -39 -10 -56q0 -34 43 -40q90 -9 100 -9l-26 -139q-165 6 -273 6 q-128 0 -293 -6zM559 70l727 1296l133 -63l-727 -1305zM954 225l23 121l369 391q66 69 109.5 94t111.5 25q42 0 72 -21t30 -67q0 -44 -63 -371h133l-35 -172h-133q-6 -30 -6 -45q0 -16 6 -24.5t22 -12.5q36 -5 97 -8l-27 -135q-110 4 -277 4q-125 0 -235 -4l25 135 q102 5 122 25q17 14 25 65h-369zM1198 391h158q37 183 49 225z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1904" d="M115 514l24 139q112 4 146 27q13 13 28 82l49 237q15 67 15 107q0 31 -35 31q-34 0 -106 -13l-21 156q56 19 244 70q77 20 133 20q80 0 80 -78q0 -35 -7.5 -79.5t-20 -101t-17.5 -83.5l-54 -270q-10 -39 -10 -56q0 -34 43 -40q90 -9 101 -9l-27 -139q-165 6 -272 6 q-128 0 -293 -6zM518 70l727 1296l133 -63l-727 -1305zM977 2l31 150q293 199 385 282t92 154q0 82 -92 82q-47 0 -76 -19q-15 -12 -25 -33t-18 -71h-148q4 88 13 155q11 74 112 117q91 35 222 35q153 0 219.5 -58.5t66.5 -154.5q0 -122 -104.5 -225.5t-333.5 -218.5 q9 0 62 -1t75 0t61 4.5t59.5 12.5t29.5 23q29 49 37 71h122q-24 -176 -55 -241q-15 -30 -39.5 -47t-75.5 -17h-620z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1904" d="M180 621q0 70 29 184h137q3 -72 30 -93.5t107 -21.5q32 0 59.5 6.5t49.5 26.5t22 51q0 33 -24 51t-78 21q-31 2 -98 2l37 170q28 0 46.5 1t43 4t40.5 9.5t31 17t22 28t7 40.5q0 31 -21 49.5t-55 18.5q-45 0 -72 -10t-43.5 -34t-27.5 -67h-143q0 62 12 137q12 71 86 109 q107 47 244 47q153 0 222.5 -54.5t69.5 -135.5q0 -92 -47 -144.5t-143 -83.5q84 -18 125 -63t41 -105q0 -64 -25 -114t-66.5 -81t-98.5 -51t-116 -28t-126 -8q-116 0 -215 32q-28 11 -45 34t-17 55zM616 70l727 1296l134 -63l-727 -1305zM997 225l23 121l369 391 q66 69 109.5 94t111.5 25q42 0 72 -21t30 -67q0 -44 -63 -371h133l-35 -172h-133q-6 -30 -6 -45q0 -8 1 -13.5t4 -10t8.5 -8t14.5 -5.5q36 -5 97 -8l-27 -135q-110 4 -276 4q-126 0 -236 -4l25 135q102 5 122 25q17 14 25 65h-369zM1241 391h158q37 183 49 225z" />
+<glyph unicode="&#xbf;" horiz-adv-x="1005" d="M12 -94q0 58 15 109.5t38 90.5t63.5 76t77.5 62.5t95 53.5t101.5 46t109.5 43q36 14 56.5 42.5t37.5 72.5q5 14 11 36t12 40h164q-6 -149 -31 -242q-12 -68 -51.5 -106t-132.5 -68q-197 -66 -197 -201q0 -51 30 -92t95 -41q86 0 119.5 30t56.5 119h201q0 -77 -19 -182 q-22 -107 -129 -153q-124 -50 -309 -50q-111 1 -193.5 27.5t-129.5 71.5t-69 99t-22 116zM549 846q0 91 51.5 144.5t140.5 53.5q76 0 122 -47.5t46 -124.5q0 -75 -53 -130.5t-135 -55.5q-76 0 -124 44.5t-48 115.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1597" d="M-72 -2l37 190q56 1 85 10.5t52 30.5q27 20 52 55.5t84 137.5l477 831q54 93 112 129.5t152 36.5q92 0 140 -34.5t61 -114.5l153 -910q11 -62 25 -94t41 -53q27 -22 117 -25l-37 -190q-200 4 -295 4q-205 0 -443 -4l37 190q56 2 119 15q31 7 43 25t12 53q0 23 -6 94 l-4 41h-393l-17 -29q-53 -85 -53 -125q0 -39 31 -53q46 -18 149 -21l-36 -190q-200 4 -449 4q-50 0 -246 -4zM668 670h235q-34 229 -43 364q-51 -101 -192 -364zM676 1786q0 49 36.5 84t80.5 35q36 0 63.5 -18t79.5 -77l223 -258l-82 -82l-305 193q-46 28 -71 61t-25 62z " />
+<glyph unicode="&#xc1;" horiz-adv-x="1597" d="M-72 -2l37 190q56 1 85 10.5t52 30.5q27 20 52 55.5t84 137.5l477 831q54 93 112 129.5t152 36.5q92 0 140 -34.5t61 -114.5l153 -910q11 -62 25 -94t41 -53q27 -22 117 -25l-37 -190q-200 4 -295 4q-205 0 -443 -4l37 190q56 2 119 15q31 7 43 25t12 53q0 23 -6 94 l-4 41h-393l-17 -29q-53 -85 -53 -125q0 -39 31 -53q46 -18 149 -21l-36 -190q-200 4 -449 4q-50 0 -246 -4zM668 670h235q-34 229 -43 364q-51 -101 -192 -364zM768 1565l279 229q49 40 78 55t57 15q47 0 79.5 -32t32.5 -83q0 -76 -112 -127l-346 -156z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1597" d="M-72 -2l37 190q56 1 85 10.5t52 30.5q27 20 52 55.5t84 137.5l477 831q54 93 112 129.5t152 36.5q92 0 140 -34.5t61 -114.5l153 -910q11 -62 25 -94t41 -53q27 -22 117 -25l-37 -190q-200 4 -295 4q-205 0 -443 -4l37 190q56 2 119 15q31 7 43 25t12 53q0 23 -6 94 l-4 41h-393l-17 -29q-53 -85 -53 -125q0 -39 31 -53q46 -18 149 -21l-36 -190q-200 4 -449 4q-50 0 -246 -4zM633 1546l285 271q55 55 110 55q33 0 52 -12.5t42 -42.5l201 -273l-82 -80l-240 174l-294 -174zM668 670h235q-34 229 -43 364q-51 -101 -192 -364z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1597" d="M-72 -2l37 190q56 1 85 10.5t52 30.5q27 20 52 55.5t84 137.5l477 831q54 93 112 129.5t152 36.5q92 0 140 -34.5t61 -114.5l153 -910q11 -62 25 -94t41 -53q27 -22 117 -25l-37 -190q-200 4 -295 4q-205 0 -443 -4l37 190q56 2 119 15q31 7 43 25t12 53q0 23 -6 94 l-4 41h-393l-17 -29q-53 -85 -53 -125q0 -39 31 -53q46 -18 149 -21l-36 -190q-200 4 -449 4q-50 0 -246 -4zM625 1532q96 262 225 262q47 0 115 -35l79 -33q58 -30 97 -30q33 0 55 25.5t53 86.5l101 -32q-35 -123 -91 -196t-126 -73t-146 39l-63 35q-54 25 -78 25 q-34 0 -62.5 -25t-62.5 -84zM668 670h235q-34 229 -43 364q-51 -101 -192 -364z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1597" d="M-72 -2l37 190q56 1 85 10.5t52 30.5q27 20 52 55.5t84 137.5l477 831q54 93 112 129.5t152 36.5q92 0 140 -34.5t61 -114.5l153 -910q11 -62 25 -94t41 -53q27 -22 117 -25l-37 -190q-200 4 -295 4q-205 0 -443 -4l37 190q56 2 119 15q31 7 43 25t12 53q0 23 -6 94 l-4 41h-393l-17 -29q-53 -85 -53 -125q0 -39 31 -53q46 -18 149 -21l-36 -190q-200 4 -449 4q-50 0 -246 -4zM657 1653q0 59 41 102t103 43q57 0 94 -36t37 -91q0 -70 -41.5 -111.5t-106.5 -41.5q-58 0 -92.5 37t-34.5 98zM668 670h235q-34 229 -43 364q-51 -101 -192 -364z M1049 1653q0 59 40 102t101 43q58 0 94.5 -35.5t36.5 -91.5q0 -70 -40 -111.5t-105 -41.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1597" d="M-72 -2l37 190q56 1 85 10.5t52 30.5q27 20 52 55.5t84 137.5l477 831q54 93 112 129.5t152 36.5q92 0 140 -34.5t61 -114.5l153 -910q11 -62 25 -94t41 -53q27 -22 117 -25l-37 -190q-200 4 -295 4q-205 0 -443 -4l37 190q56 2 119 15q31 7 43 25t12 53q0 23 -6 94 l-4 41h-393l-17 -29q-53 -85 -53 -125q0 -39 31 -53q46 -18 149 -21l-36 -190q-200 4 -449 4q-50 0 -246 -4zM668 670h235q-34 229 -43 364q-51 -101 -192 -364zM795 1632q0 90 63 151.5t152 61.5q83 0 133.5 -49.5t50.5 -132.5q0 -91 -61 -152t-150 -61q-83 0 -135.5 50 t-52.5 132zM901 1647q0 -47 23 -74t65 -27q41 0 68.5 31.5t27.5 81.5q0 43 -24.5 67.5t-59.5 24.5q-41 0 -70.5 -29t-29.5 -75z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2217" d="M-49 -2l37 190q115 3 174 41q58 35 139 138l535 677q49 61 49 105q0 19 -10 28.5t-33 14.5q-31 8 -152 8l33 184h1345q146 0 146 -102q0 -98 -49 -299h-183q-1 57 -10.5 81.5t-29.5 41.5q-32 20 -117 20h-228l-61 -309h49q98 0 137 29q31 27 58 106h172 q-49 -210 -94 -506h-166q0 91 -28 117.5t-122 26.5h-49l-41 -209q-10 -60 -10 -72q0 -47 43 -53q51 -8 149 -8q189 0 271 53q24 17 52 58.5t44 76.5h190q-4 -16 -24.5 -107.5t-40 -153.5t-43.5 -97q-56 -78 -213 -78h-1030l37 184q74 0 129 19q35 11 47 51q11 35 22 96 l15 70h-435l-53 -70q-21 -26 -31.5 -41t-19 -35.5t-8.5 -40.5q0 -26 22 -32q28 -11 133 -17l-36 -186q-196 4 -388 4q-127 0 -323 -4zM852 670h285l80 409q4 24 4 37q0 14 -15 14q-8 0 -16 -7.5t-33 -39.5q-37 -48 -76 -101t-104.5 -142.5t-124.5 -169.5z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1411" d="M117 553q0 210 77 393.5t238 308.5q211 162 561 162q104 0 193.5 -16.5t138.5 -42.5q43 -24 64.5 -58t21.5 -69q0 -96 -41 -295h-209q0 131 -45 176t-174 45q-91 0 -173 -38.5t-134 -112.5q-60 -85 -93.5 -200.5t-33.5 -221.5q0 -95 25.5 -165t69.5 -108.5t94 -56.5 t106 -18q158 0 219 55q47 44 100 166h203q-29 -157 -45.5 -224t-38.5 -100q-45 -69 -154 -108q-136 -45 -301 -52q-26 -46 -26 -71q0 -23 31 -45q57 -38 81.5 -74.5t24.5 -81.5q0 -61 -31 -111.5t-77.5 -83.5t-111 -58t-121.5 -37.5t-118 -20.5v131q44 10 64 15.5t54 16 t50 19.5t35 23.5t26 32.5t7 40q0 61 -64 107q-32 19 -32 53q0 43 67 147q-253 23 -390.5 176.5t-137.5 401.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1333" d="M-41 0l35 184q110 0 156 33q10 10 17 26.5t12 37.5t14 67l133 692q14 77 14 101q0 10 -3 18t-10 13.5t-14 10t-19.5 7t-21.5 4.5t-25 3t-25.5 1.5t-27.5 0.5q-15 1 -22 1l37 184h967q79 0 117 -25t38 -81q0 -82 -49 -295h-182q0 41 -11.5 77t-29.5 54q-24 21 -109 21 h-237l-60 -318h49q97 0 136 29q5 4 9.5 9t8 9.5t8 13t6.5 13t7 15t6.5 14.5t7 16.5t6.5 15.5h172q-55 -229 -94 -506h-168q0 29 -1 43t-4.5 35.5t-13.5 34t-26 19.5q-28 12 -103 12h-49l-45 -242q-1 -5 -3 -16.5t-3.5 -21.5t-1.5 -15q0 -47 45 -53q57 -9 168 -9 q178 0 258 58q38 31 90 145h189q-13 -84 -44.5 -194.5t-66.5 -163.5q-53 -78 -213 -78h-1024zM473 1784q0 49 36.5 84t80.5 35q36 0 63.5 -18t79.5 -77l223 -258l-82 -82l-305 193q-46 28 -71 61t-25 62z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1333" d="M-41 0l35 184q110 0 156 33q10 10 17 26.5t12 37.5t14 67l133 692q14 77 14 101q0 10 -3 18t-10 13.5t-14 10t-19.5 7t-21.5 4.5t-25 3t-25.5 1.5t-27.5 0.5q-15 1 -22 1l37 184h967q79 0 117 -25t38 -81q0 -82 -49 -295h-182q0 41 -11.5 77t-29.5 54q-24 21 -109 21 h-237l-60 -318h49q97 0 136 29q5 4 9.5 9t8 9.5t8 13t6.5 13t7 15t6.5 14.5t7 16.5t6.5 15.5h172q-55 -229 -94 -506h-168q0 29 -1 43t-4.5 35.5t-13.5 34t-26 19.5q-28 12 -103 12h-49l-45 -242q-1 -5 -3 -16.5t-3.5 -21.5t-1.5 -15q0 -47 45 -53q57 -9 168 -9 q178 0 258 58q38 31 90 145h189q-13 -84 -44.5 -194.5t-66.5 -163.5q-53 -78 -213 -78h-1024zM631 1565l278 229q49 40 78 55t57 15q47 0 80 -32t33 -83q0 -76 -113 -127l-346 -156z" />
+<glyph unicode="&#xca;" horiz-adv-x="1333" d="M-41 0l35 184q110 0 156 33q10 10 17 26.5t12 37.5t14 67l133 692q14 77 14 101q0 10 -3 18t-10 13.5t-14 10t-19.5 7t-21.5 4.5t-25 3t-25.5 1.5t-27.5 0.5q-15 1 -22 1l37 184h967q79 0 117 -25t38 -81q0 -82 -49 -295h-182q0 41 -11.5 77t-29.5 54q-24 21 -109 21 h-237l-60 -318h49q97 0 136 29q5 4 9.5 9t8 9.5t8 13t6.5 13t7 15t6.5 14.5t7 16.5t6.5 15.5h172q-55 -229 -94 -506h-168q0 29 -1 43t-4.5 35.5t-13.5 34t-26 19.5q-28 12 -103 12h-49l-45 -242q-1 -5 -3 -16.5t-3.5 -21.5t-1.5 -15q0 -47 45 -53q57 -9 168 -9 q178 0 258 58q38 31 90 145h189q-13 -84 -44.5 -194.5t-66.5 -163.5q-53 -78 -213 -78h-1024zM444 1546l285 271q55 55 111 55q33 0 52 -12.5t42 -42.5l201 -273l-82 -80l-240 174l-295 -174z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1333" d="M-41 0l35 184q110 0 156 33q10 10 17 26.5t12 37.5t14 67l133 692q14 77 14 101q0 10 -3 18t-10 13.5t-14 10t-19.5 7t-21.5 4.5t-25 3t-25.5 1.5t-27.5 0.5q-15 1 -22 1l37 184h967q79 0 117 -25t38 -81q0 -82 -49 -295h-182q0 41 -11.5 77t-29.5 54q-24 21 -109 21 h-237l-60 -318h49q97 0 136 29q5 4 9.5 9t8 9.5t8 13t6.5 13t7 15t6.5 14.5t7 16.5t6.5 15.5h172q-55 -229 -94 -506h-168q0 29 -1 43t-4.5 35.5t-13.5 34t-26 19.5q-28 12 -103 12h-49l-45 -242q-1 -5 -3 -16.5t-3.5 -21.5t-1.5 -15q0 -47 45 -53q57 -9 168 -9 q178 0 258 58q38 31 90 145h189q-13 -84 -44.5 -194.5t-66.5 -163.5q-53 -78 -213 -78h-1024zM475 1655q0 38 18 71t51 53.5t74 20.5q57 0 94.5 -36t37.5 -91q0 -70 -41.5 -111.5t-106.5 -41.5q-58 0 -92.5 37t-34.5 98zM866 1655q0 38 17.5 71t50.5 53.5t74 20.5 q58 0 94.5 -35.5t36.5 -91.5q0 -46 -18.5 -81t-51.5 -53.5t-76 -18.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xcc;" horiz-adv-x="792" d="M-43 -2l37 186q78 4 108 12t50 23q21 21 41 129l135 701q12 67 12 94q0 19 -7 29t-28 16q-34 9 -133 12l37 186q264 -6 375 -6q74 0 350 6l-37 -186q-60 -2 -93.5 -7.5t-43 -11t-19.5 -16.5q-21 -24 -39 -121l-133 -686q-16 -85 -16 -108q0 -37 39 -49q38 -11 125 -17 l-37 -186q-172 4 -367 4q-172 0 -356 -4zM281 1784q0 49 36 84t80 35q36 0 64.5 -18t79.5 -77l223 -258l-82 -82l-305 193q-46 28 -71 61t-25 62z" />
+<glyph unicode="&#xcd;" horiz-adv-x="792" d="M-43 -2l37 186q78 4 108 12t50 23q21 21 41 129l135 701q12 67 12 94q0 19 -7 29t-28 16q-34 9 -133 12l37 186q264 -6 375 -6q74 0 350 6l-37 -186q-60 -2 -93.5 -7.5t-43 -11t-19.5 -16.5q-21 -24 -39 -121l-133 -686q-16 -85 -16 -108q0 -37 39 -49q38 -11 125 -17 l-37 -186q-172 4 -367 4q-172 0 -356 -4zM367 1565l278 229q49 40 78 55t57 15q47 0 80 -32t33 -83q0 -76 -113 -127l-346 -156z" />
+<glyph unicode="&#xce;" horiz-adv-x="792" d="M-43 -2l37 186q78 4 108 12t50 23q21 21 41 129l135 701q12 67 12 94q0 19 -7 29t-28 16q-34 9 -133 12l37 186q264 -6 375 -6q74 0 350 6l-37 -186q-60 -2 -93.5 -7.5t-43 -11t-19.5 -16.5q-21 -24 -39 -121l-133 -686q-16 -85 -16 -108q0 -37 39 -49q38 -11 125 -17 l-37 -186q-172 4 -367 4q-172 0 -356 -4zM229 1546l285 271q55 55 111 55q33 0 52 -12.5t42 -42.5l201 -273l-82 -80l-240 174l-295 -174z" />
+<glyph unicode="&#xcf;" horiz-adv-x="792" d="M-43 -2l37 186q78 4 108 12t50 23q21 21 41 129l135 701q12 67 12 94q0 19 -7 29t-28 16q-34 9 -133 12l37 186q264 -6 375 -6q74 0 350 6l-37 -186q-60 -2 -93.5 -7.5t-43 -11t-19.5 -16.5q-21 -24 -39 -121l-133 -686q-16 -85 -16 -108q0 -37 39 -49q38 -11 125 -17 l-37 -186q-172 4 -367 4q-172 0 -356 -4zM272 1655q0 59 41 102t103 43q57 0 94 -36t37 -91q0 -70 -41.5 -111.5t-106.5 -41.5q-58 0 -92.5 37t-34.5 98zM664 1655q0 59 40 102t101 43q58 0 94.5 -35.5t36.5 -91.5q0 -70 -40 -111.5t-105 -41.5q-58 0 -92.5 37t-34.5 98z " />
+<glyph unicode="&#xd0;" horiz-adv-x="1517" d="M-41 0l35 184q84 4 113 11.5t45 23.5q21 31 38 121l58 301h-203l35 166h201l45 227q12 64 12 103q0 46 -33 51q-44 9 -133 12l35 184h420q299 0 451.5 -33.5t244.5 -101.5q82 -60 130 -165.5t48 -215.5q0 -96 -9 -178.5t-34.5 -174.5t-68 -166t-114 -142.5t-167.5 -114.5 q-191 -92 -594 -92h-555zM557 305q0 -57 123 -57q430 0 430 579q0 71 -28 138t-76 104q-72 57 -246 57h-49l-62 -319h271l-35 -166h-267l-53 -283q-8 -36 -8 -53z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1597" d="M-45 -2l39 186q46 3 75.5 6.5t46 9.5t23.5 10.5t15 12.5q18 25 47 172q27 129 67.5 337t48.5 245q21 108 21 149q0 13 -2.5 23t-8 19t-15.5 14.5t-25 7.5q-27 5 -115 10l37 186q86 -4 336 -4q151 0 223 4q264 -573 395 -878q14 90 28.5 177t23 136.5t16 94.5t10.5 71 q12 89 12 131q0 19 -4.5 32.5t-16 22t-21.5 14t-31.5 8t-35.5 3.5t-43 1q-12 1 -18 1l37 186q218 -4 320 -4q56 0 282 4l-36 -186q-85 -4 -113.5 -11t-42.5 -24q-17 -17 -51 -178q-80 -396 -162 -840q-16 -91 -57 -131.5t-136 -40.5q-74 0 -116 29t-68 90q-331 749 -395 901 q-101 -561 -107 -600q-18 -100 -18 -145q0 -49 55 -55q27 -5 107 -11l-37 -186q-212 4 -299 4q-73 0 -291 -4zM637 1532q19 51 40 93.5t49 82.5t63 63t73 23q47 0 115 -35l80 -33q58 -30 96 -30q34 0 56 26t53 86l100 -32q-35 -123 -91 -196t-126 -73t-146 39l-63 35 q-54 25 -78 25q-23 0 -43 -11t-39.5 -35t-42.5 -63z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q151 0 264 -38.5t182.5 -110t103.5 -167.5t34 -216q0 -182 -60.5 -367.5t-181.5 -310.5q-219 -232 -563 -232q-130 0 -239 32t-194 97.5t-133 175.5t-48 254zM512 547q0 -309 242 -309q86 0 145 30.5 t109 110.5q61 94 94 236.5t33 256.5q0 146 -55.5 214.5t-174.5 68.5q-147 0 -237 -108q-72 -89 -114 -233t-42 -267zM715 1784q0 49 36 84t80 35q36 0 64.5 -18t79.5 -77l223 -258l-82 -82l-305 193q-46 28 -71 61t-25 62z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q151 0 264 -38.5t182.5 -110t103.5 -167.5t34 -216q0 -182 -60.5 -367.5t-181.5 -310.5q-219 -232 -563 -232q-130 0 -239 32t-194 97.5t-133 175.5t-48 254zM512 547q0 -309 242 -309q86 0 145 30.5 t109 110.5q61 94 94 236.5t33 256.5q0 146 -55.5 214.5t-174.5 68.5q-147 0 -237 -108q-72 -89 -114 -233t-42 -267zM750 1565l278 229q49 40 78 55t57 15q47 0 80 -32t33 -83q0 -76 -113 -127l-346 -156z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q151 0 264 -38.5t182.5 -110t103.5 -167.5t34 -216q0 -182 -60.5 -367.5t-181.5 -310.5q-219 -232 -563 -232q-130 0 -239 32t-194 97.5t-133 175.5t-48 254zM512 547q0 -309 242 -309q86 0 145 30.5 t109 110.5q61 94 94 236.5t33 256.5q0 146 -55.5 214.5t-174.5 68.5q-147 0 -237 -108q-72 -89 -114 -233t-42 -267zM629 1546l284 271q55 55 111 55q33 0 52 -12.5t42 -42.5l201 -273l-82 -80l-240 174l-295 -174z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q151 0 264 -38.5t182.5 -110t103.5 -167.5t34 -216q0 -182 -60.5 -367.5t-181.5 -310.5q-219 -232 -563 -232q-130 0 -239 32t-194 97.5t-133 175.5t-48 254zM512 547q0 -309 242 -309q86 0 145 30.5 t109 110.5q61 94 94 236.5t33 256.5q0 146 -55.5 214.5t-174.5 68.5q-147 0 -237 -108q-72 -89 -114 -233t-42 -267zM610 1532q96 262 226 262q46 0 114 -35l80 -33q58 -30 96 -30q34 0 56 26t53 86l100 -32q-35 -123 -91 -196t-126 -73q-69 0 -145 39l-64 35q-54 25 -78 25 q-34 0 -62 -25t-62 -84z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q151 0 264 -38.5t182.5 -110t103.5 -167.5t34 -216q0 -182 -60.5 -367.5t-181.5 -310.5q-219 -232 -563 -232q-130 0 -239 32t-194 97.5t-133 175.5t-48 254zM512 547q0 -309 242 -309q86 0 145 30.5 t109 110.5q61 94 94 236.5t33 256.5q0 146 -55.5 214.5t-174.5 68.5q-147 0 -237 -108q-72 -89 -114 -233t-42 -267zM651 1655q0 59 41 102t103 43q57 0 94 -36t37 -91q0 -70 -41.5 -111.5t-106.5 -41.5q-58 0 -92.5 37t-34.5 98zM1042 1655q0 59 40.5 102t101.5 43 q58 0 94.5 -35.5t36.5 -91.5q0 -70 -40.5 -111.5t-105.5 -41.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1232" d="M201 367l305 282l-211 275l156 143l208 -274l304 278l112 -143l-307 -279l213 -276l-156 -140l-211 273l-309 -281z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1552" d="M119 532q0 138 31.5 267.5t106 253.5t185.5 207q202 155 512 155q187 0 318 -61l119 141l116 -94l-110 -131q141 -138 141 -387q0 -182 -60.5 -367.5t-181.5 -310.5q-219 -232 -563 -232q-216 0 -366 84l-115 -135l-119 92l115 136q-129 142 -129 382zM512 547 q0 -32 4 -82l545 641q-55 49 -156 49q-147 0 -237 -108q-72 -89 -114 -233t-42 -267zM578 307q58 -69 176 -69q86 0 145 30.5t109 110.5q61 94 94 236.5t33 256.5q0 38 -7 82z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1630" d="M162 1200l37 186q160 -4 336 -4q251 0 415 4l-37 -186q-62 -1 -97 -6t-45.5 -11t-22.5 -18q-23 -23 -39 -102q-56 -266 -84 -422q-23 -138 -23 -203q0 -108 64.5 -158.5t177.5 -50.5q205 0 286 99q33 38 57.5 97t35.5 103.5t26 118.5q31 162 68 393q8 52 8 84 q0 47 -43 62q-43 11 -145 14l37 186q74 -2 374 -2q22 0 107.5 1t124.5 1l-37 -186q-77 -5 -108 -17t-46 -30q-25 -41 -41 -129l-82 -422q-37 -195 -78 -295t-116 -174q-85 -81 -220 -123.5t-296 -42.5q-82 0 -155 10.5t-145.5 37.5t-124.5 68.5t-84 108.5t-32 152 q0 114 35 289q14 74 34.5 168t33.5 155.5t16 87.5q10 72 10 82q0 47 -43 60q-43 10 -139 14zM723 1784q0 49 36.5 84t80.5 35q36 0 63.5 -18t79.5 -77l223 -258l-82 -82l-305 193q-46 28 -71 61t-25 62z" />
+<glyph unicode="&#xda;" horiz-adv-x="1630" d="M162 1200l37 186q160 -4 336 -4q251 0 415 4l-37 -186q-62 -1 -97 -6t-45.5 -11t-22.5 -18q-23 -23 -39 -102q-56 -266 -84 -422q-23 -138 -23 -203q0 -108 64.5 -158.5t177.5 -50.5q205 0 286 99q33 38 57.5 97t35.5 103.5t26 118.5q31 162 68 393q8 52 8 84 q0 47 -43 62q-43 11 -145 14l37 186q74 -2 374 -2q22 0 107.5 1t124.5 1l-37 -186q-77 -5 -108 -17t-46 -30q-25 -41 -41 -129l-82 -422q-37 -195 -78 -295t-116 -174q-85 -81 -220 -123.5t-296 -42.5q-82 0 -155 10.5t-145.5 37.5t-124.5 68.5t-84 108.5t-32 152 q0 114 35 289q14 74 34.5 168t33.5 155.5t16 87.5q10 72 10 82q0 47 -43 60q-43 10 -139 14zM850 1565l278 229q48 40 77.5 55t58.5 15q47 0 79.5 -32t32.5 -83q0 -76 -112 -127l-346 -156z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1630" d="M162 1200l37 186q160 -4 336 -4q251 0 415 4l-37 -186q-62 -1 -97 -6t-45.5 -11t-22.5 -18q-23 -23 -39 -102q-56 -266 -84 -422q-23 -138 -23 -203q0 -108 64.5 -158.5t177.5 -50.5q205 0 286 99q33 38 57.5 97t35.5 103.5t26 118.5q31 162 68 393q8 52 8 84 q0 47 -43 62q-43 11 -145 14l37 186q74 -2 374 -2q22 0 107.5 1t124.5 1l-37 -186q-77 -5 -108 -17t-46 -30q-25 -41 -41 -129l-82 -422q-37 -195 -78 -295t-116 -174q-85 -81 -220 -123.5t-296 -42.5q-82 0 -155 10.5t-145.5 37.5t-124.5 68.5t-84 108.5t-32 152 q0 114 35 289q14 74 34.5 168t33.5 155.5t16 87.5q10 72 10 82q0 47 -43 60q-43 10 -139 14zM655 1546l285 271q55 55 111 55q33 0 52 -12.5t42 -42.5l201 -273l-82 -80l-240 174l-295 -174z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1630" d="M162 1200l37 186q160 -4 336 -4q251 0 415 4l-37 -186q-62 -1 -97 -6t-45.5 -11t-22.5 -18q-23 -23 -39 -102q-56 -266 -84 -422q-23 -138 -23 -203q0 -108 64.5 -158.5t177.5 -50.5q205 0 286 99q33 38 57.5 97t35.5 103.5t26 118.5q31 162 68 393q8 52 8 84 q0 47 -43 62q-43 11 -145 14l37 186q74 -2 374 -2q22 0 107.5 1t124.5 1l-37 -186q-77 -5 -108 -17t-46 -30q-25 -41 -41 -129l-82 -422q-37 -195 -78 -295t-116 -174q-85 -81 -220 -123.5t-296 -42.5q-82 0 -155 10.5t-145.5 37.5t-124.5 68.5t-84 108.5t-32 152 q0 114 35 289q14 74 34.5 168t33.5 155.5t16 87.5q10 72 10 82q0 47 -43 60q-43 10 -139 14zM674 1655q0 59 41 102t102 43q57 0 94 -36t37 -91q0 -70 -41 -111.5t-106 -41.5q-58 0 -92.5 37t-34.5 98zM1065 1655q0 59 40 102t101 43q58 0 94.5 -35.5t36.5 -91.5 q0 -70 -40 -111.5t-105 -41.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1423" d="M147 1200l35 186q230 -4 330 -4q153 0 365 4l-37 -186q-65 -3 -103 -16q-37 -16 -37 -56q0 -30 17 -79q84 -223 106 -285q37 51 219 289q45 57 45 92q0 10 -1.5 16.5t-9.5 14.5t-23 14q-27 10 -82 10l37 186q96 -4 383 -4q110 0 198 4l-37 -186q-63 -3 -102 -31 q-5 -3 -10.5 -7.5t-12.5 -11.5l-13.5 -13.5t-17 -18.5t-18.5 -21.5t-22.5 -26.5t-25 -29t-29 -34t-31.5 -38l-369 -432l-37 -187q-10 -58 -10 -86q0 -13 2 -22t13.5 -21t33.5 -18q43 -14 127 -19l-37 -186q-218 4 -375 4q-166 0 -374 -4l37 186q91 6 126 15t48 26 q20 27 34 105l41 205l-211 509q-2 6 -7 16q-13 31 -19 44.5t-17.5 33t-21 27t-25.5 17t-35.5 13t-46.5 5.5zM735 1565l279 229q49 40 78 55t57 15q47 0 80 -32t33 -83q0 -76 -113 -127l-346 -156z" />
+<glyph unicode="&#xde;" horiz-adv-x="1357" d="M-43 -2l37 190q45 1 73 3.5t44.5 8t23 9t17.5 12.5q11 11 19.5 37.5t21.5 91.5l135 697q12 67 12 90q0 14 -5 24.5t-15.5 16.5t-21 10t-29 6t-30.5 2.5t-34.5 1t-32.5 0.5l37 188q135 -6 371 -6q102 0 348 6l-35 -188q-91 -1 -119 -6t-41 -18q-7 -6 -11.5 -14.5t-6 -14.5 t-3.5 -19.5t-3 -17.5q246 0 378 -25q123 -22 187.5 -104t64.5 -197q0 -98 -30 -177.5t-84 -135t-130.5 -92.5t-167.5 -54.5t-198 -17.5q-125 0 -176 4q-4 -28 -4 -47q0 -29 10.5 -42.5t42.5 -20.5q50 -11 143 -11l-36 -190q-172 4 -396 4q-172 0 -356 -4zM598 537 q33 -2 107 -2q31 0 56.5 2t51.5 8t46.5 15t38.5 23t30 33t19 45t7 58q0 94 -73 121q-56 24 -168 24h-51z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1353" d="M-348 -412q0 74 35 203h174q0 -70 12.5 -94.5t63.5 -24.5q46 0 73 35q36 40 60 174l141 830h-166l35 182q78 11 123 41q22 13 35.5 39.5t27.5 81.5q61 225 196.5 333.5t371.5 108.5q198 0 295.5 -76t97.5 -207q0 -39 -13.5 -78t-29.5 -65.5t-50 -62t-52 -51.5t-60 -52 q-47 -41 -47 -76q0 -30 24 -61q42 -47 125 -133q71 -74 108.5 -148t37.5 -137q0 -120 -65.5 -207.5t-173.5 -129.5t-243 -42q-161 0 -223 52q-17 13 -28 41t-11 57q0 75 43 225h146q6 -58 28 -94q23 -41 95 -41q49 0 70.5 20t21.5 48q0 32 -14 60.5t-56 68.5q-26 24 -50 49 t-50.5 54t-32.5 36q-74 78 -74 158q0 69 34.5 124t117.5 138q110 110 110 184q0 98 -112 98q-30 0 -62 -10.5t-51 -30.5q-54 -54 -78 -178l-211 -1112q-30 -163 -77.5 -252.5t-133.5 -150.5q-116 -78 -296 -78q-93 0 -175 37q-67 34 -67 114z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1261" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l47 65h254l-135 -565q-27 -110 -27 -152q0 -32 12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-86 0 -132 38.5t-46 112.5q-57 -76 -137.5 -117t-173.5 -41q-169 0 -254.5 91 t-85.5 249zM410 369q0 -65 32 -101.5t90 -36.5q86 0 156 76q9 58 31 150l59 225q-51 29 -106 29q-98 0 -162 -64q-44 -48 -72 -129t-28 -149zM473 1415q0 49 36 81t83 32q40 0 69 -22t66 -93l162 -297l-96 -67l-248 243q-72 69 -72 123z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1261" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l47 65h254l-135 -565q-27 -110 -27 -152q0 -32 12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-86 0 -132 38.5t-46 112.5q-57 -76 -137.5 -117t-173.5 -41q-169 0 -254.5 91 t-85.5 249zM410 369q0 -65 32 -101.5t90 -36.5q86 0 156 76q9 58 31 150l59 225q-51 29 -106 29q-98 0 -162 -64q-44 -48 -72 -129t-28 -149zM575 1135l224 266q75 90 135 90q47 0 82 -34t35 -83q0 -35 -23.5 -63.5t-79.5 -65.5l-293 -196z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1261" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l47 65h254l-135 -565q-27 -110 -27 -152q0 -32 12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-86 0 -132 38.5t-46 112.5q-57 -76 -137.5 -117t-173.5 -41q-169 0 -254.5 91 t-85.5 249zM410 369q0 -65 32 -101.5t90 -36.5q86 0 156 76q9 58 31 150l59 225q-51 29 -106 29q-98 0 -162 -64q-44 -48 -72 -129t-28 -149zM444 1116l277 311q54 60 110 60q67 0 95 -55l161 -332l-100 -66l-188 209l-264 -209z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1261" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l47 65h254l-135 -565q-27 -110 -27 -152q0 -32 12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-86 0 -132 38.5t-46 112.5q-57 -76 -137.5 -117t-173.5 -41q-169 0 -254.5 91 t-85.5 249zM410 369q0 -65 32 -101.5t90 -36.5q86 0 156 76q9 58 31 150l59 225q-51 29 -106 29q-98 0 -162 -64q-44 -48 -72 -129t-28 -149zM465 1120q18 70 42 127t66.5 101.5t92.5 44.5q47 0 129 -35l59 -29q63 -29 98 -29q26 0 46.5 24.5t48.5 82.5l102 -29 q-20 -123 -68 -198.5t-118 -75.5q-64 0 -146 39l-57 24q-59 23 -88 23q-34 0 -56.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1261" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l47 65h254l-135 -565q-27 -110 -27 -152q0 -32 12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-86 0 -132 38.5t-46 112.5q-57 -76 -137.5 -117t-173.5 -41q-169 0 -254.5 91 t-85.5 249zM410 369q0 -65 32 -101.5t90 -36.5q86 0 156 76q9 58 31 150l59 225q-51 29 -106 29q-98 0 -162 -64q-44 -48 -72 -129t-28 -149zM496 1253q0 59 40 103.5t101 44.5q58 0 94.5 -36t36.5 -91q0 -71 -40 -113.5t-105 -42.5q-58 0 -92.5 37t-34.5 98zM854 1253 q0 59 41 103.5t102 44.5q58 0 94.5 -36t36.5 -91q0 -71 -41 -113.5t-106 -42.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1261" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l47 65h254l-135 -565q-27 -110 -27 -152q0 -32 12.5 -46.5t42.5 -14.5q60 0 111 20l-45 -196q-142 -53 -275 -53q-86 0 -132 38.5t-46 112.5q-57 -76 -137.5 -117t-173.5 -41q-169 0 -254.5 91 t-85.5 249zM410 369q0 -65 32 -101.5t90 -36.5q86 0 156 76q9 58 31 150l59 225q-51 29 -106 29q-98 0 -162 -64q-44 -48 -72 -129t-28 -149zM588 1243q0 90 63 150.5t152 60.5q83 0 133.5 -49t50.5 -131q0 -91 -61 -152t-150 -61q-83 0 -135.5 49.5t-52.5 132.5zM694 1255 q0 -45 23 -71.5t65 -26.5q41 0 69 31.5t28 81.5q0 43 -24.5 67.5t-59.5 24.5q-41 0 -71 -29.5t-30 -77.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1691" d="M45 315q0 123 49 250.5t137 220.5q158 175 457 175q51 0 110.5 -10t90.5 -27l49 84h215l-16 -93q27 27 93.5 43.5t110.5 16.5q310 -6 310 -260q0 -33 -5.5 -62.5t-21.5 -63.5t-43 -62t-72.5 -54.5t-106.5 -45t-149.5 -30t-197.5 -12.5q-2 -8 -2 -20q0 -60 42 -98t136 -38 q126 0 309 84l88 -188q-229 -154 -504 -154q-281 0 -360 189q-76 -85 -164 -135t-215 -50q-169 0 -254.5 91t-85.5 249zM410 362q0 -64 32 -97.5t90 -33.5q59 0 112 34.5t91 92.5q26 172 64 322q-64 31 -131 31q-94 0 -158 -64q-44 -47 -72 -132t-28 -153zM1081 580 q283 0 283 112q0 29 -22.5 44.5t-63.5 15.5q-52 0 -94 -24.5t-66.5 -62t-36.5 -85.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="995" d="M49 362q0 143 52.5 276.5t156.5 215.5q161 121 369 121q123 0 209 -27q64 -21 87 -47t23 -86q0 -79 -39 -235h-192q-5 97 -37 122q-10 10 -32 17.5t-44 7.5q-51 0 -91 -29.5t-63 -77.5t-35 -102t-12 -108q0 -103 41.5 -142t112.5 -39q125 0 274 66l86 -184 q-159 -114 -360 -136q-27 -48 -27 -69q0 -11 6 -20t9.5 -12t15.5 -11q105 -67 105 -150q0 -73 -44 -130t-117 -90.5t-144 -51.5t-148 -27v127q50 11 75 17.5t61 19t52.5 25t29.5 32.5t13 46q0 59 -61 102q-33 20 -33 51q0 35 66 139q-172 17 -268.5 118.5t-96.5 270.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1036" d="M49 367q0 128 39.5 238.5t113 193t186 129.5t249.5 47q183 0 270.5 -71.5t87.5 -194.5q0 -48 -11 -88t-48.5 -85t-100 -76.5t-173.5 -52.5t-261 -22q-2 -8 -2 -20q0 -60 41.5 -98t134.5 -38q127 0 310 84l90 -188q-233 -154 -510 -154q-194 0 -305 103t-111 293z M338 1415q0 49 36 81t83 32q40 0 69 -22t66 -93l162 -297l-97 -67l-247 243q-72 69 -72 123zM426 580q283 0 283 112q0 60 -86 60q-76 0 -126.5 -47t-70.5 -125z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1036" d="M49 367q0 128 39.5 238.5t113 193t186 129.5t249.5 47q183 0 270.5 -71.5t87.5 -194.5q0 -48 -11 -88t-48.5 -85t-100 -76.5t-173.5 -52.5t-261 -22q-2 -8 -2 -20q0 -60 41.5 -98t134.5 -38q127 0 310 84l90 -188q-233 -154 -510 -154q-194 0 -305 103t-111 293zM426 580 q283 0 283 112q0 60 -86 60q-76 0 -126.5 -47t-70.5 -125zM440 1135l224 266q75 90 135 90q47 0 81.5 -34t34.5 -83q0 -35 -23.5 -63.5t-78.5 -65.5l-293 -196z" />
+<glyph unicode="&#xea;" horiz-adv-x="1036" d="M49 367q0 128 39.5 238.5t113 193t186 129.5t249.5 47q183 0 270.5 -71.5t87.5 -194.5q0 -48 -11 -88t-48.5 -85t-100 -76.5t-173.5 -52.5t-261 -22q-2 -8 -2 -20q0 -60 41.5 -98t134.5 -38q127 0 310 84l90 -188q-233 -154 -510 -154q-194 0 -305 103t-111 293z M324 1116l276 311q54 60 111 60q66 0 94 -55l162 -332l-101 -66l-188 209l-264 -209zM426 580q283 0 283 112q0 60 -86 60q-76 0 -126.5 -47t-70.5 -125z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1036" d="M49 367q0 128 39.5 238.5t113 193t186 129.5t249.5 47q183 0 270.5 -71.5t87.5 -194.5q0 -48 -11 -88t-48.5 -85t-100 -76.5t-173.5 -52.5t-261 -22q-2 -8 -2 -20q0 -60 41.5 -98t134.5 -38q127 0 310 84l90 -188q-233 -154 -510 -154q-194 0 -305 103t-111 293z M375 1253q0 59 40 103.5t101 44.5q58 0 94.5 -36t36.5 -91q0 -71 -40 -113.5t-105 -42.5q-58 0 -92.5 37t-34.5 98zM426 580q283 0 283 112q0 60 -86 60q-76 0 -126.5 -47t-70.5 -125zM733 1253q0 59 41.5 103.5t102.5 44.5q58 0 94.5 -36t36.5 -91q0 -71 -41.5 -113.5 t-106.5 -42.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xec;" horiz-adv-x="690" d="M43 702l39 177q180 88 301 88q100 0 141 -41t41 -131q0 -53 -37 -217l-32 -132q-33 -149 -33 -174q0 -35 15 -48t48 -13q41 0 103 20l-45 -196q-64 -27 -150 -40t-145 -13q-199 0 -199 145q0 68 29 178l51 225q20 88 20 119q0 60 -61 60q-39 0 -86 -7zM102 1415 q0 49 36 81t83 32q40 0 69 -22t66 -93l162 -297l-96 -67l-248 243q-72 69 -72 123z" />
+<glyph unicode="&#xed;" horiz-adv-x="690" d="M43 702l39 177q180 88 301 88q100 0 141 -41t41 -131q0 -53 -37 -217l-32 -132q-33 -149 -33 -174q0 -35 15 -48t48 -13q41 0 103 20l-45 -196q-64 -27 -150 -40t-145 -13q-199 0 -199 145q0 68 29 178l51 225q20 88 20 119q0 60 -61 60q-39 0 -86 -7zM219 1135l223 266 q75 90 136 90q47 0 81.5 -34t34.5 -83q0 -35 -23.5 -63.5t-78.5 -65.5l-293 -196z" />
+<glyph unicode="&#xee;" horiz-adv-x="690" d="M43 702l39 177q180 88 301 88q100 0 141 -41t41 -131q0 -53 -37 -217l-32 -132q-33 -149 -33 -174q0 -35 15 -48t48 -13q41 0 103 20l-45 -196q-64 -27 -150 -40t-145 -13q-199 0 -199 145q0 68 29 178l51 225q20 88 20 119q0 60 -61 60q-39 0 -86 -7zM84 1116l276 311 q54 60 111 60q66 0 94 -55l162 -332l-100 -66l-189 209l-264 -209z" />
+<glyph unicode="&#xef;" horiz-adv-x="690" d="M43 702l39 177q180 88 301 88q100 0 141 -41t41 -131q0 -53 -37 -217l-32 -132q-33 -149 -33 -174q0 -35 15 -48t48 -13q41 0 103 20l-45 -196q-64 -27 -150 -40t-145 -13q-199 0 -199 145q0 68 29 178l51 225q20 88 20 119q0 60 -61 60q-39 0 -86 -7zM86 1253 q0 59 40 103.5t101 44.5q58 0 94.5 -36t36.5 -91q0 -71 -40 -113.5t-105 -42.5q-58 0 -92.5 37t-34.5 98zM444 1253q0 59 41.5 103.5t102.5 44.5q58 0 94.5 -36t36.5 -91q0 -71 -41.5 -113.5t-106.5 -42.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1148" d="M49 360q0 262 146 418q55 61 146.5 101.5t199.5 40.5q90 0 147 -33q-22 99 -78 178l-202 -115l-70 113l201 115q-78 90 -213 174l114 166q204 -75 336 -193l164 94l68 -116l-138 -78q124 -140 175 -273.5t51 -328.5q0 -128 -41.5 -268.5t-124.5 -225.5 q-74 -77 -186.5 -117.5t-243.5 -40.5q-93 0 -171.5 21.5t-142.5 65.5t-100.5 121.5t-36.5 180.5zM401 381q0 -70 31 -115t103 -45q105 0 153 92q51 99 51 238q0 147 -135 147q-88 0 -135 -65q-68 -94 -68 -252z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1261" d="M49 702l39 177q72 35 167 62.5t169 27.5q137 0 137 -117q0 -50 -6 -70q73 81 174.5 134t192.5 53q114 0 161 -51.5t47 -155.5q0 -63 -28 -184l-33 -132q-33 -130 -33 -174q0 -35 15.5 -48t48.5 -13q40 0 102 20l-45 -196q-64 -27 -150 -40t-145 -13q-104 0 -151 37 t-47 108q0 63 28 178l47 195q21 93 21 123q0 59 -60 59q-84 0 -163 -76q-3 -25 -16.5 -83t-18.5 -81l-103 -442h-336l97 442q37 167 37 205q0 36 -18.5 50t-55.5 14q-29 0 -74 -9zM379 1120q18 70 42 127t66.5 101.5t92.5 44.5q46 0 129 -35l59 -29q63 -29 98 -29 q26 0 46.5 24.5t48.5 82.5l102 -29q-20 -123 -68 -198.5t-118 -75.5q-64 0 -146 39l-57 24q-59 23 -88 23q-34 0 -56.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1146" d="M39 360q0 129 39.5 250.5t126.5 208.5q156 156 418 156q92 0 172 -20t148 -62.5t107.5 -118t39.5 -176.5q0 -122 -43 -252.5t-127 -216.5q-74 -77 -187 -117.5t-244 -40.5q-74 0 -138.5 13t-122.5 42.5t-99.5 73.5t-65.5 110.5t-24 149.5zM369 1415q0 49 36 81t82 32 q40 0 69.5 -22.5t66.5 -92.5l161 -297l-96 -67l-248 243q-71 68 -71 123zM391 381q0 -160 133 -160q106 0 154 92q25 48 39 126t14 141q0 147 -135 147q-84 0 -135 -63q-35 -49 -52.5 -127.5t-17.5 -155.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1146" d="M39 360q0 129 39.5 250.5t126.5 208.5q156 156 418 156q92 0 172 -20t148 -62.5t107.5 -118t39.5 -176.5q0 -122 -43 -252.5t-127 -216.5q-74 -77 -187 -117.5t-244 -40.5q-74 0 -138.5 13t-122.5 42.5t-99.5 73.5t-65.5 110.5t-24 149.5zM391 381q0 -160 133 -160 q106 0 154 92q25 48 39 126t14 141q0 147 -135 147q-84 0 -135 -63q-35 -49 -52.5 -127.5t-17.5 -155.5zM477 1135l223 266q75 90 136 90q47 0 81.5 -34t34.5 -83q0 -35 -23.5 -63.5t-78.5 -65.5l-293 -196z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1146" d="M39 360q0 129 39.5 250.5t126.5 208.5q156 156 418 156q92 0 172 -20t148 -62.5t107.5 -118t39.5 -176.5q0 -122 -43 -252.5t-127 -216.5q-74 -77 -187 -117.5t-244 -40.5q-74 0 -138.5 13t-122.5 42.5t-99.5 73.5t-65.5 110.5t-24 149.5zM348 1116l277 311q54 60 110 60 q66 0 94 -55l162 -332l-100 -66l-189 209l-264 -209zM391 381q0 -160 133 -160q106 0 154 92q25 48 39 126t14 141q0 147 -135 147q-84 0 -135 -63q-35 -49 -52.5 -127.5t-17.5 -155.5z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1146" d="M39 360q0 129 39.5 250.5t126.5 208.5q156 156 418 156q92 0 172 -20t148 -62.5t107.5 -118t39.5 -176.5q0 -122 -43 -252.5t-127 -216.5q-74 -77 -187 -117.5t-244 -40.5q-74 0 -138.5 13t-122.5 42.5t-99.5 73.5t-65.5 110.5t-24 149.5zM328 1120q13 51 30 95.5 t41.5 86.5t57.5 66.5t71 24.5q46 0 129 -35l60 -29q63 -29 98 -29q26 0 45.5 24t48.5 83l103 -29q-19 -123 -68 -198.5t-119 -75.5q-63 0 -145 39l-57 24q-59 23 -88 23q-34 0 -56.5 -21.5t-50.5 -78.5zM391 381q0 -160 133 -160q106 0 154 92q25 48 39 126t14 141 q0 147 -135 147q-84 0 -135 -63q-35 -49 -52.5 -127.5t-17.5 -155.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1146" d="M39 360q0 129 39.5 250.5t126.5 208.5q156 156 418 156q92 0 172 -20t148 -62.5t107.5 -118t39.5 -176.5q0 -122 -43 -252.5t-127 -216.5q-74 -77 -187 -117.5t-244 -40.5q-74 0 -138.5 13t-122.5 42.5t-99.5 73.5t-65.5 110.5t-24 149.5zM387 1253q0 59 40 103.5 t101 44.5q58 0 94.5 -36t36.5 -91q0 -71 -40 -113.5t-105 -42.5q-58 0 -92.5 37t-34.5 98zM391 381q0 -160 133 -160q106 0 154 92q25 48 39 126t14 141q0 147 -135 147q-84 0 -135 -63q-35 -49 -52.5 -127.5t-17.5 -155.5zM745 1253q0 59 41.5 103.5t102.5 44.5 q58 0 94.5 -36t36.5 -91q0 -71 -41.5 -113.5t-106.5 -42.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1232" d="M172 543l45 202h907l-41 -202h-911zM440 291q2 70 43 115t105 45q56 0 86 -37.5t28 -104.5q-2 -59 -43.5 -100t-101.5 -41q-52 0 -84.5 34.5t-32.5 88.5zM594 961q0 67 43 112t106 45q57 0 86 -36t29 -99q-1 -62 -45.5 -104.5t-103.5 -42.5q-54 0 -85.5 34.5t-29.5 90.5z " />
+<glyph unicode="&#xf8;" horiz-adv-x="1146" d="M49 362q0 129 39.5 249.5t126.5 207.5q156 156 418 156q131 0 235 -39l107 125l104 -92l-90 -105q111 -96 111 -266q0 -121 -42.5 -251t-127.5 -216q-73 -76 -189 -117t-241 -41q-134 0 -238 43l-98 -112l-103 88l86 100q-98 98 -98 270zM383 367l299 352q-30 12 -72 12 q-96 0 -149 -65q-40 -49 -59 -128t-19 -157v-14zM451 236q34 -17 79 -17q119 0 170 94q28 48 44 126.5t16 142.5v14z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1241" d="M37 698l39 176q73 36 169 63.5t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q83 0 164 78q5 37 35 164l102 442h336l-96 -442q-47 -217 -47 -242q0 -32 13 -44.5t46 -12.5q51 0 107 18l-45 -194q-154 -56 -281 -56 q-78 0 -125 41t-47 119q-71 -76 -171 -117t-197 -41q-226 0 -226 207q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9zM395 1415q0 49 36 81t83 32q40 0 69 -22t66 -93l162 -297l-96 -67l-248 243q-72 69 -72 123z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1241" d="M37 698l39 176q73 36 169 63.5t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q83 0 164 78q5 37 35 164l102 442h336l-96 -442q-47 -217 -47 -242q0 -32 13 -44.5t46 -12.5q51 0 107 18l-45 -194q-154 -56 -281 -56 q-78 0 -125 41t-47 119q-71 -76 -171 -117t-197 -41q-226 0 -226 207q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9zM528 1135l224 266q75 90 135 90q47 0 82 -34t35 -83q0 -35 -23.5 -63.5t-79.5 -65.5l-293 -196z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1241" d="M37 698l39 176q73 36 169 63.5t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q83 0 164 78q5 37 35 164l102 442h336l-96 -442q-47 -217 -47 -242q0 -32 13 -44.5t46 -12.5q51 0 107 18l-45 -194q-154 -56 -281 -56 q-78 0 -125 41t-47 119q-71 -76 -171 -117t-197 -41q-226 0 -226 207q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9zM383 1116l276 311q54 60 111 60q66 0 94 -55l162 -332l-100 -66l-189 209l-264 -209z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1241" d="M37 698l39 176q73 36 169 63.5t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q83 0 164 78q5 37 35 164l102 442h336l-96 -442q-47 -217 -47 -242q0 -32 13 -44.5t46 -12.5q51 0 107 18l-45 -194q-154 -56 -281 -56 q-78 0 -125 41t-47 119q-71 -76 -171 -117t-197 -41q-226 0 -226 207q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9zM403 1253q0 59 40.5 103.5t101.5 44.5q58 0 94.5 -36t36.5 -91q0 -71 -40.5 -113.5t-105.5 -42.5q-58 0 -92.5 37t-34.5 98zM762 1253 q0 59 41 103.5t102 44.5q58 0 94.5 -36t36.5 -91q0 -71 -41 -113.5t-106 -42.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1216" d="M18 -387q0 34 10.5 107t22.5 122h187q0 -78 24 -112q13 -17 47 -28t72 -11q103 0 150.5 51t78.5 164q48 198 52 213q-74 -69 -152 -106.5t-186 -37.5q-116 0 -172 53.5t-56 153.5q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9l39 176q73 36 169 63.5 t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q77 0 162 78l139 606h336q-79 -396 -170 -883q-34 -183 -82.5 -294.5t-115.5 -178.5q-144 -147 -443 -147q-75 0 -149.5 12.5t-114.5 38.5q-37 24 -53 49.5t-19 69.5z M528 1135l224 266q75 90 135 90q47 0 82 -34t35 -83q0 -35 -23.5 -63.5t-79.5 -65.5l-293 -196z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1239" d="M-57 -535l352 1606q14 65 14 113q0 57 -65 57q-50 0 -86 -8l39 176q205 88 368 88q75 0 104 -34t29 -93q0 -29 -24 -149q-55 -257 -94 -402q66 70 156.5 114t181.5 44q146 0 209 -78.5t63 -220.5q0 -152 -50.5 -292.5t-152.5 -242.5q-157 -157 -448 -157q-89 0 -144 8 l-116 -529h-336zM461 264q82 -16 119 -16q55 0 101 25.5t73 68.5q31 50 46 116.5t15 116.5q0 67 -26.5 93t-77.5 26q-82 0 -176 -90z" />
+<glyph unicode="&#xff;" horiz-adv-x="1216" d="M18 -387q0 34 10.5 107t22.5 122h187q0 -78 24 -112q13 -17 47 -28t72 -11q103 0 150.5 51t78.5 164q48 198 52 213q-74 -69 -152 -106.5t-186 -37.5q-116 0 -172 53.5t-56 153.5q0 60 31 187l33 131q22 99 22 147q0 60 -69 60q-15 0 -76 -9l39 176q73 36 169 63.5 t152 27.5q97 0 133.5 -34.5t36.5 -107.5q0 -54 -30 -184l-48 -193q-22 -86 -22 -122q0 -62 61 -62q77 0 162 78l139 606h336q-79 -396 -170 -883q-34 -183 -82.5 -294.5t-115.5 -178.5q-144 -147 -443 -147q-75 0 -149.5 12.5t-114.5 38.5q-37 24 -53 49.5t-19 69.5z M408 1253q0 59 40 103.5t101 44.5q58 0 94.5 -36t36.5 -91q0 -71 -40 -113.5t-105 -42.5q-58 0 -92.5 37t-34.5 98zM766 1253q0 59 41 103.5t102 44.5q58 0 94.5 -36t36.5 -91q0 -71 -41 -113.5t-106 -42.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#x152;" horiz-adv-x="2152" d="M117 528q0 410 260 670q206 203 618 203q62 0 187 -8.5t164 -8.5h649q79 0 117 -25t38 -81q0 -82 -49 -295h-184q0 27 -4 59q-4 36 -37 64q-20 20 -107 20h-237l-59 -309h49q96 0 135 29q25 20 57 106h174q-52 -216 -96 -506h-166q0 29 -1 43t-4.5 35.5t-13.5 34 t-26 19.5q-28 12 -102 12h-52l-45 -228q-6 -42 -6 -53q0 -47 43 -53q53 -8 168 -8q181 0 260 57q33 29 90 131h187q-10 -82 -42 -193t-67 -165q-53 -78 -215 -78h-729q-43 0 -169 -6t-200 -6q-123 0 -221.5 27t-165.5 75.5t-112 117t-65.5 148t-20.5 172.5zM514 578 q0 -345 303 -345q120 0 168 58q14 16 35 96l115 604q10 39 10 86q0 22 -9.5 38t-23 24.5t-37 13t-42.5 5.5t-48 1q-222 0 -336 -155q-64 -86 -99.5 -203t-35.5 -223z" />
+<glyph unicode="&#x153;" horiz-adv-x="1703" d="M49 362q0 129 39.5 249.5t126.5 207.5q156 156 418 156q225 0 328 -117q63 54 154 85.5t192 31.5q182 0 269 -72t87 -194q0 -48 -11 -88t-48.5 -85t-100 -76.5t-173.5 -52.5t-261 -22q-2 -8 -2 -20q0 -60 41.5 -98t134.5 -38q126 0 309 84l90 -188q-233 -154 -509 -154 q-198 0 -293 117q-132 -115 -340 -115q-93 0 -171.5 21.5t-142.5 65.5t-100.5 121.5t-36.5 180.5zM401 383q0 -70 31 -115t103 -45q105 0 153 92q25 48 39 125t14 140q0 147 -135 147q-84 0 -135 -63q-35 -49 -52.5 -127t-17.5 -154zM1094 580q282 0 282 112q0 60 -86 60 q-68 0 -114 -37q-58 -41 -82 -135z" />
+<glyph unicode="&#x178;" horiz-adv-x="1423" d="M147 1200l35 186q230 -4 330 -4q153 0 365 4l-37 -186q-65 -3 -103 -16q-37 -16 -37 -56q0 -30 17 -79q84 -223 106 -285q37 51 219 289q45 57 45 92q0 10 -1.5 16.5t-9.5 14.5t-23 14q-27 10 -82 10l37 186q96 -4 383 -4q110 0 198 4l-37 -186q-63 -3 -102 -31 q-5 -3 -10.5 -7.5t-12.5 -11.5l-13.5 -13.5t-17 -18.5t-18.5 -21.5t-22.5 -26.5t-25 -29t-29 -34t-31.5 -38l-369 -432l-37 -187q-10 -58 -10 -86q0 -13 2 -22t13.5 -21t33.5 -18q43 -14 127 -19l-37 -186q-218 4 -375 4q-166 0 -374 -4l37 186q91 6 126 15t48 26 q20 27 34 105l41 205l-211 509q-2 6 -7 16q-13 31 -19 44.5t-17.5 33t-21 27t-25.5 17t-35.5 13t-46.5 5.5zM596 1655q0 59 41 102t102 43q57 0 94 -36t37 -91q0 -70 -41 -111.5t-106 -41.5q-58 0 -92.5 37t-34.5 98zM987 1655q0 59 40 102t101 43q58 0 95 -35.5t37 -91.5 q0 -46 -18.5 -81t-51.5 -53.5t-76 -18.5q-58 0 -92.5 37t-34.5 98z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M-23 1116l277 311q54 60 111 60q66 0 94 -55l162 -332l-101 -66l-188 209l-264 -209z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M-43 1120q18 70 42 127t66.5 101.5t92.5 44.5q46 0 129 -35l59 -29q63 -29 98 -29q26 0 46.5 24.5t48.5 82.5l102 -29q-20 -123 -68 -198.5t-118 -75.5q-64 0 -146 39l-57 24q-59 23 -88 23q-34 0 -56.5 -21.5t-50.5 -78.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="952" />
+<glyph unicode="&#x2001;" horiz-adv-x="1905" />
+<glyph unicode="&#x2002;" horiz-adv-x="952" />
+<glyph unicode="&#x2003;" horiz-adv-x="1905" />
+<glyph unicode="&#x2004;" horiz-adv-x="635" />
+<glyph unicode="&#x2005;" horiz-adv-x="476" />
+<glyph unicode="&#x2006;" horiz-adv-x="317" />
+<glyph unicode="&#x2007;" horiz-adv-x="317" />
+<glyph unicode="&#x2008;" horiz-adv-x="238" />
+<glyph unicode="&#x2009;" horiz-adv-x="381" />
+<glyph unicode="&#x200a;" horiz-adv-x="105" />
+<glyph unicode="&#x2010;" horiz-adv-x="585" d="M53 406l41 212h469l-41 -212h-469z" />
+<glyph unicode="&#x2011;" horiz-adv-x="585" d="M53 406l41 212h469l-41 -212h-469z" />
+<glyph unicode="&#x2012;" horiz-adv-x="585" d="M53 406l41 212h469l-41 -212h-469z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1155" d="M51 418l39 198h1038l-38 -198h-1039z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M51 418l39 198h1565l-39 -198h-1565z" />
+<glyph unicode="&#x2018;" horiz-adv-x="528" d="M131 989q0 285 442 494l58 -121q-232 -118 -232 -209q0 -22 11 -41.5t30 -28.5q76 -36 76 -131q0 -71 -50.5 -119.5t-135.5 -48.5q-90 0 -144.5 57t-54.5 148z" />
+<glyph unicode="&#x2019;" horiz-adv-x="528" d="M111 905q231 117 231 209q0 47 -41 70q-78 37 -78 131q0 71 52 119.5t137 48.5q90 0 144 -56.5t54 -148.5q0 -289 -442 -494z" />
+<glyph unicode="&#x201a;" horiz-adv-x="514" d="M-98 -326q231 117 231 209q0 22 -11 41.5t-30 28.5q-78 37 -78 131q0 71 52 119.5t137 48.5q90 0 144 -56.5t54 -148.5q0 -284 -442 -493z" />
+<glyph unicode="&#x201c;" horiz-adv-x="985" d="M131 989q0 285 442 494l58 -121q-232 -118 -232 -209q0 -22 11 -41.5t30 -28.5q76 -36 76 -131q0 -71 -50.5 -119.5t-135.5 -48.5q-90 0 -144.5 57t-54.5 148zM588 989q0 285 442 494l57 -121q-231 -117 -231 -209q0 -22 11 -41.5t30 -28.5q78 -37 78 -131 q0 -71 -52 -119.5t-137 -48.5q-90 0 -144 56.5t-54 148.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="985" d="M111 905q231 117 231 209q0 47 -41 70q-78 37 -78 131q0 71 52 119.5t137 48.5q90 0 144 -56.5t54 -148.5q0 -289 -442 -494zM567 905q116 59 174 110t58 99q0 47 -41 70q-78 37 -78 131q0 71 51.5 119.5t136.5 48.5q90 0 144.5 -57t54.5 -148q0 -289 -442 -494z" />
+<glyph unicode="&#x201e;" horiz-adv-x="985" d="M-98 -326q231 117 231 209q0 22 -11 41.5t-30 28.5q-78 37 -78 131q0 71 52 119.5t137 48.5q90 0 144 -56.5t54 -148.5q0 -284 -442 -493zM358 -326q232 118 232 209q0 22 -11 41.5t-30 28.5q-78 37 -78 131q0 71 51.5 119.5t136.5 48.5q90 0 144.5 -57t54.5 -148 q0 -284 -442 -493z" />
+<glyph unicode="&#x2022;" horiz-adv-x="813" d="M80 549q0 148 97.5 250t248.5 102q147 0 237.5 -87.5t90.5 -221.5q0 -161 -96 -264t-255 -103q-141 0 -232 93t-91 231z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1830" d="M66 154q0 75 52 130.5t134 55.5q78 0 125 -45t47 -117q0 -91 -51.5 -143.5t-139.5 -52.5q-77 0 -122 47.5t-45 124.5zM674 154q0 75 53 130.5t135 55.5q76 0 124 -45t48 -117q0 -91 -51.5 -143.5t-140.5 -52.5q-76 0 -122 47.5t-46 124.5zM1286 154q0 75 53.5 130.5 t135.5 55.5q76 0 124 -45t48 -117q0 -91 -52 -143.5t-141 -52.5q-76 0 -122 47.5t-46 124.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="381" />
+<glyph unicode="&#x2039;" horiz-adv-x="585" d="M10 446q0 64 76 121l436 320l94 -115l-325 -321l180 -326l-121 -96l-303 329q-37 41 -37 88z" />
+<glyph unicode="&#x203a;" horiz-adv-x="585" d="M-14 143l323 322l-180 326l121 96l303 -330q37 -37 37 -88q0 -67 -76 -121l-434 -319z" />
+<glyph unicode="&#x205f;" horiz-adv-x="476" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1484" d="M182 492l27 131h129q7 69 14 114h-121l25 131h131q67 198 209 326q192 178 522 178q185 0 289 -49q46 -22 64 -59t18 -88q0 -24 -9.5 -78t-20 -102t-19.5 -85h-187q-2 61 -9.5 98t-27.5 63t-53.5 36t-87.5 10q-149 0 -241 -114q-48 -60 -76 -136h360l-26 -131h-369 q-11 -52 -14 -114h362l-27 -131h-331q9 -71 35 -124t62 -81.5t74.5 -42t80.5 -13.5q140 0 196 56q33 28 88 153h191q-44 -247 -76 -309q-43 -68 -143 -108q-47 -21 -139 -36.5t-193 -15.5q-257 0 -400.5 137t-152.5 384h-154z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1628" d="M223 1167q9 97 23 152q18 65 82 65h467q34 0 46.5 -14.5t12.5 -40.5q0 -11 -12.5 -71.5t-20.5 -90.5h-76q0 52 -2 71.5t-12 29.5q-16 12 -106 12l-68 -344q-6 -38 -6 -49q0 -29 84 -29l-17 -82q-47 2 -165 2q-127 0 -172 -2l16 82q63 3 74 14q10 7 18 58l70 350 q-85 0 -105 -10q-32 -20 -55 -103h-76zM793 776l18 82q53 0 68 12q11 14 24 74q49 228 62 295q4 23 4 39q0 29 -74 29l14 77q43 -2 168 -2q94 0 131 2q41 -239 49 -303q25 48 175 303q43 -2 147 -2q108 0 145 2l-16 -81q-55 -2 -66 -13l-3.5 -3.5t-3 -4t-2.5 -4t-2 -5 t-2 -5.5t-2 -6.5t-1.5 -6.5t-1.5 -8t-2 -8q-5 -22 -51 -301q-6 -30 -6 -49q0 -7 2 -12t6.5 -8t9 -5t12.5 -3t13.5 -1.5t16 -1t15.5 -0.5l-18 -82q-45 2 -164 2q-113 0 -168 -2l19 82q57 2 69 14q13 10 21 48q35 199 59 309q-47 -88 -190 -324q-14 -25 -31.5 -34t-42.5 -9 q-54 0 -61 43q-49 244 -64 330q-5 -34 -17 -106.5t-23.5 -133t-14.5 -73.5q-4 -20 -4 -35q0 -6 2 -10.5t6.5 -7.5t8.5 -5t12.5 -3t14 -1.5t15.5 -1t16 -0.5l-16 -82q-39 2 -133 2q-92 0 -143 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="962" d="M0 0v963h963v-963h-963z" />
+<hkern u1="&#x20;" u2="&#x201c;" k="4" />
+<hkern u1="&#x20;" u2="&#x2018;" k="4" />
+<hkern u1="&#x20;" u2="&#x178;" k="-31" />
+<hkern u1="&#x20;" u2="&#xef;" k="61" />
+<hkern u1="&#x20;" u2="&#xee;" k="61" />
+<hkern u1="&#x20;" u2="&#xed;" k="61" />
+<hkern u1="&#x20;" u2="&#xec;" k="61" />
+<hkern u1="&#x20;" u2="&#xdd;" k="-31" />
+<hkern u1="&#x20;" u2="i" k="61" />
+<hkern u1="&#x20;" u2="Y" k="-31" />
+<hkern u1="&#x20;" u2="T" k="-4" />
+<hkern u1="&#x21;" u2="&#x2026;" k="-51" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-51" />
+<hkern u1="&#x21;" u2="]" k="-51" />
+<hkern u1="&#x21;" u2="&#x3a;" k="-41" />
+<hkern u1="&#x21;" u2="&#x2e;" k="-51" />
+<hkern u1="&#x21;" u2="&#x2c;" k="-51" />
+<hkern u1="&#x21;" u2="&#x29;" k="-51" />
+<hkern u1="&#x22;" g2="uniFB04" k="20" />
+<hkern u1="&#x22;" g2="uniFB03" k="20" />
+<hkern u1="&#x22;" g2="uniFB02" k="20" />
+<hkern u1="&#x22;" g2="uniFB01" k="20" />
+<hkern u1="&#x22;" u2="&#xdf;" k="20" />
+<hkern u1="&#x22;" u2="f" k="20" />
+<hkern u1="&#x22;" u2="&#x31;" k="172" />
+<hkern u1="&#x24;" u2="&#x33;" k="-41" />
+<hkern u1="&#x27;" u2="&#x31;" k="152" />
+<hkern u1="&#x28;" u2="W" k="-68" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="233" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="348" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="233" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="348" />
+<hkern u1="&#x2c;" u2="&#x38;" k="18" />
+<hkern u1="&#x2d;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2d;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="266" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="266" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2014;" k="41" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="41" />
+<hkern u1="&#x2e;" u2="&#x7d;" k="16" />
+<hkern u1="&#x2e;" u2="]" k="16" />
+<hkern u1="&#x2e;" u2="&#x38;" k="23" />
+<hkern u1="&#x2e;" u2="&#x2d;" k="41" />
+<hkern u1="&#x2e;" u2="&#x29;" k="16" />
+<hkern u1="&#x2f;" g2="uniFB04" k="41" />
+<hkern u1="&#x2f;" g2="uniFB03" k="41" />
+<hkern u1="&#x2f;" g2="uniFB02" k="41" />
+<hkern u1="&#x2f;" g2="uniFB01" k="41" />
+<hkern u1="&#x2f;" u2="&#x153;" k="119" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-53" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="119" />
+<hkern u1="&#x2f;" u2="&#xef;" k="61" />
+<hkern u1="&#x2f;" u2="&#xee;" k="61" />
+<hkern u1="&#x2f;" u2="&#xed;" k="61" />
+<hkern u1="&#x2f;" u2="&#xec;" k="61" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="119" />
+<hkern u1="&#x2f;" u2="&#xea;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="100" />
+<hkern u1="&#x2f;" u2="&#xdf;" k="41" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-25" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="82" />
+<hkern u1="&#x2f;" u2="q" k="100" />
+<hkern u1="&#x2f;" u2="o" k="119" />
+<hkern u1="&#x2f;" u2="l" k="-53" />
+<hkern u1="&#x2f;" u2="k" k="-53" />
+<hkern u1="&#x2f;" u2="i" k="61" />
+<hkern u1="&#x2f;" u2="h" k="-53" />
+<hkern u1="&#x2f;" u2="f" k="41" />
+<hkern u1="&#x2f;" u2="e" k="119" />
+<hkern u1="&#x2f;" u2="d" k="119" />
+<hkern u1="&#x2f;" u2="c" k="119" />
+<hkern u1="&#x2f;" u2="b" k="-53" />
+<hkern u1="&#x2f;" u2="a" k="100" />
+<hkern u1="&#x2f;" u2="V" k="-25" />
+<hkern u1="&#x2f;" u2="R" k="-25" />
+<hkern u1="&#x2f;" u2="P" k="-25" />
+<hkern u1="&#x2f;" u2="N" k="-25" />
+<hkern u1="&#x2f;" u2="M" k="-25" />
+<hkern u1="&#x2f;" u2="L" k="-25" />
+<hkern u1="&#x2f;" u2="K" k="-25" />
+<hkern u1="&#x2f;" u2="I" k="-25" />
+<hkern u1="&#x2f;" u2="H" k="-25" />
+<hkern u1="&#x2f;" u2="F" k="-25" />
+<hkern u1="&#x2f;" u2="E" k="-25" />
+<hkern u1="&#x2f;" u2="D" k="-25" />
+<hkern u1="&#x2f;" u2="B" k="-25" />
+<hkern u1="&#x2f;" u2="A" k="82" />
+<hkern u1="&#x2f;" u2="&#x35;" k="41" />
+<hkern u1="&#x30;" u2="&#x153;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-66" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-66" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-66" />
+<hkern u1="&#x30;" u2="&#xea;" k="-66" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-66" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-66" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-66" />
+<hkern u1="&#x30;" u2="o" k="-66" />
+<hkern u1="&#x30;" u2="e" k="-66" />
+<hkern u1="&#x30;" u2="d" k="-66" />
+<hkern u1="&#x30;" u2="c" k="-66" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-102" />
+<hkern u1="&#x30;" u2="&#x25;" k="-76" />
+<hkern u1="&#x31;" u2="&#x2026;" k="123" />
+<hkern u1="&#x31;" u2="&#x2f;" k="102" />
+<hkern u1="&#x31;" u2="&#x2e;" k="123" />
+<hkern u1="&#x31;" u2="&#x2c;" k="123" />
+<hkern u1="&#x31;" u2="&#x27;" k="287" />
+<hkern u1="&#x31;" u2="&#x22;" k="287" />
+<hkern u1="&#x32;" u2="&#x2026;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2e;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2c;" k="-102" />
+<hkern u1="&#x33;" g2="uniFB04" k="-78" />
+<hkern u1="&#x33;" g2="uniFB03" k="-78" />
+<hkern u1="&#x33;" g2="uniFB02" k="-78" />
+<hkern u1="&#x33;" g2="uniFB01" k="-78" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-78" />
+<hkern u1="&#x33;" u2="f" k="-78" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-102" />
+<hkern u1="&#x34;" u2="r" k="-102" />
+<hkern u1="&#x34;" u2="p" k="-102" />
+<hkern u1="&#x34;" u2="n" k="-102" />
+<hkern u1="&#x34;" u2="m" k="-102" />
+<hkern u1="&#x35;" u2="&#x2014;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2013;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2d;" k="-102" />
+<hkern u1="&#x37;" u2="&#x2026;" k="229" />
+<hkern u1="&#x37;" u2="&#x2e;" k="229" />
+<hkern u1="&#x37;" u2="&#x2c;" k="229" />
+<hkern u1="&#x38;" u2="&#x2026;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2014;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2013;" k="-61" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-14" />
+<hkern u1="&#x38;" u2="&#x2e;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2d;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2c;" k="-61" />
+<hkern u1="&#x3a;" u2="&#x31;" k="123" />
+<hkern u1="&#x3f;" u2="&#x2026;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2e;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="61" />
+<hkern u1="&#x3f;" u2="&#x20;" k="2" />
+<hkern u1="A" u2="b" k="80" />
+<hkern u1="A" u2="W" k="221" />
+<hkern u1="A" u2="&#x2f;" k="-51" />
+<hkern u1="A" u2="&#x21;" k="82" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="W" k="66" />
+<hkern u1="C" u2="&#xee;" k="31" />
+<hkern u1="C" u2="W" k="80" />
+<hkern u1="D" u2="&#xd0;" k="-25" />
+<hkern u1="D" u2="W" k="57" />
+<hkern u1="E" u2="&#xec;" k="31" />
+<hkern u1="E" u2="W" k="66" />
+<hkern u1="F" u2="&#x2026;" k="154" />
+<hkern u1="F" u2="&#x178;" k="27" />
+<hkern u1="F" u2="&#x153;" k="80" />
+<hkern u1="F" u2="&#x152;" k="10" />
+<hkern u1="F" u2="&#xff;" k="94" />
+<hkern u1="F" u2="&#xfe;" k="-14" />
+<hkern u1="F" u2="&#xfd;" k="94" />
+<hkern u1="F" u2="&#xfc;" k="78" />
+<hkern u1="F" u2="&#xfb;" k="78" />
+<hkern u1="F" u2="&#xfa;" k="78" />
+<hkern u1="F" u2="&#xf9;" k="78" />
+<hkern u1="F" u2="&#xf8;" k="80" />
+<hkern u1="F" u2="&#xf6;" k="80" />
+<hkern u1="F" u2="&#xf5;" k="80" />
+<hkern u1="F" u2="&#xf4;" k="80" />
+<hkern u1="F" u2="&#xf3;" k="80" />
+<hkern u1="F" u2="&#xf2;" k="80" />
+<hkern u1="F" u2="&#xf1;" k="55" />
+<hkern u1="F" u2="&#xf0;" k="80" />
+<hkern u1="F" u2="&#xef;" k="-53" />
+<hkern u1="F" u2="&#xee;" k="-29" />
+<hkern u1="F" u2="&#xed;" k="43" />
+<hkern u1="F" u2="&#xec;" k="-12" />
+<hkern u1="F" u2="&#xeb;" k="80" />
+<hkern u1="F" u2="&#xea;" k="80" />
+<hkern u1="F" u2="&#xe9;" k="80" />
+<hkern u1="F" u2="&#xe8;" k="80" />
+<hkern u1="F" u2="&#xe7;" k="80" />
+<hkern u1="F" u2="&#xe6;" k="100" />
+<hkern u1="F" u2="&#xe5;" k="100" />
+<hkern u1="F" u2="&#xe4;" k="100" />
+<hkern u1="F" u2="&#xe3;" k="100" />
+<hkern u1="F" u2="&#xe2;" k="100" />
+<hkern u1="F" u2="&#xe1;" k="100" />
+<hkern u1="F" u2="&#xe0;" k="100" />
+<hkern u1="F" u2="&#xdd;" k="27" />
+<hkern u1="F" u2="&#xd8;" k="10" />
+<hkern u1="F" u2="&#xd6;" k="10" />
+<hkern u1="F" u2="&#xd5;" k="10" />
+<hkern u1="F" u2="&#xd4;" k="10" />
+<hkern u1="F" u2="&#xd3;" k="10" />
+<hkern u1="F" u2="&#xd2;" k="10" />
+<hkern u1="F" u2="&#xc7;" k="10" />
+<hkern u1="F" u2="&#xc6;" k="225" />
+<hkern u1="F" u2="&#xc5;" k="94" />
+<hkern u1="F" u2="&#xc4;" k="94" />
+<hkern u1="F" u2="&#xc3;" k="94" />
+<hkern u1="F" u2="&#xc2;" k="94" />
+<hkern u1="F" u2="&#xc1;" k="94" />
+<hkern u1="F" u2="&#xc0;" k="94" />
+<hkern u1="F" u2="z" k="102" />
+<hkern u1="F" u2="y" k="94" />
+<hkern u1="F" u2="x" k="123" />
+<hkern u1="F" u2="w" k="94" />
+<hkern u1="F" u2="v" k="94" />
+<hkern u1="F" u2="u" k="78" />
+<hkern u1="F" u2="t" k="25" />
+<hkern u1="F" u2="s" k="102" />
+<hkern u1="F" u2="r" k="55" />
+<hkern u1="F" u2="q" k="100" />
+<hkern u1="F" u2="p" k="55" />
+<hkern u1="F" u2="o" k="80" />
+<hkern u1="F" u2="n" k="55" />
+<hkern u1="F" u2="m" k="55" />
+<hkern u1="F" u2="l" k="-14" />
+<hkern u1="F" u2="k" k="-14" />
+<hkern u1="F" u2="j" k="27" />
+<hkern u1="F" u2="i" k="43" />
+<hkern u1="F" u2="h" k="-14" />
+<hkern u1="F" u2="g" k="102" />
+<hkern u1="F" u2="e" k="80" />
+<hkern u1="F" u2="d" k="80" />
+<hkern u1="F" u2="c" k="80" />
+<hkern u1="F" u2="b" k="-14" />
+<hkern u1="F" u2="a" k="100" />
+<hkern u1="F" u2="Y" k="27" />
+<hkern u1="F" u2="X" k="68" />
+<hkern u1="F" u2="S" k="8" />
+<hkern u1="F" u2="Q" k="10" />
+<hkern u1="F" u2="O" k="10" />
+<hkern u1="F" u2="J" k="20" />
+<hkern u1="F" u2="G" k="10" />
+<hkern u1="F" u2="C" k="10" />
+<hkern u1="F" u2="A" k="94" />
+<hkern u1="F" u2="&#x2f;" k="61" />
+<hkern u1="F" u2="&#x2e;" k="154" />
+<hkern u1="F" u2="&#x2c;" k="154" />
+<hkern u1="G" u2="&#xd0;" k="-27" />
+<hkern u1="G" u2="W" k="53" />
+<hkern u1="H" u2="&#xef;" k="-68" />
+<hkern u1="H" u2="&#xec;" k="-72" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="H" u2="W" k="6" />
+<hkern u1="H" u2="&#x2f;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-68" />
+<hkern u1="I" u2="&#xec;" k="-53" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="W" k="6" />
+<hkern u1="I" u2="&#x2f;" k="-20" />
+<hkern u1="J" u2="&#xef;" k="-96" />
+<hkern u1="J" u2="&#xec;" k="-74" />
+<hkern u1="J" u2="&#xd0;" k="-27" />
+<hkern u1="J" u2="&#xc5;" k="23" />
+<hkern u1="J" u2="&#xc4;" k="23" />
+<hkern u1="J" u2="&#xc3;" k="23" />
+<hkern u1="J" u2="&#xc2;" k="23" />
+<hkern u1="J" u2="&#xc1;" k="23" />
+<hkern u1="J" u2="&#xc0;" k="23" />
+<hkern u1="J" u2="A" k="23" />
+<hkern u1="K" u2="&#xef;" k="-6" />
+<hkern u1="K" u2="&#xec;" k="-45" />
+<hkern u1="K" u2="e" k="92" />
+<hkern u1="K" u2="b" k="45" />
+<hkern u1="K" u2="W" k="76" />
+<hkern u1="L" u2="e" k="41" />
+<hkern u1="L" u2="W" k="266" />
+<hkern u1="M" u2="&#xef;" k="-49" />
+<hkern u1="M" u2="&#xd0;" k="-27" />
+<hkern u1="N" u2="&#xef;" k="-66" />
+<hkern u1="N" u2="&#xec;" k="-84" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="N" u2="W" k="6" />
+<hkern u1="N" u2="&#x2f;" k="-20" />
+<hkern u1="O" u2="&#xd0;" k="-25" />
+<hkern u1="O" u2="W" k="57" />
+<hkern u1="P" u2="&#xd0;" k="-20" />
+<hkern u1="P" u2="W" k="66" />
+<hkern u1="Q" u2="&#xd0;" k="-35" />
+<hkern u1="Q" u2="W" k="57" />
+<hkern u1="Q" u2="J" k="-154" />
+<hkern u1="Q" u2="&#x2c;" k="-121" />
+<hkern u1="R" u2="W" k="106" />
+<hkern u1="S" u2="W" k="84" />
+<hkern u1="T" u2="&#x2019;" k="-61" />
+<hkern u1="T" u2="&#xef;" k="-51" />
+<hkern u1="T" u2="&#xee;" k="-16" />
+<hkern u1="T" u2="&#xec;" k="-14" />
+<hkern u1="T" u2="&#x3f;" k="-25" />
+<hkern u1="T" u2="&#x3b;" k="76" />
+<hkern u1="T" u2="&#x3a;" k="104" />
+<hkern u1="T" u2="&#x21;" k="-8" />
+<hkern u1="U" u2="&#xef;" k="-96" />
+<hkern u1="U" u2="&#xec;" k="-74" />
+<hkern u1="U" u2="&#xd0;" k="-27" />
+<hkern u1="V" u2="&#xf6;" k="119" />
+<hkern u1="V" u2="&#xef;" k="-90" />
+<hkern u1="V" u2="&#xee;" k="-4" />
+<hkern u1="V" u2="&#xec;" k="-78" />
+<hkern u1="V" u2="&#xe8;" k="109" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="88" />
+<hkern u1="W" u2="&#x201d;" k="-43" />
+<hkern u1="W" u2="&#x2019;" k="-49" />
+<hkern u1="W" u2="&#xff;" k="109" />
+<hkern u1="W" u2="&#xfd;" k="109" />
+<hkern u1="W" u2="&#xfc;" k="111" />
+<hkern u1="W" u2="&#xfb;" k="111" />
+<hkern u1="W" u2="&#xfa;" k="111" />
+<hkern u1="W" u2="&#xf9;" k="111" />
+<hkern u1="W" u2="&#xf6;" k="119" />
+<hkern u1="W" u2="&#xef;" k="-90" />
+<hkern u1="W" u2="&#xee;" k="-4" />
+<hkern u1="W" u2="&#xed;" k="70" />
+<hkern u1="W" u2="&#xec;" k="-78" />
+<hkern u1="W" u2="&#xe8;" k="109" />
+<hkern u1="W" u2="y" k="106" />
+<hkern u1="W" u2="x" k="176" />
+<hkern u1="W" u2="w" k="152" />
+<hkern u1="W" u2="v" k="158" />
+<hkern u1="W" u2="u" k="111" />
+<hkern u1="W" u2="t" k="94" />
+<hkern u1="W" u2="s" k="168" />
+<hkern u1="W" u2="r" k="98" />
+<hkern u1="W" u2="j" k="66" />
+<hkern u1="W" u2="L" k="2" />
+<hkern u1="W" u2="&#x3b;" k="102" />
+<hkern u1="W" u2="&#x3a;" k="88" />
+<hkern u1="X" u2="&#xef;" k="-35" />
+<hkern u1="X" u2="&#xee;" k="78" />
+<hkern u1="X" u2="&#xec;" k="-31" />
+<hkern u1="Y" u2="&#xef;" k="-102" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="66" />
+<hkern u1="Y" u2="&#xec;" k="-109" />
+<hkern u1="Y" u2="&#xe8;" k="115" />
+<hkern u1="Y" u2="W" k="27" />
+<hkern u1="Y" u2="&#x3b;" k="133" />
+<hkern u1="Y" u2="&#x3a;" k="123" />
+<hkern u1="Y" u2="&#x30;" k="-4" />
+<hkern u1="Y" u2="&#x21;" k="61" />
+<hkern u1="Z" u2="&#xef;" k="4" />
+<hkern u1="Z" u2="&#xd0;" k="-20" />
+<hkern u1="Z" u2="W" k="78" />
+<hkern u1="[" u2="W" k="-68" />
+<hkern u1="a" u2="&#x3f;" k="27" />
+<hkern u1="a" u2="&#x3b;" k="-16" />
+<hkern u1="a" u2="&#x2f;" k="-47" />
+<hkern u1="b" u2="&#x3f;" k="104" />
+<hkern u1="c" u2="&#x2019;" k="-20" />
+<hkern u1="c" u2="k" k="39" />
+<hkern u1="e" u2="&#x3a;" k="-20" />
+<hkern u1="f" u2="&#x2019;" k="-176" />
+<hkern u1="f" u2="&#xf2;" k="-14" />
+<hkern u1="f" u2="&#xf1;" k="-2" />
+<hkern u1="f" u2="&#xef;" k="-270" />
+<hkern u1="f" u2="&#xee;" k="-209" />
+<hkern u1="f" u2="&#xed;" k="-84" />
+<hkern u1="f" u2="&#xec;" k="-233" />
+<hkern u1="f" u2="&#xe8;" k="-25" />
+<hkern u1="f" u2="b" k="-141" />
+<hkern u1="f" u2="W" k="-205" />
+<hkern u1="f" u2="&#x3f;" k="-199" />
+<hkern u1="f" u2="&#x3a;" k="-16" />
+<hkern u1="f" u2="&#x2f;" k="-20" />
+<hkern u1="f" u2="&#x2a;" k="-184" />
+<hkern u1="f" u2="&#x27;" k="-221" />
+<hkern u1="f" u2="&#x22;" k="-205" />
+<hkern u1="f" u2="&#x21;" k="-98" />
+<hkern u1="g" u2="y" k="6" />
+<hkern u1="g" u2="&#x3b;" k="-82" />
+<hkern u1="g" u2="&#x2c;" k="-109" />
+<hkern u1="h" u2="&#x3f;" k="27" />
+<hkern u1="h" u2="&#x3b;" k="-16" />
+<hkern u1="h" u2="&#x2f;" k="-47" />
+<hkern u1="i" u2="q" k="-14" />
+<hkern u1="j" u2="&#x3a;" k="27" />
+<hkern u1="k" u2="e" k="10" />
+<hkern u1="k" u2="&#x3a;" k="4" />
+<hkern u1="l" u2="&#x2f;" k="-47" />
+<hkern u1="m" u2="&#x3f;" k="27" />
+<hkern u1="m" u2="&#x3b;" k="-16" />
+<hkern u1="m" u2="&#x2f;" k="-47" />
+<hkern u1="n" u2="&#x3f;" k="27" />
+<hkern u1="n" u2="&#x3b;" k="-16" />
+<hkern u1="n" u2="&#x2f;" k="-47" />
+<hkern u1="o" u2="&#x3f;" k="104" />
+<hkern u1="p" u2="&#x3f;" k="104" />
+<hkern u1="q" u2="&#x2026;" k="72" />
+<hkern u1="q" u2="&#xff;" k="14" />
+<hkern u1="q" u2="&#xfd;" k="14" />
+<hkern u1="q" u2="&#xfc;" k="10" />
+<hkern u1="q" u2="&#xfb;" k="10" />
+<hkern u1="q" u2="&#xfa;" k="10" />
+<hkern u1="q" u2="&#xf9;" k="10" />
+<hkern u1="q" u2="&#xf1;" k="6" />
+<hkern u1="q" u2="&#x7d;" k="-8" />
+<hkern u1="q" u2="y" k="14" />
+<hkern u1="q" u2="x" k="35" />
+<hkern u1="q" u2="w" k="14" />
+<hkern u1="q" u2="v" k="14" />
+<hkern u1="q" u2="u" k="10" />
+<hkern u1="q" u2="r" k="6" />
+<hkern u1="q" u2="p" k="6" />
+<hkern u1="q" u2="n" k="6" />
+<hkern u1="q" u2="m" k="6" />
+<hkern u1="q" u2="j" k="-117" />
+<hkern u1="q" u2="]" k="-8" />
+<hkern u1="q" u2="&#x2e;" k="72" />
+<hkern u1="q" u2="&#x2c;" k="72" />
+<hkern u1="q" u2="&#x29;" k="-8" />
+<hkern u1="r" u2="&#x2019;" k="-27" />
+<hkern u1="r" u2="&#x3b;" k="-14" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="v" u2="&#x3b;" k="6" />
+<hkern u1="v" u2="&#x3a;" k="6" />
+<hkern u1="w" u2="&#x2019;" k="41" />
+<hkern u1="w" u2="&#x3b;" k="10" />
+<hkern u1="w" u2="&#x3a;" k="29" />
+<hkern u1="x" u2="&#x2026;" k="-35" />
+<hkern u1="x" u2="&#x153;" k="4" />
+<hkern u1="x" u2="&#xf8;" k="4" />
+<hkern u1="x" u2="&#xf6;" k="4" />
+<hkern u1="x" u2="&#xf5;" k="4" />
+<hkern u1="x" u2="&#xf4;" k="4" />
+<hkern u1="x" u2="&#xf3;" k="4" />
+<hkern u1="x" u2="&#xf2;" k="4" />
+<hkern u1="x" u2="&#xf0;" k="4" />
+<hkern u1="x" u2="&#xeb;" k="4" />
+<hkern u1="x" u2="&#xea;" k="4" />
+<hkern u1="x" u2="&#xe9;" k="4" />
+<hkern u1="x" u2="&#xe8;" k="4" />
+<hkern u1="x" u2="&#xe7;" k="4" />
+<hkern u1="x" u2="&#xe6;" k="2" />
+<hkern u1="x" u2="&#xe5;" k="2" />
+<hkern u1="x" u2="&#xe4;" k="2" />
+<hkern u1="x" u2="&#xe3;" k="2" />
+<hkern u1="x" u2="&#xe2;" k="2" />
+<hkern u1="x" u2="&#xe1;" k="2" />
+<hkern u1="x" u2="&#xe0;" k="2" />
+<hkern u1="x" u2="q" k="2" />
+<hkern u1="x" u2="o" k="4" />
+<hkern u1="x" u2="g" k="74" />
+<hkern u1="x" u2="e" k="4" />
+<hkern u1="x" u2="d" k="4" />
+<hkern u1="x" u2="c" k="4" />
+<hkern u1="x" u2="a" k="2" />
+<hkern u1="x" u2="&#x2e;" k="-35" />
+<hkern u1="x" u2="&#x2c;" k="-35" />
+<hkern u1="y" u2="&#xef;" k="16" />
+<hkern u1="y" u2="&#xee;" k="16" />
+<hkern u1="y" u2="&#xed;" k="16" />
+<hkern u1="y" u2="&#xec;" k="16" />
+<hkern u1="y" u2="i" k="16" />
+<hkern u1="y" u2="&#x3b;" k="6" />
+<hkern u1="y" u2="&#x3a;" k="6" />
+<hkern u1="&#x7b;" u2="W" k="-68" />
+<hkern u1="&#xa1;" u2="&#x178;" k="270" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="270" />
+<hkern u1="&#xa1;" u2="&#xc5;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc4;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc3;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc2;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc1;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc0;" k="61" />
+<hkern u1="&#xa1;" u2="Y" k="270" />
+<hkern u1="&#xa1;" u2="W" k="102" />
+<hkern u1="&#xa1;" u2="V" k="160" />
+<hkern u1="&#xa1;" u2="T" k="170" />
+<hkern u1="&#xa1;" u2="A" k="61" />
+<hkern u1="&#xa3;" u2="&#x35;" k="-25" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-57" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-72" />
+<hkern u1="&#xab;" u2="W" k="61" />
+<hkern u1="&#xbb;" u2="W" k="123" />
+<hkern u1="&#xbf;" u2="T" k="143" />
+<hkern u1="&#xbf;" u2="S" k="27" />
+<hkern u1="&#xc0;" u2="b" k="80" />
+<hkern u1="&#xc0;" u2="W" k="221" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc0;" u2="&#x21;" k="82" />
+<hkern u1="&#xc1;" u2="b" k="80" />
+<hkern u1="&#xc1;" u2="W" k="221" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc1;" u2="&#x21;" k="82" />
+<hkern u1="&#xc2;" u2="b" k="80" />
+<hkern u1="&#xc2;" u2="W" k="221" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc2;" u2="&#x21;" k="82" />
+<hkern u1="&#xc3;" u2="b" k="80" />
+<hkern u1="&#xc3;" u2="W" k="221" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc3;" u2="&#x21;" k="82" />
+<hkern u1="&#xc4;" u2="b" k="80" />
+<hkern u1="&#xc4;" u2="W" k="221" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc4;" u2="&#x21;" k="82" />
+<hkern u1="&#xc5;" u2="b" k="80" />
+<hkern u1="&#xc5;" u2="W" k="221" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-51" />
+<hkern u1="&#xc5;" u2="&#x21;" k="82" />
+<hkern u1="&#xc6;" u2="&#xec;" k="31" />
+<hkern u1="&#xc6;" u2="W" k="66" />
+<hkern u1="&#xc7;" u2="&#xee;" k="31" />
+<hkern u1="&#xc7;" u2="W" k="80" />
+<hkern u1="&#xc8;" u2="&#xec;" k="31" />
+<hkern u1="&#xc8;" u2="W" k="66" />
+<hkern u1="&#xc9;" u2="&#xec;" k="31" />
+<hkern u1="&#xc9;" u2="W" k="66" />
+<hkern u1="&#xca;" u2="&#xec;" k="31" />
+<hkern u1="&#xca;" u2="W" k="66" />
+<hkern u1="&#xcb;" u2="&#xec;" k="31" />
+<hkern u1="&#xcb;" u2="W" k="66" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-68" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-72" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcc;" u2="W" k="6" />
+<hkern u1="&#xcc;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-68" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-72" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="W" k="6" />
+<hkern u1="&#xcd;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-68" />
+<hkern u1="&#xce;" u2="&#xec;" k="-72" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="W" k="6" />
+<hkern u1="&#xce;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-68" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-72" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="W" k="6" />
+<hkern u1="&#xcf;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd0;" u2="W" k="57" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-68" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-72" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd1;" u2="W" k="6" />
+<hkern u1="&#xd1;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd2;" u2="W" k="57" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd3;" u2="W" k="57" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd4;" u2="W" k="57" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd5;" u2="W" k="57" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd6;" u2="W" k="57" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd8;" u2="W" k="57" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-96" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-74" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xda;" u2="&#xef;" k="-96" />
+<hkern u1="&#xda;" u2="&#xec;" k="-74" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-96" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-96" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-102" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="66" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-109" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="115" />
+<hkern u1="&#xdd;" u2="W" k="27" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="133" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="123" />
+<hkern u1="&#xdd;" u2="&#x30;" k="-4" />
+<hkern u1="&#xdd;" u2="&#x21;" k="61" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xde;" u2="W" k="57" />
+<hkern u1="&#xdf;" u2="&#x2026;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-61" />
+<hkern u1="&#xdf;" u2="&#x2e;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2c;" k="-41" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-47" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-47" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-47" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-47" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-47" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-47" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe7;" u2="&#x2019;" k="-20" />
+<hkern u1="&#xe7;" u2="k" k="39" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xec;" u2="q" k="-14" />
+<hkern u1="&#xed;" u2="q" k="-14" />
+<hkern u1="&#xee;" u2="q" k="-14" />
+<hkern u1="&#xef;" u2="q" k="-14" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-47" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="104" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="104" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="104" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="104" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="104" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="104" />
+<hkern u1="&#xfd;" u2="&#x3b;" k="6" />
+<hkern u1="&#xfd;" u2="&#x3a;" k="6" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="104" />
+<hkern u1="&#xff;" u2="&#x3b;" k="6" />
+<hkern u1="&#xff;" u2="&#x3a;" k="6" />
+<hkern u1="&#x152;" u2="&#xec;" k="31" />
+<hkern u1="&#x152;" u2="W" k="66" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-20" />
+<hkern u1="&#x178;" u2="&#xef;" k="-102" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="66" />
+<hkern u1="&#x178;" u2="&#xec;" k="-109" />
+<hkern u1="&#x178;" u2="&#xe8;" k="115" />
+<hkern u1="&#x178;" u2="W" k="27" />
+<hkern u1="&#x178;" u2="&#x3b;" k="133" />
+<hkern u1="&#x178;" u2="&#x3a;" k="123" />
+<hkern u1="&#x178;" u2="&#x30;" k="-4" />
+<hkern u1="&#x178;" u2="&#x21;" k="61" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2014;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2014;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2018;" u2="d" k="143" />
+<hkern u1="&#x2018;" u2="c" k="143" />
+<hkern u1="&#x2018;" u2="X" k="20" />
+<hkern u1="&#x2018;" u2="W" k="-49" />
+<hkern u1="&#x2018;" u2="J" k="-31" />
+<hkern u1="&#x2019;" u2="&#x20;" k="-29" />
+<hkern u1="&#x201a;" u2="W" k="266" />
+<hkern u1="&#x201c;" u2="d" k="143" />
+<hkern u1="&#x201c;" u2="W" k="-49" />
+<hkern u1="&#x201e;" u2="W" k="266" />
+<hkern u1="&#x2039;" u2="W" k="61" />
+<hkern u1="&#x203a;" u2="W" k="123" />
+<hkern u1="&#x20ac;" u2="&#x36;" k="-59" />
+<hkern g1="uniFB01" u2="q" k="-14" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-47" />
+<hkern g1="uniFB03" u2="q" k="-14" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-47" />
+<hkern g1="d" 	g2="b,h,k,l,thorn" 	k="-6" />
+<hkern g1="d" 	g2="w" 	k="18" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-45" />
+<hkern g1="d" 	g2="quoteright,quotedblright" 	k="41" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="g" 	k="29" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,ellipsis" 	k="-27" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="8" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="z" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="t" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-104" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-61" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-160" />
+<hkern g1="f" 	g2="x" 	k="37" />
+<hkern g1="f" 	g2="g" 	k="27" />
+<hkern g1="f" 	g2="comma,period,ellipsis" 	k="68" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-219" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-74" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-180" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-221" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-178" />
+<hkern g1="f" 	g2="z" 	k="20" />
+<hkern g1="f" 	g2="t" 	k="-14" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-102" />
+<hkern g1="f" 	g2="T" 	k="-186" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-184" />
+<hkern g1="f" 	g2="V" 	k="-207" />
+<hkern g1="f" 	g2="X" 	k="-147" />
+<hkern g1="f" 	g2="Z" 	k="-145" />
+<hkern g1="f" 	g2="j" 	k="-86" />
+<hkern g1="f" 	g2="s" 	k="4" />
+<hkern g1="f" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-8" />
+<hkern g1="f" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-10" />
+<hkern g1="g" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="g" 	g2="w" 	k="-8" />
+<hkern g1="g" 	g2="x" 	k="12" />
+<hkern g1="g" 	g2="g" 	k="-31" />
+<hkern g1="g" 	g2="comma,period,ellipsis" 	k="12" />
+<hkern g1="g" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="g" 	g2="quoteright,quotedblright" 	k="-63" />
+<hkern g1="g" 	g2="parenright,bracketright,braceright" 	k="-127" />
+<hkern g1="g" 	g2="j" 	k="-53" />
+<hkern g1="g" 	g2="s" 	k="31" />
+<hkern g1="g" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-63" />
+<hkern g1="g" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="g" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="b,h,k,l,thorn" 	k="-10" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="comma,period,ellipsis" 	k="-68" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="z" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="j" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="s" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-14" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="14" />
+<hkern g1="k" 	g2="w" 	k="8" />
+<hkern g1="k" 	g2="g" 	k="23" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="k" 	g2="t" 	k="16" />
+<hkern g1="k" 	g2="j" 	k="14" />
+<hkern g1="k" 	g2="s" 	k="8" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="16" />
+<hkern g1="k" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="g" 	k="12" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteright,quotedblright" 	k="-2" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-49" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-76" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotleft,guilsinglleft" 	k="-143" />
+<hkern g1="j" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="j" 	g2="w" 	k="8" />
+<hkern g1="j" 	g2="x" 	k="25" />
+<hkern g1="j" 	g2="comma,period,ellipsis" 	k="43" />
+<hkern g1="j" 	g2="s" 	k="14" />
+<hkern g1="j" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-14" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-55" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="57" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="66" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="parenright,bracketright,braceright" 	k="-33" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-106" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotleft,guilsinglleft" 	k="-102" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="s" 	k="12" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="25" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="49" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="147" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="z" 	k="31" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-6" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="72" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="r" 	g2="w" 	k="29" />
+<hkern g1="r" 	g2="x" 	k="72" />
+<hkern g1="r" 	g2="g" 	k="47" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="211" />
+<hkern g1="r" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="14" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-41" />
+<hkern g1="r" 	g2="t" 	k="2" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="r" 	g2="j" 	k="18" />
+<hkern g1="r" 	g2="s" 	k="29" />
+<hkern g1="r" 	g2="m,n,p,r,ntilde" 	k="-8" />
+<hkern g1="r" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="r" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="61" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="8" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="s" 	g2="g" 	k="23" />
+<hkern g1="s" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="s" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="s" 	g2="z" 	k="14" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-86" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="s" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="t" 	g2="g" 	k="16" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="16" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="x" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="53" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="55" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="137" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="12" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="78" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="33" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-25" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="2" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="12" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="w" 	g2="w" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="94" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="127" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="12" />
+<hkern g1="w" 	g2="s" 	k="12" />
+<hkern g1="w" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="z" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="z" 	g2="g" 	k="12" />
+<hkern g1="z" 	g2="comma,period,ellipsis" 	k="-68" />
+<hkern g1="z" 	g2="t" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="78" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="70" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="g" 	k="68" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="238" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="244" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="246" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotright,guilsinglright" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="33" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="233" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="115" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="250" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="25" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="53" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="s" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="49" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="31" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="113" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-61" />
+<hkern g1="B" 	g2="x" 	k="27" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="150" />
+<hkern g1="B" 	g2="z" 	k="41" />
+<hkern g1="B" 	g2="V" 	k="66" />
+<hkern g1="B" 	g2="X" 	k="25" />
+<hkern g1="B" 	g2="Z" 	k="4" />
+<hkern g1="B" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-4" />
+<hkern g1="B" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-8" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="B" 	g2="AE" 	k="84" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="18" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="98" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="59" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-20" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="88" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="61" />
+<hkern g1="C,Ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="2" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="27" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="39" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="39" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="18" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="33" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="102" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="b,h,k,l,thorn" 	k="2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="-8" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="98" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="55" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="94" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="45" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="-4" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="6" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="57" />
+<hkern g1="G" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="G" 	g2="g" 	k="10" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="111" />
+<hkern g1="G" 	g2="T" 	k="90" />
+<hkern g1="G" 	g2="V" 	k="102" />
+<hkern g1="G" 	g2="X" 	k="72" />
+<hkern g1="G" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="G" 	g2="S" 	k="6" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="25" />
+<hkern g1="G" 	g2="AE" 	k="117" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="b,h,k,l,thorn" 	k="-8" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="27" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-78" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-63" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="X" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="s" 	k="14" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="37" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="25" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="117" />
+<hkern g1="K" 	g2="w" 	k="121" />
+<hkern g1="K" 	g2="x" 	k="25" />
+<hkern g1="K" 	g2="g" 	k="72" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-49" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="84" />
+<hkern g1="K" 	g2="z" 	k="72" />
+<hkern g1="K" 	g2="t" 	k="111" />
+<hkern g1="K" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="172" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="K" 	g2="T" 	k="104" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="80" />
+<hkern g1="K" 	g2="V" 	k="61" />
+<hkern g1="K" 	g2="X" 	k="29" />
+<hkern g1="K" 	g2="Z" 	k="41" />
+<hkern g1="K" 	g2="s" 	k="98" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="86" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="90" />
+<hkern g1="K" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="K" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="88" />
+<hkern g1="K" 	g2="J" 	k="4" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="100" />
+<hkern g1="K" 	g2="S" 	k="135" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="2" />
+<hkern g1="K" 	g2="AE" 	k="20" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="123" />
+<hkern g1="L" 	g2="w" 	k="115" />
+<hkern g1="L" 	g2="x" 	k="47" />
+<hkern g1="L" 	g2="g" 	k="88" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-66" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="96" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="281" />
+<hkern g1="L" 	g2="z" 	k="61" />
+<hkern g1="L" 	g2="t" 	k="102" />
+<hkern g1="L" 	g2="guillemotright,guilsinglright" 	k="-20" />
+<hkern g1="L" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
+<hkern g1="L" 	g2="T" 	k="270" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="162" />
+<hkern g1="L" 	g2="V" 	k="279" />
+<hkern g1="L" 	g2="X" 	k="59" />
+<hkern g1="L" 	g2="Z" 	k="49" />
+<hkern g1="L" 	g2="s" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="98" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="86" />
+<hkern g1="L" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
+<hkern g1="L" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="L" 	g2="J" 	k="68" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="L" 	g2="S" 	k="96" />
+<hkern g1="L" 	g2="AE" 	k="53" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="M" 	g2="w" 	k="20" />
+<hkern g1="M" 	g2="x" 	k="12" />
+<hkern g1="M" 	g2="g" 	k="31" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="37" />
+<hkern g1="M" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="M" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="M" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="2" />
+<hkern g1="M" 	g2="AE" 	k="45" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="b,h,k,l,thorn" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="x" 	k="18" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="g" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="t" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="72" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="59" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="90" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="125" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-14" />
+<hkern g1="P" 	g2="w" 	k="-10" />
+<hkern g1="P" 	g2="x" 	k="76" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="P" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-2" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="84" />
+<hkern g1="P" 	g2="z" 	k="76" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="T" 	k="47" />
+<hkern g1="P" 	g2="V" 	k="39" />
+<hkern g1="P" 	g2="X" 	k="129" />
+<hkern g1="P" 	g2="Z" 	k="25" />
+<hkern g1="P" 	g2="s" 	k="37" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-4" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="P" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="P" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="90" />
+<hkern g1="P" 	g2="J" 	k="23" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-6" />
+<hkern g1="P" 	g2="S" 	k="12" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
+<hkern g1="P" 	g2="AE" 	k="205" />
+<hkern g1="R" 	g2="b,h,k,l,thorn" 	k="88" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="R" 	g2="w" 	k="72" />
+<hkern g1="R" 	g2="x" 	k="-8" />
+<hkern g1="R" 	g2="g" 	k="66" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-94" />
+<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="R" 	g2="z" 	k="33" />
+<hkern g1="R" 	g2="t" 	k="66" />
+<hkern g1="R" 	g2="guillemotright,guilsinglright" 	k="8" />
+<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-10" />
+<hkern g1="R" 	g2="T" 	k="98" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="111" />
+<hkern g1="R" 	g2="V" 	k="119" />
+<hkern g1="R" 	g2="X" 	k="39" />
+<hkern g1="R" 	g2="Z" 	k="23" />
+<hkern g1="R" 	g2="j" 	k="37" />
+<hkern g1="R" 	g2="s" 	k="25" />
+<hkern g1="R" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="66" />
+<hkern g1="R" 	g2="m,n,p,r,ntilde" 	k="33" />
+<hkern g1="R" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
+<hkern g1="R" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
+<hkern g1="R" 	g2="J" 	k="14" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="R" 	g2="S" 	k="61" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-10" />
+<hkern g1="R" 	g2="AE" 	k="27" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="S" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="S" 	g2="z" 	k="25" />
+<hkern g1="S" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="S" 	g2="T" 	k="41" />
+<hkern g1="S" 	g2="V" 	k="78" />
+<hkern g1="S" 	g2="X" 	k="47" />
+<hkern g1="S" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="S" 	g2="AE" 	k="61" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="39" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="74" />
+<hkern g1="T" 	g2="w" 	k="68" />
+<hkern g1="T" 	g2="x" 	k="141" />
+<hkern g1="T" 	g2="g" 	k="199" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="172" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="33" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="T" 	g2="z" 	k="117" />
+<hkern g1="T" 	g2="t" 	k="115" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="6" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="84" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="4" />
+<hkern g1="T" 	g2="X" 	k="55" />
+<hkern g1="T" 	g2="j" 	k="33" />
+<hkern g1="T" 	g2="s" 	k="164" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="129" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="86" />
+<hkern g1="T" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="139" />
+<hkern g1="T" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="190" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="T" 	g2="S" 	k="2" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="152" />
+<hkern g1="T" 	g2="AE" 	k="190" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="88" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="18" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Y,Yacute,Ydieresis" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="49" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="S" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="78" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="113" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="2" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="V,W" 	g2="w" 	k="131" />
+<hkern g1="V,W" 	g2="x" 	k="156" />
+<hkern g1="V,W" 	g2="g" 	k="211" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="238" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="49" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-80" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="V,W" 	g2="z" 	k="170" />
+<hkern g1="V,W" 	g2="t" 	k="123" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="47" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="4" />
+<hkern g1="V,W" 	g2="X" 	k="25" />
+<hkern g1="V,W" 	g2="Z" 	k="41" />
+<hkern g1="V,W" 	g2="j" 	k="23" />
+<hkern g1="V,W" 	g2="s" 	k="174" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="94" />
+<hkern g1="V,W" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="139" />
+<hkern g1="V,W" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="160" />
+<hkern g1="V,W" 	g2="J" 	k="18" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
+<hkern g1="V,W" 	g2="S" 	k="63" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="168" />
+<hkern g1="V,W" 	g2="AE" 	k="240" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="-12" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="211" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="63" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-68" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="197" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="63" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="6" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="14" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="66" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="31" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="92" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="172" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="143" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="164" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="53" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="223" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="16" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="w" 	k="129" />
+<hkern g1="X" 	g2="x" 	k="88" />
+<hkern g1="X" 	g2="g" 	k="84" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="43" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="39" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="X" 	g2="z" 	k="51" />
+<hkern g1="X" 	g2="t" 	k="88" />
+<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="X" 	g2="guillemotleft,guilsinglleft" 	k="180" />
+<hkern g1="X" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="X" 	g2="T" 	k="74" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="8" />
+<hkern g1="X" 	g2="V" 	k="27" />
+<hkern g1="X" 	g2="j" 	k="68" />
+<hkern g1="X" 	g2="s" 	k="88" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="106" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="109" />
+<hkern g1="X" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
+<hkern g1="X" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="102" />
+<hkern g1="X" 	g2="J" 	k="18" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="X" 	g2="S" 	k="111" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="47" />
+<hkern g1="Z" 	g2="w" 	k="76" />
+<hkern g1="Z" 	g2="g" 	k="8" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-133" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="94" />
+<hkern g1="Z" 	g2="t" 	k="82" />
+<hkern g1="Z" 	g2="guillemotright,guilsinglright" 	k="-43" />
+<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="18" />
+<hkern g1="Z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-8" />
+<hkern g1="Z" 	g2="T" 	k="12" />
+<hkern g1="Z" 	g2="V" 	k="35" />
+<hkern g1="Z" 	g2="X" 	k="41" />
+<hkern g1="Z" 	g2="s" 	k="61" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="45" />
+<hkern g1="Z" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="Z" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="Z" 	g2="J" 	k="-6" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
+<hkern g1="Z" 	g2="S" 	k="35" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-31" />
+<hkern g1="Z" 	g2="AE" 	k="23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-86" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="61" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-61" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-51" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-119" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-76" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-88" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-80" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="188" />
+<hkern g1="guillemotright,guilsinglright" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="164" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="s" 	k="-70" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-98" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-76" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-61" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-96" />
+<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-53" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-45" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-66" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-61" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="14" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="143" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="270" />
+<hkern g1="quoteright,quotedblright" 	g2="b,h,k,l,thorn" 	k="-33" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-12" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="352" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="246" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="190" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="354" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-98" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="82" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-115" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-68" />
+<hkern g1="hyphen,endash,emdash" 	g2="t" 	k="-41" />
+<hkern g1="hyphen,endash,emdash" 	g2="s" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="v,y,yacute,ydieresis" 	k="55" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-12" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-66" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-25" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-125" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-254" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-162" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-4" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..1690e2cb7a696f8d42263cffb4a19202e51213df
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.woff
new file mode 100755
index 0000000000000000000000000000000000000000..c47e7cf8045e19378bcee65b7268a642177be788
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXBoldIta.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.eot
new file mode 100755
index 0000000000000000000000000000000000000000..204f9c693101af9039f5a6c677b05b3228e5a7a2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.svg
new file mode 100755
index 0000000000000000000000000000000000000000..e69f268825389e7ecc632a1a07b6b48643f14511
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.svg
@@ -0,0 +1,2056 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-extralightregular" horiz-adv-x="1185" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1269" d="M72 827v62q67 16 116 41q26 16 37.5 41.5t18.5 91.5q12 117 47.5 196t97.5 134q55 47 139 75.5t181 28.5q148 0 215 -29q53 -20 53 -84q0 -51 -12 -153h-80q-7 70 -24 102t-44 49q-36 23 -137 23q-76 0 -145.5 -29.5t-110.5 -85.5q-76 -101 -76 -309v-63h496 q70 36 112 36q36 0 54 -24t18 -92q0 -95 -2 -309.5t-2 -311.5q0 -89 14 -108q9 -14 38 -20.5t110 -12.5v-78q-180 4 -242 4q-14 0 -194 -4v78q81 7 111 12t40 18q17 20 17 109v451q0 70 -5 95.5t-20 41.5q-24 24 -137 24h-408v-589q0 -105 17 -127q9 -18 44 -24.5t156 -10.5 v-78q-192 4 -243 4q-58 0 -246 -4v78q76 4 108.5 12t44.5 23q15 20 15 98v618h-172z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1273" d="M72 827v62q67 16 116 41q28 17 40.5 43t15.5 90q6 121 39.5 199t99.5 137q54 46 137.5 72t177.5 26q106 0 185 -16q43 16 69 16q21 0 32 -2.5t23.5 -12.5t17.5 -34.5t5 -65.5q0 -16 -1 -215.5t-1 -292.5v-655q0 -89 14 -108q9 -14 39 -21.5t109 -13.5v-78q-176 4 -240 4 q-14 0 -194 -4v78q78 6 110 13t41 20q17 20 17 108v678q0 207 -2 311q-3 114 -45 150q-65 49 -197 49q-189 0 -266 -115q-66 -92 -66 -282v-86q185 0 287 -4v-84q-158 -7 -287 -7v-589q0 -105 17 -127q9 -18 44 -24.5t156 -10.5v-78q-192 4 -243 4q-58 0 -246 -4v78 q76 4 108.5 12t44.5 23q15 20 15 98v618h-172z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1955" d="M72 827v62q67 16 116 41q27 16 39.5 42t16.5 91q11 190 114 300t287 110q88 0 150 -23q51 -19 51 -86q0 -10 -15 -143h-67q-7 77 -18 104.5t-35 40.5q-31 16 -99 16q-67 0 -121.5 -26.5t-82.5 -79.5q-60 -108 -60 -268v-90h430q101 0 131 34q5 5 8 12.5t5 19t3 21t2.5 28 t2.5 30.5q23 221 147 330q56 47 139 75.5t181 28.5q148 0 215 -29q51 -19 51 -84q0 -68 -10 -153h-80q-7 71 -24.5 103t-45.5 48q-36 25 -137 25q-75 0 -144.5 -30.5t-109.5 -86.5q-76 -101 -76 -309v-63h496q70 36 113 36q35 0 52 -22.5t17 -87.5q0 -95 -2 -312.5 t-2 -314.5q0 -53 3 -74.5t13 -33.5q9 -14 37.5 -20.5t108.5 -12.5v-78q-176 4 -242 4q-12 0 -192 -4v78q81 7 111 12t38 18q19 19 19 109v451q0 70 -5.5 95.5t-21.5 41.5q-20 24 -135 24h-408v-589q0 -104 15 -127q11 -18 45 -24.5t155 -10.5v-78q-188 4 -243 4 q-54 0 -246 -4v78q78 4 110 12t43 23q15 20 15 98v618h-582v-589q0 -105 17 -127q9 -18 44 -24.5t156 -10.5v-78q-192 4 -243 4q-58 0 -246 -4v78q76 4 108.5 12t44.5 23q15 20 15 98v618h-172z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1959" d="M72 827v62q67 16 116 41q27 16 39.5 42t16.5 91q11 190 114 300t287 110q88 0 150 -23q51 -19 51 -86q0 -10 -15 -143h-67q-7 77 -18 104.5t-35 40.5q-31 16 -99 16q-67 0 -121.5 -26.5t-82.5 -79.5q-60 -108 -60 -270v-88h430q101 0 131 34q3 3 5 6.5t3.5 8.5t3 9 t2.5 11.5t2 12t1.5 14.5t1 14.5t1.5 17t1 17.5q9 123 42 200.5t99 135.5q54 46 137 72t176 26q106 0 187 -16q43 16 69 16q21 0 31.5 -2.5t22.5 -12.5t17 -34.5t5 -65.5q0 -16 -1 -215.5t-1 -292.5v-655q0 -89 17 -108q9 -14 38.5 -21.5t106.5 -13.5v-78q-176 4 -240 4 q-12 0 -192 -4v78q77 6 108.5 13t40.5 20q19 19 19 108v678q0 207 -2 311q-3 111 -45 150q-67 51 -197 51q-189 0 -266 -115q-66 -92 -66 -284v-86q183 0 287 -4v-84q-158 -7 -287 -7v-589q0 -104 15 -127q11 -18 45 -24.5t155 -10.5v-78q-188 4 -243 4q-54 0 -246 -4v78 q78 4 110 12t43 23q15 20 15 98v618h-582v-589q0 -105 17 -127q9 -18 44 -24.5t156 -10.5v-78q-192 4 -243 4q-58 0 -246 -4v78q76 4 108.5 12t44.5 23q15 20 15 98v618h-172z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="577" d="M219 82q0 48 30.5 78t74.5 30q45 0 74.5 -28t29.5 -74q0 -50 -28 -80.5t-74 -30.5q-44 0 -75.5 31t-31.5 74zM248 1323q0 104 86 104q80 0 80 -104q0 -77 -52 -893h-67q-47 773 -47 893z" />
+<glyph unicode="&#x22;" horiz-adv-x="604" d="M78 1362q0 49 18.5 72.5t61.5 23.5q42 0 58.5 -24.5t16.5 -71.5q0 -27 -43 -469h-71q-41 394 -41 469zM371 1362q0 49 18.5 72.5t61.5 23.5q42 0 58.5 -24.5t16.5 -71.5q0 -27 -43 -469h-71q-41 394 -41 469z" />
+<glyph unicode="#" horiz-adv-x="1132" d="M96 440v129h232l51 254h-197v133h217l82 414h84l-84 -414h271l84 414h77l-79 -414h202v-133h-229l-51 -254h188v-129h-213l-90 -467h-78l88 467h-270l-94 -467h-76l88 467h-203zM403 569h275l49 254h-272z" />
+<glyph unicode="$" horiz-adv-x="1101" d="M154 242q0 29 4 123h78q9 -87 29.5 -131.5t51.5 -73.5q59 -59 203 -68v543l-102 45q-122 53 -180 135t-58 180q0 135 86.5 229.5t253.5 118.5v222h90v-213h19q130 0 239 -41q70 -28 70 -105q0 -60 -16 -182h-78q-7 93 -21.5 129t-40.5 57q-54 42 -172 45v-526l135 -57 q232 -100 232 -312q0 -153 -99 -246.5t-268 -111.5v-238h-90v236q-160 3 -266 55q-58 31 -79 73.5t-21 113.5zM301 1018q0 -81 45 -137t174 -113v483q-112 -16 -165.5 -80t-53.5 -153zM610 94q120 11 184 79t64 157q0 85 -47 143t-156 105l-45 18v-502z" />
+<glyph unicode="%" horiz-adv-x="1654" d="M68 930q0 211 81.5 324.5t229.5 113.5q158 0 226.5 -107.5t68.5 -312.5q0 -230 -83.5 -339t-219.5 -109q-156 0 -229.5 107.5t-73.5 322.5zM170 948q0 -195 51 -280.5t152 -85.5q96 0 147 92.5t51 263.5q0 185 -48.5 266.5t-147.5 81.5q-101 0 -153 -88t-52 -250zM498 16 l592 1364l77 -28l-592 -1368zM981 414q0 211 81.5 324.5t229.5 113.5q159 0 227 -107.5t68 -314.5q0 -229 -83.5 -337.5t-219.5 -108.5q-156 0 -229.5 106.5t-73.5 323.5zM1083 430q0 -193 51 -278.5t152 -85.5q96 0 147.5 92t51.5 262q0 185 -49 267.5t-148 82.5 q-101 0 -153 -88t-52 -252z" />
+<glyph unicode="&#x26;" horiz-adv-x="1499" d="M111 367q0 145 78 240.5t247 174.5q-104 159 -104 312q0 138 95 229.5t261 91.5q142 0 219.5 -75.5t77.5 -198.5q0 -133 -99 -223.5t-298 -176.5q60 -100 173.5 -230t225.5 -235q77 82 137 246q21 57 21 92q0 13 -5.5 23t-17 16.5t-22.5 10.5t-30 5.5t-31 2.5t-33.5 1.5 t-30.5 0.5v80q118 -4 221 -4q104 0 240 4v-80q-62 -2 -92.5 -9t-47.5 -26q-11 -11 -65 -133q-36 -81 -83.5 -162.5t-88.5 -126.5q50 -53 148 -99t188 -46q27 0 39 2v-90q-25 -2 -68 -2q-129 0 -218 39t-169 108q-172 -156 -412 -156q-210 0 -333 113t-123 281zM236 387 q0 -60 21 -114.5t62 -100.5t111 -73t160 -27q180 0 315 121q-105 101 -230.5 252t-189.5 253q-94 -39 -151 -89.5t-77.5 -103t-20.5 -118.5zM444 1096q0 -125 99 -271q171 62 252.5 141.5t81.5 168.5q0 87 -52 136.5t-145 49.5q-65 0 -113 -19.5t-73.5 -53t-37.5 -71 t-12 -81.5z" />
+<glyph unicode="'" horiz-adv-x="309" d="M78 1362q0 49 18.5 72.5t61.5 23.5q42 0 58.5 -24.5t16.5 -71.5q0 -27 -43 -469h-71q-41 394 -41 469z" />
+<glyph unicode="(" horiz-adv-x="618" d="M86 594q0 326 116.5 563.5t348.5 427.5l51 -49q-96 -99 -160 -184t-119.5 -197.5t-82.5 -251t-27 -309.5q0 -156 29 -293t85 -250.5t121.5 -204.5t153.5 -184l-47 -49q-219 164 -344 415t-125 566z" />
+<glyph unicode=")" horiz-adv-x="618" d="M16 -338q96 99 160 184t120 197.5t83 251t27 309.5q0 156 -29.5 293t-85.5 250.5t-121.5 204.5t-153.5 184l47 49q219 -164 344 -415t125 -566q0 -326 -116 -563.5t-348 -427.5z" />
+<glyph unicode="*" horiz-adv-x="823" d="M84 1153q0 30 16.5 52t49.5 22q20 0 66.5 -24t174.5 -101q-4 19 -16 73t-16.5 76t-9.5 54t-5 53q0 67 66 67q31 0 48 -13.5t17 -53.5q0 -54 -35 -256q115 71 162.5 95t75.5 24t44.5 -17.5t16.5 -46.5q0 -30 -12.5 -46.5t-50.5 -23.5q-162 -28 -230 -38 q120 -105 157.5 -149.5t37.5 -80.5q0 -26 -21.5 -42.5t-44.5 -16.5q-39 0 -66.5 45.5t-100.5 216.5q-49 -117 -76 -170.5t-47.5 -72.5t-48.5 -19q-20 0 -40 17.5t-20 43.5q0 31 40 81t157 151q-32 5 -77 10.5t-77 10.5t-69 13q-36 9 -51 23.5t-15 42.5z" />
+<glyph unicode="+" d="M133 573v117h404v447h110v-447h402v-117h-402v-444h-110v444h-404z" />
+<glyph unicode="," horiz-adv-x="432" d="M20 -303q112 67 157.5 127t45.5 125q0 46 -43 63q-25 10 -38.5 17.5t-24.5 26.5t-11 48q0 39 29 62.5t72 23.5q62 0 98.5 -41.5t36.5 -117.5q0 -236 -293 -391z" />
+<glyph unicode="-" horiz-adv-x="534" d="M59 442v119h410v-119h-410z" />
+<glyph unicode="." horiz-adv-x="428" d="M106 82q0 48 30.5 78t72.5 30q47 0 76.5 -28t29.5 -74q0 -49 -29 -80t-75 -31q-42 0 -73.5 31.5t-31.5 73.5z" />
+<glyph unicode="/" horiz-adv-x="686" d="M39 -135l493 1632l97 -29l-494 -1632z" />
+<glyph unicode="0" horiz-adv-x="1067" d="M84 666q0 347 120.5 526.5t340.5 179.5q235 0 336.5 -169.5t101.5 -508.5q0 -158 -23 -282t-63.5 -206t-98 -135.5t-123 -76.5t-143.5 -23q-232 0 -340 170.5t-108 524.5zM205 696q0 -174 22 -296.5t66 -194t103.5 -103.5t140.5 -32q157 0 241 156t84 452 q0 220 -37 352.5t-106 188t-178 55.5q-166 0 -251 -148.5t-85 -429.5z" />
+<glyph unicode="1" horiz-adv-x="1067" d="M246 1225q106 66 250 133q40 16 67 16q49 0 49 -76q0 -34 -1 -199t-1 -276v-616q0 -77 15 -98q16 -24 202 -33v-78q-168 4 -295 4q-81 0 -253 -4v78q176 9 194 30q21 19 21 99v629q0 246 -9 323q-5 51 -49 51q-49 0 -170 -41z" />
+<glyph unicode="2" horiz-adv-x="1067" d="M59 0v76q169 134 291.5 246.5t220.5 228t147.5 223.5t49.5 209q0 291 -276 291q-162 0 -226 -76q-29 -42 -43 -156h-63q-19 126 -19 148q0 47 19 74.5t69 52.5q112 55 275 55q192 0 292.5 -94t100.5 -277q0 -208 -169.5 -433t-471.5 -451q48 0 182.5 1t165.5 1h80 t60.5 3.5t46.5 6t32.5 13.5t25.5 19t18.5 29.5t17.5 39.5t18 53h66q-6 -126 -21 -211q-12 -72 -123 -72h-766z" />
+<glyph unicode="3" horiz-adv-x="1067" d="M129 143q0 79 12 156h72q8 -105 47 -149q68 -80 225 -80q173 0 258.5 77.5t85.5 217.5q0 117 -85 195t-263 91q-49 4 -147 4v86q99 4 141 11q144 24 221.5 104.5t77.5 183.5q0 46 -11.5 85t-38 74.5t-76.5 56t-120 20.5q-166 0 -223 -64q-32 -36 -47 -159h-65 q-15 96 -15 139q0 47 19 75.5t67 51.5q112 53 268 53q178 0 270.5 -87.5t92.5 -231.5q0 -128 -81.5 -218.5t-240.5 -123.5q181 -9 279 -98t98 -244q0 -190 -124 -294t-345 -104q-150 0 -260 43q-51 20 -71.5 50t-20.5 79z" />
+<glyph unicode="4" horiz-adv-x="1067" d="M82 367v65l592 891q36 51 88 51q59 0 59 -80q0 -46 -1 -145.5t-1 -134.5v-539h205v-106h-205v-138q0 -101 15 -122q20 -33 180 -41v-70q-168 4 -273 4q-61 0 -233 -4v70q157 11 178 38q16 21 16 127v134h-620zM221 469h481q0 334 9 739z" />
+<glyph unicode="5" horiz-adv-x="1067" d="M119 143q0 92 12 156h72q8 -109 45 -156q65 -73 223 -73q179 0 267.5 96.5t88.5 249.5q0 68 -19.5 125t-59 102t-107.5 70.5t-158 25.5q-69 0 -133 -22q-57 -17 -84 -17q-55 0 -55 60q0 28 4 74l47 505h639v-118h-559l-35 -408q107 31 221 31q190 0 305 -105.5 t115 -312.5q0 -200 -126 -327.5t-351 -127.5q-161 0 -260 43q-52 23 -72 52t-20 77z" />
+<glyph unicode="6" horiz-adv-x="1067" d="M115 578q0 391 139.5 592.5t407.5 201.5q119 0 186 -22q50 -18 72 -44t22 -73q0 -82 -16 -160h-70q-12 119 -45 152q-47 47 -160 47q-384 0 -413 -594q44 71 142 119.5t208 48.5q172 0 280.5 -108t108.5 -287q0 -118 -35 -211.5t-95 -151t-136.5 -87.5t-163.5 -30 q-198 0 -315 150.5t-117 456.5zM240 569q0 -114 4 -151q8 -75 28.5 -136t56.5 -110t92.5 -75.5t129.5 -26.5q136 0 219.5 90t83.5 256q0 159 -78.5 243t-218.5 84q-94 0 -178 -43.5t-139 -130.5z" />
+<glyph unicode="7" horiz-adv-x="1067" d="M88 1239q0 47 24.5 73.5t96.5 26.5h768v-67l-545 -1280q-14 -39 -51 -39q-29 0 -46.5 12t-17.5 33q0 17 9 35l512 1188h-346q-206 0 -242 -7q-35 -7 -49 -45t-27 -137h-72q-14 140 -14 207z" />
+<glyph unicode="8" horiz-adv-x="1067" d="M111 326q0 241 295 374q-136 77 -188 159.5t-52 174.5q0 151 103.5 244.5t283.5 93.5q175 0 270 -86.5t95 -234.5q0 -105 -62 -190.5t-199 -162.5q119 -52 185.5 -108.5t90 -115.5t23.5 -142q0 -159 -118 -260t-308 -101q-189 0 -304 97.5t-115 257.5zM229 334 q0 -123 88 -193.5t220 -70.5q136 0 216.5 68t80.5 186q0 48 -15 87t-39 68.5t-72 60.5t-96.5 55t-130.5 60q-143 -84 -197.5 -152.5t-54.5 -168.5zM285 1055q0 -93 65.5 -165.5t222.5 -146.5q228 139 228 299q0 107 -66 169.5t-182 62.5q-120 0 -194 -58.5t-74 -160.5z" />
+<glyph unicode="9" horiz-adv-x="1067" d="M92 897q0 118 36 210.5t97.5 149t139 86t165.5 29.5q201 0 311.5 -147.5t110.5 -454.5q0 -397 -135 -598t-401 -201q-98 0 -191 27q-47 13 -72.5 46t-25.5 79q0 95 10 156h72q8 -109 47 -154q53 -53 170 -53q57 0 106 12.5t102 52t91.5 103t67 175t36.5 259.5 q-45 -69 -142.5 -118.5t-207.5 -49.5q-173 0 -280 106t-107 285zM215 930q0 -158 77 -239t216 -81q96 0 180 43.5t139 130.5q0 109 -4 144q-42 346 -313 346q-133 0 -214 -90t-81 -254z" />
+<glyph unicode=":" horiz-adv-x="471" d="M150 82q0 48 30.5 78t71.5 30q47 0 76.5 -28t29.5 -74q0 -49 -29 -80t-75 -31q-42 0 -73 31.5t-31 73.5zM150 776q0 45 31 77t71 32q46 0 76 -29.5t30 -73.5q0 -50 -29 -80t-75 -30q-42 0 -73 29.5t-31 74.5z" />
+<glyph unicode=";" horiz-adv-x="471" d="M63 -303q112 67 157.5 127t45.5 125q0 49 -41 63q-38 12 -56.5 31t-18.5 61q0 38 30 62t70 24q62 0 98.5 -41.5t36.5 -117.5q0 -236 -293 -391zM150 776q0 45 31 77t71 32q46 0 76 -29.5t30 -73.5q0 -50 -29 -80t-75 -30q-42 0 -73 29.5t-31 74.5z" />
+<glyph unicode="&#x3c;" d="M184 565v127l764 420v-133l-649 -348l649 -344v-137z" />
+<glyph unicode="=" d="M131 410v114h920v-114h-920zM131 754v114h920v-114h-920z" />
+<glyph unicode="&#x3e;" d="M236 150v135l649 348l-649 342v137l759 -414v-125z" />
+<glyph unicode="?" horiz-adv-x="825" d="M127 1282q0 43 29.5 72.5t80.5 43.5t100.5 19.5t106.5 5.5q169 -2 256.5 -82.5t87.5 -238.5q0 -119 -67.5 -216.5t-228.5 -185.5q-64 -37 -74 -114q-7 -54 -10 -156h-68q-14 137 -14 195q0 52 27.5 85t84.5 64q215 122 215 313q0 33 -4 63t-18 63.5t-36 58t-61.5 40.5 t-91.5 17q-137 0 -182 -37q-38 -30 -41 -155h-72q-20 86 -20 145zM276 82q0 48 30.5 78t72.5 30q46 0 75 -27.5t29 -74.5q0 -50 -28 -80.5t-74 -30.5q-42 0 -73.5 31.5t-31.5 73.5z" />
+<glyph unicode="@" horiz-adv-x="1585" d="M70 414q0 135 37 263t109.5 237.5t172.5 191.5t234 129t286 47q100 0 185.5 -19t147 -51t110.5 -75.5t80.5 -91t52 -99t29 -97.5t8.5 -89q0 -189 -60.5 -317t-189.5 -242q-46 -40 -115.5 -71.5t-112.5 -31.5q-61 0 -85.5 28t-24.5 87q0 4 1 19.5t1 19.5 q-152 -158 -311 -158q-238 0 -238 281q0 118 62.5 253.5t164.5 217.5q73 61 132.5 84.5t156.5 23.5q104 0 184 -49l31 70h88l-112 -420q-52 -189 -52 -299q0 -49 45 -49q24 0 66.5 22t75.5 52q83 73 134.5 197t51.5 270q0 197 -142.5 321.5t-365.5 124.5q-206 0 -371.5 -101 t-259.5 -281.5t-94 -405.5q0 -176 85.5 -311.5t229 -206t320.5 -70.5q179 0 341 61.5t288 173.5l57 -67q-145 -134 -322.5 -201.5t-367.5 -67.5q-162 0 -299 49t-235.5 138.5t-153.5 220.5t-55 289zM502 373q0 -178 149 -178q64 0 146.5 44t142.5 101q4 25 11.5 55t17.5 68 t16 61l78 295q-88 45 -191 45q-57 0 -100.5 -18t-91.5 -60q-76 -69 -127 -184.5t-51 -228.5z" />
+<glyph unicode="A" horiz-adv-x="1413" d="M8 -2v80q110 6 146 31q18 11 32 40t45 113l406 1102q20 57 74 57q25 0 40.5 -12t28.5 -45l416 -1124q24 -64 39 -92.5t33 -41.5q25 -25 135 -28v-80q-132 4 -258 4q-122 0 -248 -4v80q107 6 143 12q50 9 50 45q0 49 -31 129l-94 252h-541l-86 -242q-33 -94 -33 -135 q0 -32 25 -43q12 -4 42 -7.5t73.5 -6.5t52.5 -4v-80q-118 4 -250 4q-122 0 -240 -4zM457 606h477l-242 660z" />
+<glyph unicode="B" horiz-adv-x="1249" d="M82 0v78q128 5 156 16q16 8 22.5 16.5t10 32.5t3.5 76v940q0 100 -14 117q-13 16 -49 23t-129 10v75h330q249 0 348 -12q152 -23 226.5 -103t74.5 -206q0 -120 -70 -205.5t-203 -118.5q174 -20 261.5 -109.5t87.5 -228.5q0 -112 -44.5 -195.5t-148.5 -139.5 q-118 -66 -340 -66h-522zM391 166q0 -38 13 -52t49 -22q35 -8 155 -8q191 0 291 78t100 225q0 82 -39 147t-100 95q-56 29 -134 40t-216 11h-119v-514zM391 772h113q57 0 129.5 6.5t95.5 12.5q199 59 199 256q0 89 -48.5 146.5t-131.5 80.5q-73 20 -242 20h-115v-522z" />
+<glyph unicode="C" horiz-adv-x="1370" d="M111 668q0 172 52 313t145.5 236t225 146.5t289.5 51.5q178 0 320 -43q94 -28 94 -115q0 -103 -18 -198h-70q-11 152 -47 188q-29 30 -107.5 49t-187.5 19q-120 0 -224 -42t-181 -120.5t-121.5 -198t-44.5 -266.5q0 -155 44 -275t123 -193.5t181 -110.5t223 -37 q100 0 176.5 22t110.5 53q44 35 84 170h73q-4 -127 -20 -188q-23 -79 -121 -115q-114 -43 -326 -43q-146 0 -268.5 45.5t-213 132t-141 219.5t-50.5 300z" />
+<glyph unicode="D" horiz-adv-x="1456" d="M82 0v80q94 5 130 11t46 20q10 10 13 32t3 88v924q0 95 -10 115q-10 19 -44.5 26t-137.5 13v75h315q309 0 455.5 -24.5t247.5 -87.5q128 -83 187 -217.5t59 -335.5q0 -402 -250 -588q-92 -69 -215.5 -100t-335.5 -31h-463zM391 178q0 -38 13 -52t49 -22q53 -8 196 -8 q275 0 423.5 159.5t148.5 457.5q0 182 -68 311.5t-190 192.5q-147 77 -426 77h-146v-1116z" />
+<glyph unicode="E" horiz-adv-x="1191" d="M82 0v78q152 6 174 31q12 11 15 36.5t3 94.5v915q0 102 -14 121q-10 15 -44.5 21t-133.5 12v75h831q72 0 95.5 -23.5t23.5 -72.5q0 -80 -14 -213h-72q-16 160 -51 185q-27 19 -82.5 25.5t-196.5 6.5h-225v-524h180q93 0 128 7t53 28q30 38 36 131h74q-2 -53 -2 -203 q0 -133 2 -217h-69q-10 92 -39 133q-14 20 -52.5 24.5t-134.5 4.5h-176v-492q0 -44 13.5 -63.5t44.5 -22.5q53 -6 202 -6q150 0 214 13t91 42q41 41 84 191h70q-3 -191 -35 -285q-17 -53 -147 -53h-846z" />
+<glyph unicode="F" horiz-adv-x="1167" d="M82 -2v80q93 6 129 13.5t47 21.5q10 9 13 33t3 96v913q0 102 -14 121q-10 15 -44.5 21t-133.5 12v75h856q71 0 94 -23.5t23 -72.5q0 -71 -15 -213h-71q-9 91 -20.5 132t-30.5 53q-27 19 -81.5 25.5t-197.5 6.5h-248v-542h203q94 0 128.5 7t53.5 29q28 40 37 129h72 q-2 -51 -2 -202q0 -131 2 -215h-68q-13 94 -39 131q-16 21 -52.5 25.5t-135.5 4.5h-199v-419q0 -93 23 -125q11 -16 58.5 -23t152.5 -14v-80q-176 4 -289 4q-82 0 -254 -4z" />
+<glyph unicode="G" horiz-adv-x="1447" d="M111 668q0 172 53 313t148.5 236t228 146.5t290.5 51.5q180 0 328 -45q98 -28 98 -115q0 -90 -16 -200h-76q-11 152 -47 188q-72 72 -301 72q-121 0 -226.5 -42t-184.5 -120.5t-124.5 -198t-45.5 -266.5q0 -155 44 -275t123 -193.5t181 -110.5t223 -37q106 0 219 24 q46 11 76 35q20 23 20 94v181q0 59 -3 80t-15 34q-17 15 -178 25v80q118 -4 245 -4q143 0 211 4v-80q-60 -2 -88 -7.5t-41 -21.5q-12 -14 -12 -110v-267q0 -84 -72 -108q-171 -60 -391 -60q-147 0 -268.5 45.5t-210.5 132t-138.5 219.5t-49.5 300z" />
+<glyph unicode="H" horiz-adv-x="1527" d="M82 -2v80q90 6 128 13.5t48 21.5q10 10 13 33.5t3 95.5v909q0 62 -3 86.5t-13 36.5q-14 19 -176 35v77q168 -4 235 -4q91 0 267 4v-77q-96 -9 -132.5 -16.5t-45.5 -20.5q-15 -24 -15 -119v-383h744v381q0 103 -15 123q-14 19 -176 35v77q168 -4 234 -4q92 0 268 4v-77 q-96 -9 -132.5 -16.5t-45.5 -20.5q-15 -20 -15 -119v-913q0 -68 3 -92t12 -33q11 -15 48 -23t130 -14v-80q-176 4 -256 4q-74 0 -246 -4v80q90 6 128 13.5t48 21.5q9 11 12 35t3 94v436h-744v-438q0 -107 15 -125q11 -15 48 -23t130 -14v-80q-176 4 -256 4q-74 0 -246 -4z " />
+<glyph unicode="I" horiz-adv-x="665" d="M82 -2v80q157 11 176 35q10 9 13 33t3 96v909q0 62 -3 86.5t-13 36.5q-14 19 -176 35v77q168 -4 237 -4q89 0 265 4v-77q-96 -9 -132.5 -16.5t-45.5 -20.5q-15 -24 -15 -119v-913q0 -107 15 -125q21 -27 178 -37v-80q-176 4 -254 4q-76 0 -248 -4z" />
+<glyph unicode="J" horiz-adv-x="622" d="M-14 -242q213 115 247 269q29 139 29 309v815q0 104 -14 123q-13 19 -182 35v77q168 -4 241 -4q86 0 262 4v-77q-95 -9 -129.5 -16.5t-44.5 -20.5q-14 -19 -14 -119v-813q0 -271 -45 -383q-31 -80 -115 -152.5t-196 -123.5z" />
+<glyph unicode="K" horiz-adv-x="1327" d="M82 -2v80q16 1 36.5 2.5t32 2t26 1.5t22 2t17.5 2.5t15 3t11 4t9.5 6t6.5 7.5q16 22 16 129v915q0 62 -3 86.5t-13 36.5q-14 20 -176 33v77q168 -4 235 -4q99 0 275 4v-77q-101 -8 -139 -15t-47 -20q-15 -24 -15 -119v-919q0 -107 15 -125q19 -24 186 -33v-80 q-176 4 -264 4q-74 0 -246 -4zM430 711q180 163 449 456q65 70 65 105q0 18 -28 24.5t-119 12.5v77q90 -4 252 -4q141 0 231 4v-77q-1 0 -23.5 -1t-33 -2.5t-27.5 -5.5t-29 -10q-46 -24 -147 -125q-7 -7 -123 -124.5t-209 -210t-117 -113.5q119 -149 271.5 -321.5 t224.5 -229.5q62 -51 109 -70t131 -24v-74q-24 -4 -80 -4q-59 0 -123.5 18.5t-112.5 55.5q-85 64 -262 272t-299 371z" />
+<glyph unicode="L" horiz-adv-x="1196" d="M82 0v78q152 6 174 31q12 11 15 36.5t3 94.5v915q0 61 -3 85t-13 36q-20 23 -176 33v77q168 -4 237 -4q99 0 275 4v-77q-99 -9 -139 -17t-49 -20q-15 -24 -15 -119v-969q0 -44 13.5 -63.5t44.5 -22.5q53 -6 202 -6q150 0 214 13t91 42q45 45 86 195h70q-3 -189 -37 -289 q-17 -53 -147 -53h-846z" />
+<glyph unicode="M" horiz-adv-x="1777" d="M76 -2v78q141 7 164 30q15 14 22 50t8 120q17 814 17 926q0 63 -15 78q-14 12 -48 18.5t-132 10.5v77q90 -4 207 -4q114 0 143 2q358 -808 441 -1017q93 221 458 1019q98 -4 166 -4q61 0 179 4v-77q-100 -4 -137 -11.5t-48 -23.5q-16 -21 -16 -113q0 -102 2 -893 q0 -132 16 -151q14 -17 47.5 -25.5t141.5 -15.5v-78q-184 4 -252 4q-26 0 -264 -4v78q153 7 178 39q12 18 12 100q0 901 2 1012q-81 -208 -448 -989q-9 -19 -21 -26t-33 -7q-36 0 -51 35q-88 203 -168.5 388.5t-114 264t-65.5 152t-48 108.5t-36 78q-6 -921 -6 -1032 q0 -78 22 -97q13 -11 41.5 -15.5t132.5 -10.5v-78q-172 4 -237 4q-56 0 -260 -4z" />
+<glyph unicode="N" horiz-adv-x="1488" d="M70 1309v77q90 -4 206 -4q60 0 132 4q647 -971 774 -1185q-3 156 -7.5 513.5t-5.5 381.5q-2 90 -4.5 125t-11.5 51q-18 29 -176 37v77q218 -4 252 -4q21 0 239 4v-77q-89 -6 -121.5 -13t-48.5 -22q-12 -14 -16 -48t-4 -130q0 -104 -1 -356t-1 -378q0 -53 1 -169t1 -152 q0 -55 -55 -55q-45 0 -62 28q-276 427 -455.5 701.5t-243.5 371t-81 123.5q1 -117 3 -340t3 -390.5t2 -192.5q0 -99 3 -131t14 -43q12 -17 48.5 -24t133.5 -13v-78q-222 4 -258 4q-50 0 -258 -4v78q172 8 192 41q8 13 10 45.5t2 126.5l1 173q1 173 2.5 372t1.5 262 q0 136 -15 157q-14 32 -63 43q-67 13 -133 13z" />
+<glyph unicode="O" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q161 0 280 -48.5t193 -141.5t109.5 -220t35.5 -290q0 -148 -32 -271t-89 -210t-136 -146.5t-173 -88t-201 -28.5q-157 0 -278 52t-197.5 147.5t-115.5 225.5t-39 290zM236 717q0 -645 512 -645q239 0 369 163.5t130 462.5 q0 319 -125 468t-374 149q-246 0 -379 -162t-133 -436z" />
+<glyph unicode="P" horiz-adv-x="1144" d="M82 -2v80q95 6 130 12.5t46 20.5q10 9 13 32.5t3 96.5v913q0 63 -3 86t-15 35q-23 23 -174 35v75h330q257 0 348 -14q168 -28 243.5 -124.5t75.5 -235.5q0 -103 -31 -181t-82 -126t-125.5 -78t-153 -41t-173.5 -11q-78 0 -123 2v-337q0 -107 15 -125q11 -14 50.5 -21.5 t129.5 -13.5v-80q-176 4 -258 4q-74 0 -246 -4zM391 659q17 0 49 -1t49 -1q40 0 71 1t70.5 5.5t70.5 11.5t65 20t59.5 31t49.5 44t39.5 59t24.5 77.5t9 97.5q0 118 -56.5 188t-152.5 90q-91 16 -229 16h-119v-639z" />
+<glyph unicode="Q" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q161 0 280 -48.5t193 -141.5t109.5 -220t35.5 -290q0 -317 -136 -503t-362 -228q143 -125 289 -187q122 -53 316 -53q49 0 69 2v-80q-55 -10 -139 -10q-191 0 -315 51q-96 39 -181 95.5t-227 170.5q-190 12 -321 106.5t-192.5 248 t-61.5 358.5zM236 717q0 -645 512 -645q239 0 369 163.5t130 462.5q0 319 -125 468t-374 149q-246 0 -379 -162t-133 -436z" />
+<glyph unicode="R" horiz-adv-x="1316" d="M82 -2v80q152 11 176 35q10 11 13 33.5t3 91.5v923q0 56 -3 78.5t-13 34.5t-46.5 19t-129.5 16v75h330q200 0 348 -18q151 -22 225 -111t74 -223q0 -163 -89 -259t-241 -132q148 -233 217 -329.5t135 -149.5q57 -47 111 -68q44 -15 96 -18v-76q-12 -2 -63 -2 q-129 0 -224 74q-84 65 -163.5 179t-231.5 370q-141 0 -215 2v-387q0 -103 15 -121q20 -26 180 -37v-80q-176 4 -258 4q-74 0 -246 -4zM391 702q39 -2 111 -2q70 0 125.5 6.5t113.5 27.5t96.5 55.5t63.5 95t25 141.5q0 98 -48 161.5t-130 86.5q-87 24 -242 24h-115v-596z " />
+<glyph unicode="S" horiz-adv-x="1114" d="M131 233q0 64 4 115h74q9 -64 25 -107.5t29.5 -61t35.5 -38.5q76 -69 272 -69q153 0 235.5 74t82.5 178q0 90 -50 151t-169 115l-254 115q-246 109 -246 331q0 80 28.5 147.5t85 120t149 82t212.5 29.5q144 0 254 -45q72 -26 72 -113q0 -47 -15 -190h-71 q-12 99 -27.5 141t-38.5 62q-57 45 -221 45q-154 0 -230.5 -74t-76.5 -182q0 -92 52.5 -153.5t203.5 -125.5l223 -94q244 -105 244 -330q0 -181 -125.5 -283t-339.5 -102q-90 0 -173 17t-136 45q-63 32 -86 78t-23 122z" />
+<glyph unicode="T" horiz-adv-x="1302" d="M82 1288q0 50 21.5 73t93.5 23h907q71 0 94 -23.5t23 -72.5q0 -55 -11 -213h-69q-19 163 -58 191q-28 18 -85.5 23t-286.5 5v-1046q0 -106 10 -129q8 -16 45 -25t141 -16v-80q-156 4 -239 4q-107 0 -267 -4v80q99 7 134.5 15t44.5 24q12 18 12 129v1048q-228 0 -286.5 -5 t-86.5 -23q-39 -31 -55 -191h-72q-10 143 -10 213z" />
+<glyph unicode="U" horiz-adv-x="1527" d="M63 1309v77q160 -4 263 -4q83 0 243 4v-77q-99 -7 -134 -15t-48 -22q-11 -17 -14 -111q-4 -158 -4 -530q0 -278 37 -371q70 -186 370 -186q110 0 204 38.5t130 100.5q39 65 53.5 169t14.5 273q0 195 -7 496q-1 70 -5.5 95t-16.5 34q-29 17 -168 29v77q148 -4 233 -4 q114 0 254 4v-77q-167 -10 -180 -43q-10 -25 -10 -133v-515q0 -195 -23 -307.5t-81 -183.5q-124 -156 -426 -156q-155 0 -266.5 50t-162.5 135q-40 67 -55.5 164t-15.5 305q0 95 2 281t2 249q0 89 -12 113q-12 19 -50.5 27.5t-126.5 13.5z" />
+<glyph unicode="V" horiz-adv-x="1415" d="M10 1311v75q132 -4 258 -4q122 0 248 4v-75q-11 -1 -44.5 -2t-60.5 -2.5t-38 -3.5q-47 -6 -47 -46q0 -47 30 -129q129 -368 235.5 -658.5t127.5 -348.5q61 181 352 999q33 94 33 133q0 30 -25 41q-12 5 -42.5 8.5t-72 5.5t-53.5 3v75q118 -4 254 -4q122 0 240 4v-75 q-112 -6 -145 -29q-18 -15 -32.5 -44.5t-43.5 -107.5l-410 -1118q-19 -49 -69 -49t-70 51l-418 1141q-25 66 -39 93t-31 40q-6 5 -17 9t-27.5 6t-30 3.5t-33.5 2.5t-29 2z" />
+<glyph unicode="W" horiz-adv-x="1943" d="M33 1309v77l102 -2t80 -1.5t53 -0.5q162 0 240 4v-77q-83 -1 -124.5 -10.5t-51.5 -23t-10 -40.5q0 -20 14 -90q163 -690 231 -1006q71 262 353 1192q8 28 26.5 45t42.5 17q27 0 41.5 -11.5t24.5 -46.5q307 -1069 338 -1198q55 265 227 985q14 61 14 109q0 29 -8.5 41.5 t-51 22.5t-134.5 14v77q100 -4 248 -4q73 0 225 4v-77q-38 -4 -54.5 -6.5t-38.5 -9.5t-36 -19q-28 -28 -51 -131l-277 -1118q-6 -28 -26 -45t-46 -17q-52 0 -69 62q-259 897 -336 1192q-80 -300 -356 -1192q-18 -62 -72 -62q-55 0 -70 62l-268 1116l-10.5 45t-10 35.5 t-12 29.5t-15.5 21t-21 16.5t-27.5 10t-36.5 7.5t-47 3z" />
+<glyph unicode="X" horiz-adv-x="1392" d="M25 -2v78q117 0 153 26q40 33 90 103l363 508l-338 483q-32 44 -49 62.5t-39 31.5q-25 15 -125 19v77q250 -4 274 -4q114 0 254 4v-77q-82 -4 -122 -11t-52 -16.5t-12 -28.5q0 -28 35 -77l254 -373l237 340q19 27 35 61.5t16 50.5q0 17 -10.5 26.5t-49 16.5t-114.5 11v77 q122 -4 256 -4q88 0 236 4v-77q-63 -1 -90 -6t-47 -19q-24 -17 -95 -115l-321 -434l371 -536q49 -68 84 -97q37 -26 147 -26v-78q-52 1 -111 2t-93 1.5t-62 0.5q-31 0 -63.5 -0.5t-86 -1.5t-102.5 -2v78q107 4 139.5 15t32.5 40q0 16 -35 70l-297 436l-274 -404 q-49 -77 -49 -104q0 -21 17 -32t54.5 -15.5t110.5 -5.5v-78q-238 4 -281 4q-24 0 -54.5 -0.5t-84 -1.5t-102.5 -2z" />
+<glyph unicode="Y" horiz-adv-x="1228" d="M8 1309v77q234 -4 236 -4q23 0 231 4v-77q-77 -1 -116.5 -8.5t-48.5 -17.5t-9 -28q0 -29 47 -108q135 -229 277 -488q48 82 144 249t144 249q43 73 43 105q0 18 -14 27.5t-49 14t-105 5.5v77q96 -4 238 -4q107 0 193 4v-77q-59 -3 -97 -29q-34 -30 -82 -104l-368 -598 v-365q0 -86 8 -102q11 -17 45 -24t141 -11v-78q-222 4 -243 4q-58 0 -254 -4v78q102 4 132.5 10.5t39.5 24.5q12 17 12 102v362l-338 566q-12 21 -27 47t-21.5 37.5t-15.5 25t-15.5 20t-14.5 11.5q-44 25 -113 27z" />
+<glyph unicode="Z" horiz-adv-x="1212" d="M70 0v47l876 1245q-387 0 -502 -3t-145 -11q-31 -9 -47 -54.5t-29 -148.5h-69q-17 166 -17 221q0 44 30.5 66t104.5 22h848v-47l-874 -1239q82 -4 334 -4q207 0 287.5 8.5t109.5 30.5q23 16 43.5 55t30.5 67.5t26 82.5h70q-6 -156 -29 -272q-13 -66 -123 -66h-925z" />
+<glyph unicode="[" horiz-adv-x="591" d="M199 -350v1898h362v-86h-248v-1724h248v-88h-362z" />
+<glyph unicode="\" horiz-adv-x="686" d="M66 1468l96 29l493 -1632l-98 -29z" />
+<glyph unicode="]" horiz-adv-x="591" d="M33 -262h250v1724h-250v86h362v-1898h-362v88z" />
+<glyph unicode="^" d="M219 768l316 680h124l306 -680h-123l-250 549l-250 -549h-123z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-4 -164h1014v-112h-1014v112z" />
+<glyph unicode="`" horiz-adv-x="604" d="M129 1432q0 22 22.5 40.5t45.5 18.5q26 0 45 -16.5t51 -67.5l180 -287l-51 -41l-232 244q-61 64 -61 109z" />
+<glyph unicode="a" horiz-adv-x="1034" d="M109 254q0 55 19.5 98.5t67 81.5t140 59t225.5 21q83 0 139 -6v113q0 142 -32 186q-28 38 -73.5 51.5t-121.5 13.5q-117 0 -164 -41q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 223 33q180 0 246 -78q31 -36 43 -84.5t12 -134.5q0 -18 -1 -226t-1 -219 q0 -86 20.5 -115.5t75.5 -29.5q34 0 82 10v-76q-65 -28 -135 -28q-112 0 -135 120q-112 -129 -289 -129q-130 0 -221.5 71.5t-91.5 205.5zM221 264q0 -67 33 -111.5t79.5 -61.5t102.5 -17q76 0 145 28t119 70v252q-43 4 -151 4q-96 0 -162.5 -12.5t-101.5 -36t-49.5 -51.5 t-14.5 -64z" />
+<glyph unicode="b" horiz-adv-x="1136" d="M43 1372v70q98 55 186 55q49 0 71 -25t22 -112q0 -159 -3 -537q63 61 153.5 101.5t186.5 40.5q184 0 278.5 -133t94.5 -357q0 -150 -53 -262t-162.5 -177t-265.5 -65q-186 0 -338 70q2 96 2 264v770q0 241 -27 279q-24 24 -82 24q-22 0 -63 -6zM322 111q82 -43 245 -43 q172 0 262.5 110t90.5 291q0 60 -8 112.5t-30 104.5t-56 89t-90 60t-128 23q-153 0 -286 -102v-645z" />
+<glyph unicode="c" horiz-adv-x="968" d="M106 457q0 229 130 369.5t358 140.5q87 0 168 -19q52 -14 75 -40.5t23 -76.5q0 -69 -18 -149h-72q-11 113 -43 149q-41 43 -162 43q-166 0 -257 -112.5t-91 -300.5q0 -80 20 -148t60 -122t107 -84.5t153 -30.5q93 0 164.5 30.5t142.5 90.5l54 -66q-163 -160 -388 -160 q-190 0 -307 130.5t-117 355.5z" />
+<glyph unicode="d" horiz-adv-x="1177" d="M106 444q0 234 131 378.5t375 144.5q49 0 118.5 -12.5t115.5 -39.5q0 189 -2 291q-3 120 -29 152q-23 20 -84 20q-30 0 -57 -6v70q98 55 186 55q24 0 38 -3.5t28.5 -15.5t21 -40t6.5 -72q0 -16 -1 -212t-1 -288v-657q0 -74 20.5 -101.5t69.5 -27.5q44 0 82 10v-76 q-64 -28 -139 -28q-51 0 -84.5 29.5t-42.5 86.5q-54 -62 -138.5 -94.5t-180.5 -32.5q-198 0 -315.5 133t-117.5 336zM217 461q0 -178 95.5 -282.5t244.5 -104.5q76 0 160 27t129 65v649q-38 24 -112 41.5t-144 17.5q-172 0 -272.5 -110t-100.5 -303z" />
+<glyph unicode="e" horiz-adv-x="1007" d="M106 457q0 124 35.5 222.5t98 160.5t145 94.5t178.5 32.5q98 0 170 -31t111 -84t56.5 -112t17.5 -126q0 -84 -25 -106q-18 -12 -80 -12h-594v-39q0 -171 88.5 -276t263.5 -105q95 0 168.5 31.5t145.5 89.5l55 -68q-175 -158 -383 -158q-114 0 -202.5 39t-141.5 107 t-80 154t-27 186zM229 580l576 6v16q0 128 -58.5 200t-203.5 72q-121 0 -209 -76.5t-105 -217.5z" />
+<glyph unicode="f" horiz-adv-x="653" d="M72 827v62q67 16 116 41q28 17 40.5 43t15.5 90q13 254 123 348q103 86 245 86q93 0 152 -20q51 -17 51 -86q0 -35 -14 -154h-72q-7 76 -20 109t-37 45q-33 16 -92 16t-108 -30.5t-75 -82.5q-49 -96 -49 -286v-86q158 0 262 -4v-84q-158 -7 -262 -7v-589q0 -105 17 -127 q9 -18 44 -24.5t156 -10.5v-78q-192 4 -243 4q-58 0 -246 -4v78q76 4 108.5 12t44.5 23q15 20 15 98v618h-172z" />
+<glyph unicode="g" horiz-adv-x="1038" d="M45 -274q0 105 90 188q60 56 150 104q-97 38 -97 119t115 154q-192 90 -192 307q0 164 105.5 266.5t272.5 102.5q138 0 218 -45q196 0 282 -4v-84q-140 -7 -188 -7q32 -31 48.5 -93t16.5 -118q0 -116 -52.5 -199t-137.5 -122t-193 -39q-78 0 -108 6q-45 -32 -62.5 -53.5 t-17.5 -50.5q0 -16 19 -33t53 -27q53 -15 194.5 -40t179.5 -33q130 -27 186 -87t56 -163q0 -151 -134.5 -244.5t-348.5 -93.5q-210 0 -332.5 81.5t-122.5 207.5zM158 -264q0 -81 90 -142t260 -61q101 0 175.5 22t112.5 58t55 73t17 76q0 30 -9.5 52.5t-35.5 47t-81 44.5 t-138 35q-210 37 -242 49q-113 -64 -158.5 -123t-45.5 -131zM219 618q0 -73 21 -126t59 -83.5t85.5 -44.5t107.5 -14q119 0 193.5 62.5t74.5 183.5q0 143 -72.5 209.5t-200.5 66.5q-130 0 -199 -71.5t-69 -182.5z" />
+<glyph unicode="h" horiz-adv-x="1183" d="M59 1372v70q98 55 187 55q24 0 38.5 -4t28.5 -17t20.5 -41.5t6.5 -74.5q0 -53 -1 -228.5t-1 -314.5q71 67 170.5 107.5t204.5 40.5q58 0 109 -18.5t77 -49.5q34 -38 48 -100t14 -170v-410q0 -78 14 -100q8 -16 40.5 -25t117.5 -16v-78q-172 4 -224 4q-125 0 -213 -4v78 q126 11 142 35q20 24 20 108v393q0 126 -44 184t-159 58q-80 0 -169 -27.5t-148 -72.5v-535q0 -53 3 -74.5t13 -33.5q9 -14 37 -21t109 -14v-78q-176 4 -244 4q-10 0 -190 -4v78q82 8 111 14t38 19q18 22 18 108v907q0 194 -28 230q-31 24 -80 24q-25 0 -66 -6z" />
+<glyph unicode="i" horiz-adv-x="593" d="M76 -2v78q81 7 111 12t38 18q19 19 19 109v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 186 55q47 0 69.5 -25.5t22.5 -103.5q0 -97 -3 -304t-3 -304q0 -89 17 -108q9 -14 37 -20.5t108 -12.5v-78q-176 4 -242 4q-12 0 -192 -4zM164 1341q0 43 28 72t70 29 q49 0 73.5 -27.5t24.5 -71.5q0 -43 -28 -70.5t-76 -27.5q-41 0 -66.5 27.5t-25.5 68.5z" />
+<glyph unicode="j" horiz-adv-x="536" d="M-10 -489q81 35 128.5 69t74.5 88q36 73 36 287v715q0 100 -20 135t-92 35q-26 0 -62 -6v65q98 55 187 55q47 0 68.5 -25t21.5 -104q0 -99 3 -419.5t3 -403.5q0 -158 -8.5 -237t-42.5 -138q-36 -64 -114.5 -115t-160.5 -73zM143 1341q0 43 27.5 72t71.5 29 q49 0 73.5 -27.5t24.5 -71.5q0 -42 -28 -70t-74 -28q-43 0 -69 27.5t-26 68.5z" />
+<glyph unicode="k" horiz-adv-x="1081" d="M84 1376v66q98 55 184 55q25 0 38.5 -3t29 -14t22.5 -37t7 -69q0 -16 -1.5 -135.5t-1.5 -212.5v-809q0 -88 15 -108q9 -13 39.5 -20t107.5 -13v-78q-176 4 -241 4q-15 0 -195 -4v78q135 8 152 30q16 19 16 109v985q0 131 -33 162q-20 20 -84 20q-31 0 -55 -6zM387 483 q36 26 110.5 93t143.5 139q48 49 63 71.5t15 40.5q0 20 -25.5 28.5t-111.5 12.5v72q92 -4 219 -4q125 0 219 4v-72q-64 -4 -96 -22q-50 -24 -166 -131q-35 -32 -122.5 -117t-113.5 -109q167 -215 297 -323q55 -43 109 -68q42 -17 133 -22v-78q-28 -4 -84 -4q-54 0 -116 22 t-113 62q-26 21 -51 44.5t-53.5 54t-48.5 52t-53.5 62.5t-48.5 59.5t-54.5 68t-51.5 64.5z" />
+<glyph unicode="l" horiz-adv-x="608" d="M84 1376v66q98 55 184 55q24 0 37.5 -3t28.5 -14t21.5 -37t6.5 -69q0 -16 -1 -211.5t-1 -288.5v-655q0 -88 15 -108q9 -14 39 -21.5t108 -13.5v-78q-176 4 -239 4q-15 0 -195 -4v78q78 6 110 13t42 20q16 19 16 108v870q0 121 -6.5 187.5t-26.5 87.5q-20 20 -84 20 q-31 0 -55 -6z" />
+<glyph unicode="m" horiz-adv-x="1794" d="M76 -2v78q81 8 111 14t38 19q19 19 19 108v449q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 176 55q43 0 67 -27t27 -110q158 148 361 148q80 0 142 -36.5t85 -115.5q77 70 175 111t204 41q58 0 105.5 -18.5t74.5 -49.5q34 -38 48.5 -100.5t14.5 -169.5v-410 q0 -74 13 -100q8 -16 41 -25t119 -16v-78q-172 4 -226 4q-125 0 -213 -4v78q125 11 144 35q18 18 18 110v391q0 130 -33 174q-45 68 -166 68q-75 0 -162 -29t-147 -75q6 -34 6 -123v-410q0 -74 13 -100q10 -16 40 -25t115 -16v-78q-160 4 -219 4q-127 0 -213 -4v78 q125 11 141 35q17 20 17 110v391q0 129 -29 174q-48 68 -164 68q-78 0 -160.5 -27t-142.5 -73v-535q0 -89 17 -108q9 -14 37 -21t108 -14v-78q-92 4 -221 4q-33 0 -213 -4z" />
+<glyph unicode="n" horiz-adv-x="1210" d="M76 -2v78q132 8 149 33q19 19 19 106v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 176 55q43 0 67 -27t27 -110q72 68 172 108t205 40q58 0 109 -18.5t77 -49.5q34 -38 48 -100t14 -170v-412q0 -72 14 -100q8 -16 39.5 -24t120.5 -15v-78q-172 4 -227 4 q-125 0 -211 -4v78q70 6 100 13t39 20q20 17 20 110v393q0 131 -32 174q-48 68 -168 68q-78 0 -169 -28t-149 -72v-537q0 -89 17 -108q9 -14 37 -20.5t108 -12.5v-78q-176 4 -242 4q-12 0 -192 -4z" />
+<glyph unicode="o" horiz-adv-x="1093" d="M106 463q0 233 125 368.5t330 135.5q220 0 324 -126t104 -356q0 -128 -34 -227.5t-95 -161.5t-140.5 -93.5t-174.5 -31.5q-216 0 -327.5 133t-111.5 359zM217 485q0 -417 334 -417q157 0 242.5 103t85.5 300q0 401 -324 401q-164 0 -251 -100t-87 -287z" />
+<glyph unicode="p" horiz-adv-x="1142" d="M51 829v70q98 55 178 55q43 0 67.5 -27.5t27.5 -109.5q65 63 155 105.5t185 42.5q184 0 278 -133t94 -357q0 -150 -53 -262t-162.5 -177t-265.5 -65q-104 0 -229 33v-289q0 -115 22 -137q10 -10 20.5 -15t52 -11t120.5 -11v-78q-235 5 -244 5q-4 0 -244 -5v78 q134 10 154 39q12 16 12 101v985q0 98 -18.5 134t-87.5 36q-6 0 -62 -7zM326 111q82 -43 245 -43q172 0 262.5 110t90.5 291q0 60 -8 112.5t-30 104.5t-56 89t-90 60t-128 23q-71 0 -148 -30.5t-138 -79.5v-637z" />
+<glyph unicode="q" horiz-adv-x="1177" d="M106 444q0 234 130.5 378.5t371.5 144.5q184 0 350 -56q-6 -169 -6 -290v-940q0 -84 13 -101q13 -16 45 -24.5t108 -14.5v-78q-235 5 -244 5q-3 0 -243 -5v78q79 5 120.5 11t51.5 11t20 15q23 23 23 137q0 303 2 375q-53 -56 -135 -85.5t-174 -29.5q-198 0 -315.5 133 t-117.5 336zM217 461q0 -178 95.5 -282.5t244.5 -104.5q76 0 160 27t129 65v663q-98 45 -256 45q-172 0 -272.5 -110t-100.5 -303z" />
+<glyph unicode="r" horiz-adv-x="784" d="M76 -2v78q81 7 111 12t38 18q19 19 19 109v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 176 55q44 0 68.5 -29t25.5 -120q40 63 114.5 109.5t149.5 46.5q48 0 73.5 -17.5t25.5 -66.5q0 -39 -19 -136h-57q-8 59 -28.5 76t-61.5 17q-47 0 -102 -27t-93 -70 v-520q0 -89 17 -108q14 -21 178 -33v-78q-176 4 -275 4q-12 0 -192 -4z" />
+<glyph unicode="s" horiz-adv-x="907" d="M119 141q0 37 1 83.5t1 60.5h76q12 -129 65 -172q53 -50 187 -50q105 0 167 44.5t62 107.5q0 60 -34.5 103t-121.5 77l-182 70q-197 75 -197 235q0 123 88 195t273 72q103 0 194 -29q56 -24 56 -92q0 -32 -15 -150h-69q-5 69 -19.5 99t-36.5 45q-39 34 -149 34 q-217 0 -217 -163q0 -52 36.5 -89.5t133.5 -74.5l178 -68q107 -41 147.5 -100.5t40.5 -136.5q0 -123 -96.5 -197t-257.5 -74q-131 0 -229 41q-48 21 -65 52.5t-17 76.5z" />
+<glyph unicode="t" horiz-adv-x="688" d="M74 827v62q42 10 104 33q21 12 32 25.5t19 37.5q8 27 14 55t12 58.5t9 44.5q4 21 15.5 29t35.5 8q15 0 25 -8t10 -23v-227q160 0 260 -4v-84q-150 -7 -262 -7v-424q0 -180 10 -225q9 -54 39 -78t86 -24q81 0 164 41l31 -76q-119 -64 -219 -64q-50 0 -86.5 10.5 t-67.5 37.5t-47 78.5t-16 127.5q0 59 1 270t1 326h-170z" />
+<glyph unicode="u" d="M55 829v70q98 55 185 55q47 0 68.5 -27.5t21.5 -105.5q0 -9 -1 -215t-1 -291q0 -123 45 -178t168 -55q77 0 161.5 30t143.5 76v478q0 100 -20 135t-93 35q-18 0 -67 -7v70q93 55 196 55q49 0 70.5 -29.5t21.5 -111.5q0 -7 -1 -111.5t-2 -248t-1 -244.5q0 -74 20.5 -101.5 t69.5 -27.5q44 0 82 10v-76q-64 -28 -139 -28q-116 0 -135 131q-146 -146 -350 -146q-59 0 -116.5 20.5t-90.5 55.5q-36 39 -52 98t-16 162v359q0 101 -18 135.5t-88 34.5q-13 0 -62 -7z" />
+<glyph unicode="v" horiz-adv-x="1048" d="M8 862v78q136 -4 215 -4q48 0 180 4v-78q-5 0 -20.5 -1t-22 -1.5t-20.5 -1.5t-20.5 -3t-17.5 -4.5t-16 -6.5t-11 -9.5t-8.5 -13t-2.5 -16.5q0 -30 23 -86q73 -173 250 -613q67 175 243 611q25 65 25 94q0 11 -5.5 19.5t-15.5 13.5t-21 8.5t-26.5 5t-26.5 2.5t-26.5 1.5 t-21.5 0.5v78q122 -4 196 -4q62 0 180 4v-78q-74 -3 -94 -26q-8 -6 -14.5 -14t-13 -21t-11 -22.5t-13 -30t-13.5 -31.5l-291 -686q-19 -49 -60 -49q-24 0 -38.5 9t-28.5 40l-295 696q-35 79 -50 97q-7 8 -16 14q-17 17 -92 24z" />
+<glyph unicode="w" horiz-adv-x="1538" d="M23 862v78q90 -4 210 -4q91 0 191 4v-78q-43 0 -105 -8q-27 -5 -39 -14.5t-12 -32.5q0 -17 19 -86q129 -444 166 -586q41 127 266 762q16 45 63 45q24 0 37 -10.5t21 -34.5q129 -382 252 -762q29 101 87.5 297.5t82.5 282.5q18 59 18 92q0 14 -10.5 26t-22.5 15 q-33 11 -127 14v78q82 -4 207 -4q113 0 191 4v-78q-69 -3 -101 -22q-16 -10 -27 -34.5t-30 -86.5l-213 -688q-16 -49 -62 -49q-47 0 -63 49q-217 643 -250 757q-22 -67 -50 -146t-93 -259t-127 -352q-16 -49 -60 -49q-24 0 -40.5 10t-24.5 41l-203 688q-26 87 -41 106 q-13 20 -36 26.5t-74 8.5z" />
+<glyph unicode="x" horiz-adv-x="1120" d="M45 -2v78q103 4 135 30q39 26 96 97l218 272l-240 303q-26 33 -41 47.5t-31 20.5q-30 13 -96 16v78q106 -4 205 -4q94 0 198 4v-78q-116 0 -116 -41q0 -22 33 -67l161 -205l144 194q34 46 34 78q0 13 -6 20.5t-31.5 13.5t-74.5 7v78q152 -4 213 -4q70 0 176 4v-78 q-66 -2 -102 -20q-38 -19 -121 -123l-181 -232l224 -272q57 -70 98 -104q20 -17 46.5 -23.5t84.5 -11.5v-78q-212 4 -235 4q-22 0 -49 -0.5t-74 -1.5t-92 -2v78q84 4 110.5 14.5t26.5 32.5q0 28 -56 96l-155 195l-131 -172q-42 -58 -55 -79.5t-13 -39.5q0 -21 29.5 -32.5 t111.5 -14.5v-78q-200 4 -231 4q-49 0 -213 -4z" />
+<glyph unicode="y" horiz-adv-x="1046" d="M8 862v78q136 -4 215 -4q51 0 183 4v-78q-20 -1 -52.5 -4.5t-38.5 -3.5q-51 -3 -51 -53q0 -23 23 -82q221 -516 274 -649q184 527 209 596q33 95 33 147q0 15 -8.5 25.5t-27.5 14.5t-32.5 6t-40 2.5t-32.5 0.5v78q122 -4 196 -4q62 0 180 4v-78q-5 0 -16.5 -1t-15.5 -1.5 t-12.5 -1.5t-12.5 -2l-10 -2.5t-9 -3t-7 -4.5t-7 -6q-6 -4 -11 -10t-10 -15t-9 -17t-10.5 -24t-10.5 -27t-12.5 -34.5t-14.5 -38.5l-249 -682q-68 -191 -136 -348q-51 -114 -117 -160.5t-163 -46.5q-49 0 -90 18q-52 21 -52 90q0 54 13 117h65q6 -38 10.5 -55t15 -35.5 t28.5 -24.5t47 -6q79 0 133 99q52 98 151 360q-22 0 -39.5 14t-25.5 35l-291 672q-16 37 -24 53.5t-20.5 36t-25.5 27.5q-17 17 -92 24z" />
+<glyph unicode="z" horiz-adv-x="909" d="M27 0v39l655 819q-349 0 -406 -6q-59 -6 -77 -37q-15 -25 -29 -135h-76q-12 106 -12 166q0 47 15.5 69.5t70.5 22.5h670v-49l-650 -805q76 -4 207 -4q237 0 293 18q49 18 68 62q27 56 41 123h73q-4 -121 -12 -203q-3 -41 -25.5 -60.5t-84.5 -19.5h-721z" />
+<glyph unicode="{" horiz-adv-x="612" d="M47 567v68q49 5 81.5 18.5t53 35t31.5 61.5t14.5 85.5t3.5 118.5v254q0 71 8 123.5t31.5 101.5t63.5 79.5t105.5 48.5t156.5 18v-82q-95 0 -147 -23t-78.5 -86t-26.5 -180v-315q0 -65 -3 -103t-11.5 -73t-27.5 -54t-48 -33.5t-76 -25.5q104 -24 136 -80.5t32 -208.5v-329 q0 -152 57.5 -214.5t192.5 -62.5v-80q-202 0 -281 77.5t-79 262.5v303q0 145 -39.5 214.5t-149.5 80.5z" />
+<glyph unicode="|" horiz-adv-x="526" d="M209 -377v1954h106v-1954h-106z" />
+<glyph unicode="}" horiz-adv-x="612" d="M39 -293q95 0 148 23.5t79.5 87t26.5 180.5v317q0 64 3 101.5t11.5 72t27 54t47.5 35t75 26.5q-104 23 -135 78.5t-31 210.5v328q0 152 -57.5 213t-194.5 61v84q203 0 282.5 -79t79.5 -263v-303q0 -148 38.5 -216.5t150.5 -78.5v-68q-50 -5 -82.5 -19.5t-53 -36t-31 -61 t-14 -84.5t-3.5 -118v-254q0 -71 -8.5 -123.5t-32 -101t-63.5 -79t-106 -48t-157 -17.5v78z" />
+<glyph unicode="~" d="M119 565q66 99 131.5 143t148.5 44q44 0 90 -17t134 -76q107 -67 163 -67q53 0 100 32t101 115l80 -71q-67 -98 -134 -145.5t-149 -47.5q-84 0 -194 72q-81 53 -118 68.5t-75 15.5q-56 0 -102 -32.5t-90 -109.5z" />
+<glyph unicode="&#xa1;" horiz-adv-x="577" d="M145 924q0 53 28 82.5t75 29.5q44 0 75 -30t31 -74q0 -45 -30 -76t-72 -31q-46 0 -76.5 27.5t-30.5 71.5zM164 -297q0 75 51 891h68q47 -823 47 -891q0 -106 -86 -106q-80 0 -80 106z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1032" d="M150 451q0 187 92.5 313.5t259.5 159.5v213h90v-201h22q76 0 162 -21q48 -11 72 -36.5t24 -73.5q0 -61 -16 -139h-74q-8 108 -43 139q-39 41 -147 41v-760q147 2 285 117l43 -60q-138 -138 -328 -149v-230h-90v232q-159 15 -255.5 136t-96.5 319zM266 455 q0 -147 56.5 -243t179.5 -120v744q-116 -27 -176 -127.5t-60 -253.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1169" d="M82 0v96q143 25 219 134.5t76 267.5q0 8 -1 27.5t-1 31.5h-201v98h191q-3 23 -24.5 152.5t-21.5 173.5q0 186 113.5 288.5t302.5 102.5q128 0 195 -22q50 -18 72 -44t22 -73q0 -72 -16 -160h-70q-11 118 -43 154q-52 49 -186 49q-141 0 -205 -78.5t-64 -212.5 q0 -40 20.5 -166.5t24.5 -163.5h320v-98h-309v-25q0 -285 -195 -417q188 4 414 4q110 0 162.5 7t74.5 28q41 38 62 129h67q-7 -135 -20 -211q-15 -72 -123 -72h-856z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1132" d="M84 233l135 136q-94 116 -94 282q0 161 92 275l-133 137l74 78l137 -140q113 93 272 93q154 0 269 -90l131 137l77 -76l-131 -139q91 -116 91 -275q0 -157 -91 -276l136 -142l-80 -75l-133 139q-119 -88 -273 -88q-164 0 -270 84l-135 -135zM231 655q0 -155 94 -254.5 t242 -99.5q143 0 236.5 99t93.5 251q0 147 -94.5 246.5t-235.5 99.5q-147 0 -241.5 -96t-94.5 -246z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1259" d="M47 1266v77q46 -1 93 -2t74 -1.5t50 -0.5q28 0 246 4v-77q-78 -3 -114 -8.5t-46 -13.5t-10 -25q0 -29 90 -195q35 -63 108.5 -190t108.5 -189q82 156 232 408q75 127 75 172q0 23 -31.5 30.5t-125.5 10.5v77q172 -4 221 -4q110 0 194 4v-77q-75 -6 -98 -25 q-5 -3 -10.5 -8t-13 -15t-13 -18t-17 -26t-20 -31t-25.5 -41.5t-30 -48.5l-194 -318h276v-82h-324l-61 -102v-62h385v-81h-385v-207q0 -50 10 -80q6 -21 41 -30t141 -15v-78q-208 4 -239 4q-70 0 -254 -4v78q105 9 133.5 16.5t38.5 26.5q14 20 14 84v205h-352v81h352v60 l-61 104h-291v82h242l-211 375q-11 20 -26 47.5t-21 38t-15.5 23t-19.5 20.5q-29 21 -117 27z" />
+<glyph unicode="&#xa6;" horiz-adv-x="526" d="M209 -244v690h106v-690h-106zM209 752v692h106v-692h-106z" />
+<glyph unicode="&#xa7;" horiz-adv-x="933" d="M90 674q0 188 225 282q-114 122 -114 246q0 119 91 195t245 76q117 0 182 -27q53 -24 53 -86q0 -18 -16 -154h-70q-9 77 -21 108.5t-36 47.5q-36 22 -103 22q-213 0 -213 -163q0 -64 35.5 -117.5t138.5 -153.5l144 -135q128 -121 171.5 -194t43.5 -158q0 -86 -59.5 -163 t-176.5 -138q81 -89 109.5 -148t28.5 -120q0 -130 -95 -212.5t-256 -82.5q-120 0 -204 43q-58 34 -58 96q0 49 15 145h69q8 -72 25 -107.5t45 -56.5q41 -26 117 -26q110 0 167.5 45.5t57.5 120.5q0 56 -41 123t-154 186l-168 174q-109 112 -143.5 183.5t-34.5 148.5z M205 698q0 -58 27 -111t92 -126l96 -105q23 -26 67 -69.5t68 -69.5q176 98 176 207q0 59 -29 119.5t-124 152.5l-107 105q-17 17 -55 48t-54 50q-157 -82 -157 -201z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M49 1276q0 37 25.5 62.5t64.5 25.5q42 0 66 -25t24 -63q0 -39 -25 -65.5t-67 -26.5q-37 0 -62.5 25.5t-25.5 66.5zM367 1276q0 37 26.5 62.5t65.5 25.5q38 0 63 -25.5t25 -62.5q0 -39 -25.5 -65.5t-64.5 -26.5q-38 0 -64 26t-26 66z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM174 692q0 -133 49.5 -253t134.5 -207t204.5 -138t252.5 -51 q129 0 244 50t197 136t130 205t48 252q0 182 -80 331.5t-223 235.5t-320 86q-179 0 -325.5 -86t-229 -234t-82.5 -327zM375 676q0 212 123 336.5t329 124.5q126 0 205 -27q62 -23 62 -76q0 -66 -13 -137h-71q-12 94 -29 111q-38 41 -162 41q-140 0 -228.5 -94t-88.5 -265 q0 -179 89 -266.5t228 -87.5q111 0 160 45q22 20 51 104h74q-3 -79 -17 -139q-15 -48 -79 -70q-84 -30 -207 -30q-191 0 -308.5 116.5t-117.5 313.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="696" d="M70 735q0 82 67 127t236 45q64 0 84 -2v62q0 91 -31 121t-113 30q-65 0 -98 -26q-22 -22 -22 -101h-66q-12 81 -12 103q0 56 65 77q73 27 158 27q123 0 174 -51q37 -45 37 -148q0 -17 -1 -139.5t-1 -128.5q0 -53 13 -73.5t44 -20.5q15 0 51 8v-67q-56 -23 -106 -23 q-31 0 -51 17t-31 59q-35 -36 -87.5 -57t-105.5 -21q-85 0 -144.5 46t-59.5 136zM170 743q0 -54 39.5 -81t89.5 -27q94 0 160 51v152q-29 2 -90 2q-199 0 -199 -97z" />
+<glyph unicode="&#xab;" horiz-adv-x="886" d="M76 461q0 30 35 65l325 316l56 -47l-281 -332l281 -342l-56 -51l-330 325q-30 26 -30 66zM410 461q0 31 34 65l326 316l55 -47l-280 -332l280 -342l-55 -51l-330 325q-30 26 -30 66z" />
+<glyph unicode="&#xac;" d="M133 573v117h879v-538h-109v421h-770z" />
+<glyph unicode="&#xad;" horiz-adv-x="534" d="M59 442v119h410v-119h-410z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M84 694q0 196 96 361.5t262.5 261.5t364.5 96q147 0 280 -56.5t229.5 -151.5t153 -227t56.5 -278q0 -152 -56 -288.5t-151.5 -233.5t-227 -154t-278.5 -57q-206 0 -373 95.5t-261.5 262t-94.5 369.5zM174 692q0 -133 49.5 -253t134.5 -207t204.5 -138t252.5 -51 q129 0 244 50t197 136t130 205t48 252q0 182 -80 331.5t-223 235.5t-320 86q-179 0 -325.5 -86t-229 -234t-82.5 -327zM453 305v72q90 6 102 18q9 6 11.5 19t2.5 55v510q0 57 -8 65q-20 16 -108 21v68h237q128 0 221 -13q96 -13 144.5 -68t48.5 -139q0 -182 -195 -237 q66 -100 108 -152.5t85 -87.5q34 -29 69 -47q30 -12 62 -12v-70q-8 -2 -47 -2q-98 0 -166 55q-50 38 -99 104.5t-128 194.5q-83 0 -113 3v-191q0 -43 1.5 -54.5t8.5 -17.5q7 -10 30.5 -14.5t78.5 -7.5v-72q-114 4 -183 4q-49 0 -163 -4zM680 739q10 0 36.5 -1t35.5 -1 q229 0 229 170q0 36 -13 62t-33.5 41t-53.5 23.5t-64.5 11t-75.5 2.5h-61v-308z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M43 1151v111h512v-111h-512z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M88 1163q0 122 78 196.5t192 74.5q115 0 189 -69.5t74 -199.5q0 -122 -77 -194t-190 -72q-115 0 -190.5 70.5t-75.5 193.5zM178 1165q0 -81 47 -133.5t129 -52.5q85 0 133 52t48 132q0 86 -48 138.5t-133 52.5q-79 0 -127.5 -52.5t-48.5 -136.5z" />
+<glyph unicode="&#xb1;" d="M133 -2v115h916v-115h-916zM133 690v113h404v430h110v-430h402v-113h-402v-426h-110v426h-404z" />
+<glyph unicode="&#xb2;" horiz-adv-x="743" d="M41 860v64q231 175 342 301t111 239q0 164 -170 164q-111 0 -140 -37q-18 -21 -26 -100h-56q-10 58 -10 102q0 30 14 48t48 36q87 35 184 35q129 0 196.5 -59.5t67.5 -173.5q0 -126 -107.5 -262t-301.5 -269q30 0 113.5 1t103.5 1q41 0 63 0.5t43 5t30.5 9.5t19.5 19 t15 28.5t13 42.5h57q-9 -115 -16 -148q-9 -47 -84 -47h-510z" />
+<glyph unicode="&#xb3;" horiz-adv-x="743" d="M82 952q0 39 8 109h62q3 -65 28 -90q41 -45 144 -45q104 0 156 43.5t52 120.5q0 68 -52.5 110.5t-160.5 48.5q-31 2 -96 2v76q2 0 38.5 2t57.5 4q86 14 131.5 59t45.5 105q0 58 -34.5 95.5t-115.5 37.5q-88 0 -137 -35q-26 -26 -31 -96h-57q-8 62 -8 94q0 30 12 48.5 t45 33.5q81 37 184 37q123 0 183.5 -55.5t60.5 -145.5q0 -77 -49.5 -133t-151.5 -78q116 -9 177 -62.5t61 -145.5q0 -119 -83.5 -183.5t-232.5 -64.5q-98 0 -176 24q-61 24 -61 84z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M129 1120l180 287q34 51 53.5 67.5t45.5 16.5q23 0 44 -18.5t21 -40.5q0 -47 -59 -109l-234 -244z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1187" d="M78 829v70q98 55 182 55q48 0 69 -27.5t21 -105.5q0 -9 -1 -215t-1 -291q0 -123 45 -178t170 -55q75 0 159.5 30t145.5 76v478q0 99 -20 134.5t-94 35.5q-17 0 -66 -7v70q49 30 105 42.5t92 12.5q48 0 70 -29.5t22 -111.5q0 -7 -1.5 -111.5t-3 -248t-1.5 -244.5 q0 -75 20.5 -102t71.5 -27q40 0 82 10v-76q-64 -28 -141 -28q-52 0 -89 31t-45 100q-144 -144 -335 -144q-54 0 -109.5 24t-77.5 62q25 -425 25 -473q0 -80 -66 -80q-34 0 -47.5 18.5t-13.5 57.5v1084q0 98 -19.5 134t-89.5 36q-17 0 -59 -7z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1110" d="M113 872q0 230 158.5 371t435.5 141h335v-75q-86 -4 -116 -10t-43 -19q-12 -15 -15.5 -44t-3.5 -99q0 -173 3 -465.5t3 -405.5q0 -206 -6 -300t-26 -156q-74 -228 -394 -320l-20 74q89 34 149.5 75t95 90.5t50 101t20.5 118.5q13 165 13 389v43q-23 -2 -72 -2 q-118 0 -217 27.5t-179 84.5t-125.5 154.5t-45.5 226.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="428" d="M106 496q0 46 31 77t72 31q46 0 76 -28.5t30 -73.5q0 -50 -29 -80.5t-75 -30.5q-42 0 -73.5 30t-31.5 75z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M129 -475q112 23 165.5 56t53.5 91q0 35 -22 60t-72 53q-39 24 -39 57q0 43 49 168h68q-33 -70 -33 -102q0 -30 33 -47q74 -34 105.5 -72.5t31.5 -93.5q0 -103 -86 -162.5t-233 -79.5z" />
+<glyph unicode="&#xb9;" horiz-adv-x="743" d="M156 1618q74 43 170 82q37 14 53 14q43 0 43 -57q0 -22 -1 -120.5t-1 -166.5v-366q0 -52 10 -64q11 -13 133 -22v-60q-114 4 -201 4q-70 0 -184 -4v60q112 8 129 22q15 12 15 64v368q0 129 -7 187q-3 32 -32 32q-30 0 -109 -24z" />
+<glyph unicode="&#xba;" horiz-adv-x="821" d="M90 872q0 152 84.5 239t224.5 87q148 0 219.5 -81.5t71.5 -231.5q0 -160 -84.5 -245t-218.5 -85q-145 0 -221 86.5t-76 230.5zM193 885q0 -246 196 -246q97 0 148 59.5t51 178.5q0 124 -48 181.5t-145 57.5q-202 0 -202 -231z" />
+<glyph unicode="&#xbb;" horiz-adv-x="886" d="M63 117l279 332l-279 342l56 51l330 -326q30 -30 30 -65q0 -27 -35 -66l-325 -315zM397 117l279 332l-279 342l56 51l329 -326q31 -31 31 -65q0 -27 -35 -66l-325 -315z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1654" d="M147 1276q51 30 170 82q32 12 54 12q43 0 43 -55q0 -23 -1 -121t-1 -166v-366q0 -51 10 -66q12 -15 133 -21v-61q-177 6 -201 6q-13 0 -184 -6v61q110 5 129 21q14 14 14 66v368q0 138 -6 184q-3 33 -33 33q-35 0 -108 -22zM483 16l594 1364l78 -28l-594 -1368zM858 225 v56l375 524q16 26 32.5 37.5t41.5 11.5q51 0 51 -66q0 -28 -1 -92t-1 -86v-301h133v-84h-133v-71q0 -61 8 -74q22 -22 119 -27v-55q-106 4 -189 4q-54 0 -164 -4v55q100 8 115 27q12 12 12 76v69h-399zM965 305h292q0 166 5 426z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1654" d="M129 1276q51 30 170 82q32 12 53 12q43 0 43 -55q0 -23 -1 -121t-1 -166v-366q0 -51 10 -66q12 -15 134 -21v-61q-177 6 -201 6q-13 0 -184 -6v61q110 5 129 21q14 14 14 66v368q0 138 -6 184q-3 33 -33 33q-36 0 -109 -22zM465 16l594 1364l78 -28l-594 -1368zM940 0v63 q230 175 341.5 301.5t111.5 239.5q0 164 -170 164q-111 0 -140 -37q-18 -21 -26 -100h-56q-10 58 -10 102q0 30 14 48t48 36q87 35 184 35q129 0 196.5 -60t67.5 -174q0 -125 -107.5 -261t-301.5 -269q30 0 113.5 1t103.5 1q41 0 63 0.5t43 5t30.5 9.5t19.5 19t15 28.5 t13 42.5h57q-9 -115 -16 -148q-9 -47 -84 -47h-510z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1654" d="M121 610q0 37 8 107h61q2 -63 29 -90q45 -45 143 -45q104 0 156.5 43.5t52.5 119.5q0 68 -52.5 112t-160.5 50q-31 2 -96 2v76q2 0 38.5 2t57.5 4q86 13 131.5 58t45.5 106q0 57 -34.5 94t-115.5 37q-93 0 -137 -35q-25 -22 -31 -94h-57q-8 62 -8 92q0 31 12.5 50 t44.5 32q72 37 184 37q123 0 183.5 -55t60.5 -146q0 -76 -49.5 -131.5t-151.5 -79.5q115 -7 176.5 -61t61.5 -147q0 -119 -83.5 -183.5t-232.5 -64.5q-104 0 -176 26q-61 22 -61 84zM537 16l593 1364l78 -28l-594 -1368zM889 225v56l375 524q16 26 32 37.5t41 11.5 q23 0 37.5 -16t14.5 -50q0 -28 -1.5 -92t-1.5 -86v-301h134v-84h-134v-71q0 -59 9 -74q22 -22 118 -27v-55q-106 4 -188 4q-54 0 -164 -4v55q100 8 115 27q12 12 12 76v69h-399zM995 305h293q0 218 4 426z" />
+<glyph unicode="&#xbf;" horiz-adv-x="825" d="M37 -74q0 119 67.5 216.5t229.5 185.5q64 37 74 114q7 50 10 154h67q15 -144 15 -193q0 -52 -28 -85t-85 -64q-215 -122 -215 -313q0 -33 4 -63t18 -63.5t36 -58t61.5 -40.5t91.5 -17q137 0 182 37q38 30 41 153h72q20 -86 20 -143q0 -43 -30 -73t-80.5 -44t-100.5 -20 t-106 -6q-169 2 -256.5 83.5t-87.5 239.5zM334 926q0 50 29 80t75 30q42 0 72.5 -29.5t30.5 -72.5q0 -46 -30 -77.5t-71 -31.5q-46 0 -76 28.5t-30 72.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1413" d="M8 -2v80q110 6 146 31q18 11 32 40t45 113l406 1102q20 57 74 57q25 0 40.5 -12t28.5 -45l416 -1124q24 -64 39 -92.5t33 -41.5q25 -25 135 -28v-80q-132 4 -258 4q-122 0 -248 -4v80q107 6 143 12q50 9 50 45q0 49 -31 129l-94 252h-541l-86 -242q-33 -94 -33 -135 q0 -32 25 -43q12 -4 42 -7.5t73.5 -6.5t52.5 -4v-80q-118 4 -250 4q-122 0 -240 -4zM444 1765q0 26 21 46t47 20q21 0 41 -13.5t57 -50.5l238 -243l-43 -49l-279 188q-82 59 -82 102zM457 606h477l-242 660z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1413" d="M8 -2v80q110 6 146 31q18 11 32 40t45 113l406 1102q20 57 74 57q25 0 40.5 -12t28.5 -45l416 -1124q24 -64 39 -92.5t33 -41.5q25 -25 135 -28v-80q-132 4 -258 4q-122 0 -248 -4v80q107 6 143 12q50 9 50 45q0 49 -31 129l-94 252h-541l-86 -242q-33 -94 -33 -135 q0 -32 25 -43q12 -4 42 -7.5t73.5 -6.5t52.5 -4v-80q-118 4 -250 4q-122 0 -240 -4zM457 606h477l-242 660zM547 1522l237 243q36 36 58 50t43 14q25 0 45 -20t20 -46q0 -43 -82 -102l-278 -188z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1413" d="M8 -2v80q110 6 146 31q18 11 32 40t45 113l406 1102q20 57 74 57q25 0 40.5 -12t28.5 -45l416 -1124q24 -64 39 -92.5t33 -41.5q25 -25 135 -28v-80q-132 4 -258 4q-122 0 -248 -4v80q107 6 143 12q50 9 50 45q0 49 -31 129l-94 252h-541l-86 -242q-33 -94 -33 -135 q0 -32 25 -43q12 -4 42 -7.5t73.5 -6.5t52.5 -4v-80q-118 4 -250 4q-122 0 -240 -4zM412 1507l231 279q26 37 66 37q47 0 71 -39l215 -277l-49 -43l-244 215l-245 -215zM457 606h477l-242 660z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1413" d="M8 -2v80q110 6 146 31q18 11 32 40t45 113l406 1102q20 57 74 57q25 0 40.5 -12t28.5 -45l416 -1124q24 -64 39 -92.5t33 -41.5q25 -25 135 -28v-80q-132 4 -258 4q-122 0 -248 -4v80q107 6 143 12q50 9 50 45q0 49 -31 129l-94 252h-541l-86 -242q-33 -94 -33 -135 q0 -32 25 -43q12 -4 42 -7.5t73.5 -6.5t52.5 -4v-80q-118 4 -250 4q-122 0 -240 -4zM406 1524q26 90 70.5 146t107.5 56q34 0 112 -28l56 -25q69 -26 90 -26q51 0 102 108l68 -22q-59 -207 -162 -207q-48 0 -135 37l-49 18q-61 25 -91 25q-32 0 -52 -22.5t-54 -84.5z M457 606h477l-242 660z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1413" d="M8 -2v80q110 6 146 31q18 11 32 40t45 113l406 1102q20 57 74 57q25 0 40.5 -12t28.5 -45l416 -1124q24 -64 39 -92.5t33 -41.5q25 -25 135 -28v-80q-132 4 -258 4q-122 0 -248 -4v80q107 6 143 12q50 9 50 45q0 49 -31 129l-94 252h-541l-86 -242q-33 -94 -33 -135 q0 -32 25 -43q12 -4 42 -7.5t73.5 -6.5t52.5 -4v-80q-118 4 -250 4q-122 0 -240 -4zM430 1614q0 37 25.5 62.5t64.5 25.5q40 0 64 -25t24 -63q0 -39 -25 -65.5t-65 -26.5q-37 0 -62.5 26.5t-25.5 65.5zM457 606h477l-242 660zM776 1614q0 37 26.5 62.5t65.5 25.5t64.5 -25.5 t25.5 -62.5q0 -39 -25.5 -65.5t-66.5 -26.5q-37 0 -63.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1413" d="M8 -2v80q110 6 146 31q18 11 32 40t45 113l406 1102q20 57 74 57q25 0 40.5 -12t28.5 -45l416 -1124q24 -64 39 -92.5t33 -41.5q25 -25 135 -28v-80q-132 4 -258 4q-122 0 -248 -4v80q107 6 143 12q50 9 50 45q0 49 -31 129l-94 252h-541l-86 -242q-33 -94 -33 -135 q0 -32 25 -43q12 -4 42 -7.5t73.5 -6.5t52.5 -4v-80q-118 4 -250 4q-122 0 -240 -4zM457 606h477l-242 660zM522 1632q0 81 55.5 135t131.5 54q83 0 135.5 -50.5t52.5 -132.5q0 -83 -55 -135.5t-135 -52.5q-78 0 -131.5 50t-53.5 132zM598 1638q0 -54 30.5 -86t78.5 -32 q51 0 81.5 30.5t30.5 87.5q0 55 -32 84t-80 29q-45 0 -77 -30t-32 -83z" />
+<glyph unicode="&#xc6;" horiz-adv-x="1980" d="M8 -2v78q64 5 97 12t49 23q45 41 120 151l584 889q47 71 47 106q0 36 -51 41q-69 9 -143 11v75h991q72 0 95.5 -23.5t23.5 -72.5q0 -71 -15 -213h-71q-16 160 -52 185q-27 19 -81 25.5t-197 6.5h-225v-524h180q93 0 127.5 7t52.5 28q31 39 37 131h74q-2 -53 -2 -203 q0 -133 2 -217h-70q-10 92 -39 133q-14 20 -52 24.5t-134 4.5h-176v-492q0 -44 13 -63.5t44 -22.5q53 -6 203 -6t214 13t91 42q45 45 84 191h69q-3 -194 -34 -285q-17 -53 -148 -53h-835v76q101 7 141 20q27 8 37 39q4 27 4 129v271h-490l-167 -263q-4 -7 -17.5 -27t-18 -28 t-12 -23t-10 -27t-2.5 -26q0 -16 17.5 -32.5t46.5 -22.5q5 -1 139 -10v-78q-200 4 -277 4q-76 0 -264 -4zM627 621h436v645q0 14 -12 14q-9 0 -19 -23q-86 -138 -405 -636z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1370" d="M111 668q0 172 52 313t145.5 236t225 146.5t289.5 51.5q178 0 320 -43q94 -28 94 -115q0 -103 -18 -198h-70q-11 152 -47 188q-29 30 -107.5 49t-187.5 19q-120 0 -224 -42t-181 -120.5t-121.5 -198t-44.5 -266.5q0 -155 44 -275t123 -193.5t181 -110.5t223 -37 q100 0 176.5 22t110.5 53q44 35 84 170h73q-4 -127 -20 -188q-23 -79 -121 -115q-114 -43 -326 -43q-27 0 -39 2q-16 -41 -16 -71q0 -33 35 -52q79 -36 112 -75t33 -99q0 -205 -340 -256l-18 76q117 27 173 62t56 96q0 37 -23 63.5t-75 53.5q-22 15 -31.5 28t-9.5 35 q0 50 37 143q-257 32 -412 211.5t-155 479.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1191" d="M82 0v78q152 6 174 31q12 11 15 36.5t3 94.5v915q0 102 -14 121q-10 15 -44.5 21t-133.5 12v75h831q72 0 95.5 -23.5t23.5 -72.5q0 -80 -14 -213h-72q-16 160 -51 185q-27 19 -82.5 25.5t-196.5 6.5h-225v-524h180q93 0 128 7t53 28q30 38 36 131h74q-2 -53 -2 -203 q0 -133 2 -217h-69q-10 92 -39 133q-14 20 -52.5 24.5t-134.5 4.5h-176v-492q0 -44 13.5 -63.5t44.5 -22.5q53 -6 202 -6q150 0 214 13t91 42q41 41 84 191h70q-3 -191 -35 -285q-17 -53 -147 -53h-846zM322 1763q0 26 20.5 46t46.5 20q21 0 41 -13.5t57 -50.5l238 -243 l-43 -49l-279 188q-81 58 -81 102z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1191" d="M82 0v78q152 6 174 31q12 11 15 36.5t3 94.5v915q0 102 -14 121q-10 15 -44.5 21t-133.5 12v75h831q72 0 95.5 -23.5t23.5 -72.5q0 -80 -14 -213h-72q-16 160 -51 185q-27 19 -82.5 25.5t-196.5 6.5h-225v-524h180q93 0 128 7t53 28q30 38 36 131h74q-2 -53 -2 -203 q0 -133 2 -217h-69q-10 92 -39 133q-14 20 -52.5 24.5t-134.5 4.5h-176v-492q0 -44 13.5 -63.5t44.5 -22.5q53 -6 202 -6q150 0 214 13t91 42q41 41 84 191h70q-3 -191 -35 -285q-17 -53 -147 -53h-846zM440 1522l238 243q36 36 57.5 50t42.5 14q25 0 45.5 -20t20.5 -46 q0 -43 -82 -102l-279 -188z" />
+<glyph unicode="&#xca;" horiz-adv-x="1191" d="M82 0v78q152 6 174 31q12 11 15 36.5t3 94.5v915q0 102 -14 121q-10 15 -44.5 21t-133.5 12v75h831q72 0 95.5 -23.5t23.5 -72.5q0 -80 -14 -213h-72q-16 160 -51 185q-27 19 -82.5 25.5t-196.5 6.5h-225v-524h180q93 0 128 7t53 28q30 38 36 131h74q-2 -53 -2 -203 q0 -133 2 -217h-69q-10 92 -39 133q-14 20 -52.5 24.5t-134.5 4.5h-176v-492q0 -44 13.5 -63.5t44.5 -22.5q53 -6 202 -6q150 0 214 13t91 42q41 41 84 191h70q-3 -191 -35 -285q-17 -53 -147 -53h-846zM295 1507l231 279q26 37 66 37q48 0 72 -39l215 -277l-50 -43 l-243 215l-246 -215z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1191" d="M82 0v78q152 6 174 31q12 11 15 36.5t3 94.5v915q0 102 -14 121q-10 15 -44.5 21t-133.5 12v75h831q72 0 95.5 -23.5t23.5 -72.5q0 -80 -14 -213h-72q-16 160 -51 185q-27 19 -82.5 25.5t-196.5 6.5h-225v-524h180q93 0 128 7t53 28q30 38 36 131h74q-2 -53 -2 -203 q0 -133 2 -217h-69q-10 92 -39 133q-14 20 -52.5 24.5t-134.5 4.5h-176v-492q0 -44 13.5 -63.5t44.5 -22.5q53 -6 202 -6q150 0 214 13t91 42q41 41 84 191h70q-3 -191 -35 -285q-17 -53 -147 -53h-846zM332 1616q0 37 25.5 62.5t64.5 25.5q40 0 64 -25t24 -63 q0 -39 -25 -65.5t-65 -26.5q-37 0 -62.5 26.5t-25.5 65.5zM678 1616q0 37 26.5 62.5t65.5 25.5t64.5 -25.5t25.5 -62.5q0 -39 -25.5 -65.5t-66.5 -26.5q-37 0 -63.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="665" d="M82 -2v80q157 11 176 35q10 9 13 33t3 96v909q0 62 -3 86.5t-13 36.5q-14 19 -176 35v77q168 -4 237 -4q89 0 265 4v-77q-96 -9 -132.5 -16.5t-45.5 -20.5q-15 -24 -15 -119v-913q0 -107 15 -125q21 -27 178 -37v-80q-176 4 -254 4q-76 0 -248 -4zM82 1763q0 26 21 46 t47 20q21 0 41 -13.5t57 -50.5l237 -243l-43 -49l-278 188q-82 59 -82 102z" />
+<glyph unicode="&#xcd;" horiz-adv-x="665" d="M82 -2v80q157 11 176 35q10 9 13 33t3 96v909q0 62 -3 86.5t-13 36.5q-14 19 -176 35v77q168 -4 237 -4q89 0 265 4v-77q-96 -9 -132.5 -16.5t-45.5 -20.5q-15 -24 -15 -119v-913q0 -107 15 -125q21 -27 178 -37v-80q-176 4 -254 4q-76 0 -248 -4zM168 1522l238 243 q36 36 57.5 50t42.5 14q25 0 45 -20t20 -46q0 -43 -82 -102l-278 -188z" />
+<glyph unicode="&#xce;" horiz-adv-x="665" d="M43 1507l231 279q26 37 66 37q48 0 72 -39l215 -277l-49 -43l-244 215l-246 -215zM82 -2v80q157 11 176 35q10 9 13 33t3 96v909q0 62 -3 86.5t-13 36.5q-14 19 -176 35v77q168 -4 237 -4q89 0 265 4v-77q-96 -9 -132.5 -16.5t-45.5 -20.5q-15 -24 -15 -119v-913 q0 -107 15 -125q21 -27 178 -37v-80q-176 4 -254 4q-76 0 -248 -4z" />
+<glyph unicode="&#xcf;" horiz-adv-x="665" d="M68 1616q0 37 25.5 62.5t64.5 25.5q40 0 64 -25t24 -63q0 -39 -25 -65.5t-65 -26.5q-37 0 -62.5 26.5t-25.5 65.5zM82 -2v80q157 11 176 35q10 9 13 33t3 96v909q0 62 -3 86.5t-13 36.5q-14 19 -176 35v77q168 -4 237 -4q89 0 265 4v-77q-96 -9 -132.5 -16.5t-45.5 -20.5 q-15 -24 -15 -119v-913q0 -107 15 -125q21 -27 178 -37v-80q-176 4 -254 4q-76 0 -248 -4zM414 1616q0 37 26.5 62.5t65.5 25.5t64.5 -25.5t25.5 -62.5q0 -39 -25.5 -65.5t-66.5 -26.5q-37 0 -63.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1456" d="M74 676v96h200v383q0 95 -10 115q-10 19 -44.5 26t-137.5 13v75h315q309 0 455.5 -24.5t247.5 -87.5q128 -83 187 -217.5t59 -335.5q0 -402 -250 -588q-92 -69 -216 -101t-335 -32h-463v80q94 5 130 11t46 20q10 10 13 32t3 88v447h-200zM391 176q0 -38 13 -52t49 -22 q66 -10 186 -10q278 0 430 161.5t152 459.5q0 182 -68 311.5t-190 192.5q-147 77 -426 77h-146v-522h408v-96h-408v-500z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1488" d="M70 1309v77q90 -4 206 -4q60 0 132 4q647 -971 774 -1185q-3 156 -7.5 513.5t-5.5 381.5q-2 90 -4.5 125t-11.5 51q-18 29 -176 37v77q218 -4 252 -4q21 0 239 4v-77q-89 -6 -121.5 -13t-48.5 -22q-12 -14 -16 -48t-4 -130q0 -104 -1 -356t-1 -378q0 -53 1 -169t1 -152 q0 -55 -55 -55q-45 0 -62 28q-276 427 -455.5 701.5t-243.5 371t-81 123.5q1 -117 3 -340t3.5 -390.5t1.5 -192.5q0 -99 3 -131t14 -43q12 -17 48.5 -24t133.5 -13v-78q-222 4 -258 4q-50 0 -258 -4v78q172 8 192 41q8 13 10 45.5t2 126.5l1 173q1 173 2.5 372t1.5 262 q0 136 -15 157q-14 32 -63 43q-67 13 -133 13zM469 1524q26 90 70.5 146t107.5 56q35 0 113 -28l55 -25q69 -26 90 -26q52 0 103 108l67 -22q-59 -207 -162 -207q-48 0 -135 37l-49 18q-61 25 -90 25q-33 0 -53.5 -23t-53.5 -84z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q161 0 280 -48.5t193 -141.5t109.5 -220t35.5 -290q0 -148 -32 -271t-89 -210t-136 -146.5t-173 -88t-201 -28.5q-157 0 -278 52t-197.5 147.5t-115.5 225.5t-39 290zM236 717q0 -645 512 -645q239 0 369 163.5t130 462.5 q0 319 -125 468t-374 149q-246 0 -379 -162t-133 -436zM485 1763q0 26 21 46t47 20q21 0 41 -13.5t57 -50.5l238 -243l-43 -49l-279 188q-82 59 -82 102z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q161 0 280 -48.5t193 -141.5t109.5 -220t35.5 -290q0 -148 -32 -271t-89 -210t-136 -146.5t-173 -88t-201 -28.5q-157 0 -278 52t-197.5 147.5t-115.5 225.5t-39 290zM236 717q0 -645 512 -645q239 0 369 163.5t130 462.5 q0 319 -125 468t-374 149q-246 0 -379 -162t-133 -436zM606 1522l238 243q36 36 57.5 50t42.5 14q25 0 45.5 -20t20.5 -46q0 -43 -82 -102l-279 -188z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q161 0 280 -48.5t193 -141.5t109.5 -220t35.5 -290q0 -148 -32 -271t-89 -210t-136 -146.5t-173 -88t-201 -28.5q-157 0 -278 52t-197.5 147.5t-115.5 225.5t-39 290zM236 717q0 -645 512 -645q239 0 369 163.5t130 462.5 q0 319 -125 468t-374 149q-246 0 -379 -162t-133 -436zM463 1507l231 279q26 37 66 37q47 0 71 -39l216 -277l-50 -43l-243 215l-246 -215z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q161 0 280 -48.5t193 -141.5t109.5 -220t35.5 -290q0 -148 -32 -271t-89 -210t-136 -146.5t-173 -88t-201 -28.5q-157 0 -278 52t-197.5 147.5t-115.5 225.5t-39 290zM236 717q0 -645 512 -645q239 0 369 163.5t130 462.5 q0 319 -125 468t-374 149q-246 0 -379 -162t-133 -436zM446 1524q26 90 71 146t108 56q34 0 112 -28l56 -25q69 -26 90 -26q51 0 102 108l68 -22q-59 -207 -162 -207q-48 0 -135 37l-49 18q-61 25 -91 25q-32 0 -52 -22.5t-54 -84.5z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q161 0 280 -48.5t193 -141.5t109.5 -220t35.5 -290q0 -148 -32 -271t-89 -210t-136 -146.5t-173 -88t-201 -28.5q-157 0 -278 52t-197.5 147.5t-115.5 225.5t-39 290zM236 717q0 -645 512 -645q239 0 369 163.5t130 462.5 q0 319 -125 468t-374 149q-246 0 -379 -162t-133 -436zM485 1616q0 37 25.5 62.5t64.5 25.5q40 0 64.5 -25t24.5 -63q0 -39 -25.5 -65.5t-65.5 -26.5q-37 0 -62.5 26.5t-25.5 65.5zM831 1616q0 37 26.5 62.5t66.5 25.5q39 0 64.5 -25.5t25.5 -62.5q0 -39 -25.5 -65.5 t-66.5 -26.5q-37 0 -64 26.5t-27 65.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1177" d="M203 307l309 332l-309 332l78 84l311 -328l305 332l74 -80l-307 -334l311 -332l-80 -82l-305 326l-309 -328z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1482" d="M111 686q0 339 175.5 534t467.5 195q222 0 364 -94l107 152l75 -56l-108 -155q180 -177 180 -547q0 -148 -32 -271t-89 -210t-136 -146.5t-173 -88t-201 -28.5q-228 0 -381 109l-112 -162l-76 53l119 170q-180 189 -180 545zM236 717q0 -316 122 -479l697 991 q-119 88 -307 88q-246 0 -379 -163t-133 -437zM424 170q123 -100 324 -100q239 0 369 164t130 464q0 313 -125 465z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1527" d="M63 1309v77q160 -4 263 -4q83 0 243 4v-77q-99 -7 -134 -15t-48 -22q-11 -17 -14 -111q-4 -158 -4 -530q0 -278 37 -371q70 -186 370 -186q110 0 204 38.5t130 100.5q39 65 53.5 169t14.5 273q0 195 -7 496q-1 70 -5.5 95t-16.5 34q-29 17 -168 29v77q148 -4 233 -4 q114 0 254 4v-77q-167 -10 -180 -43q-10 -25 -10 -133v-515q0 -195 -23 -307.5t-81 -183.5q-124 -156 -426 -156q-155 0 -266.5 50t-162.5 135q-40 67 -55.5 164t-15.5 305q0 95 2 281t2 249q0 89 -12 113q-12 19 -50.5 27.5t-126.5 13.5zM481 1763q0 26 21 46t47 20 q21 0 41 -13.5t57 -50.5l238 -243l-43 -49l-279 188q-82 59 -82 102z" />
+<glyph unicode="&#xda;" horiz-adv-x="1527" d="M63 1309v77q160 -4 263 -4q83 0 243 4v-77q-99 -7 -134 -15t-48 -22q-11 -17 -14 -111q-4 -158 -4 -530q0 -278 37 -371q70 -186 370 -186q110 0 204 38.5t130 100.5q39 65 53.5 169t14.5 273q0 195 -7 496q-1 70 -5.5 95t-16.5 34q-29 17 -168 29v77q148 -4 233 -4 q114 0 254 4v-77q-167 -10 -180 -43q-10 -25 -10 -133v-515q0 -195 -23 -307.5t-81 -183.5q-124 -156 -426 -156q-155 0 -266.5 50t-162.5 135q-40 67 -55.5 164t-15.5 305q0 95 2 281t2 249q0 89 -12 113q-12 19 -50.5 27.5t-126.5 13.5zM625 1522l237 243q36 36 58 50 t43 14q25 0 45 -20t20 -46q0 -43 -82 -102l-278 -188z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1527" d="M63 1309v77q160 -4 263 -4q83 0 243 4v-77q-99 -7 -134 -15t-48 -22q-11 -17 -14 -111q-4 -158 -4 -530q0 -278 37 -371q70 -186 370 -186q110 0 204 38.5t130 100.5q39 65 53.5 169t14.5 273q0 195 -7 496q-1 70 -5.5 95t-16.5 34q-29 17 -168 29v77q148 -4 233 -4 q114 0 254 4v-77q-167 -10 -180 -43q-10 -25 -10 -133v-515q0 -195 -23 -307.5t-81 -183.5q-124 -156 -426 -156q-155 0 -266.5 50t-162.5 135q-40 67 -55.5 164t-15.5 305q0 95 2 281t2 249q0 89 -12 113q-12 19 -50.5 27.5t-126.5 13.5zM438 1507l232 279q26 37 65 37 q48 0 72 -39l215 -277l-49 -43l-244 215l-246 -215z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1527" d="M63 1309v77q160 -4 263 -4q83 0 243 4v-77q-99 -7 -134 -15t-48 -22q-11 -17 -14 -111q-4 -158 -4 -530q0 -278 37 -371q70 -186 370 -186q110 0 204 38.5t130 100.5q39 65 53.5 169t14.5 273q0 195 -7 496q-1 70 -5.5 95t-16.5 34q-29 17 -168 29v77q148 -4 233 -4 q114 0 254 4v-77q-167 -10 -180 -43q-10 -25 -10 -133v-515q0 -195 -23 -307.5t-81 -183.5q-124 -156 -426 -156q-155 0 -266.5 50t-162.5 135q-40 67 -55.5 164t-15.5 305q0 95 2 281t2 249q0 89 -12 113q-12 19 -50.5 27.5t-126.5 13.5zM477 1616q0 37 25.5 62.5 t64.5 25.5q40 0 64 -25t24 -63q0 -39 -25 -65.5t-65 -26.5q-37 0 -62.5 26.5t-25.5 65.5zM823 1616q0 37 26.5 62.5t65.5 25.5t65 -25.5t26 -62.5q0 -39 -26 -65.5t-67 -26.5q-37 0 -63.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1228" d="M8 1309v77q234 -4 236 -4q23 0 231 4v-77q-77 -1 -116.5 -8.5t-48.5 -17.5t-9 -28q0 -29 47 -108q135 -229 277 -488q48 82 144 249t144 249q43 73 43 105q0 18 -14 27.5t-49 14t-105 5.5v77q96 -4 238 -4q107 0 193 4v-77q-59 -3 -97 -29q-34 -30 -82 -104l-368 -598 v-365q0 -86 8 -102q11 -17 45 -24t141 -11v-78q-222 4 -243 4q-58 0 -254 -4v78q102 4 132.5 10.5t39.5 24.5q12 17 12 102v362l-338 566q-12 21 -27 47t-21.5 37.5t-15.5 25t-15.5 20t-14.5 11.5q-44 25 -113 27zM524 1522l238 243q36 36 57.5 50t42.5 14q25 0 45.5 -20 t20.5 -46q0 -43 -82 -102l-279 -188z" />
+<glyph unicode="&#xde;" horiz-adv-x="1144" d="M82 -2v80q95 6 130 12.5t46 20.5q10 9 13 32.5t3 96.5v913q0 61 -3 85t-13 36q-14 19 -176 35v77q168 -4 237 -4q89 0 265 4v-77q-96 -9 -132.5 -16.5t-45.5 -20.5q-15 -24 -15 -119v-39h98q147 0 271 -18q169 -25 244 -121t75 -236q0 -104 -31 -182t-82 -126t-125.5 -78 t-153 -41t-173.5 -11q-78 0 -123 2v-65q0 -107 15 -125q11 -14 50.5 -21.5t129.5 -13.5v-80q-176 4 -258 4q-74 0 -246 -4zM391 387q17 0 49 -1t49 -1q52 0 91.5 2t90 10.5t87.5 22.5t74.5 40t61.5 62t39 90t15 121q0 117 -57 184t-154 87q-108 24 -248 24h-98v-641z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1161" d="M72 827v62q44 10 69.5 19t51.5 25.5t37.5 43.5t11.5 67q3 154 32 242t91 150q99 96 262 96q139 0 225 -76.5t86 -193.5q0 -92 -42.5 -164.5t-119.5 -147.5q-81 -78 -105 -111.5t-24 -58.5q0 -45 53 -84q13 -10 112.5 -87t145.5 -122q103 -103 103 -213q0 -147 -94.5 -225 t-247.5 -78q-100 0 -184 35q-46 23 -61 54t-15 77q0 43 4 105h74q13 -106 61 -144q50 -35 139 -35q98 0 155.5 47.5t57.5 141.5q0 92 -86 168q-43 38 -130.5 106t-117.5 92q-79 65 -79 144q0 82 90 166q51 48 80 78t61 71.5t46.5 81.5t14.5 84q0 101 -59.5 152t-159.5 51 q-113 0 -178.5 -72t-73.5 -186q-10 -147 -10 -342v-586q0 -104 8 -260q-37 2 -94 2q-68 0 -186 -4v78q128 6 147 30q13 13 17 35.5t4 75.5v610h-172z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1034" d="M109 254q0 55 19.5 98.5t67 81.5t140 59t225.5 21q83 0 139 -6v113q0 142 -32 186q-28 38 -73.5 51.5t-121.5 13.5q-117 0 -164 -41q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 223 33q180 0 246 -78q31 -36 43 -84.5t12 -134.5q0 -18 -1 -226t-1 -219 q0 -86 20.5 -115.5t75.5 -29.5q34 0 82 10v-76q-65 -28 -135 -28q-112 0 -135 120q-112 -129 -289 -129q-130 0 -221.5 71.5t-91.5 205.5zM221 264q0 -67 33 -111.5t79.5 -61.5t102.5 -17q76 0 145 28t119 70v252q-43 4 -151 4q-96 0 -162.5 -12.5t-101.5 -36t-49.5 -51.5 t-14.5 -64zM246 1432q0 22 22 40.5t45 18.5q26 0 45.5 -16.5t51.5 -67.5l180 -287l-51 -41l-232 244q-61 64 -61 109z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1034" d="M109 254q0 55 19.5 98.5t67 81.5t140 59t225.5 21q83 0 139 -6v113q0 142 -32 186q-28 38 -73.5 51.5t-121.5 13.5q-117 0 -164 -41q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 223 33q180 0 246 -78q31 -36 43 -84.5t12 -134.5q0 -18 -1 -226t-1 -219 q0 -86 20.5 -115.5t75.5 -29.5q34 0 82 10v-76q-65 -28 -135 -28q-112 0 -135 120q-112 -129 -289 -129q-130 0 -221.5 71.5t-91.5 205.5zM221 264q0 -67 33 -111.5t79.5 -61.5t102.5 -17q76 0 145 28t119 70v252q-43 4 -151 4q-96 0 -162.5 -12.5t-101.5 -36t-49.5 -51.5 t-14.5 -64zM377 1120l180 287q34 51 53 67.5t45 16.5q23 0 44.5 -18.5t21.5 -40.5q0 -47 -59 -109l-234 -244z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1034" d="M109 254q0 55 19.5 98.5t67 81.5t140 59t225.5 21q83 0 139 -6v113q0 142 -32 186q-28 38 -73.5 51.5t-121.5 13.5q-117 0 -164 -41q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 223 33q180 0 246 -78q31 -36 43 -84.5t12 -134.5q0 -18 -1 -226t-1 -219 q0 -86 20.5 -115.5t75.5 -29.5q34 0 82 10v-76q-65 -28 -135 -28q-112 0 -135 120q-112 -129 -289 -129q-130 0 -221.5 71.5t-91.5 205.5zM221 264q0 -67 33 -111.5t79.5 -61.5t102.5 -17q76 0 145 28t119 70v252q-43 4 -151 4q-96 0 -162.5 -12.5t-101.5 -36t-49.5 -51.5 t-14.5 -64zM225 1085l211 310q25 37 66 37q42 0 69 -37l199 -308l-51 -40l-223 239l-222 -239z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1034" d="M109 254q0 55 19.5 98.5t67 81.5t140 59t225.5 21q83 0 139 -6v113q0 142 -32 186q-28 38 -73.5 51.5t-121.5 13.5q-117 0 -164 -41q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 223 33q180 0 246 -78q31 -36 43 -84.5t12 -134.5q0 -18 -1 -226t-1 -219 q0 -86 20.5 -115.5t75.5 -29.5q34 0 82 10v-76q-65 -28 -135 -28q-112 0 -135 120q-112 -129 -289 -129q-130 0 -221.5 71.5t-91.5 205.5zM188 1143q26 90 68.5 145t103.5 55q40 0 109 -26l53 -25q65 -26 88 -26q52 0 101 108l61 -22q-28 -105 -70 -156t-90 -51 q-39 0 -125 35l-47 20q-70 25 -88 25q-31 0 -49.5 -22t-50.5 -85zM221 264q0 -67 33 -111.5t79.5 -61.5t102.5 -17q76 0 145 28t119 70v252q-43 4 -151 4q-96 0 -162.5 -12.5t-101.5 -36t-49.5 -51.5t-14.5 -64z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1034" d="M109 254q0 55 19.5 98.5t67 81.5t140 59t225.5 21q83 0 139 -6v113q0 142 -32 186q-28 38 -73.5 51.5t-121.5 13.5q-117 0 -164 -41q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 223 33q180 0 246 -78q31 -36 43 -84.5t12 -134.5q0 -18 -1 -226t-1 -219 q0 -86 20.5 -115.5t75.5 -29.5q34 0 82 10v-76q-65 -28 -135 -28q-112 0 -135 120q-112 -129 -289 -129q-130 0 -221.5 71.5t-91.5 205.5zM221 264q0 -67 33 -111.5t79.5 -61.5t102.5 -17q76 0 145 28t119 70v252q-43 4 -151 4q-96 0 -162.5 -12.5t-101.5 -36t-49.5 -51.5 t-14.5 -64zM244 1276q0 37 25.5 62.5t64.5 25.5q42 0 66 -25t24 -63q0 -39 -25 -65.5t-67 -26.5q-37 0 -62.5 25.5t-25.5 66.5zM561 1276q0 37 26.5 62.5t65.5 25.5q38 0 63 -25.5t25 -62.5q0 -39 -25.5 -65.5t-64.5 -26.5q-38 0 -64 26t-26 66z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1034" d="M109 254q0 55 19.5 98.5t67 81.5t140 59t225.5 21q83 0 139 -6v113q0 142 -32 186q-28 38 -73.5 51.5t-121.5 13.5q-117 0 -164 -41q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 223 33q180 0 246 -78q31 -36 43 -84.5t12 -134.5q0 -18 -1 -226t-1 -219 q0 -86 20.5 -115.5t75.5 -29.5q34 0 82 10v-76q-65 -28 -135 -28q-112 0 -135 120q-112 -129 -289 -129q-130 0 -221.5 71.5t-91.5 205.5zM221 264q0 -67 33 -111.5t79.5 -61.5t102.5 -17q76 0 145 28t119 70v252q-43 4 -151 4q-96 0 -162.5 -12.5t-101.5 -36t-49.5 -51.5 t-14.5 -64zM309 1257q0 81 55.5 135t131.5 54q84 0 136 -50.5t52 -133.5q0 -82 -55 -134.5t-135 -52.5q-78 0 -131.5 50t-53.5 132zM385 1262q0 -53 30.5 -85t78.5 -32q51 0 81.5 30.5t30.5 86.5t-31.5 85t-80.5 29q-46 0 -77.5 -30t-31.5 -84z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1570" d="M109 264q0 48 13 88t47 76.5t87.5 61.5t138.5 40t197 15h102v76q0 131 -35 186q-44 70 -186 70q-108 0 -164 -46q-35 -28 -41 -155h-71q-21 113 -21 145q0 81 105 113q112 33 213 33q241 0 286 -181q119 181 350 181q77 0 139 -24t100.5 -62.5t64.5 -90t36.5 -103 t10.5 -105.5q0 -85 -27 -107q-16 -12 -80 -12h-579v-23q0 -74 20.5 -138.5t60.5 -116.5t108.5 -82.5t156.5 -30.5q50 0 92.5 9t82.5 30t64.5 37.5t67.5 48.5l49 -62q-182 -164 -371 -164q-224 0 -342 162q-156 -156 -352 -156q-62 0 -117.5 16.5t-102.5 49t-75 89.5t-28 132 zM221 276q0 -56 19.5 -97t52.5 -63t70 -32t79 -10q162 0 306 123q-54 97 -54 262h-119q-101 0 -172.5 -13.5t-110 -39.5t-55 -57.5t-16.5 -72.5zM803 547l565 6v16q0 49 -7 91t-26 82.5t-48.5 69t-77 45.5t-109.5 17q-120 0 -203.5 -82t-93.5 -245z" />
+<glyph unicode="&#xe7;" horiz-adv-x="968" d="M106 457q0 229 130 369.5t358 140.5q87 0 168 -19q52 -14 75 -40.5t23 -76.5q0 -69 -18 -149h-72q-11 113 -43 149q-41 43 -162 43q-166 0 -257 -112.5t-91 -300.5q0 -80 20 -148t60 -122t107 -84.5t153 -30.5q93 0 164.5 30.5t142.5 90.5l54 -66q-158 -154 -379 -160 q-15 -43 -15 -63q0 -30 33 -47q74 -34 105.5 -72.5t31.5 -93.5q0 -103 -86 -162.5t-233 -79.5l-21 72q112 23 165.5 56t53.5 91q0 35 -22 60t-72 53q-39 24 -39 57q0 37 35 133q-168 19 -268.5 146.5t-100.5 335.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1007" d="M106 457q0 124 35.5 222.5t98 160.5t145 94.5t178.5 32.5q98 0 170 -31t111 -84t56.5 -112t17.5 -126q0 -84 -25 -106q-18 -12 -80 -12h-594v-39q0 -171 88.5 -276t263.5 -105q95 0 168.5 31.5t145.5 89.5l55 -68q-175 -158 -383 -158q-114 0 -202.5 39t-141.5 107 t-80 154t-27 186zM229 580l576 6v16q0 128 -58.5 200t-203.5 72q-121 0 -209 -76.5t-105 -217.5zM324 1432q0 22 22 40.5t45 18.5q26 0 45 -16.5t51 -67.5l181 -287l-52 -41l-231 244q-61 64 -61 109z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1007" d="M106 457q0 124 35.5 222.5t98 160.5t145 94.5t178.5 32.5q98 0 170 -31t111 -84t56.5 -112t17.5 -126q0 -84 -25 -106q-18 -12 -80 -12h-594v-39q0 -171 88.5 -276t263.5 -105q95 0 168.5 31.5t145.5 89.5l55 -68q-175 -158 -383 -158q-114 0 -202.5 39t-141.5 107 t-80 154t-27 186zM229 580l576 6v16q0 128 -58.5 200t-203.5 72q-121 0 -209 -76.5t-105 -217.5zM436 1120l180 287q34 51 53.5 67.5t45.5 16.5q23 0 44 -18.5t21 -40.5q0 -47 -59 -109l-234 -244z" />
+<glyph unicode="&#xea;" horiz-adv-x="1007" d="M106 457q0 124 35.5 222.5t98 160.5t145 94.5t178.5 32.5q98 0 170 -31t111 -84t56.5 -112t17.5 -126q0 -84 -25 -106q-18 -12 -80 -12h-594v-39q0 -171 88.5 -276t263.5 -105q95 0 168.5 31.5t145.5 89.5l55 -68q-175 -158 -383 -158q-114 0 -202.5 39t-141.5 107 t-80 154t-27 186zM229 580l576 6v16q0 128 -58.5 200t-203.5 72q-121 0 -209 -76.5t-105 -217.5zM276 1085l211 310q25 37 66 37q43 0 70 -37l198 -308l-51 -40l-223 239l-221 -239z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1007" d="M106 457q0 124 35.5 222.5t98 160.5t145 94.5t178.5 32.5q98 0 170 -31t111 -84t56.5 -112t17.5 -126q0 -84 -25 -106q-18 -12 -80 -12h-594v-39q0 -171 88.5 -276t263.5 -105q95 0 168.5 31.5t145.5 89.5l55 -68q-175 -158 -383 -158q-114 0 -202.5 39t-141.5 107 t-80 154t-27 186zM229 580l576 6v16q0 128 -58.5 200t-203.5 72q-121 0 -209 -76.5t-105 -217.5zM293 1276q0 37 25.5 62.5t64.5 25.5q42 0 66 -25t24 -63q0 -39 -25 -65.5t-67 -26.5q-37 0 -62.5 25.5t-25.5 66.5zM610 1276q0 37 26.5 62.5t65.5 25.5q38 0 63.5 -25.5 t25.5 -62.5q0 -39 -26 -65.5t-65 -26.5q-38 0 -64 26t-26 66z" />
+<glyph unicode="&#xec;" horiz-adv-x="593" d="M23 1432q0 22 22 40.5t45 18.5q26 0 45 -16.5t51 -67.5l181 -287l-52 -41l-231 244q-61 64 -61 109zM76 -2v78q81 7 111 12t38 18q19 19 19 109v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 186 55q47 0 69.5 -25.5t22.5 -103.5q0 -97 -3 -304t-3 -304 q0 -89 17 -108q9 -14 37 -20.5t108 -12.5v-78q-176 4 -242 4q-12 0 -192 -4z" />
+<glyph unicode="&#xed;" horiz-adv-x="593" d="M76 -2v78q81 7 111 12t38 18q19 19 19 109v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 186 55q47 0 69.5 -25.5t22.5 -103.5q0 -97 -3 -304t-3 -304q0 -89 17 -108q9 -14 37 -20.5t108 -12.5v-78q-176 4 -242 4q-12 0 -192 -4zM117 1120l180 287 q34 51 53 67.5t45 16.5q23 0 44.5 -18.5t21.5 -40.5q0 -46 -60 -109l-233 -244z" />
+<glyph unicode="&#xee;" horiz-adv-x="593" d="M-14 1085l211 310q25 37 65 37q43 0 70 -37l198 -308l-51 -40l-223 239l-221 -239zM76 -2v78q81 7 111 12t38 18q19 19 19 109v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 186 55q47 0 69.5 -25.5t22.5 -103.5q0 -97 -3 -304t-3 -304q0 -89 17 -108 q9 -14 37 -20.5t108 -12.5v-78q-176 4 -242 4q-12 0 -192 -4z" />
+<glyph unicode="&#xef;" horiz-adv-x="593" d="M12 1276q0 37 25.5 62.5t64.5 25.5q42 0 66.5 -25t24.5 -63q0 -39 -25.5 -65.5t-67.5 -26.5q-37 0 -62.5 25.5t-25.5 66.5zM76 -2v78q81 7 111 12t38 18q19 19 19 109v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 186 55q47 0 69.5 -25.5t22.5 -103.5 q0 -97 -3 -304t-3 -304q0 -89 17 -108q9 -14 37 -20.5t108 -12.5v-78q-176 4 -242 4q-12 0 -192 -4zM330 1276q0 37 26.5 62.5t65.5 25.5q38 0 63 -25.5t25 -62.5q0 -39 -25.5 -65.5t-64.5 -26.5q-38 0 -64 26t-26 66z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1060" d="M106 442q0 207 121 340t316 133q79 0 158.5 -37.5t119.5 -107.5q-61 214 -196 375l-252 -148l-41 70l235 139q-55 67 -142 127t-175 99l39 75q198 -77 366 -239l179 102l43 -72l-166 -96q125 -148 184 -322t59 -393q0 -246 -118 -381t-314 -135q-189 0 -302.5 131 t-113.5 340zM217 471q0 -193 85.5 -298t221.5 -105q147 0 231.5 95.5t84.5 262.5q0 181 -82 289t-238 108q-131 0 -217 -95.5t-86 -256.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1210" d="M76 -2v78q132 8 149 33q19 19 19 106v451q0 97 -19.5 133.5t-89.5 36.5q-10 0 -59 -7v70q98 55 176 55q43 0 67 -27t27 -110q72 68 172 108t205 40q58 0 109 -18.5t77 -49.5q34 -38 48 -100t14 -170v-412q0 -72 14 -100q8 -16 39.5 -24t120.5 -15v-78q-172 4 -227 4 q-125 0 -211 -4v78q70 6 100 13t39 20q20 17 20 110v393q0 131 -32 174q-48 68 -168 68q-78 0 -169 -28t-149 -72v-537q0 -89 17 -108q9 -14 37 -20.5t108 -12.5v-78q-176 4 -242 4q-12 0 -192 -4zM307 1143q26 90 68.5 145t103.5 55q40 0 109 -26l53 -25q65 -26 88 -26 q51 0 100 108l62 -22q-28 -105 -70 -156t-90 -51q-39 0 -125 35l-47 20q-70 25 -88 25q-31 0 -49.5 -22t-50.5 -85z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1093" d="M106 463q0 233 125 368.5t330 135.5q220 0 324 -126t104 -356q0 -128 -34 -227.5t-95 -161.5t-140.5 -93.5t-174.5 -31.5q-216 0 -327.5 133t-111.5 359zM217 485q0 -417 334 -417q157 0 242.5 103t85.5 300q0 401 -324 401q-164 0 -251 -100t-87 -287zM340 1432 q0 22 22.5 40.5t45.5 18.5q26 0 45 -16.5t51 -67.5l180 -287l-51 -41l-232 244q-61 64 -61 109z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1093" d="M106 463q0 233 125 368.5t330 135.5q220 0 324 -126t104 -356q0 -128 -34 -227.5t-95 -161.5t-140.5 -93.5t-174.5 -31.5q-216 0 -327.5 133t-111.5 359zM217 485q0 -417 334 -417q157 0 242.5 103t85.5 300q0 401 -324 401q-164 0 -251 -100t-87 -287zM434 1120l180 287 q34 51 53.5 67.5t45.5 16.5q23 0 44 -18.5t21 -40.5q0 -47 -59 -109l-234 -244z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1093" d="M106 463q0 233 125 368.5t330 135.5q220 0 324 -126t104 -356q0 -128 -34 -227.5t-95 -161.5t-140.5 -93.5t-174.5 -31.5q-216 0 -327.5 133t-111.5 359zM217 485q0 -417 334 -417q157 0 242.5 103t85.5 300q0 401 -324 401q-164 0 -251 -100t-87 -287zM285 1085l211 310 q25 37 65 37q43 0 70 -37l198 -308l-51 -40l-223 239l-221 -239z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1093" d="M106 463q0 233 125 368.5t330 135.5q220 0 324 -126t104 -356q0 -128 -34 -227.5t-95 -161.5t-140.5 -93.5t-174.5 -31.5q-216 0 -327.5 133t-111.5 359zM217 485q0 -417 334 -417q157 0 242.5 103t85.5 300q0 401 -324 401q-164 0 -251 -100t-87 -287zM260 1143 q26 90 68.5 145t103.5 55q40 0 109 -26l53 -25q65 -26 88 -26q27 0 51 26.5t49 81.5l62 -22q-28 -105 -70 -156t-90 -51q-39 0 -125 35l-47 20q-70 25 -88 25q-31 0 -49.5 -22t-50.5 -85z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1093" d="M106 463q0 233 125 368.5t330 135.5q220 0 324 -126t104 -356q0 -128 -34 -227.5t-95 -161.5t-140.5 -93.5t-174.5 -31.5q-216 0 -327.5 133t-111.5 359zM217 485q0 -417 334 -417q157 0 242.5 103t85.5 300q0 401 -324 401q-164 0 -251 -100t-87 -287zM307 1276 q0 37 25.5 62.5t64.5 25.5q42 0 66 -25t24 -63q0 -39 -25 -65.5t-67 -26.5q-37 0 -62.5 25.5t-25.5 66.5zM625 1276q0 37 26.5 62.5t65.5 25.5q38 0 63 -25.5t25 -62.5q0 -39 -25.5 -65.5t-64.5 -26.5q-38 0 -64 26t-26 66z" />
+<glyph unicode="&#xf7;" d="M131 575v119h920v-119h-920zM502 317q0 38 24.5 65.5t63.5 27.5q40 0 64 -27t24 -68q0 -40 -24 -68t-64 -28t-64 28.5t-24 69.5zM502 954q0 37 25 65t63 28q40 0 64 -27t24 -68q0 -40 -24 -67t-64 -27t-64 27.5t-24 68.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1093" d="M106 463q0 234 125.5 369t331.5 135q140 0 238 -56l90 127l67 -49l-90 -129q121 -121 121 -375q0 -128 -34 -227.5t-94.5 -161.5t-139.5 -93.5t-174 -31.5q-148 0 -256 68l-86 -123l-68 45l92 131q-123 126 -123 371zM217 485q0 -198 76 -303l448 641q-73 49 -186 49 q-164 0 -251 -100t-87 -287zM350 123q78 -55 201 -55q157 0 242.5 103t85.5 300q0 193 -76 295z" />
+<glyph unicode="&#xf9;" d="M55 829v70q98 55 185 55q47 0 68.5 -27.5t21.5 -105.5q0 -9 -1 -215t-1 -291q0 -123 45 -178t168 -55q77 0 161.5 30t143.5 76v478q0 100 -20 135t-93 35q-18 0 -67 -7v70q93 55 196 55q49 0 70.5 -29.5t21.5 -111.5q0 -7 -1 -111.5t-2 -248t-1 -244.5q0 -74 20.5 -101.5 t69.5 -27.5q44 0 82 10v-76q-64 -28 -139 -28q-116 0 -135 131q-146 -146 -350 -146q-59 0 -116.5 20.5t-90.5 55.5q-36 39 -52 98t-16 162v359q0 101 -18 135.5t-88 34.5q-13 0 -62 -7zM319 1432q0 22 22.5 40.5t45.5 18.5q26 0 45 -16.5t51 -67.5l181 -287l-52 -41 l-231 244q-62 65 -62 109z" />
+<glyph unicode="&#xfa;" d="M55 829v70q98 55 185 55q47 0 68.5 -27.5t21.5 -105.5q0 -9 -1 -215t-1 -291q0 -123 45 -178t168 -55q77 0 161.5 30t143.5 76v478q0 100 -20 135t-93 35q-18 0 -67 -7v70q93 55 196 55q49 0 70.5 -29.5t21.5 -111.5q0 -7 -1 -111.5t-2 -248t-1 -244.5q0 -74 20.5 -101.5 t69.5 -27.5q44 0 82 10v-76q-64 -28 -139 -28q-116 0 -135 131q-146 -146 -350 -146q-59 0 -116.5 20.5t-90.5 55.5q-36 39 -52 98t-16 162v359q0 101 -18 135.5t-88 34.5q-13 0 -62 -7zM434 1120l180 287q34 51 53.5 67.5t45.5 16.5q23 0 44 -18.5t21 -40.5q0 -47 -59 -109 l-234 -244z" />
+<glyph unicode="&#xfb;" d="M55 829v70q98 55 185 55q47 0 68.5 -27.5t21.5 -105.5q0 -9 -1 -215t-1 -291q0 -123 45 -178t168 -55q77 0 161.5 30t143.5 76v478q0 100 -20 135t-93 35q-18 0 -67 -7v70q93 55 196 55q49 0 70.5 -29.5t21.5 -111.5q0 -7 -1 -111.5t-2 -248t-1 -244.5q0 -74 20.5 -101.5 t69.5 -27.5q44 0 82 10v-76q-64 -28 -139 -28q-116 0 -135 131q-146 -146 -350 -146q-59 0 -116.5 20.5t-90.5 55.5q-36 39 -52 98t-16 162v359q0 101 -18 135.5t-88 34.5q-13 0 -62 -7zM285 1085l211 310q25 37 65 37q43 0 70 -37l198 -308l-51 -40l-223 239l-221 -239z " />
+<glyph unicode="&#xfc;" d="M55 829v70q98 55 185 55q47 0 68.5 -27.5t21.5 -105.5q0 -9 -1 -215t-1 -291q0 -123 45 -178t168 -55q77 0 161.5 30t143.5 76v478q0 100 -20 135t-93 35q-18 0 -67 -7v70q93 55 196 55q49 0 70.5 -29.5t21.5 -111.5q0 -7 -1 -111.5t-2 -248t-1 -244.5q0 -74 20.5 -101.5 t69.5 -27.5q44 0 82 10v-76q-64 -28 -139 -28q-116 0 -135 131q-146 -146 -350 -146q-59 0 -116.5 20.5t-90.5 55.5q-36 39 -52 98t-16 162v359q0 101 -18 135.5t-88 34.5q-13 0 -62 -7zM287 1276q0 37 25.5 62.5t64.5 25.5q42 0 66 -25t24 -63q0 -39 -25 -65.5t-67 -26.5 q-37 0 -62.5 25.5t-25.5 66.5zM604 1276q0 37 26.5 62.5t65.5 25.5q38 0 63 -25.5t25 -62.5q0 -39 -25.5 -65.5t-64.5 -26.5q-38 0 -64 26t-26 66z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1046" d="M8 862v78q136 -4 215 -4q51 0 183 4v-78q-20 -1 -52.5 -4.5t-38.5 -3.5q-51 -3 -51 -53q0 -23 23 -82q221 -516 274 -649q184 527 209 596q33 95 33 147q0 15 -8.5 25.5t-27.5 14.5t-32.5 6t-40 2.5t-32.5 0.5v78q122 -4 196 -4q62 0 180 4v-78q-5 0 -16.5 -1t-15.5 -1.5 t-12.5 -1.5t-12.5 -2l-10 -2.5t-9 -3t-7 -4.5t-7 -6q-6 -4 -11 -10t-10 -15t-9 -17t-10.5 -24t-10.5 -27t-12.5 -34.5t-14.5 -38.5l-249 -682q-68 -191 -136 -348q-51 -114 -117 -160.5t-163 -46.5q-49 0 -90 18q-52 21 -52 90q0 54 13 117h65q6 -38 10.5 -55t15 -35.5 t28.5 -24.5t47 -6q79 0 133 99q52 98 151 360q-22 0 -39.5 14t-25.5 35l-291 672q-16 37 -24 53.5t-20.5 36t-25.5 27.5q-17 17 -92 24zM446 1120l181 287q34 51 53 67.5t45 16.5q23 0 44.5 -18.5t21.5 -40.5q0 -46 -60 -109l-233 -244z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1142" d="M27 1372v70q98 55 184 55q24 0 38.5 -4t28.5 -17t20.5 -41.5t6.5 -74.5q0 -53 -2 -225.5t-2 -311.5q166 142 344 142q124 0 208 -63.5t122.5 -171.5t38.5 -255q0 -150 -52.5 -261.5t-161.5 -176t-265 -64.5q-107 0 -232 33v-291q0 -115 25 -137q9 -10 19.5 -15t52 -11 t120.5 -11v-78q-240 5 -244 5q-8 0 -243 -5v78q131 10 151 39q15 17 15 101v1486q0 158 -29 187q-24 24 -80 24q-26 0 -63 -6zM303 106q76 -38 246 -38q173 0 263.5 109.5t90.5 291.5q0 60 -8.5 112.5t-30 104.5t-56 89t-90.5 60t-128 23q-71 0 -149.5 -29t-137.5 -75v-648z " />
+<glyph unicode="&#xff;" horiz-adv-x="1046" d="M8 862v78q136 -4 215 -4q51 0 183 4v-78q-20 -1 -52.5 -4.5t-38.5 -3.5q-51 -3 -51 -53q0 -23 23 -82q221 -516 274 -649q184 527 209 596q33 95 33 147q0 15 -8.5 25.5t-27.5 14.5t-32.5 6t-40 2.5t-32.5 0.5v78q122 -4 196 -4q62 0 180 4v-78q-5 0 -16.5 -1t-15.5 -1.5 t-12.5 -1.5t-12.5 -2l-10 -2.5t-9 -3t-7 -4.5t-7 -6q-6 -4 -11 -10t-10 -15t-9 -17t-10.5 -24t-10.5 -27t-12.5 -34.5t-14.5 -38.5l-249 -682q-68 -191 -136 -348q-51 -114 -117 -160.5t-163 -46.5q-49 0 -90 18q-52 21 -52 90q0 54 13 117h65q6 -38 10.5 -55t15 -35.5 t28.5 -24.5t47 -6q79 0 133 99q52 98 151 360q-22 0 -39.5 14t-25.5 35l-291 672q-16 37 -24 53.5t-20.5 36t-25.5 27.5q-17 17 -92 24zM299 1276q0 37 25.5 62.5t64.5 25.5q42 0 66 -25t24 -63q0 -39 -25 -65.5t-67 -26.5q-37 0 -62.5 25.5t-25.5 66.5zM616 1276 q0 37 26.5 62.5t66.5 25.5q38 0 63 -25.5t25 -62.5q0 -39 -25.5 -65.5t-64.5 -26.5q-38 0 -64.5 26t-26.5 66z" />
+<glyph unicode="&#x152;" horiz-adv-x="1964" d="M111 674q0 152 43 283t123.5 230.5t207 156.5t283.5 57q57 0 209 -8.5t192 -8.5h519q71 0 94.5 -24t23.5 -72q0 -61 -16 -213h-72q-9 91 -20.5 132t-30.5 53q-27 19 -81 25.5t-195 6.5h-226v-524h178q94 0 129 7t54 28q32 44 37 131h71q-2 -53 -2 -203q0 -133 2 -217h-67 q-5 42 -12.5 70.5t-11.5 37t-15 25.5q-16 20 -54 24.5t-135 4.5h-174v-492q0 -44 12.5 -63.5t43.5 -22.5q55 -6 202 -6q152 0 216.5 13t91.5 42q41 41 84 191h67q-3 -197 -33 -285q-20 -53 -147 -53h-539q-43 0 -195.5 -6t-226.5 -6q-158 0 -280 52t-197.5 145t-114 216.5 t-38.5 272.5zM238 694q0 -276 133.5 -442t373.5 -166q258 0 289 68q13 33 13 131v800q0 79 -4.5 116.5t-20.5 53.5q-24 25 -86.5 34t-190.5 9q-153 0 -269.5 -79t-177 -215.5t-60.5 -309.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="1738" d="M106 463q0 235 122.5 369.5t326.5 134.5q282 0 379 -228q104 228 366 228q78 0 139 -20.5t100 -54.5t64 -80.5t35.5 -95t10.5 -102.5q0 -84 -27 -106q-16 -12 -80 -12h-565v-39q0 -83 18.5 -151t56.5 -121.5t104 -83t155 -29.5q65 0 124 19.5t94 42t87 63.5l49 -62 q-175 -164 -369 -164q-148 0 -242 64.5t-136 175.5q-109 -240 -377 -240q-216 0 -325.5 132.5t-109.5 359.5zM217 485q0 -417 328 -417q153 0 237 103t84 300q0 207 -79 304t-238 97q-163 0 -247.5 -100t-84.5 -287zM985 580l551 6v16q0 49 -7 88t-25.5 74t-48 58.5 t-76.5 37.5t-109 14q-114 0 -191 -75.5t-94 -218.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="1228" d="M8 1309v77q234 -4 236 -4q23 0 231 4v-77q-77 -1 -116.5 -8.5t-48.5 -17.5t-9 -28q0 -29 47 -108q135 -229 277 -488q48 82 144 249t144 249q43 73 43 105q0 18 -14 27.5t-49 14t-105 5.5v77q96 -4 238 -4q107 0 193 4v-77q-59 -3 -97 -29q-34 -30 -82 -104l-368 -598 v-365q0 -86 8 -102q11 -17 45 -24t141 -11v-78q-222 4 -243 4q-58 0 -254 -4v78q102 4 132.5 10.5t39.5 24.5q12 17 12 102v362l-338 566q-12 21 -27 47t-21.5 37.5t-15.5 25t-15.5 20t-14.5 11.5q-44 25 -113 27zM365 1616q0 37 25.5 62.5t64.5 25.5q40 0 64 -25t24 -63 q0 -39 -25 -65.5t-65 -26.5q-37 0 -62.5 26.5t-25.5 65.5zM711 1616q0 37 26.5 62.5t65.5 25.5t64.5 -25.5t25.5 -62.5q0 -39 -25.5 -65.5t-66.5 -26.5q-37 0 -63.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M27 1085l211 310q25 37 65 37q43 0 70 -37l198 -308l-51 -40l-223 239l-221 -239z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M6 1143q26 90 68.5 145t103.5 55q40 0 109 -26l53 -25q65 -26 88 -26q51 0 100 108l62 -22q-28 -105 -70 -156t-90 -51q-39 0 -125 35l-47 20q-70 25 -88 25q-31 0 -49.5 -22t-50.5 -85z" />
+<glyph unicode="&#x2000;" horiz-adv-x="915" />
+<glyph unicode="&#x2001;" horiz-adv-x="1831" />
+<glyph unicode="&#x2002;" horiz-adv-x="915" />
+<glyph unicode="&#x2003;" horiz-adv-x="1831" />
+<glyph unicode="&#x2004;" horiz-adv-x="610" />
+<glyph unicode="&#x2005;" horiz-adv-x="457" />
+<glyph unicode="&#x2006;" horiz-adv-x="305" />
+<glyph unicode="&#x2007;" horiz-adv-x="305" />
+<glyph unicode="&#x2008;" horiz-adv-x="228" />
+<glyph unicode="&#x2009;" horiz-adv-x="366" />
+<glyph unicode="&#x200a;" horiz-adv-x="101" />
+<glyph unicode="&#x2010;" horiz-adv-x="534" d="M59 442v119h410v-119h-410z" />
+<glyph unicode="&#x2011;" horiz-adv-x="534" d="M59 442v119h410v-119h-410z" />
+<glyph unicode="&#x2012;" horiz-adv-x="534" d="M59 442v119h410v-119h-410z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1200" d="M102 444v109h992v-109h-992z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M102 444v109h1475v-109h-1475z" />
+<glyph unicode="&#x2018;" horiz-adv-x="374" d="M63 1094q0 208 277 362l33 -51q-109 -67 -152 -123.5t-43 -116.5q0 -18 10 -35t31 -24q18 -6 27.5 -10.5t21.5 -13.5t17.5 -24t5.5 -36q0 -38 -29 -60t-67 -22q-58 0 -95 41t-37 113z" />
+<glyph unicode="&#x2019;" horiz-adv-x="374" d="M-2 971q109 66 153 122.5t44 116.5q0 44 -41 60q-19 7 -28 11.5t-21 14t-17.5 24.5t-5.5 36q0 38 28.5 60t67.5 22q58 0 93.5 -41t35.5 -113q0 -213 -276 -362z" />
+<glyph unicode="&#x201a;" horiz-adv-x="374" d="M0 -274q109 66 152 122t43 117q0 17 -11 34t-30 24t-27.5 11t-21.5 13.5t-18 24t-5 34.5q0 38 28.5 61t67.5 23q59 0 94 -40t35 -113q0 -214 -276 -363z" />
+<glyph unicode="&#x201c;" horiz-adv-x="669" d="M63 1094q0 208 277 362l33 -51q-109 -67 -152 -123.5t-43 -116.5q0 -18 10 -35t31 -24q18 -6 27.5 -10.5t21.5 -13.5t17.5 -24t5.5 -36q0 -38 -29 -60t-67 -22q-58 0 -95 41t-37 113zM362 1094q0 208 277 362l33 -51q-109 -67 -152 -123.5t-43 -116.5q0 -18 10 -35 t31 -24q18 -6 27.5 -10.5t21.5 -13.5t17.5 -24t5.5 -36q0 -38 -29 -60t-67 -22q-58 0 -95 41t-37 113z" />
+<glyph unicode="&#x201d;" horiz-adv-x="669" d="M-2 971q109 66 153 122.5t44 116.5q0 44 -41 60q-19 7 -28 11.5t-21 14t-17.5 24.5t-5.5 36q0 38 28.5 60t67.5 22q58 0 93.5 -41t35.5 -113q0 -213 -276 -362zM297 971q109 66 153 122.5t44 116.5q0 44 -41 60q-19 7 -28 11.5t-21 14t-17.5 24.5t-5.5 36q0 38 28.5 60 t67.5 22q58 0 93.5 -41t35.5 -113q0 -213 -276 -362z" />
+<glyph unicode="&#x201e;" horiz-adv-x="669" d="M0 -274q109 66 152 122t43 117q0 17 -11 34t-30 24t-27.5 11t-21.5 13.5t-18 24t-5 34.5q0 38 28.5 61t67.5 23q59 0 94 -40t35 -113q0 -214 -276 -363zM301 -274q109 66 152 122t43 117q0 17 -11 34t-30 24t-27.5 11t-21.5 13.5t-18 24t-5 34.5q0 38 28.5 61t67.5 23 q59 0 94 -40t35 -113q0 -214 -276 -363z" />
+<glyph unicode="&#x2022;" horiz-adv-x="675" d="M82 565q0 109 71.5 182.5t178.5 73.5q115 0 187.5 -72t72.5 -178q0 -121 -72 -194.5t-184 -73.5q-109 0 -181.5 75.5t-72.5 186.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1693" d="M184 82q0 48 30 78t73 30q45 0 75.5 -28t30.5 -74q0 -49 -29.5 -80t-74.5 -31q-43 0 -74 31t-31 74zM739 82q0 48 30 78t71 30q47 0 76.5 -28t29.5 -74q0 -49 -29 -80t-75 -31q-41 0 -72 31t-31 74zM1296 82q0 48 30.5 78t72.5 30q47 0 76.5 -28t29.5 -74q0 -49 -29 -80 t-75 -31q-42 0 -73.5 31.5t-31.5 73.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="366" />
+<glyph unicode="&#x2039;" horiz-adv-x="552" d="M76 461q0 30 35 65l325 316l56 -47l-281 -332l281 -342l-56 -51l-330 325q-30 26 -30 66z" />
+<glyph unicode="&#x203a;" horiz-adv-x="552" d="M63 117l279 332l-279 342l56 51l330 -326q30 -30 30 -65q0 -27 -35 -66l-325 -315z" />
+<glyph unicode="&#x205f;" horiz-adv-x="457" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1384" d="M160 510v82h145v55q0 39 4 109h-149v82h159q43 253 194.5 393.5t381.5 140.5q163 0 281 -43q98 -33 98 -110q0 -89 -17 -197h-73q-14 149 -47 182q-24 30 -93 48t-163 18q-173 0 -288.5 -112t-150.5 -320h539v-82h-549q-4 -62 -4 -92q0 -49 2 -72h551v-82h-545 q30 -219 145 -327.5t296 -108.5q88 0 160 19.5t98 45.5q39 39 73 166h78q-4 -117 -18 -180q-18 -72 -119 -113q-148 -43 -291 -43q-226 0 -370.5 139.5t-176.5 401.5h-151z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1484" d="M49 1331q0 13 1 20.5t6 16t16.5 12.5t29.5 4h447q33 0 44 -13t11 -38q0 -55 -6 -108h-41q-8 70 -25 84q-14 8 -40 10t-119 2v-416q0 -51 4 -61q10 -10 86 -15v-53q-39 2 -129 2q-100 0 -139 -2v53q71 2 84 15q8 11 8 59v418q-96 0 -123.5 -2t-38.5 -10q-24 -19 -31 -84 h-39q-6 53 -6 106zM670 776v53q3 0 10 1q22 1 31 1.5t20.5 4t14.5 8t7 15.5t4.5 23.5t0.5 35.5q6 315 6 366q0 21 -8 33q-10 10 -76 12v55q61 -2 108 -2q57 0 84 2q140 -332 166 -405q51 125 176 405q33 -2 97 -2q47 0 94 2v-55q-72 -3 -78 -14q-8 -8 -8 -47q0 -36 2 -355 q0 -56 8 -67q6 -12 80 -17v-53q-43 2 -123 2q-86 0 -137 -2v53q72 5 80 17q6 12 6 47q0 319 2 391q-7 -15 -23.5 -54.5t-54 -125t-94.5 -211.5q-12 -27 -35 -27q-15 0 -23.5 6t-15.5 23q-41 94 -73 169.5t-46 109t-26 62t-21 48.5q0 -71 1 -235.5t1 -165.5q0 -11 1 -18 t1.5 -13t4.5 -9.5t6.5 -5.5t12 -3t14.5 -2t21 -1.5t27 -1.5v-53q-39 2 -110 2q-92 0 -135 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="942" d="M0 0v942h942v-942h-942z" />
+<hkern u1="&#x20;" u2="&#x2026;" k="102" />
+<hkern u1="&#x20;" u2="&#x178;" k="29" />
+<hkern u1="&#x20;" u2="&#xdd;" k="29" />
+<hkern u1="&#x20;" u2="&#xc5;" k="45" />
+<hkern u1="&#x20;" u2="&#xc4;" k="45" />
+<hkern u1="&#x20;" u2="&#xc3;" k="45" />
+<hkern u1="&#x20;" u2="&#xc2;" k="45" />
+<hkern u1="&#x20;" u2="&#xc1;" k="45" />
+<hkern u1="&#x20;" u2="&#xc0;" k="45" />
+<hkern u1="&#x20;" u2="Y" k="29" />
+<hkern u1="&#x20;" u2="W" k="166" />
+<hkern u1="&#x20;" u2="V" k="-29" />
+<hkern u1="&#x20;" u2="A" k="45" />
+<hkern u1="&#x20;" u2="&#x2e;" k="102" />
+<hkern u1="&#x20;" u2="&#x2c;" k="102" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-25" />
+<hkern u1="&#x21;" u2="]" k="-25" />
+<hkern u1="&#x21;" u2="&#x29;" k="-25" />
+<hkern u1="&#x22;" u2="&#x31;" k="109" />
+<hkern u1="&#x26;" u2="[" k="57" />
+<hkern u1="&#x27;" u2="&#x31;" k="109" />
+<hkern u1="&#x28;" u2="y" k="-41" />
+<hkern u1="&#x28;" u2="W" k="-61" />
+<hkern u1="&#x28;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="127" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="127" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2d;" u2="W" k="102" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="147" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="147" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="256" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="109" />
+<hkern u1="&#x2f;" u2="&#x153;" k="121" />
+<hkern u1="&#x2f;" u2="&#x152;" k="82" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-41" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="121" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="121" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="121" />
+<hkern u1="&#x2f;" u2="&#xea;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="121" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="102" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="102" />
+<hkern u1="&#x2f;" u2="&#xde;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd8;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd6;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="-18" />
+<hkern u1="&#x2f;" u2="&#xc7;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="133" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="133" />
+<hkern u1="&#x2f;" u2="&#x7b;" k="102" />
+<hkern u1="&#x2f;" u2="q" k="121" />
+<hkern u1="&#x2f;" u2="o" k="121" />
+<hkern u1="&#x2f;" u2="l" k="-41" />
+<hkern u1="&#x2f;" u2="k" k="-41" />
+<hkern u1="&#x2f;" u2="h" k="-41" />
+<hkern u1="&#x2f;" u2="e" k="121" />
+<hkern u1="&#x2f;" u2="d" k="121" />
+<hkern u1="&#x2f;" u2="c" k="121" />
+<hkern u1="&#x2f;" u2="b" k="-41" />
+<hkern u1="&#x2f;" u2="a" k="102" />
+<hkern u1="&#x2f;" u2="V" k="-59" />
+<hkern u1="&#x2f;" u2="R" k="-18" />
+<hkern u1="&#x2f;" u2="Q" k="82" />
+<hkern u1="&#x2f;" u2="P" k="-18" />
+<hkern u1="&#x2f;" u2="O" k="82" />
+<hkern u1="&#x2f;" u2="N" k="-18" />
+<hkern u1="&#x2f;" u2="M" k="-18" />
+<hkern u1="&#x2f;" u2="L" k="-18" />
+<hkern u1="&#x2f;" u2="K" k="-18" />
+<hkern u1="&#x2f;" u2="I" k="-18" />
+<hkern u1="&#x2f;" u2="H" k="-18" />
+<hkern u1="&#x2f;" u2="G" k="82" />
+<hkern u1="&#x2f;" u2="F" k="-18" />
+<hkern u1="&#x2f;" u2="E" k="-18" />
+<hkern u1="&#x2f;" u2="D" k="-18" />
+<hkern u1="&#x2f;" u2="C" k="82" />
+<hkern u1="&#x2f;" u2="B" k="-18" />
+<hkern u1="&#x2f;" u2="A" k="133" />
+<hkern u1="&#x30;" u2="&#x153;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-70" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-70" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-70" />
+<hkern u1="&#x30;" u2="&#xea;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-70" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-70" />
+<hkern u1="&#x30;" u2="q" k="-70" />
+<hkern u1="&#x30;" u2="o" k="-70" />
+<hkern u1="&#x30;" u2="e" k="-70" />
+<hkern u1="&#x30;" u2="d" k="-70" />
+<hkern u1="&#x30;" u2="c" k="-70" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-61" />
+<hkern u1="&#x30;" u2="&#x25;" k="-100" />
+<hkern u1="&#x31;" u2="&#x2f;" k="41" />
+<hkern u1="&#x31;" u2="&#x27;" k="223" />
+<hkern u1="&#x31;" u2="&#x22;" k="223" />
+<hkern u1="&#x33;" g2="uniFB04" k="-61" />
+<hkern u1="&#x33;" g2="uniFB03" k="-61" />
+<hkern u1="&#x33;" g2="uniFB02" k="-61" />
+<hkern u1="&#x33;" g2="uniFB01" k="-61" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-61" />
+<hkern u1="&#x33;" u2="&#x7d;" k="41" />
+<hkern u1="&#x33;" u2="f" k="-61" />
+<hkern u1="&#x33;" u2="]" k="41" />
+<hkern u1="&#x33;" u2="&#x29;" k="41" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-131" />
+<hkern u1="&#x34;" u2="r" k="-131" />
+<hkern u1="&#x34;" u2="p" k="-131" />
+<hkern u1="&#x34;" u2="n" k="-131" />
+<hkern u1="&#x34;" u2="m" k="-131" />
+<hkern u1="&#x35;" u2="&#xe6;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe5;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe4;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe3;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe2;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe1;" k="-41" />
+<hkern u1="&#x35;" u2="&#xe0;" k="-41" />
+<hkern u1="&#x35;" u2="a" k="-41" />
+<hkern u1="&#x36;" u2="]" k="-41" />
+<hkern u1="&#x37;" u2="&#x2026;" k="285" />
+<hkern u1="&#x37;" u2="&#xb0;" k="-61" />
+<hkern u1="&#x37;" u2="&#x2e;" k="285" />
+<hkern u1="&#x37;" u2="&#x2c;" k="305" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-82" />
+<hkern u1="&#x3a;" u2="&#x33;" k="-63" />
+<hkern u1="&#x3a;" u2="&#x31;" k="109" />
+<hkern u1="&#x3f;" u2="&#x203a;" k="-20" />
+<hkern u1="&#x3f;" u2="&#xbb;" k="-20" />
+<hkern u1="&#x3f;" u2="&#x3b;" k="-37" />
+<hkern u1="&#x3f;" u2="&#x3a;" k="-31" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="109" />
+<hkern u1="A" u2="&#xb5;" k="20" />
+<hkern u1="A" u2="W" k="82" />
+<hkern u1="A" u2="G" k="47" />
+<hkern u1="A" u2="&#x2f;" k="-100" />
+<hkern u1="B" u2="&#xee;" k="-12" />
+<hkern u1="B" u2="&#xec;" k="-6" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="y" k="27" />
+<hkern u1="B" u2="W" k="47" />
+<hkern u1="C" u2="&#xef;" k="-16" />
+<hkern u1="C" u2="&#xee;" k="-43" />
+<hkern u1="C" u2="&#xec;" k="8" />
+<hkern u1="C" u2="y" k="66" />
+<hkern u1="C" u2="e" k="37" />
+<hkern u1="C" u2="d" k="51" />
+<hkern u1="C" u2="W" k="14" />
+<hkern u1="C" u2="C" k="41" />
+<hkern u1="D" u2="&#xef;" k="-10" />
+<hkern u1="D" u2="&#xee;" k="-41" />
+<hkern u1="D" u2="&#xec;" k="-47" />
+<hkern u1="D" u2="&#xd0;" k="-20" />
+<hkern u1="D" u2="&#xc6;" k="184" />
+<hkern u1="D" u2="&#xc5;" k="76" />
+<hkern u1="D" u2="&#xc4;" k="76" />
+<hkern u1="D" u2="&#xc3;" k="76" />
+<hkern u1="D" u2="&#xc2;" k="76" />
+<hkern u1="D" u2="&#xc1;" k="76" />
+<hkern u1="D" u2="&#xc0;" k="76" />
+<hkern u1="D" u2="W" k="55" />
+<hkern u1="D" u2="A" k="76" />
+<hkern u1="E" u2="&#xb5;" k="20" />
+<hkern u1="E" u2="y" k="61" />
+<hkern u1="E" u2="W" k="33" />
+<hkern u1="F" g2="uniFB04" k="41" />
+<hkern u1="F" g2="uniFB03" k="41" />
+<hkern u1="F" g2="uniFB02" k="41" />
+<hkern u1="F" g2="uniFB01" k="41" />
+<hkern u1="F" u2="&#x2026;" k="285" />
+<hkern u1="F" u2="&#x201d;" k="-16" />
+<hkern u1="F" u2="&#x2019;" k="-16" />
+<hkern u1="F" u2="&#x178;" k="33" />
+<hkern u1="F" u2="&#x153;" k="102" />
+<hkern u1="F" u2="&#x152;" k="20" />
+<hkern u1="F" u2="&#xff;" k="106" />
+<hkern u1="F" u2="&#xfe;" k="49" />
+<hkern u1="F" u2="&#xfd;" k="106" />
+<hkern u1="F" u2="&#xfc;" k="76" />
+<hkern u1="F" u2="&#xfb;" k="76" />
+<hkern u1="F" u2="&#xfa;" k="76" />
+<hkern u1="F" u2="&#xf9;" k="76" />
+<hkern u1="F" u2="&#xf8;" k="102" />
+<hkern u1="F" u2="&#xf6;" k="102" />
+<hkern u1="F" u2="&#xf5;" k="102" />
+<hkern u1="F" u2="&#xf4;" k="102" />
+<hkern u1="F" u2="&#xf3;" k="102" />
+<hkern u1="F" u2="&#xf2;" k="102" />
+<hkern u1="F" u2="&#xf1;" k="94" />
+<hkern u1="F" u2="&#xf0;" k="102" />
+<hkern u1="F" u2="&#xef;" k="-4" />
+<hkern u1="F" u2="&#xee;" k="-2" />
+<hkern u1="F" u2="&#xed;" k="88" />
+<hkern u1="F" u2="&#xec;" k="49" />
+<hkern u1="F" u2="&#xeb;" k="102" />
+<hkern u1="F" u2="&#xea;" k="102" />
+<hkern u1="F" u2="&#xe9;" k="102" />
+<hkern u1="F" u2="&#xe8;" k="102" />
+<hkern u1="F" u2="&#xe7;" k="102" />
+<hkern u1="F" u2="&#xe6;" k="129" />
+<hkern u1="F" u2="&#xe5;" k="129" />
+<hkern u1="F" u2="&#xe4;" k="129" />
+<hkern u1="F" u2="&#xe3;" k="129" />
+<hkern u1="F" u2="&#xe2;" k="129" />
+<hkern u1="F" u2="&#xe1;" k="129" />
+<hkern u1="F" u2="&#xe0;" k="129" />
+<hkern u1="F" u2="&#xdf;" k="41" />
+<hkern u1="F" u2="&#xde;" k="4" />
+<hkern u1="F" u2="&#xdd;" k="33" />
+<hkern u1="F" u2="&#xd8;" k="20" />
+<hkern u1="F" u2="&#xd6;" k="20" />
+<hkern u1="F" u2="&#xd5;" k="20" />
+<hkern u1="F" u2="&#xd4;" k="20" />
+<hkern u1="F" u2="&#xd3;" k="20" />
+<hkern u1="F" u2="&#xd2;" k="20" />
+<hkern u1="F" u2="&#xd1;" k="4" />
+<hkern u1="F" u2="&#xd0;" k="4" />
+<hkern u1="F" u2="&#xcf;" k="4" />
+<hkern u1="F" u2="&#xce;" k="4" />
+<hkern u1="F" u2="&#xcd;" k="4" />
+<hkern u1="F" u2="&#xcc;" k="4" />
+<hkern u1="F" u2="&#xcb;" k="4" />
+<hkern u1="F" u2="&#xca;" k="4" />
+<hkern u1="F" u2="&#xc9;" k="4" />
+<hkern u1="F" u2="&#xc8;" k="4" />
+<hkern u1="F" u2="&#xc7;" k="20" />
+<hkern u1="F" u2="&#xc6;" k="231" />
+<hkern u1="F" u2="&#xc5;" k="150" />
+<hkern u1="F" u2="&#xc4;" k="150" />
+<hkern u1="F" u2="&#xc3;" k="150" />
+<hkern u1="F" u2="&#xc2;" k="150" />
+<hkern u1="F" u2="&#xc1;" k="150" />
+<hkern u1="F" u2="&#xc0;" k="150" />
+<hkern u1="F" u2="z" k="94" />
+<hkern u1="F" u2="y" k="57" />
+<hkern u1="F" u2="x" k="96" />
+<hkern u1="F" u2="w" k="82" />
+<hkern u1="F" u2="v" k="106" />
+<hkern u1="F" u2="u" k="76" />
+<hkern u1="F" u2="t" k="20" />
+<hkern u1="F" u2="s" k="59" />
+<hkern u1="F" u2="r" k="94" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="94" />
+<hkern u1="F" u2="o" k="102" />
+<hkern u1="F" u2="n" k="94" />
+<hkern u1="F" u2="m" k="94" />
+<hkern u1="F" u2="l" k="49" />
+<hkern u1="F" u2="k" k="49" />
+<hkern u1="F" u2="j" k="27" />
+<hkern u1="F" u2="i" k="63" />
+<hkern u1="F" u2="h" k="49" />
+<hkern u1="F" u2="g" k="121" />
+<hkern u1="F" u2="f" k="41" />
+<hkern u1="F" u2="e" k="102" />
+<hkern u1="F" u2="d" k="102" />
+<hkern u1="F" u2="c" k="102" />
+<hkern u1="F" u2="b" k="49" />
+<hkern u1="F" u2="a" k="129" />
+<hkern u1="F" u2="Z" k="41" />
+<hkern u1="F" u2="Y" k="33" />
+<hkern u1="F" u2="X" k="43" />
+<hkern u1="F" u2="W" k="35" />
+<hkern u1="F" u2="T" k="25" />
+<hkern u1="F" u2="S" k="16" />
+<hkern u1="F" u2="R" k="4" />
+<hkern u1="F" u2="Q" k="20" />
+<hkern u1="F" u2="P" k="4" />
+<hkern u1="F" u2="O" k="20" />
+<hkern u1="F" u2="N" k="4" />
+<hkern u1="F" u2="M" k="4" />
+<hkern u1="F" u2="L" k="4" />
+<hkern u1="F" u2="K" k="4" />
+<hkern u1="F" u2="J" k="27" />
+<hkern u1="F" u2="I" k="4" />
+<hkern u1="F" u2="H" k="4" />
+<hkern u1="F" u2="G" k="20" />
+<hkern u1="F" u2="F" k="4" />
+<hkern u1="F" u2="E" k="4" />
+<hkern u1="F" u2="D" k="4" />
+<hkern u1="F" u2="C" k="20" />
+<hkern u1="F" u2="B" k="4" />
+<hkern u1="F" u2="A" k="150" />
+<hkern u1="F" u2="&#x2f;" k="121" />
+<hkern u1="F" u2="&#x2e;" k="285" />
+<hkern u1="F" u2="&#x2c;" k="285" />
+<hkern u1="G" u2="&#xee;" k="-14" />
+<hkern u1="G" u2="&#xd0;" k="-20" />
+<hkern u1="G" u2="y" k="41" />
+<hkern u1="G" u2="W" k="41" />
+<hkern u1="G" u2="M" k="25" />
+<hkern u1="H" u2="&#xef;" k="-12" />
+<hkern u1="H" u2="&#xee;" k="-18" />
+<hkern u1="H" u2="&#xec;" k="-18" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-12" />
+<hkern u1="I" u2="&#xee;" k="-18" />
+<hkern u1="I" u2="&#xec;" k="-18" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xf1;" k="43" />
+<hkern u1="J" u2="&#xef;" k="-20" />
+<hkern u1="J" u2="&#xee;" k="-20" />
+<hkern u1="J" u2="&#xec;" k="-31" />
+<hkern u1="J" u2="&#xd0;" k="-20" />
+<hkern u1="J" u2="&#xc6;" k="82" />
+<hkern u1="J" u2="y" k="25" />
+<hkern u1="K" u2="&#xef;" k="-29" />
+<hkern u1="K" u2="&#xec;" k="-12" />
+<hkern u1="K" u2="y" k="115" />
+<hkern u1="K" u2="W" k="29" />
+<hkern u1="L" u2="&#xf8;" k="27" />
+<hkern u1="L" u2="y" k="129" />
+<hkern u1="L" u2="b" k="27" />
+<hkern u1="L" u2="W" k="207" />
+<hkern u1="L" u2="&#x20;" k="82" />
+<hkern u1="M" u2="&#xf8;" k="-6" />
+<hkern u1="M" u2="&#xef;" k="-2" />
+<hkern u1="M" u2="&#xec;" k="-33" />
+<hkern u1="M" u2="&#xdd;" k="29" />
+<hkern u1="M" u2="&#xd0;" k="-20" />
+<hkern u1="M" u2="y" k="20" />
+<hkern u1="M" u2="W" k="20" />
+<hkern u1="N" u2="&#xf8;" k="-10" />
+<hkern u1="N" u2="&#xef;" k="-57" />
+<hkern u1="N" u2="&#xee;" k="-10" />
+<hkern u1="N" u2="&#xec;" k="-35" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="&#xef;" k="-10" />
+<hkern u1="O" u2="&#xee;" k="-6" />
+<hkern u1="O" u2="&#xd0;" k="-20" />
+<hkern u1="O" u2="W" k="55" />
+<hkern u1="P" u2="&#xef;" k="-14" />
+<hkern u1="P" u2="&#xee;" k="-25" />
+<hkern u1="P" u2="&#xec;" k="-2" />
+<hkern u1="P" u2="&#xe5;" k="78" />
+<hkern u1="P" u2="c" k="61" />
+<hkern u1="P" u2="W" k="20" />
+<hkern u1="P" u2="M" k="25" />
+<hkern u1="Q" u2="&#xef;" k="-10" />
+<hkern u1="Q" u2="&#xee;" k="-6" />
+<hkern u1="Q" u2="&#xd0;" k="-20" />
+<hkern u1="Q" u2="W" k="55" />
+<hkern u1="Q" u2="N" k="-14" />
+<hkern u1="Q" u2="&#x2c;" k="-104" />
+<hkern u1="R" u2="y" k="53" />
+<hkern u1="R" u2="W" k="68" />
+<hkern u1="S" u2="&#xf8;" k="-10" />
+<hkern u1="S" u2="&#xef;" k="-10" />
+<hkern u1="S" u2="&#xee;" k="-18" />
+<hkern u1="S" u2="&#xec;" k="-20" />
+<hkern u1="S" u2="y" k="61" />
+<hkern u1="S" u2="W" k="14" />
+<hkern u1="T" u2="&#x203a;" k="94" />
+<hkern u1="T" u2="&#x2039;" k="203" />
+<hkern u1="T" u2="&#xff;" k="152" />
+<hkern u1="T" u2="&#xf6;" k="121" />
+<hkern u1="T" u2="&#xf5;" k="147" />
+<hkern u1="T" u2="&#xf4;" k="147" />
+<hkern u1="T" u2="&#xf2;" k="147" />
+<hkern u1="T" u2="&#xf1;" k="147" />
+<hkern u1="T" u2="&#xef;" k="-43" />
+<hkern u1="T" u2="&#xee;" k="-29" />
+<hkern u1="T" u2="&#xed;" k="98" />
+<hkern u1="T" u2="&#xec;" k="-31" />
+<hkern u1="T" u2="&#xeb;" k="156" />
+<hkern u1="T" u2="&#xea;" k="145" />
+<hkern u1="T" u2="&#xe8;" k="137" />
+<hkern u1="T" u2="&#xe4;" k="129" />
+<hkern u1="T" u2="&#xe3;" k="113" />
+<hkern u1="T" u2="&#xcf;" k="33" />
+<hkern u1="T" u2="&#xce;" k="37" />
+<hkern u1="T" u2="&#xcc;" k="37" />
+<hkern u1="T" u2="y" k="125" />
+<hkern u1="T" u2="]" k="-61" />
+<hkern u1="T" u2="M" k="57" />
+<hkern u1="T" u2="&#x3f;" k="-20" />
+<hkern u1="T" u2="&#x2c;" k="203" />
+<hkern u1="U" u2="&#xf1;" k="43" />
+<hkern u1="U" u2="&#xef;" k="-18" />
+<hkern u1="U" u2="&#xee;" k="-10" />
+<hkern u1="U" u2="&#xec;" k="-37" />
+<hkern u1="U" u2="&#xd0;" k="-20" />
+<hkern u1="U" u2="y" k="25" />
+<hkern u1="V" u2="&#x203a;" k="61" />
+<hkern u1="V" u2="&#x2039;" k="86" />
+<hkern u1="V" u2="&#xef;" k="-74" />
+<hkern u1="V" u2="&#xee;" k="20" />
+<hkern u1="V" u2="&#xed;" k="88" />
+<hkern u1="V" u2="&#xec;" k="-63" />
+<hkern u1="V" u2="&#xe4;" k="113" />
+<hkern u1="V" u2="&#xe3;" k="92" />
+<hkern u1="V" u2="&#xe0;" k="92" />
+<hkern u1="V" u2="y" k="121" />
+<hkern u1="V" u2="M" k="23" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="102" />
+<hkern u1="W" g2="uniFB04" k="90" />
+<hkern u1="W" g2="uniFB03" k="90" />
+<hkern u1="W" g2="uniFB02" k="90" />
+<hkern u1="W" g2="uniFB01" k="90" />
+<hkern u1="W" u2="&#x203a;" k="82" />
+<hkern u1="W" u2="&#x2039;" k="84" />
+<hkern u1="W" u2="&#x2026;" k="279" />
+<hkern u1="W" u2="&#x153;" k="86" />
+<hkern u1="W" u2="&#x152;" k="33" />
+<hkern u1="W" u2="&#xff;" k="80" />
+<hkern u1="W" u2="&#xfe;" k="41" />
+<hkern u1="W" u2="&#xfd;" k="104" />
+<hkern u1="W" u2="&#xfc;" k="86" />
+<hkern u1="W" u2="&#xfb;" k="96" />
+<hkern u1="W" u2="&#xfa;" k="96" />
+<hkern u1="W" u2="&#xf9;" k="96" />
+<hkern u1="W" u2="&#xf8;" k="86" />
+<hkern u1="W" u2="&#xf6;" k="86" />
+<hkern u1="W" u2="&#xf5;" k="86" />
+<hkern u1="W" u2="&#xf4;" k="86" />
+<hkern u1="W" u2="&#xf3;" k="86" />
+<hkern u1="W" u2="&#xf2;" k="86" />
+<hkern u1="W" u2="&#xf1;" k="82" />
+<hkern u1="W" u2="&#xf0;" k="86" />
+<hkern u1="W" u2="&#xef;" k="-33" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="115" />
+<hkern u1="W" u2="&#xec;" k="-57" />
+<hkern u1="W" u2="&#xeb;" k="176" />
+<hkern u1="W" u2="&#xea;" k="115" />
+<hkern u1="W" u2="&#xe9;" k="86" />
+<hkern u1="W" u2="&#xe8;" k="150" />
+<hkern u1="W" u2="&#xe7;" k="86" />
+<hkern u1="W" u2="&#xe6;" k="152" />
+<hkern u1="W" u2="&#xe5;" k="152" />
+<hkern u1="W" u2="&#xe4;" k="115" />
+<hkern u1="W" u2="&#xe3;" k="72" />
+<hkern u1="W" u2="&#xe2;" k="152" />
+<hkern u1="W" u2="&#xe1;" k="152" />
+<hkern u1="W" u2="&#xe0;" k="72" />
+<hkern u1="W" u2="&#xdf;" k="90" />
+<hkern u1="W" u2="&#xde;" k="20" />
+<hkern u1="W" u2="&#xd8;" k="33" />
+<hkern u1="W" u2="&#xd6;" k="33" />
+<hkern u1="W" u2="&#xd5;" k="33" />
+<hkern u1="W" u2="&#xd4;" k="33" />
+<hkern u1="W" u2="&#xd3;" k="33" />
+<hkern u1="W" u2="&#xd2;" k="33" />
+<hkern u1="W" u2="&#xd1;" k="20" />
+<hkern u1="W" u2="&#xd0;" k="20" />
+<hkern u1="W" u2="&#xcf;" k="20" />
+<hkern u1="W" u2="&#xce;" k="20" />
+<hkern u1="W" u2="&#xcd;" k="20" />
+<hkern u1="W" u2="&#xcc;" k="20" />
+<hkern u1="W" u2="&#xcb;" k="20" />
+<hkern u1="W" u2="&#xca;" k="20" />
+<hkern u1="W" u2="&#xc9;" k="20" />
+<hkern u1="W" u2="&#xc8;" k="20" />
+<hkern u1="W" u2="&#xc7;" k="33" />
+<hkern u1="W" u2="&#xc6;" k="215" />
+<hkern u1="W" u2="&#xc5;" k="143" />
+<hkern u1="W" u2="&#xc4;" k="143" />
+<hkern u1="W" u2="&#xc3;" k="143" />
+<hkern u1="W" u2="&#xc2;" k="143" />
+<hkern u1="W" u2="&#xc1;" k="143" />
+<hkern u1="W" u2="&#xc0;" k="143" />
+<hkern u1="W" u2="&#xbb;" k="121" />
+<hkern u1="W" u2="&#xab;" k="121" />
+<hkern u1="W" u2="z" k="123" />
+<hkern u1="W" u2="y" k="113" />
+<hkern u1="W" u2="x" k="121" />
+<hkern u1="W" u2="w" k="47" />
+<hkern u1="W" u2="v" k="80" />
+<hkern u1="W" u2="u" k="96" />
+<hkern u1="W" u2="t" k="78" />
+<hkern u1="W" u2="s" k="133" />
+<hkern u1="W" u2="r" k="104" />
+<hkern u1="W" u2="q" k="86" />
+<hkern u1="W" u2="p" k="82" />
+<hkern u1="W" u2="o" k="86" />
+<hkern u1="W" u2="n" k="82" />
+<hkern u1="W" u2="m" k="82" />
+<hkern u1="W" u2="l" k="41" />
+<hkern u1="W" u2="k" k="41" />
+<hkern u1="W" u2="j" k="51" />
+<hkern u1="W" u2="i" k="61" />
+<hkern u1="W" u2="h" k="41" />
+<hkern u1="W" u2="g" k="143" />
+<hkern u1="W" u2="f" k="90" />
+<hkern u1="W" u2="e" k="147" />
+<hkern u1="W" u2="d" k="129" />
+<hkern u1="W" u2="c" k="127" />
+<hkern u1="W" u2="b" k="43" />
+<hkern u1="W" u2="a" k="152" />
+<hkern u1="W" u2="X" k="20" />
+<hkern u1="W" u2="W" k="-8" />
+<hkern u1="W" u2="R" k="20" />
+<hkern u1="W" u2="Q" k="33" />
+<hkern u1="W" u2="P" k="20" />
+<hkern u1="W" u2="O" k="33" />
+<hkern u1="W" u2="N" k="20" />
+<hkern u1="W" u2="M" k="23" />
+<hkern u1="W" u2="L" k="20" />
+<hkern u1="W" u2="K" k="20" />
+<hkern u1="W" u2="J" k="47" />
+<hkern u1="W" u2="I" k="20" />
+<hkern u1="W" u2="H" k="20" />
+<hkern u1="W" u2="G" k="33" />
+<hkern u1="W" u2="F" k="10" />
+<hkern u1="W" u2="E" k="20" />
+<hkern u1="W" u2="D" k="20" />
+<hkern u1="W" u2="C" k="33" />
+<hkern u1="W" u2="B" k="20" />
+<hkern u1="W" u2="A" k="143" />
+<hkern u1="W" u2="&#x3b;" k="141" />
+<hkern u1="W" u2="&#x3a;" k="141" />
+<hkern u1="W" u2="&#x2e;" k="279" />
+<hkern u1="W" u2="&#x2c;" k="244" />
+<hkern u1="X" u2="&#xef;" k="-2" />
+<hkern u1="X" u2="&#xee;" k="-4" />
+<hkern u1="X" u2="&#xed;" k="18" />
+<hkern u1="X" u2="&#xec;" k="-8" />
+<hkern u1="X" u2="y" k="111" />
+<hkern u1="X" u2="W" k="20" />
+<hkern u1="Y" u2="&#x203a;" k="100" />
+<hkern u1="Y" u2="&#x2039;" k="102" />
+<hkern u1="Y" u2="&#xf5;" k="205" />
+<hkern u1="Y" u2="&#xf2;" k="188" />
+<hkern u1="Y" u2="&#xef;" k="-37" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="129" />
+<hkern u1="Y" u2="&#xec;" k="-47" />
+<hkern u1="Y" u2="&#xe9;" k="184" />
+<hkern u1="Y" u2="&#xe8;" k="147" />
+<hkern u1="Y" u2="&#xe4;" k="111" />
+<hkern u1="Y" u2="&#xe3;" k="104" />
+<hkern u1="Y" u2="&#xe0;" k="106" />
+<hkern u1="Y" u2="&#xb5;" k="209" />
+<hkern u1="Y" u2="y" k="184" />
+<hkern u1="Y" u2="e" k="178" />
+<hkern u1="Y" u2="b" k="2" />
+<hkern u1="Y" u2="M" k="43" />
+<hkern u1="Y" u2="&#x3b;" k="121" />
+<hkern u1="Y" u2="&#x3a;" k="121" />
+<hkern u1="Y" u2="&#x2c;" k="244" />
+<hkern u1="Z" u2="&#xef;" k="-14" />
+<hkern u1="Z" u2="&#xee;" k="-6" />
+<hkern u1="Z" u2="&#xec;" k="-16" />
+<hkern u1="Z" u2="y" k="104" />
+<hkern u1="Z" u2="W" k="20" />
+<hkern u1="[" u2="&#x153;" k="-100" />
+<hkern u1="[" u2="&#xfe;" k="-61" />
+<hkern u1="[" u2="&#xf8;" k="-100" />
+<hkern u1="[" u2="&#xf6;" k="-100" />
+<hkern u1="[" u2="&#xf5;" k="-100" />
+<hkern u1="[" u2="&#xf4;" k="-100" />
+<hkern u1="[" u2="&#xf3;" k="-100" />
+<hkern u1="[" u2="&#xf2;" k="-100" />
+<hkern u1="[" u2="&#xf0;" k="-100" />
+<hkern u1="[" u2="&#xeb;" k="-100" />
+<hkern u1="[" u2="&#xea;" k="-100" />
+<hkern u1="[" u2="&#xe9;" k="-100" />
+<hkern u1="[" u2="&#xe8;" k="-100" />
+<hkern u1="[" u2="&#xe7;" k="-100" />
+<hkern u1="[" u2="y" k="-41" />
+<hkern u1="[" u2="q" k="-100" />
+<hkern u1="[" u2="o" k="-100" />
+<hkern u1="[" u2="l" k="-61" />
+<hkern u1="[" u2="k" k="-61" />
+<hkern u1="[" u2="j" k="-100" />
+<hkern u1="[" u2="h" k="-61" />
+<hkern u1="[" u2="e" k="-100" />
+<hkern u1="[" u2="d" k="-100" />
+<hkern u1="[" u2="c" k="-100" />
+<hkern u1="[" u2="b" k="-61" />
+<hkern u1="[" u2="W" k="-61" />
+<hkern u1="[" u2="J" k="-90" />
+<hkern u1="[" u2="&#x3f;" k="-55" />
+<hkern u1="a" u2="&#x2019;" k="61" />
+<hkern u1="a" u2="&#x2018;" k="162" />
+<hkern u1="a" u2="&#xff;" k="39" />
+<hkern u1="a" u2="&#xfd;" k="39" />
+<hkern u1="a" u2="y" k="47" />
+<hkern u1="a" u2="v" k="39" />
+<hkern u1="a" u2="&#x3f;" k="61" />
+<hkern u1="a" u2="&#x2f;" k="-59" />
+<hkern u1="a" u2="&#x21;" k="-6" />
+<hkern u1="b" u2="&#x2018;" k="41" />
+<hkern u1="b" u2="&#xff;" k="20" />
+<hkern u1="b" u2="&#xfd;" k="20" />
+<hkern u1="b" u2="y" k="20" />
+<hkern u1="b" u2="v" k="20" />
+<hkern u1="b" u2="&#x3f;" k="53" />
+<hkern u1="d" u2="&#xec;" k="-20" />
+<hkern u1="d" u2="y" k="49" />
+<hkern u1="e" u2="y" k="23" />
+<hkern u1="f" u2="&#x2018;" k="-182" />
+<hkern u1="f" u2="&#xef;" k="-217" />
+<hkern u1="f" u2="&#xee;" k="-133" />
+<hkern u1="f" u2="&#xec;" k="-174" />
+<hkern u1="f" u2="&#xe4;" k="-27" />
+<hkern u1="f" u2="y" k="-20" />
+<hkern u1="f" u2="l" k="-113" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="]" k="-227" />
+<hkern u1="f" u2="W" k="-225" />
+<hkern u1="f" u2="M" k="-100" />
+<hkern u1="f" u2="&#x3f;" k="-201" />
+<hkern u1="f" u2="&#x3a;" k="-25" />
+<hkern u1="f" u2="&#x2f;" k="-78" />
+<hkern u1="f" u2="&#x2c;" k="20" />
+<hkern u1="f" u2="&#x2a;" k="-182" />
+<hkern u1="f" u2="&#x27;" k="-203" />
+<hkern u1="f" u2="&#x22;" k="-203" />
+<hkern u1="f" u2="&#x21;" k="-102" />
+<hkern u1="f" u2="&#x20;" k="-63" />
+<hkern u1="g" u2="&#x2026;" k="-41" />
+<hkern u1="g" u2="&#x201d;" k="-74" />
+<hkern u1="g" u2="&#x201c;" k="-23" />
+<hkern u1="g" u2="&#x2019;" k="-74" />
+<hkern u1="g" u2="&#x2018;" k="-23" />
+<hkern u1="g" u2="&#xff;" k="-6" />
+<hkern u1="g" u2="&#xfd;" k="-6" />
+<hkern u1="g" u2="&#xf1;" k="-4" />
+<hkern u1="g" u2="&#x7d;" k="-51" />
+<hkern u1="g" u2="y" k="-6" />
+<hkern u1="g" u2="x" k="8" />
+<hkern u1="g" u2="w" k="16" />
+<hkern u1="g" u2="v" k="-6" />
+<hkern u1="g" u2="r" k="-4" />
+<hkern u1="g" u2="p" k="-4" />
+<hkern u1="g" u2="n" k="-4" />
+<hkern u1="g" u2="m" k="-4" />
+<hkern u1="g" u2="j" k="-29" />
+<hkern u1="g" u2="g" k="-4" />
+<hkern u1="g" u2="]" k="-92" />
+<hkern u1="g" u2="&#x2e;" k="-41" />
+<hkern u1="g" u2="&#x2c;" k="-41" />
+<hkern u1="g" u2="&#x29;" k="-51" />
+<hkern u1="h" u2="&#x2019;" k="61" />
+<hkern u1="h" u2="&#x2018;" k="162" />
+<hkern u1="h" u2="y" k="37" />
+<hkern u1="h" u2="&#x3f;" k="61" />
+<hkern u1="h" u2="&#x2f;" k="-59" />
+<hkern u1="h" u2="&#x21;" k="-6" />
+<hkern u1="i" u2="y" k="20" />
+<hkern u1="k" u2="&#xb5;" k="25" />
+<hkern u1="k" u2="y" k="23" />
+<hkern u1="l" u2="&#xef;" k="-10" />
+<hkern u1="l" u2="&#xee;" k="-10" />
+<hkern u1="l" u2="&#xec;" k="-35" />
+<hkern u1="l" u2="y" k="35" />
+<hkern u1="l" u2="]" k="-61" />
+<hkern u1="l" u2="&#x3f;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-41" />
+<hkern u1="l" u2="&#x21;" k="-29" />
+<hkern u1="m" u2="&#x2019;" k="61" />
+<hkern u1="m" u2="&#x2018;" k="162" />
+<hkern u1="m" u2="y" k="37" />
+<hkern u1="m" u2="w" k="25" />
+<hkern u1="m" u2="&#x3f;" k="61" />
+<hkern u1="m" u2="&#x2f;" k="-59" />
+<hkern u1="m" u2="&#x21;" k="-6" />
+<hkern u1="n" u2="&#x2019;" k="61" />
+<hkern u1="n" u2="&#x2018;" k="162" />
+<hkern u1="n" u2="y" k="37" />
+<hkern u1="n" u2="&#x3f;" k="61" />
+<hkern u1="n" u2="&#x2f;" k="-59" />
+<hkern u1="n" u2="&#x21;" k="-6" />
+<hkern u1="o" u2="&#x2018;" k="41" />
+<hkern u1="o" u2="y" k="23" />
+<hkern u1="o" u2="&#x3f;" k="53" />
+<hkern u1="p" u2="&#x2018;" k="41" />
+<hkern u1="p" u2="y" k="23" />
+<hkern u1="p" u2="&#x3f;" k="53" />
+<hkern u1="q" u2="&#x2026;" k="33" />
+<hkern u1="q" u2="&#x153;" k="-8" />
+<hkern u1="q" u2="&#xff;" k="29" />
+<hkern u1="q" u2="&#xfd;" k="29" />
+<hkern u1="q" u2="&#xfc;" k="23" />
+<hkern u1="q" u2="&#xfb;" k="23" />
+<hkern u1="q" u2="&#xfa;" k="23" />
+<hkern u1="q" u2="&#xf9;" k="23" />
+<hkern u1="q" u2="&#xf8;" k="-8" />
+<hkern u1="q" u2="&#xf6;" k="-8" />
+<hkern u1="q" u2="&#xf5;" k="-8" />
+<hkern u1="q" u2="&#xf4;" k="-8" />
+<hkern u1="q" u2="&#xf3;" k="-8" />
+<hkern u1="q" u2="&#xf2;" k="-8" />
+<hkern u1="q" u2="&#xf0;" k="-8" />
+<hkern u1="q" u2="&#xeb;" k="-8" />
+<hkern u1="q" u2="&#xea;" k="-8" />
+<hkern u1="q" u2="&#xe9;" k="-8" />
+<hkern u1="q" u2="&#xe8;" k="-8" />
+<hkern u1="q" u2="&#xe7;" k="-8" />
+<hkern u1="q" u2="&#x7d;" k="-61" />
+<hkern u1="q" u2="y" k="29" />
+<hkern u1="q" u2="x" k="20" />
+<hkern u1="q" u2="w" k="29" />
+<hkern u1="q" u2="v" k="29" />
+<hkern u1="q" u2="u" k="23" />
+<hkern u1="q" u2="q" k="-8" />
+<hkern u1="q" u2="o" k="-8" />
+<hkern u1="q" u2="j" k="-121" />
+<hkern u1="q" u2="g" k="-16" />
+<hkern u1="q" u2="e" k="-8" />
+<hkern u1="q" u2="d" k="-8" />
+<hkern u1="q" u2="c" k="-8" />
+<hkern u1="q" u2="]" k="-61" />
+<hkern u1="q" u2="&#x2e;" k="33" />
+<hkern u1="q" u2="&#x2c;" k="33" />
+<hkern u1="q" u2="&#x29;" k="-61" />
+<hkern u1="r" g2="uniFB02" k="25" />
+<hkern u1="r" u2="&#x2019;" k="-41" />
+<hkern u1="r" u2="y" k="-6" />
+<hkern u1="r" u2="&#x3b;" k="-18" />
+<hkern u1="r" u2="&#x2c;" k="102" />
+<hkern u1="s" u2="y" k="45" />
+<hkern u1="t" u2="y" k="20" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="u" u2="y" k="31" />
+<hkern u1="u" u2="&#x2c;" k="-20" />
+<hkern u1="v" u2="&#x2019;" k="-61" />
+<hkern u1="v" u2="&#x2c;" k="197" />
+<hkern u1="w" u2="p" k="6" />
+<hkern u1="w" u2="m" k="23" />
+<hkern u1="w" u2="&#x2c;" k="190" />
+<hkern u1="x" u2="&#x2026;" k="-20" />
+<hkern u1="x" u2="&#x153;" k="14" />
+<hkern u1="x" u2="&#xfc;" k="12" />
+<hkern u1="x" u2="&#xfb;" k="12" />
+<hkern u1="x" u2="&#xfa;" k="12" />
+<hkern u1="x" u2="&#xf9;" k="12" />
+<hkern u1="x" u2="&#xf8;" k="14" />
+<hkern u1="x" u2="&#xf6;" k="14" />
+<hkern u1="x" u2="&#xf5;" k="14" />
+<hkern u1="x" u2="&#xf4;" k="14" />
+<hkern u1="x" u2="&#xf3;" k="14" />
+<hkern u1="x" u2="&#xf2;" k="14" />
+<hkern u1="x" u2="&#xf0;" k="14" />
+<hkern u1="x" u2="&#xeb;" k="14" />
+<hkern u1="x" u2="&#xea;" k="14" />
+<hkern u1="x" u2="&#xe9;" k="14" />
+<hkern u1="x" u2="&#xe8;" k="14" />
+<hkern u1="x" u2="&#xe7;" k="14" />
+<hkern u1="x" u2="y" k="20" />
+<hkern u1="x" u2="u" k="12" />
+<hkern u1="x" u2="q" k="14" />
+<hkern u1="x" u2="o" k="14" />
+<hkern u1="x" u2="e" k="14" />
+<hkern u1="x" u2="d" k="14" />
+<hkern u1="x" u2="c" k="14" />
+<hkern u1="x" u2="&#x2e;" k="-20" />
+<hkern u1="x" u2="&#x2c;" k="-20" />
+<hkern u1="y" u2="&#x2019;" k="-61" />
+<hkern u1="y" u2="&#xe6;" k="39" />
+<hkern u1="y" u2="&#xe5;" k="39" />
+<hkern u1="y" u2="&#xe4;" k="39" />
+<hkern u1="y" u2="&#xe3;" k="39" />
+<hkern u1="y" u2="&#xe2;" k="39" />
+<hkern u1="y" u2="&#xe1;" k="39" />
+<hkern u1="y" u2="&#xe0;" k="39" />
+<hkern u1="y" u2="c" k="25" />
+<hkern u1="y" u2="a" k="39" />
+<hkern u1="y" u2="&#x2c;" k="197" />
+<hkern u1="z" u2="y" k="37" />
+<hkern u1="&#x7b;" u2="y" k="-41" />
+<hkern u1="&#x7b;" u2="W" k="-61" />
+<hkern u1="&#x7b;" u2="&#x3f;" k="-55" />
+<hkern u1="&#x7c;" u2="J" k="-82" />
+<hkern u1="&#xa1;" u2="&#x178;" k="170" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="170" />
+<hkern u1="&#xa1;" u2="Y" k="170" />
+<hkern u1="&#xa1;" u2="W" k="123" />
+<hkern u1="&#xa1;" u2="V" k="147" />
+<hkern u1="&#xa1;" u2="T" k="109" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-72" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-100" />
+<hkern u1="&#xab;" u2="&#x2014;" k="-82" />
+<hkern u1="&#xab;" u2="&#x2013;" k="-82" />
+<hkern u1="&#xab;" u2="W" k="141" />
+<hkern u1="&#xab;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xab;" u2="&#x3a;" k="-23" />
+<hkern u1="&#xab;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xb5;" u2="y" k="31" />
+<hkern u1="&#xb5;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x2014;" k="-121" />
+<hkern u1="&#xbb;" u2="&#x2013;" k="-121" />
+<hkern u1="&#xbb;" u2="W" k="102" />
+<hkern u1="&#xbb;" u2="M" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3b;" k="-20" />
+<hkern u1="&#xbb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xbf;" u2="T" k="127" />
+<hkern u1="&#xbf;" u2="S" k="43" />
+<hkern u1="&#xc0;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc0;" u2="W" k="82" />
+<hkern u1="&#xc0;" u2="G" k="47" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc1;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc1;" u2="W" k="82" />
+<hkern u1="&#xc1;" u2="G" k="47" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc2;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc2;" u2="W" k="82" />
+<hkern u1="&#xc2;" u2="G" k="47" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc3;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc3;" u2="W" k="82" />
+<hkern u1="&#xc3;" u2="G" k="47" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc4;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc4;" u2="W" k="82" />
+<hkern u1="&#xc4;" u2="G" k="47" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc5;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc5;" u2="W" k="82" />
+<hkern u1="&#xc5;" u2="G" k="47" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-100" />
+<hkern u1="&#xc6;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc6;" u2="y" k="61" />
+<hkern u1="&#xc6;" u2="W" k="33" />
+<hkern u1="&#xc7;" u2="&#xef;" k="-16" />
+<hkern u1="&#xc7;" u2="&#xee;" k="-43" />
+<hkern u1="&#xc7;" u2="&#xec;" k="8" />
+<hkern u1="&#xc7;" u2="y" k="66" />
+<hkern u1="&#xc7;" u2="e" k="37" />
+<hkern u1="&#xc7;" u2="d" k="51" />
+<hkern u1="&#xc7;" u2="W" k="14" />
+<hkern u1="&#xc7;" u2="C" k="41" />
+<hkern u1="&#xc8;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc8;" u2="y" k="61" />
+<hkern u1="&#xc8;" u2="W" k="33" />
+<hkern u1="&#xc9;" u2="&#xb5;" k="20" />
+<hkern u1="&#xc9;" u2="y" k="61" />
+<hkern u1="&#xc9;" u2="W" k="33" />
+<hkern u1="&#xca;" u2="&#xb5;" k="20" />
+<hkern u1="&#xca;" u2="y" k="61" />
+<hkern u1="&#xca;" u2="W" k="33" />
+<hkern u1="&#xcb;" u2="&#xb5;" k="20" />
+<hkern u1="&#xcb;" u2="y" k="61" />
+<hkern u1="&#xcb;" u2="W" k="33" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcc;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-12" />
+<hkern u1="&#xce;" u2="&#xee;" k="-18" />
+<hkern u1="&#xce;" u2="&#xec;" k="-18" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-12" />
+<hkern u1="&#xcf;" u2="&#xee;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-18" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd0;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd0;" u2="W" k="55" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd1;" u2="&#xee;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-18" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd2;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd2;" u2="W" k="55" />
+<hkern u1="&#xd3;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd3;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd3;" u2="W" k="55" />
+<hkern u1="&#xd4;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd4;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd4;" u2="W" k="55" />
+<hkern u1="&#xd5;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd5;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd5;" u2="W" k="55" />
+<hkern u1="&#xd6;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd6;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd6;" u2="W" k="55" />
+<hkern u1="&#xd8;" u2="&#xef;" k="-10" />
+<hkern u1="&#xd8;" u2="&#xee;" k="-6" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd8;" u2="W" k="55" />
+<hkern u1="&#xd9;" u2="&#xf1;" k="43" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-18" />
+<hkern u1="&#xd9;" u2="&#xee;" k="-10" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-37" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd9;" u2="y" k="25" />
+<hkern u1="&#xda;" u2="&#xf1;" k="43" />
+<hkern u1="&#xda;" u2="&#xef;" k="-18" />
+<hkern u1="&#xda;" u2="&#xee;" k="-10" />
+<hkern u1="&#xda;" u2="&#xec;" k="-37" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xda;" u2="y" k="25" />
+<hkern u1="&#xdb;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdb;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdb;" u2="y" k="25" />
+<hkern u1="&#xdc;" u2="&#xf1;" k="43" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-18" />
+<hkern u1="&#xdc;" u2="&#xee;" k="-10" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-37" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xdc;" u2="y" k="25" />
+<hkern u1="&#xdd;" u2="&#x203a;" k="100" />
+<hkern u1="&#xdd;" u2="&#x2039;" k="102" />
+<hkern u1="&#xdd;" u2="&#xf5;" k="205" />
+<hkern u1="&#xdd;" u2="&#xf2;" k="188" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-37" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="129" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-47" />
+<hkern u1="&#xdd;" u2="&#xe9;" k="184" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="147" />
+<hkern u1="&#xdd;" u2="&#xe4;" k="111" />
+<hkern u1="&#xdd;" u2="&#xe3;" k="104" />
+<hkern u1="&#xdd;" u2="&#xe0;" k="106" />
+<hkern u1="&#xdd;" u2="&#xb5;" k="209" />
+<hkern u1="&#xdd;" u2="y" k="184" />
+<hkern u1="&#xdd;" u2="e" k="178" />
+<hkern u1="&#xdd;" u2="b" k="2" />
+<hkern u1="&#xdd;" u2="M" k="43" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="121" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="121" />
+<hkern u1="&#xdd;" u2="&#x2c;" k="244" />
+<hkern u1="&#xde;" u2="&#xef;" k="-10" />
+<hkern u1="&#xde;" u2="&#xee;" k="-6" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xde;" u2="W" k="55" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-18" />
+<hkern u1="&#xe0;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe0;" u2="y" k="37" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe0;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe1;" u2="y" k="37" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe2;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe2;" u2="y" k="37" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe2;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe3;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe3;" u2="y" k="37" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe3;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe4;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe4;" u2="y" k="37" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe4;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe5;" u2="&#x2019;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2018;" k="162" />
+<hkern u1="&#xe5;" u2="y" k="37" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="61" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xe5;" u2="&#x21;" k="-6" />
+<hkern u1="&#xe6;" u2="y" k="23" />
+<hkern u1="&#xe8;" u2="y" k="23" />
+<hkern u1="&#xe9;" u2="y" k="23" />
+<hkern u1="&#xea;" u2="y" k="23" />
+<hkern u1="&#xeb;" u2="y" k="23" />
+<hkern u1="&#xec;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="y" k="20" />
+<hkern u1="&#xed;" u2="k" k="-20" />
+<hkern u1="&#xee;" u2="y" k="20" />
+<hkern u1="&#xee;" u2="k" k="-20" />
+<hkern u1="&#xef;" u2="y" k="20" />
+<hkern u1="&#xf1;" u2="&#x2019;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2018;" k="162" />
+<hkern u1="&#xf1;" u2="y" k="37" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="61" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-59" />
+<hkern u1="&#xf1;" u2="&#x21;" k="-6" />
+<hkern u1="&#xf2;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf2;" u2="y" k="23" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf3;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf3;" u2="y" k="23" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf4;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf4;" u2="y" k="23" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf5;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf5;" u2="y" k="23" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf6;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf6;" u2="y" k="23" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf8;" u2="&#x2018;" k="41" />
+<hkern u1="&#xf8;" u2="y" k="23" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="53" />
+<hkern u1="&#xf9;" u2="y" k="31" />
+<hkern u1="&#xf9;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfa;" u2="y" k="31" />
+<hkern u1="&#xfa;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfb;" u2="y" k="31" />
+<hkern u1="&#xfb;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfc;" u2="y" k="31" />
+<hkern u1="&#xfc;" u2="&#x2c;" k="-20" />
+<hkern u1="&#xfd;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xfd;" u2="&#x2c;" k="197" />
+<hkern u1="&#xfe;" u2="&#x2018;" k="41" />
+<hkern u1="&#xfe;" u2="y" k="23" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="53" />
+<hkern u1="&#xff;" u2="&#x2019;" k="-61" />
+<hkern u1="&#xff;" u2="&#x2c;" k="197" />
+<hkern u1="&#x152;" u2="&#xb5;" k="20" />
+<hkern u1="&#x152;" u2="y" k="61" />
+<hkern u1="&#x152;" u2="W" k="33" />
+<hkern u1="&#x153;" u2="y" k="23" />
+<hkern u1="&#x178;" u2="&#x203a;" k="100" />
+<hkern u1="&#x178;" u2="&#x2039;" k="102" />
+<hkern u1="&#x178;" u2="&#xf5;" k="205" />
+<hkern u1="&#x178;" u2="&#xf2;" k="188" />
+<hkern u1="&#x178;" u2="&#xef;" k="-37" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="129" />
+<hkern u1="&#x178;" u2="&#xec;" k="-47" />
+<hkern u1="&#x178;" u2="&#xe9;" k="184" />
+<hkern u1="&#x178;" u2="&#xe8;" k="147" />
+<hkern u1="&#x178;" u2="&#xe4;" k="111" />
+<hkern u1="&#x178;" u2="&#xe3;" k="104" />
+<hkern u1="&#x178;" u2="&#xe0;" k="106" />
+<hkern u1="&#x178;" u2="&#xb5;" k="209" />
+<hkern u1="&#x178;" u2="y" k="184" />
+<hkern u1="&#x178;" u2="e" k="178" />
+<hkern u1="&#x178;" u2="b" k="2" />
+<hkern u1="&#x178;" u2="M" k="43" />
+<hkern u1="&#x178;" u2="&#x3b;" k="121" />
+<hkern u1="&#x178;" u2="&#x3a;" k="121" />
+<hkern u1="&#x178;" u2="&#x2c;" k="244" />
+<hkern u1="&#x2013;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2013;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2013;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2013;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2013;" u2="W" k="102" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-100" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-61" />
+<hkern u1="&#x2014;" u2="&#x203a;" k="-82" />
+<hkern u1="&#x2014;" u2="&#x2039;" k="-121" />
+<hkern u1="&#x2014;" u2="&#xbb;" k="-82" />
+<hkern u1="&#x2014;" u2="&#xab;" k="-121" />
+<hkern u1="&#x2014;" u2="W" k="102" />
+<hkern u1="&#x2014;" u2="&#x33;" k="145" />
+<hkern u1="&#x2018;" u2="&#xc5;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc4;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc3;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc2;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc1;" k="217" />
+<hkern u1="&#x2018;" u2="&#xc0;" k="217" />
+<hkern u1="&#x2018;" u2="W" k="-72" />
+<hkern u1="&#x2018;" u2="V" k="-86" />
+<hkern u1="&#x2018;" u2="A" k="217" />
+<hkern u1="&#x2018;" u2="&#x2c;" k="170" />
+<hkern u1="&#x2019;" u2="s" k="43" />
+<hkern u1="&#x201a;" u2="&#x178;" k="223" />
+<hkern u1="&#x201a;" u2="&#x153;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf6;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf5;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf4;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf3;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf2;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xf0;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xeb;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xea;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe9;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe8;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xe7;" k="-86" />
+<hkern u1="&#x201a;" u2="&#xdd;" k="223" />
+<hkern u1="&#x201a;" u2="q" k="-86" />
+<hkern u1="&#x201a;" u2="o" k="-86" />
+<hkern u1="&#x201a;" u2="j" k="-63" />
+<hkern u1="&#x201a;" u2="e" k="-86" />
+<hkern u1="&#x201a;" u2="d" k="-86" />
+<hkern u1="&#x201a;" u2="c" k="-86" />
+<hkern u1="&#x201a;" u2="Y" k="223" />
+<hkern u1="&#x201a;" u2="W" k="162" />
+<hkern u1="&#x201a;" u2="V" k="213" />
+<hkern u1="&#x201a;" u2="T" k="168" />
+<hkern u1="&#x201a;" u2="J" k="-104" />
+<hkern u1="&#x201c;" u2="W" k="-72" />
+<hkern u1="&#x201c;" u2="&#x2c;" k="170" />
+<hkern u1="&#x201e;" u2="W" k="201" />
+<hkern u1="&#x2039;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x2039;" u2="&#x153;" k="-41" />
+<hkern u1="&#x2039;" u2="&#x152;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xf0;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xeb;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xea;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe9;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xe6;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe5;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe4;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe3;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe2;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe1;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xe0;" k="-25" />
+<hkern u1="&#x2039;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc5;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc4;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc3;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc2;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc1;" k="-41" />
+<hkern u1="&#x2039;" u2="&#xc0;" k="-41" />
+<hkern u1="&#x2039;" u2="s" k="-20" />
+<hkern u1="&#x2039;" u2="q" k="-41" />
+<hkern u1="&#x2039;" u2="o" k="-41" />
+<hkern u1="&#x2039;" u2="e" k="-41" />
+<hkern u1="&#x2039;" u2="d" k="-41" />
+<hkern u1="&#x2039;" u2="c" k="-41" />
+<hkern u1="&#x2039;" u2="a" k="-25" />
+<hkern u1="&#x2039;" u2="W" k="141" />
+<hkern u1="&#x2039;" u2="Q" k="-41" />
+<hkern u1="&#x2039;" u2="O" k="-41" />
+<hkern u1="&#x2039;" u2="M" k="-41" />
+<hkern u1="&#x2039;" u2="J" k="-82" />
+<hkern u1="&#x2039;" u2="G" k="-41" />
+<hkern u1="&#x2039;" u2="C" k="-41" />
+<hkern u1="&#x2039;" u2="A" k="-41" />
+<hkern u1="&#x2039;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x2039;" u2="&#x3a;" k="-23" />
+<hkern u1="&#x2039;" u2="&#x2c;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x2014;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x2013;" k="-82" />
+<hkern u1="&#x203a;" u2="&#x153;" k="-27" />
+<hkern u1="&#x203a;" u2="&#x152;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xf8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf6;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf5;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf4;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf3;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf2;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xf0;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xeb;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xea;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe9;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe8;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xe7;" k="-27" />
+<hkern u1="&#x203a;" u2="&#xd8;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd6;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd5;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd4;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd3;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xd2;" k="-41" />
+<hkern u1="&#x203a;" u2="&#xc7;" k="-41" />
+<hkern u1="&#x203a;" u2="q" k="-27" />
+<hkern u1="&#x203a;" u2="o" k="-27" />
+<hkern u1="&#x203a;" u2="e" k="-27" />
+<hkern u1="&#x203a;" u2="d" k="-47" />
+<hkern u1="&#x203a;" u2="c" k="-27" />
+<hkern u1="&#x203a;" u2="W" k="102" />
+<hkern u1="&#x203a;" u2="Q" k="-41" />
+<hkern u1="&#x203a;" u2="O" k="-41" />
+<hkern u1="&#x203a;" u2="M" k="-20" />
+<hkern u1="&#x203a;" u2="G" k="-41" />
+<hkern u1="&#x203a;" u2="C" k="-41" />
+<hkern u1="&#x203a;" u2="&#x3b;" k="-20" />
+<hkern u1="&#x203a;" u2="&#x3a;" k="-20" />
+<hkern g1="uniFB01" u2="y" k="20" />
+<hkern g1="uniFB02" u2="&#xef;" k="-10" />
+<hkern g1="uniFB02" u2="&#xee;" k="-10" />
+<hkern g1="uniFB02" u2="&#xec;" k="-35" />
+<hkern g1="uniFB02" u2="y" k="35" />
+<hkern g1="uniFB02" u2="]" k="-61" />
+<hkern g1="uniFB02" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB02" u2="&#x21;" k="-29" />
+<hkern g1="uniFB03" u2="y" k="20" />
+<hkern g1="uniFB04" u2="&#xef;" k="-10" />
+<hkern g1="uniFB04" u2="&#xee;" k="-10" />
+<hkern g1="uniFB04" u2="&#xec;" k="-35" />
+<hkern g1="uniFB04" u2="y" k="35" />
+<hkern g1="uniFB04" u2="]" k="-61" />
+<hkern g1="uniFB04" u2="&#x3f;" k="-23" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-41" />
+<hkern g1="uniFB04" u2="&#x21;" k="-29" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="d" 	g2="w" 	k="31" />
+<hkern g1="d" 	g2="x" 	k="2" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-20" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-23" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="61" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="w" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-45" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotleft,guilsinglleft" 	k="-18" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="61" />
+<hkern g1="f" 	g2="T" 	k="-205" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-113" />
+<hkern g1="f" 	g2="v,y,yacute,ydieresis" 	k="-6" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-184" />
+<hkern g1="f" 	g2="w" 	k="-6" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-291" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-188" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-162" />
+<hkern g1="f" 	g2="S" 	k="-41" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-193" />
+<hkern g1="f" 	g2="V" 	k="-231" />
+<hkern g1="f" 	g2="X" 	k="-162" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-223" />
+<hkern g1="f" 	g2="Z" 	k="-82" />
+<hkern g1="f" 	g2="j" 	k="-70" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-57" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="v,y,yacute,ydieresis" 	k="31" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="w" 	k="20" />
+<hkern g1="k" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="k" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="k" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="45" />
+<hkern g1="k" 	g2="s" 	k="10" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="k" 	g2="w" 	k="31" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-18" />
+<hkern g1="k" 	g2="j" 	k="4" />
+<hkern g1="k" 	g2="t" 	k="27" />
+<hkern g1="k" 	g2="g" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteleft,quotedblleft" 	k="53" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="w" 	k="41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-6" />
+<hkern g1="j" 	g2="j" 	k="-8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="145" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="29" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-37" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="g" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="w" 	k="18" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="6" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="27" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="102" />
+<hkern g1="r" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="39" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="r" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
+<hkern g1="r" 	g2="s" 	k="10" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="r" 	g2="w" 	k="-23" />
+<hkern g1="r" 	g2="x" 	k="8" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="102" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-41" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="r" 	g2="j" 	k="-37" />
+<hkern g1="r" 	g2="t" 	k="-20" />
+<hkern g1="r" 	g2="g" 	k="61" />
+<hkern g1="r" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="r" 	g2="z" 	k="23" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="14" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="29" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="12" />
+<hkern g1="s" 	g2="w" 	k="25" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-47" />
+<hkern g1="t" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-8" />
+<hkern g1="t" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="t" 	g2="w" 	k="20" />
+<hkern g1="t" 	g2="x" 	k="-18" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="t" 	g2="z" 	k="-6" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="v,y,yacute,ydieresis" 	k="-18" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="70" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="w" 	k="4" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright,bracketright,braceright" 	k="61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="45" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="29" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="v,y,yacute,ydieresis" 	k="-10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="m,n,p,r,ntilde" 	k="4" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="-37" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="w" 	k="-18" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="217" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="-72" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="23" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="14" />
+<hkern g1="w" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="w" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="31" />
+<hkern g1="w" 	g2="s" 	k="29" />
+<hkern g1="w" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="6" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="w" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="w" 	g2="w" 	k="-20" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="141" />
+<hkern g1="w" 	g2="quoteright,quotedblright" 	k="-49" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="z" 	k="18" />
+<hkern g1="z" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="178" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="80" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="12" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="223" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="-6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-43" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="205" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="74" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="166" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="6" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="AE" 	k="29" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-16" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-43" />
+<hkern g1="B" 	g2="T" 	k="51" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="w" 	k="31" />
+<hkern g1="B" 	g2="x" 	k="4" />
+<hkern g1="B" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="6" />
+<hkern g1="B" 	g2="V" 	k="53" />
+<hkern g1="B" 	g2="X" 	k="37" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="B" 	g2="Z" 	k="25" />
+<hkern g1="B" 	g2="g" 	k="6" />
+<hkern g1="B" 	g2="J" 	k="41" />
+<hkern g1="B" 	g2="AE" 	k="92" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="43" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="quoteleft,quotedblleft" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="49" />
+<hkern g1="C,Ccedilla" 	g2="comma,period,ellipsis" 	k="16" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-16" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="51" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="29" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="80" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="72" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="J" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="33" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="43" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="76" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="61" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="20" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="57" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="G" 	g2="T" 	k="61" />
+<hkern g1="G" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="G" 	g2="w" 	k="41" />
+<hkern g1="G" 	g2="x" 	k="4" />
+<hkern g1="G" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="G" 	g2="V" 	k="43" />
+<hkern g1="G" 	g2="X" 	k="35" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="G" 	g2="Z" 	k="14" />
+<hkern g1="G" 	g2="J" 	k="2" />
+<hkern g1="G" 	g2="AE" 	k="61" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="T" 	k="16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="37" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-45" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteright,quotedblright" 	k="-12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="V" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="20" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="J" 	k="4" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="29" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="K" 	g2="T" 	k="41" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="K" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
+<hkern g1="K" 	g2="s" 	k="25" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="109" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="43" />
+<hkern g1="K" 	g2="w" 	k="102" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
+<hkern g1="K" 	g2="S" 	k="45" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="55" />
+<hkern g1="K" 	g2="V" 	k="20" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="K" 	g2="j" 	k="25" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="82" />
+<hkern g1="K" 	g2="g" 	k="59" />
+<hkern g1="K" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="41" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="L" 	g2="T" 	k="221" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="20" />
+<hkern g1="L" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="49" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="82" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="27" />
+<hkern g1="L" 	g2="w" 	k="94" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="L" 	g2="S" 	k="31" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="119" />
+<hkern g1="L" 	g2="V" 	k="205" />
+<hkern g1="L" 	g2="X" 	k="25" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="199" />
+<hkern g1="L" 	g2="Z" 	k="10" />
+<hkern g1="L" 	g2="j" 	k="20" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="L" 	g2="t" 	k="41" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="47" />
+<hkern g1="L" 	g2="z" 	k="6" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="57" />
+<hkern g1="L" 	g2="J" 	k="37" />
+<hkern g1="L" 	g2="AE" 	k="49" />
+<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="M" 	g2="T" 	k="43" />
+<hkern g1="M" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="8" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="41" />
+<hkern g1="M" 	g2="w" 	k="41" />
+<hkern g1="M" 	g2="x" 	k="20" />
+<hkern g1="M" 	g2="V" 	k="18" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="29" />
+<hkern g1="M" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-14" />
+<hkern g1="M" 	g2="g" 	k="8" />
+<hkern g1="M" 	g2="J" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="20" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="61" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-86" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,ellipsis" 	k="-2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="S" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="49" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="53" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="31" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-6" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="63" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="102" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="63" />
+<hkern g1="P" 	g2="T" 	k="25" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="113" />
+<hkern g1="P" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="98" />
+<hkern g1="P" 	g2="s" 	k="109" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-20" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="49" />
+<hkern g1="P" 	g2="w" 	k="6" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="301" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="S" 	k="23" />
+<hkern g1="P" 	g2="V" 	k="41" />
+<hkern g1="P" 	g2="X" 	k="61" />
+<hkern g1="P" 	g2="Z" 	k="66" />
+<hkern g1="P" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="23" />
+<hkern g1="P" 	g2="J" 	k="2" />
+<hkern g1="P" 	g2="AE" 	k="227" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="203" />
+<hkern g1="R" 	g2="T" 	k="98" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="29" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="R" 	g2="w" 	k="53" />
+<hkern g1="R" 	g2="x" 	k="-41" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="6" />
+<hkern g1="R" 	g2="S" 	k="31" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="41" />
+<hkern g1="R" 	g2="V" 	k="84" />
+<hkern g1="R" 	g2="X" 	k="16" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="R" 	g2="Z" 	k="-12" />
+<hkern g1="R" 	g2="g" 	k="4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
+<hkern g1="R" 	g2="J" 	k="37" />
+<hkern g1="R" 	g2="AE" 	k="20" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
+<hkern g1="S" 	g2="T" 	k="20" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="39" />
+<hkern g1="S" 	g2="w" 	k="33" />
+<hkern g1="S" 	g2="x" 	k="41" />
+<hkern g1="S" 	g2="V" 	k="8" />
+<hkern g1="S" 	g2="X" 	k="23" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="S" 	g2="J" 	k="41" />
+<hkern g1="S" 	g2="AE" 	k="80" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="186" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="T" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="162" />
+<hkern g1="T" 	g2="s" 	k="176" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="125" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="111" />
+<hkern g1="T" 	g2="quoteleft,quotedblleft" 	k="-100" />
+<hkern g1="T" 	g2="w" 	k="100" />
+<hkern g1="T" 	g2="x" 	k="164" />
+<hkern g1="T" 	g2="parenright,bracketright,braceright" 	k="-25" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="115" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="170" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-31" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
+<hkern g1="T" 	g2="S" 	k="51" />
+<hkern g1="T" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
+<hkern g1="T" 	g2="V" 	k="-20" />
+<hkern g1="T" 	g2="X" 	k="68" />
+<hkern g1="T" 	g2="Z" 	k="35" />
+<hkern g1="T" 	g2="j" 	k="74" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="94" />
+<hkern g1="T" 	g2="t" 	k="102" />
+<hkern g1="T" 	g2="g" 	k="166" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="T" 	g2="z" 	k="141" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="76" />
+<hkern g1="T" 	g2="J" 	k="20" />
+<hkern g1="T" 	g2="AE" 	k="213" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="180" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="T" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="b,h,k,l,thorn" 	k="-16" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Z" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="39" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="121" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="57" />
+<hkern g1="V,W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="147" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="6" />
+<hkern g1="V,W" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="113" />
+<hkern g1="V,W" 	g2="s" 	k="82" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="59" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="137" />
+<hkern g1="V,W" 	g2="quoteleft,quotedblleft" 	k="-41" />
+<hkern g1="V,W" 	g2="w" 	k="121" />
+<hkern g1="V,W" 	g2="x" 	k="121" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="137" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="121" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="S" 	k="29" />
+<hkern g1="V,W" 	g2="X" 	k="20" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="-20" />
+<hkern g1="V,W" 	g2="Z" 	k="20" />
+<hkern g1="V,W" 	g2="j" 	k="10" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="V,W" 	g2="t" 	k="82" />
+<hkern g1="V,W" 	g2="g" 	k="145" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="100" />
+<hkern g1="V,W" 	g2="z" 	k="106" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="63" />
+<hkern g1="V,W" 	g2="J" 	k="61" />
+<hkern g1="V,W" 	g2="AE" 	k="244" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="152" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="193" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="133" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="143" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="203" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="160" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-39" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="244" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="96" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="162" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="2" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="29" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="111" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="109" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="154" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="236" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="195" />
+<hkern g1="X" 	g2="T" 	k="45" />
+<hkern g1="X" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="-10" />
+<hkern g1="X" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
+<hkern g1="X" 	g2="s" 	k="35" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="82" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="111" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="51" />
+<hkern g1="X" 	g2="w" 	k="111" />
+<hkern g1="X" 	g2="x" 	k="-16" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="4" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
+<hkern g1="X" 	g2="V" 	k="20" />
+<hkern g1="X" 	g2="X" 	k="-41" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="X" 	g2="j" 	k="8" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="18" />
+<hkern g1="X" 	g2="t" 	k="55" />
+<hkern g1="X" 	g2="g" 	k="25" />
+<hkern g1="X" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="70" />
+<hkern g1="X" 	g2="AE" 	k="41" />
+<hkern g1="Z" 	g2="T" 	k="23" />
+<hkern g1="Z" 	g2="b,h,k,l,thorn" 	k="35" />
+<hkern g1="Z" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="Z" 	g2="s" 	k="41" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="98" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="41" />
+<hkern g1="Z" 	g2="w" 	k="92" />
+<hkern g1="Z" 	g2="x" 	k="31" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-31" />
+<hkern g1="Z" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="Z" 	g2="V" 	k="25" />
+<hkern g1="Z" 	g2="X" 	k="8" />
+<hkern g1="Z" 	g2="j" 	k="10" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="10" />
+<hkern g1="Z" 	g2="t" 	k="20" />
+<hkern g1="Z" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Z" 	g2="z" 	k="37" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
+<hkern g1="Z" 	g2="J" 	k="18" />
+<hkern g1="Z" 	g2="AE" 	k="43" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="82" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-27" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-45" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="121" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-20" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-47" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="141" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-84" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-39" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="92" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="174" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="-23" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="w" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="comma,period,ellipsis" 	k="213" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-29" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-86" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-6" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="quoteleft,quotedblleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-37" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="252" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="147" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="152" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="213" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="139" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="256" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="209" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="g" 	k="-63" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-90" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-86" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-86" />
+<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="V" 	k="102" />
+<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-41" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-49" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-47" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-117" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..69ef173ad6cfc3cc4e616a95ce08a806c5444481
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.woff
new file mode 100755
index 0000000000000000000000000000000000000000..8c0c8d4b1086e1dd3bb826bda63b93d58927c0bf
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLig.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.eot
new file mode 100755
index 0000000000000000000000000000000000000000..0908456da4deeda15912a8d147128500eaaf84d1
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.svg
new file mode 100755
index 0000000000000000000000000000000000000000..52c750ee18d0890324d5092b15e3757dd89f346b
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.svg
@@ -0,0 +1,1482 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="capita-extralightitalicRg" horiz-adv-x="1067" >
+<font-face units-per-em="2048" ascent="1485" descent="-563" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1228" d="M-309 -463q0 59 28 148h68q0 -77 23 -115.5t88 -38.5q96 0 157 92q49 70 90 295l158 905h-178l14 62q98 13 146 41q24 14 34 33.5t23 82.5q22 100 44.5 167t50.5 108.5t50 62t60 47.5q97 72 289 72q37 0 94 -9.5t84 -21.5q47 -21 47 -73q0 -68 -31 -189h-76q2 29 2 84 q-3 68 -50 92.5t-130 24.5q-155 0 -227 -115q-24 -39 -44.5 -102.5t-51.5 -208.5l-15 -72h389q111 39 148 39q42 0 61 -17.5t19 -72.5q0 -63 -51 -280l-58 -254q-28 -138 -28 -168q0 -37 17 -54.5t60 -17.5q79 0 146 18l-17 -67q-114 -53 -209 -53q-116 0 -116 108 q0 43 28 174l56 256q41 184 41 228q0 46 -24.5 60.5t-78.5 14.5h-399l-172 -921q-32 -171 -72.5 -258t-101.5 -136q-85 -71 -223 -71q-67 0 -114.5 24.5t-47.5 75.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1216" d="M-309 -463q0 59 28 148h68q0 -81 22.5 -117.5t88.5 -36.5q98 0 159 92q46 65 88 295l162 905h-178l14 62q98 13 146 41q24 14 35.5 33.5t21.5 70.5q20 96 45 165t55 112t55 67t60 47q55 38 126 57t185 19q62 0 134 -14q52 18 84 18q43 0 60 -16.5t17 -69.5 q0 -60 -63 -350l-158 -741q-28 -138 -28 -168q0 -37 17 -54.5t60 -17.5q79 0 146 18l-17 -67q-114 -53 -209 -53q-116 0 -116 108q0 31 28 174l168 799q33 165 33 219q0 69 -48.5 97t-137.5 28q-114 0 -175.5 -28.5t-101.5 -86.5q-20 -29 -33 -54.5t-34 -92.5t-41 -166 l-13 -66q150 0 254 -4l-16 -80q-138 -6 -258 -6l-172 -911q-34 -176 -74.5 -266t-99.5 -138q-85 -71 -228 -71q-66 0 -112.5 24.5t-46.5 75.5z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1882" d="M-309 -463q0 65 26 148h68q0 -92 21 -126t92 -34q49 0 91.5 27t67.5 73q48 81 86 293l160 905h-178l14 62q98 13 146 41q23 14 34 34t23 72q41 159 83 234t107 118q102 70 250 70q79 0 140 -22q45 -19 45 -64q0 -68 -29 -182h-70q2 27 2 61q-3 71 -32.5 94t-104.5 23 q-126 0 -192 -109q-42 -66 -95 -309l-8 -37h377q105 0 131 21q19 15 30 35.5t21 66.5q23 101 46 169t49.5 111t50 66t59.5 49q97 72 289 72q38 0 94 -9t84 -22q45 -17 45 -73q0 -75 -28 -193h-76q2 29 2 88q-2 46 -28.5 73t-62.5 35.5t-89 8.5q-156 0 -228 -115 q-23 -36 -42.5 -98t-51.5 -213l-16 -72h389q111 39 145 39q44 0 63 -17.5t19 -72.5q0 -58 -51 -280l-57 -254q-29 -122 -29 -168q0 -37 17 -54.5t61 -17.5q76 0 143 18l-14 -67q-114 -53 -209 -53q-48 0 -82.5 23.5t-34.5 84.5q0 39 29 174l55 256q41 185 41 228 q0 44 -20 59q-21 16 -82 16h-400l-166 -878q-47 -243 -120 -340q-46 -59 -119 -92t-156 -33q-91 0 -141 26q-43 24 -43 74q0 58 28 137h66q0 -90 24 -119.5t99 -29.5q51 0 98 28t70 72q58 114 90 293l154 862h-541l-172 -921q-47 -247 -117 -340q-46 -59 -115.5 -92 t-150.5 -33q-38 0 -76.5 8t-54.5 18q-43 24 -43 74z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1869" d="M-309 -463q0 65 26 148h68q0 -92 21 -126t92 -34q49 0 91.5 27t67.5 73q48 81 86 293l160 905h-178l14 62q98 13 146 41q23 14 34 34t23 72q41 160 83.5 235.5t106.5 118.5q99 68 250 68q79 0 140 -22q45 -19 45 -64q0 -68 -29 -182h-70q2 27 2 61q-3 71 -32.5 94 t-104.5 23q-133 0 -192 -107q-61 -101 -97 -323l-4 -25h381q99 0 125 21q20 16 31.5 36t21.5 66q22 96 47 164.5t53.5 111t53 66.5t59.5 47q57 38 128.5 57t185.5 19q61 0 133 -14q47 14 86 14q42 0 59 -15t17 -67q0 -46 -66 -350l-156 -741q-28 -138 -28 -168 q0 -37 17 -54.5t61 -17.5q76 0 143 18l-14 -67q-114 -53 -209 -53q-48 0 -82.5 23.5t-34.5 84.5q0 42 29 174l168 799q32 160 32 219q0 49 -32 86q-17 17 -63.5 28t-90.5 11q-114 0 -176.5 -28t-101.5 -87q-20 -28 -33 -54t-33.5 -92.5t-40.5 -166.5l-14 -66q152 0 256 -4 l-17 -80q-138 -6 -258 -6l-166 -878q-47 -243 -120 -340q-46 -59 -119 -92t-156 -33q-91 0 -141 26q-43 24 -43 74q0 58 28 137h66q0 -90 24 -119.5t99 -29.5q51 0 98 28t70 72q58 114 90 293l154 862h-541l-172 -921q-47 -247 -117 -340q-46 -59 -115.5 -92t-150.5 -33 q-38 0 -76.5 8t-54.5 18q-43 24 -43 74z" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="2048" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="!" horiz-adv-x="577" d="M156 80q0 45 28.5 77.5t75.5 32.5q45 0 73.5 -27.5t28.5 -72.5t-30 -79t-78 -34q-42 0 -70 29t-28 74zM285 430q105 755 129 895q9 54 31 78t65 24q35 0 53.5 -18t18.5 -49q0 -13 -4 -37q-3 -21 -14 -66.5t-33 -130t-44.5 -171t-62.5 -239.5t-74 -286h-65z" />
+<glyph unicode="&#x22;" horiz-adv-x="604" d="M188 893q37 403 52 483q8 46 30.5 64t59.5 18q32 0 48.5 -18t16.5 -45q0 -28 -16 -84q-20 -78 -121 -418h-70zM481 893q38 413 51 483q8 46 31 64t60 18q32 0 48.5 -18t16.5 -45q0 -22 -16 -88q-8 -32 -121 -414h-70z" />
+<glyph unicode="#" horiz-adv-x="1132" d="M121 440l26 129h213l76 254h-215l27 133h219l119 414h84l-121 -414h272l121 414h78l-117 -414h199l-27 -133h-211l-76 -254h205l-26 -129h-217l-132 -467h-79l131 467h-269l-139 -467h-74l131 467h-198zM436 569h275l71 254h-272z" />
+<glyph unicode="$" horiz-adv-x="1048" d="M76 176q0 51 14 189h78q5 -140 57 -205q44 -54 183 -66l108 549l-94 57q-172 105 -172 279q0 86 31 154t86.5 112.5t127.5 70t158 32.5l43 217h90l-43 -213q148 -4 242 -41q47 -20 47 -74q0 -77 -39 -213h-73q-1 93 -9 130.5t-28 55.5q-33 36 -158 43l-102 -526l125 -72 q165 -96 165 -274q0 -116 -58 -200.5t-153.5 -127.5t-220.5 -51l-45 -238h-92l45 236q-62 3 -113.5 12t-98.5 28.5t-74 54t-27 81.5zM369 1001q0 -65 39 -117t133 -110l94 479q-55 -4 -101 -19.5t-84 -44.5t-59.5 -77t-21.5 -111zM500 92q58 3 107.5 19t91 45.5t65.5 78.5 t24 113q0 148 -149 223l-41 25z" />
+<glyph unicode="%" horiz-adv-x="1654" d="M121 782q0 113 33 242.5t102 216.5q102 127 254 127q127 0 188.5 -66t61.5 -200q0 -109 -28.5 -232t-86.5 -211q-104 -159 -276 -159q-125 0 -186.5 74t-61.5 208zM223 793q0 -211 160 -211q69 0 124 52t86.5 131.5t47.5 162.5t16 157q0 203 -153 203q-104 0 -172 -90 q-54 -74 -81.5 -192t-27.5 -213zM444 18l766 1366l70 -38l-766 -1364zM963 266q0 115 33.5 243.5t103.5 217.5q100 127 254 127q250 0 250 -268q0 -107 -29.5 -230t-87.5 -213q-105 -157 -277 -157q-125 0 -186 73.5t-61 206.5zM1067 279q0 -211 160 -211q69 0 123.5 52 t85.5 131.5t47 162.5t16 157q0 203 -153 203q-105 0 -172 -92q-54 -72 -80.5 -190t-26.5 -213z" />
+<glyph unicode="&#x26;" horiz-adv-x="1497" d="M109 348q0 84 26 151t79.5 118t116.5 89t154 76q-33 62 -52 140.5t-19 138.5q0 159 101 256.5t271 97.5q131 0 213 -71.5t82 -184.5q0 -49 -15 -92.5t-37 -77.5t-60.5 -67t-72.5 -55.5t-86.5 -48.5t-89.5 -41.5t-93 -37.5q48 -101 145 -230.5t195 -232.5q50 48 98 118.5 t76 127.5q30 51 30 96q0 20 -9 30t-32 14q-39 8 -133 12l13 76q153 -5 233 -5q62 0 232 5l-15 -76q-94 -2 -131 -29q-11 -11 -86 -139q-40 -74 -102 -159.5t-109 -133.5q41 -53 134.5 -98t191.5 -45q23 0 35 2l-13 -86q-24 -4 -65 -4q-129 0 -212.5 39t-156.5 108 q-193 -156 -414 -156q-97 0 -178.5 32t-134 84.5t-81.5 119.5t-29 139zM233 377q0 -60 18.5 -113t55.5 -97t100 -69.5t144 -25.5q171 0 328 125q-94 101 -199.5 250.5t-155.5 250.5q-63 -23 -111.5 -50t-91 -65t-65.5 -90.5t-23 -115.5zM528 1081q0 -59 17.5 -132t46.5 -126 q379 132 379 332q0 76 -58 121t-145 45q-107 0 -173.5 -64t-66.5 -176z" />
+<glyph unicode="'" horiz-adv-x="313" d="M188 893q37 403 52 483q8 46 30.5 64t59.5 18q32 0 48.5 -18t16.5 -45q0 -37 -20 -107q-8 -25 -45.5 -156t-71.5 -239h-70z" />
+<glyph unicode="(" horiz-adv-x="618" d="M92 375q0 737 684 1210l43 -57q-126 -94 -232 -212.5t-191 -263t-133 -319.5t-48 -360q0 -200 65.5 -386t168.5 -333l-52 -41q-141 129 -223 326.5t-82 435.5z" />
+<glyph unicode=")" horiz-adv-x="618" d="M-188 -330q126 94 232 212.5t191 263t133 319.5t48 360q0 200 -65.5 386t-168.5 333l54 41q140 -129 221.5 -326.5t81.5 -435.5q0 -736 -682 -1210z" />
+<glyph unicode="*" horiz-adv-x="823" d="M233 1192q0 27 19 51.5t47 24.5q15 0 32.5 -7.5t40.5 -25t43.5 -34t55.5 -45.5t61 -50q-10 200 -10 207q0 39 2 53q6 32 22 44.5t44 12.5q67 0 67 -57q0 -65 -77 -266q10 4 45.5 19t55.5 22.5t49.5 18t52 15.5t38.5 5q33 0 48.5 -17.5t15.5 -44.5q0 -35 -16.5 -52.5 t-55.5 -18.5q-126 -3 -233 -3q94 -116 125.5 -165t31.5 -80q0 -27 -20 -43.5t-53 -16.5q-21 0 -38 16.5t-30 50.5t-21.5 64t-20.5 79t-19 75q-84 -139 -124 -184t-75 -45q-27 0 -44.5 19.5t-17.5 47.5q0 17 11 34t37 38t47.5 36.5t66.5 44.5t70 46q-28 9 -74.5 21.5t-77 22 t-63.5 23.5q-31 12 -44.5 26.5t-13.5 37.5z" />
+<glyph unicode="+" horiz-adv-x="1179" d="M127 578l29 110h419l103 447h115l-105 -447h420l-29 -110h-417l-105 -449h-111l101 449h-420z" />
+<glyph unicode="," horiz-adv-x="432" d="M-109 -279q104 42 175 105t71 139q0 17 -7 28t-28 21q-63 28 -63 88q0 39 29 65t73 26q55 0 90 -36.5t35 -103.5q0 -134 -103.5 -237.5t-252.5 -151.5z" />
+<glyph unicode="-" horiz-adv-x="534" d="M55 440l25 117h409l-24 -117h-410z" />
+<glyph unicode="." horiz-adv-x="428" d="M35 80q0 45 29 77.5t77 32.5q44 0 72.5 -27.5t28.5 -72.5t-30.5 -79t-78.5 -34q-41 0 -69.5 29t-28.5 74z" />
+<glyph unicode="/" horiz-adv-x="663" d="M-49 -131l713 1632l88 -39l-713 -1632z" />
+<glyph unicode="0" d="M96 410q0 192 53.5 407.5t165.5 362.5q144 192 373 192q354 0 354 -420q0 -109 -18.5 -237t-67.5 -278.5t-120 -254.5q-142 -211 -381 -211q-188 0 -273.5 117t-85.5 322zM219 430q0 -55 4.5 -100.5t20.5 -95.5t42.5 -84.5t73.5 -57t111 -22.5q80 0 148.5 45.5t116 121.5 t84.5 168t58 191.5t31.5 185.5t10.5 156q0 56 -5 99.5t-21 90t-43 77t-74 50t-111 19.5q-154 0 -263 -152q-90 -124 -137 -316.5t-47 -375.5z" />
+<glyph unicode="1" d="M193 -2l14 76q150 3 192 28q16 12 24 34.5t17 66.5l123 631q53 288 53 329q0 24 -7.5 34.5t-28.5 10.5q-58 0 -179 -41l-22 60q66 37 287 131q43 16 71 16q39 0 39 -41q0 -11 -4 -39q-67 -322 -96 -471l-121 -618q-8 -47 -8 -76q0 -22 13 -32t38 -13q56 -7 164 -10 l-14 -76q-164 4 -308 4q-71 0 -247 -4z" />
+<glyph unicode="2" d="M-31 0l13 76q333 242 448 337q245 200 336 364q72 128 72 263q0 47 -13 87.5t-40.5 74.5t-76 53t-112.5 19q-95 0 -144.5 -20t-82.5 -56q-40 -49 -70 -158h-63q0 113 6 150q7 47 30.5 74.5t75.5 52.5q108 55 279 55q163 0 253.5 -82.5t90.5 -222.5q0 -85 -27.5 -170.5 t-69.5 -157t-110.5 -149t-130 -134.5t-150.5 -126t-150 -111.5t-149 -101.5q49 0 190 1t171 1q109 0 162.5 7t78.5 28q36 29 86 129h68q-5 -19 -13.5 -54.5t-13.5 -55.5t-14 -48t-18 -53q-25 -72 -133 -72h-779z" />
+<glyph unicode="3" d="M72 113q0 74 28 184h72q2 -101 33 -156q46 -73 211 -73q78 0 146.5 19.5t123 58.5t86 103t31.5 146q0 102 -76.5 174.5t-232.5 83.5q-71 6 -148 6l16 84q120 5 144 9q66 11 124 34t108 60t79 93.5t29 125.5q0 39 -10.5 73.5t-34 67t-70 51.5t-110.5 19q-142 0 -211 -62 q-39 -36 -72 -159h-66q0 74 7 139q6 47 27 73.5t75 53.5q100 51 258 51q86 0 151.5 -23t103.5 -63.5t56.5 -91t18.5 -109.5q0 -300 -375 -376q156 -9 244 -90.5t88 -206.5q0 -139 -67.5 -240t-181 -151t-257.5 -50q-179 0 -273 41q-75 31 -75 101z" />
+<glyph unicode="4" d="M66 367l12 65l764 891q24 27 43 39t45 12q53 0 53 -53q0 -22 -16 -107q-20 -97 -146 -739h205l-20 -106h-205l-27 -138q-14 -66 -14 -96q0 -24 10.5 -35.5t36.5 -17.5q34 -7 141 -14l-14 -70q-164 4 -281 4q-51 0 -227 -4l16 70q147 8 174 38q18 22 41 127l29 134h-620z M233 469h472q94 471 153 731z" />
+<glyph unicode="5" d="M53 113q0 66 31 184h72q3 -113 28 -154q21 -32 74.5 -53.5t138.5 -21.5q181 0 299.5 100t118.5 278q0 55 -18 105.5t-54 93.5t-96 68.5t-137 25.5q-65 0 -133 -22q-66 -17 -82 -17q-47 0 -47 45q0 27 16 89l133 505h637l-20 -118h-555l-105 -408q89 27 207 27 q163 0 271 -98t108 -259q0 -229 -144.5 -370.5t-396.5 -141.5q-81 0 -155.5 12.5t-114.5 28.5q-76 36 -76 101z" />
+<glyph unicode="6" d="M131 399q0 209 72 435t205 368q161 170 428 170q247 0 247 -106q0 -32 -10.5 -91t-25.5 -102h-64q-5 124 -33 160q-31 39 -145 39q-92 0 -168 -30t-130 -81t-97 -128.5t-72 -162t-53 -192.5q56 74 157 121t209 47q153 0 247.5 -90.5t94.5 -241.5q0 -83 -20 -161.5 t-61 -148t-99 -121.5t-138 -82t-173 -30q-168 0 -269.5 111t-101.5 317zM250 387q0 -136 67.5 -226.5t196.5 -90.5q84 0 152 33t111 90t66 130.5t23 157.5q0 120 -69 191t-193 71q-195 0 -330 -174q-24 -90 -24 -182z" />
+<glyph unicode="7" d="M180 1032q6 125 19 207q7 47 35.5 73.5t99.5 26.5h768l-12 -67l-736 -1280q-23 -39 -57 -39q-59 0 -59 43q0 15 12 39l690 1186h-344q-206 0 -240 -7q-36 -7 -55.5 -44.5t-48.5 -137.5h-72z" />
+<glyph unicode="8" d="M90 313q0 146 95.5 240.5t273.5 161.5q-94 67 -134 150t-40 163q0 160 113.5 251t291.5 91q157 0 253.5 -75.5t96.5 -211.5q0 -72 -24.5 -131.5t-72 -106t-103 -81.5t-133.5 -70q235 -140 235 -340q0 -92 -36.5 -165t-99 -119.5t-143.5 -70.5t-174 -24q-180 0 -289.5 92 t-109.5 246zM213 328q0 -117 75.5 -186.5t207.5 -69.5q65 0 119.5 13.5t101 43t72.5 81.5t26 122q0 195 -287 334q-66 -30 -108.5 -52.5t-85.5 -53t-67 -62.5t-39 -75t-15 -95zM408 1044q0 -91 51 -163.5t170 -139.5q45 21 81 41t77 50.5t68.5 62.5t46 74.5t18.5 89.5 q0 94 -61.5 153.5t-178.5 59.5q-118 0 -195 -57.5t-77 -170.5z" />
+<glyph unicode="9" d="M68 86q0 36 7 91t19 97h66q3 -49 9 -80t14 -47t20 -28q40 -45 155 -45q67 0 124.5 15.5t102.5 42.5t83.5 69t67.5 90t54.5 110.5t44 125t35.5 139.5q-57 -73 -153.5 -118.5t-204.5 -45.5q-156 0 -255 92.5t-99 245.5q0 105 31 199.5t90 169.5t154 119t214 44 q170 0 270.5 -107t100.5 -317q0 -217 -60 -434.5t-188 -361.5q-163 -181 -428 -181q-47 0 -107 9t-94 22q-38 14 -55.5 33.5t-17.5 50.5zM285 877q0 -128 68.5 -199.5t193.5 -71.5q202 0 334 170q22 83 22 180q0 52 -10 98.5t-31.5 87.5t-52.5 70.5t-75.5 46.5t-98.5 17 q-84 0 -151 -31.5t-110 -86t-66 -126.5t-23 -155z" />
+<glyph unicode=":" horiz-adv-x="468" d="M78 80q0 45 29 77.5t77 32.5q44 0 72.5 -27.5t28.5 -72.5t-30.5 -79t-78.5 -34q-41 0 -69.5 29t-28.5 74zM207 758q0 45 29.5 78.5t76.5 33.5q44 0 72.5 -27.5t28.5 -72.5t-30.5 -79t-78.5 -34q-41 0 -69.5 28t-28.5 73z" />
+<glyph unicode=";" horiz-adv-x="468" d="M-63 -285q104 42 176.5 107.5t72.5 142.5q0 33 -39 49q-29 15 -46 34.5t-17 53.5q0 39 29 65t73 26q55 0 90 -36.5t35 -103.5q0 -134 -103.5 -237.5t-252.5 -151.5zM207 758q0 45 29.5 78.5t76.5 33.5q44 0 72.5 -27.5t28.5 -72.5t-30.5 -79t-78.5 -34q-41 0 -69.5 28 t-28.5 73z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1177" d="M197 561l32 127l883 418l-31 -145l-755 -347l596 -340l-33 -124z" />
+<glyph unicode="=" horiz-adv-x="1177" d="M117 403l26 113h908l-23 -113h-911zM199 754l22 112h909l-24 -112h-907z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1177" d="M143 150l33 143l754 346l-592 340l29 127l686 -412l-25 -125z" />
+<glyph unicode="?" horiz-adv-x="825" d="M223 80q0 45 28.5 77.5t76.5 32.5q45 0 73.5 -27.5t28.5 -72.5t-30 -79t-78 -34q-42 0 -70.5 29t-28.5 74zM244 1137q0 98 8 145q11 77 121 113q98 28 209 28q145 -1 225 -72t80 -192q0 -68 -18 -126t-47.5 -102t-77.5 -86t-97.5 -73t-118.5 -67q-68 -38 -92 -117 q-24 -92 -39 -166h-78q7 112 19 203q8 51 41.5 83.5t95.5 67.5q62 34 106 65t85.5 74.5t62.5 98.5t21 121q0 34 -10 66t-30.5 61.5t-58.5 47.5t-88 19q-131 0 -180 -35q-42 -31 -66 -157h-73z" />
+<glyph unicode="@" horiz-adv-x="1585" d="M68 391q0 135 40 266t116.5 243t180 198t239 135t284.5 49q138 0 246.5 -36.5t173 -91.5t107 -127.5t58 -137t15.5 -127.5q0 -184 -65.5 -318.5t-196.5 -242.5q-47 -40 -118 -71.5t-112 -31.5q-61 0 -85.5 28t-24.5 87q0 21 2 39q-152 -158 -312 -158q-231 0 -231 266 q0 131 64.5 265.5t173.5 220.5q74 60 137.5 84t159.5 24q97 0 180 -49l28 70h89l-121 -420q-57 -196 -60 -299q0 -49 45 -49q23 0 65 21.5t79 52.5q89 74 142.5 195.5t53.5 273.5q0 198 -137.5 321t-359.5 123q-156 0 -295.5 -65.5t-237 -175t-154.5 -257.5t-57 -309 q0 -172 83 -302.5t222.5 -198.5t313.5 -68q179 0 343.5 61.5t293.5 173.5l55 -67q-149 -134 -328.5 -201.5t-369.5 -67.5q-323 0 -524 183t-201 491zM500 358q0 -163 145 -163q65 0 148 44.5t143 100.5q10 47 49 184l86 295q-89 47 -190 47q-57 0 -100.5 -18.5t-92.5 -61.5 q-86 -74 -137 -189.5t-51 -238.5z" />
+<glyph unicode="A" horiz-adv-x="1411" d="M-76 -2l19 78q101 5 137 30q20 13 39.5 40t70.5 114l641 1104q34 57 82 57q26 0 41 -12t21 -45l176 -1126q15 -108 43 -136q19 -22 141 -26l-16 -78q-126 4 -264 4q-104 0 -236 -4l17 78q87 0 133 12q37 9 51 26t14 50q0 36 -8 98l-39 254h-538l-142 -246 q-59 -98 -59 -137q0 -23 14 -35q23 -16 178 -22l-18 -78q-114 4 -268 4q-108 0 -230 -4zM498 606h477q-52 340 -101 670q-119 -224 -376 -670z" />
+<glyph unicode="B" horiz-adv-x="1249" d="M2 -2l16 76q131 9 154 20q25 11 35 29.5t24 89.5l181 942q14 71 14 100q0 32 -41 41q-56 13 -139 17l14 71h334q215 0 328 -18q124 -20 189 -86.5t65 -163.5q0 -306 -330 -383q148 -17 222.5 -92.5t74.5 -200.5q0 -143 -77 -244t-209.5 -149.5t-307.5 -48.5q-39 0 -140 2 t-157 2q-94 0 -250 -4zM338 137q0 -22 10.5 -32.5t36.5 -16.5q33 -8 172 -8q67 0 129 11t119.5 36.5t100 63.5t68 96t25.5 129q0 75 -28.5 131t-73.5 82q-50 29 -125.5 40t-214.5 11h-117l-94 -477q-8 -46 -8 -66zM457 770h112q58 0 132 6t96 12q111 32 177 104.5t66 188.5 q0 153 -135 193q-94 24 -233 24h-115z" />
+<glyph unicode="C" horiz-adv-x="1345" d="M135 543q0 340 211 600q113 135 272.5 203.5t352.5 68.5q183 0 297 -43q42 -14 58.5 -41.5t16.5 -73.5q0 -50 -28 -198h-72q0 135 -41 188q-51 68 -260 68q-151 0 -282 -59t-224 -175q-84 -103 -128 -240.5t-44 -279.5q0 -242 130.5 -365.5t353.5 -123.5q97 0 173 22 t119 53q57 40 121 170h74q-7 -41 -26 -99.5t-35 -88.5q-45 -88 -138 -115q-146 -43 -313 -43q-268 0 -428 152.5t-160 419.5z" />
+<glyph unicode="D" horiz-adv-x="1474" d="M2 -2l16 76q90 4 126.5 11.5t52.5 23.5q11 10 17 30.5t19 89.5l179 926q14 75 14 100q0 20 -12.5 29t-36.5 14q-32 8 -131 15l14 71h318q207 0 338.5 -15.5t199.5 -41.5t129 -72q79 -61 124.5 -167.5t45.5 -227.5q0 -489 -330 -723q-102 -73 -243.5 -106t-358.5 -33h-481 zM340 160q0 -50 49 -58q53 -10 195 -10q168 0 302 55.5t220.5 154t132 231.5t45.5 290q0 134 -47.5 239t-130.5 152q-139 80 -406 80h-145l-209 -1093q-6 -30 -6 -41z" />
+<glyph unicode="E" horiz-adv-x="1196" d="M2 0l16 76q150 5 177 30l6 6t5.5 8t4.5 9.5t4 12.5l3.5 14t4 17.5t4 19l4.5 22.5l5 25l176 915q14 75 14 98q0 37 -45 45q-47 10 -135 13l14 73h803q104 0 104 -69q0 -106 -32 -240h-70q0 78 -2 111q-5 58 -37 76q-26 18 -76 25t-188 7h-205l-100 -526h178q93 0 129.5 7 t60.5 28q33 36 60 131h73q-16 -60 -28.5 -124t-29 -158.5t-23.5 -131.5h-70q4 20 4 51q0 92 -57 103q-31 6 -140 6h-174l-96 -492q-4 -32 -4 -38q0 -47 41 -52q55 -6 215 -6q150 0 219.5 15t102.5 45q52 44 120 186h70q-30 -186 -84 -285q-29 -53 -162 -53h-860z" />
+<glyph unicode="F" horiz-adv-x="1153" d="M2 -2l16 76q95 6 130.5 12.5t48.5 19.5q11 11 18.5 36.5t20.5 97.5l176 915q14 75 14 96q0 20 -10 30.5t-35 14.5q-53 12 -135 15l14 73h821q65 0 87 -21t22 -63q0 -65 -33 -227h-72q0 159 -41 187q-26 20 -76.5 27t-189.5 7h-221l-104 -544h202q92 0 128 7.5t59 28.5 q36 33 63 129h74q-41 -164 -82 -417h-70q2 23 2 51q-2 40 -10.5 63.5t-32.5 34.5q-31 12 -153 12h-197l-82 -421q-14 -75 -14 -101q0 -22 11 -33t36 -16q38 -6 166 -14l-14 -76q-172 4 -287 4q-74 0 -250 -4z" />
+<glyph unicode="G" horiz-adv-x="1445" d="M135 553q0 200 74 379t211 299q213 184 522 184q208 0 328 -43q88 -28 88 -106q0 -51 -33 -211h-74q0 145 -34 188q-68 72 -308 72q-143 0 -266 -60t-205.5 -161t-129 -233t-46.5 -275q0 -136 38 -236.5t107.5 -160.5t160.5 -88.5t204 -28.5q98 0 211 24q54 13 80 35 q26 20 39 94l35 187q10 45 10 75q0 34 -45 45q-28 6 -139 13l16 76q143 -5 231 -5q138 0 226 5l-17 -76q-62 -2 -90 -7.5t-41 -21.5q-16 -22 -33 -110l-51 -267q-16 -86 -84 -108q-183 -60 -391 -60q-181 0 -312.5 62.5t-206.5 195t-75 324.5z" />
+<glyph unicode="H" horiz-adv-x="1529" d="M2 -2l16 76q152 11 179 35q11 9 18.5 33.5t20.5 95.5l176 917q14 82 14 98q0 21 -12 30.5t-37 14.5q-56 10 -131 15l14 73q164 -4 240 -4q88 0 272 4l-16 -73q-98 -9 -137.5 -17t-51.5 -20q-18 -21 -37 -119l-73 -387h721l75 385q3 18 7.5 40.5t7 36t2.5 21.5 q0 20 -12.5 30t-38.5 15q-71 12 -132 15l17 73q164 -4 237 -4q93 0 273 4l-15 -73q-100 -7 -139.5 -15t-50.5 -22q-18 -21 -37 -119l-176 -921q-16 -82 -16 -103q0 -22 12.5 -31t40.5 -14q45 -7 139 -14l-16 -76q-172 4 -271 4q-61 0 -241 -4l18 76q152 11 176 35 q11 9 18.5 33.5t20.5 95.5l84 442h-721l-86 -444q-16 -79 -16 -103q0 -22 12.5 -31t38.5 -14q53 -8 141 -14l-18 -76q-172 4 -268 4q-66 0 -242 -4z" />
+<glyph unicode="I" horiz-adv-x="692" d="M2 -2l16 76q152 11 179 35q11 9 18.5 33.5t20.5 95.5l176 917q14 82 14 98q0 21 -12 30.5t-37 14.5q-56 10 -131 15l14 73q164 -4 242 -4q88 0 272 4l-16 -73q-98 -9 -137.5 -17t-51.5 -20q-18 -21 -37 -119l-176 -921q-16 -79 -16 -103q0 -22 12.5 -31t38.5 -14 q53 -8 141 -14l-18 -76q-172 4 -270 4q-66 0 -242 -4z" />
+<glyph unicode="J" horiz-adv-x="628" d="M-164 -236q117 45 195 108t121 157q55 120 90 307l155 819q15 77 15 100q0 37 -47 43q-77 11 -136 15l17 73q164 -4 241 -4q83 0 263 4l-17 -73q-98 -8 -132.5 -14.5t-47.5 -20.5q-20 -23 -39 -121l-152 -819q-27 -142 -50.5 -224.5t-59.5 -146.5q-49 -87 -147 -161 t-240 -119z" />
+<glyph unicode="K" horiz-adv-x="1327" d="M2 -2l16 76q88 6 124.5 13t52.5 19q11 9 19.5 35.5t21.5 96.5l176 919q14 75 14 98q0 32 -39 41q-50 12 -141 17l14 73q164 -4 240 -4q88 0 272 4l-16 -73q-99 -7 -137.5 -15.5t-51.5 -23.5q-17 -17 -35 -111l-178 -927q-16 -82 -16 -101q0 -24 13.5 -33.5t39.5 -13.5 q52 -7 139 -14l-18 -76q-172 4 -268 4q-66 0 -242 -4zM485 711q228 186 514 456q45 44 62.5 67.5t17.5 41.5t-28.5 25t-114.5 12l16 73q88 -4 258 -4q123 0 215 4l-16 -73q-63 -4 -96 -19q-54 -19 -172 -129q-53 -49 -257 -226.5t-261 -225.5q86 -141 209.5 -315t185.5 -232 q7 -6 13.5 -12t11.5 -10t11.5 -8.5t10 -7.5t10.5 -6.5t9 -5t9.5 -5.5t9.5 -5t10.5 -5t10.5 -5q60 -25 119 -28l-14 -70q-24 -4 -80 -4q-127 0 -207 72t-226.5 284.5t-230.5 360.5z" />
+<glyph unicode="L" horiz-adv-x="1191" d="M2 0l16 74q147 5 175 28q14 13 22 39t21 95l176 919q14 75 14 96q0 24 -13 34t-42 15q-46 10 -125 13l14 73q164 -4 242 -4q96 0 276 4l-18 -73q-166 -7 -193 -41q-16 -19 -35 -117l-184 -944q-8 -56 -8 -61q0 -46 43 -52q55 -6 201 -6q151 0 218 13t99 42q53 45 123 195 h68q-38 -189 -93 -289q-29 -53 -155 -53h-842z" />
+<glyph unicode="M" horiz-adv-x="1783" d="M0 -2l16 76q137 6 162 28q20 15 33.5 51t32.5 123q126 587 196 930q6 30 6 51t-11.5 31t-37.5 15q-29 7 -133 10l19 73q88 -4 204 -4q109 0 138 2q176 -720 243 -1030q153 264 645 1032q90 -4 170 -4q42 0 164 4l-18 -77q-146 -7 -174 -35q-24 -30 -39 -113 q-2 -11 -5.5 -31t-13 -76.5t-24 -140t-45 -256t-68.5 -391.5q-16 -96 -16 -131q0 -43 65 -51q21 -3 123 -10l-14 -76q-180 4 -256 4q-16 0 -258 -4l14 76q91 4 127.5 13.5t50.5 25.5q14 14 33 100q3 13 87 482t97 532q-157 -258 -626 -989q-22 -33 -58 -33q-38 0 -47 35 q-60 247 -109.5 451t-68.5 284t-34.5 143t-28.5 113q-25 -132 -74.5 -378t-89.5 -441t-43 -213q-6 -30 -6 -58q0 -29 13 -40.5t46 -16.5q43 -6 129 -10l-18 -76q-168 4 -242 4q-44 0 -256 -4z" />
+<glyph unicode="N" horiz-adv-x="1488" d="M2 -2l16 76q86 5 126 13.5t55 27.5q3 4 6 9t6 13.5t5 16t5.5 23.5t6 27.5t7.5 36t9 42.5q14 70 79 407t80 412q21 114 21 145q0 45 -57 53q-67 13 -134 13l17 73q86 -4 176 -4q73 0 147 4q470 -1006 551 -1200q155 837 166 908q19 127 19 155q0 37 -35 45q-76 17 -144 19 l17 73q106 -4 256 -4q9 0 235 4l-16 -73q-88 -4 -118.5 -11.5t-49.5 -23.5q-15 -12 -25.5 -46t-29.5 -130q-115 -581 -201 -1061q-9 -55 -68 -55q-40 0 -59 39q-372 817 -547 1192q-32 -166 -100.5 -545t-69.5 -385q-22 -113 -22 -150q0 -23 13.5 -33.5t41.5 -15.5 q52 -8 139 -14l-18 -76q-204 4 -268 4q-20 0 -238 -4z" />
+<glyph unicode="O" horiz-adv-x="1415" d="M135 535q0 164 49.5 335t145.5 295q195 250 522 250q253 0 379.5 -137.5t126.5 -376.5q0 -453 -217 -713q-86 -103 -213.5 -160t-261.5 -57q-257 0 -394 144t-137 420zM260 541q0 -471 414 -471q118 0 214 50t158 131.5t104.5 190.5t60.5 222t18 231q0 206 -103.5 314 t-296.5 108q-128 0 -232.5 -57t-174.5 -156q-78 -113 -120 -262.5t-42 -300.5z" />
+<glyph unicode="P" horiz-adv-x="1144" d="M2 -2l16 76q90 6 125 13t52 19q12 9 19.5 34.5t21.5 99.5l176 917q14 79 14 94q0 23 -12 31.5t-39 13.5q-41 9 -129 15l14 73h334q221 0 348 -20q68 -12 118.5 -41t78.5 -69.5t41.5 -86t13.5 -96.5q0 -134 -47.5 -232t-134 -155t-197 -84t-248.5 -27q-106 0 -149 2 l-64 -337q-16 -79 -16 -103q0 -37 41 -45q45 -9 166 -16l-17 -76q-172 4 -284 4q-66 0 -242 -4zM436 659q31 -2 115 -2q54 0 100 3.5t100 14t96.5 27.5t84 47.5t68.5 71t44 100t17 132.5q0 95 -40.5 147.5t-117.5 77.5q-74 22 -225 22h-121z" />
+<glyph unicode="Q" horiz-adv-x="1415" d="M135 535q0 164 49.5 335t145.5 295q195 250 522 250q253 0 379.5 -137.5t126.5 -376.5q0 -453 -217 -713q-126 -153 -336 -200q120 -129 258 -191q62 -30 154 -44.5t174 -14.5q49 0 65 2l-16 -74q-60 -8 -144 -8q-193 0 -303 49q-91 40 -165 96t-189 168 q-245 8 -374.5 151t-129.5 413zM260 541q0 -471 414 -471q118 0 214 50t158 131.5t104.5 190.5t60.5 222t18 231q0 206 -103.5 314t-296.5 108q-128 0 -232.5 -57t-174.5 -156q-78 -113 -120 -262.5t-42 -300.5z" />
+<glyph unicode="R" horiz-adv-x="1312" d="M2 -2l16 76q152 10 179 35q11 9 18.5 33.5t20.5 95.5l178 927q12 73 12 86q0 21 -11 31t-38 16q-22 6 -131 15l14 71h332q242 0 338 -22q123 -29 183.5 -106t60.5 -181q0 -95 -30 -171t-86 -128t-127 -86t-161 -53q98 -227 149 -324t107 -151q51 -49 96 -68 q43 -15 103 -18l-15 -76q-14 -2 -75 -2q-122 0 -199 74q-72 66 -132 184t-157 362q-26 0 -221 5l-72 -387q-16 -91 -16 -103q0 -34 47 -45q18 -4 145 -14l-18 -76q-172 4 -270 4q-64 0 -240 -4zM442 705q77 -5 113 -5q483 0 483 363q0 73 -37.5 129.5t-99.5 79.5 q-76 26 -229 26h-115z" />
+<glyph unicode="S" horiz-adv-x="1105" d="M59 170q0 87 19 190h74q4 -152 78 -221t257 -69q174 0 260.5 78.5t86.5 193.5q0 152 -181 252l-229 129q-91 53 -136.5 131t-45.5 164t31.5 157.5t93.5 126t162 85t229 30.5q136 0 227 -37q41 -18 59.5 -40.5t18.5 -57.5q0 -66 -29 -205h-71q0 75 -13 122t-31.5 66 t-48.5 29q-62 23 -172 23q-87 0 -154 -23.5t-105.5 -64.5t-57.5 -89.5t-19 -103.5q0 -65 42 -123t157 -122l209 -119q191 -111 191 -287q0 -205 -137 -309.5t-369 -104.5q-69 0 -135.5 11t-126.5 33.5t-97 62.5t-37 92z" />
+<glyph unicode="T" horiz-adv-x="1300" d="M209 1075q13 110 33 213q9 50 33 73t90 23h901q67 0 90.5 -19t23.5 -65q0 -40 -43 -225h-69q0 168 -29 191q-22 19 -78 23.5t-291 4.5l-202 -1050q-15 -76 -15 -111q0 -37 41 -45q29 -7 144 -14l-15 -76q-152 4 -245 4q-99 0 -263 -4l15 76q99 7 132 15t48 24 q20 22 39 129l203 1052q-229 0 -287.5 -5t-89.5 -23q-42 -26 -94 -191h-72z" />
+<glyph unicode="U" horiz-adv-x="1525" d="M221 1313l17 73q160 -4 270 -4q71 0 235 4l-14 -73q-100 -7 -130 -14t-46 -23q-18 -21 -39 -111q-71 -320 -113 -534q-34 -162 -34 -281q0 -276 338 -276q114 0 212.5 38t149.5 101q51 64 84.5 165t69.5 277q18 79 92 500q10 56 10 90q0 19 -5 29t-12.5 13.5t-25.5 8.5 q-24 5 -139 17l14 73q148 -4 244 -4q98 0 246 4l-17 -73q-94 -3 -131 -13.5t-47 -29.5q-18 -36 -37 -133l-100 -519q-40 -203 -81 -312.5t-110 -178.5q-156 -156 -456 -156q-84 0 -156.5 18t-135 56t-98.5 106.5t-36 161.5q0 110 41 312q66 340 110 534q15 67 15 88 q0 20 -7.5 31t-29.5 18q-37 14 -148 17z" />
+<glyph unicode="V" horiz-adv-x="1415" d="M170 1313l14 73q126 -4 262 -4q104 0 240 4l-16 -73q-21 -1 -135 -13q-32 -5 -47 -17t-15 -36q0 -39 12 -117q51 -325 99 -615.5t65 -403.5q144 276 551 1011q55 95 55 146q0 17 -11 24.5t-34 10.5q-29 5 -143 10l14 73q118 -4 269 -4q111 0 229 4l-14 -73 q-99 -5 -142 -29q-20 -13 -39.5 -42t-64.5 -109l-627 -1121q-29 -49 -80 -49q-25 0 -39 11t-20 40l-195 1143q-11 67 -21 95t-28 38q-30 19 -139 23z" />
+<glyph unicode="W" horiz-adv-x="1943" d="M170 1313l14 73q51 -1 103.5 -2t82.5 -1.5t54 -0.5q149 0 231 4l-16 -73q-106 -2 -152 -23q-41 -20 -41 -90q0 -14 1.5 -52.5t1.5 -41.5q27 -762 32 -971q117 254 586 1196q30 62 74 62q56 0 61 -58q94 -1017 105 -1202q91 225 419 993q39 103 39 131q0 35 -47 43 q-73 11 -147 13l14 73q100 -4 264 -4q61 0 217 4l-14 -73q-51 -3 -77.5 -9.5t-49.5 -25.5q-14 -12 -29 -36t-21.5 -38.5t-25.5 -56.5l-493 -1122q-29 -62 -84 -62q-26 0 -41.5 13.5t-18.5 48.5q-87 967 -102 1196q-119 -256 -588 -1196q-30 -62 -84 -62q-57 0 -59 62 l-49 1118q-4 63 -11.5 98t-27.5 47q-30 18 -121 25z" />
+<glyph unicode="X" horiz-adv-x="1392" d="M-57 -2l16 76q107 0 150 28q31 20 52.5 40.5t55.5 60.5l455 510l-254 487q-18 32 -26.5 46.5t-20 28t-23.5 19.5q-26 15 -129 19l21 73q246 -4 274 -4q104 0 244 4l-19 -73q-97 -9 -129 -15q-59 -9 -59 -49q0 -26 22 -69l195 -383l307 350q66 75 66 110q0 17 -10 26.5 t-44 16.5q-42 10 -122 13l20 73q118 -4 277 -4q75 0 227 4l-21 -73q-88 -2 -131 -29q-12 -8 -26.5 -22t-42.5 -44.5t-41 -43.5l-420 -447l270 -528q23 -41 35.5 -59.5t34.5 -37.5q25 -25 147 -28l-14 -76q-270 4 -274 4q-30 0 -59 -0.5t-77.5 -1.5t-99.5 -2l14 76 q74 3 125 14q47 13 47 47q0 24 -20 66l-221 436l-348 -406q-68 -78 -68 -112q0 -16 13.5 -26t43.5 -14t48.5 -4.5t57.5 -0.5h19l-16 -76q-222 4 -287 4q-24 0 -53 -0.5t-80.5 -1.5t-101.5 -2z" />
+<glyph unicode="Y" horiz-adv-x="1228" d="M162 1313l16 73q230 -4 234 -4q17 0 235 4l-18 -73q-112 0 -146 -10q-39 -8 -39 -50q0 -29 27 -102q98 -255 184 -487q220 289 383 497q62 77 62 115q0 13 -12 21.5t-38 11.5t-42.5 3.5t-50.5 0.5h-5h-5h-5l16 73q94 -4 244 -4q99 0 189 4l-19 -73q-55 -3 -96 -29 q-27 -16 -98 -104l-484 -602l-71 -367q-13 -70 -13 -90q0 -29 31 -35q42 -6 154 -12l-15 -76q-218 4 -248 4q-65 0 -249 -4l14 76q99 4 128 11t44 24q20 24 35 102l69 364l-229 570q-11 26 -22 56.5t-16 43t-12 24t-15 17.5q-37 24 -117 27z" />
+<glyph unicode="Z" horiz-adv-x="1210" d="M2 0l6 47l1082 1245q-384 0 -493.5 -3t-141.5 -11q-33 -9 -58 -54.5t-53 -146.5h-72q10 130 23 219q8 44 42.5 66t108.5 22h842l-8 -47l-1081 -1239q82 -4 327 -4q204 0 290.5 9.5t119.5 29.5q20 12 39.5 34t38.5 56t29.5 55t29.5 60h70q-29 -159 -76 -272 q-27 -66 -131 -66h-934z" />
+<glyph unicode="[" horiz-adv-x="591" d="M29 -350l368 1898h367l-16 -86h-248l-334 -1724h248l-17 -88h-368z" />
+<glyph unicode="\" horiz-adv-x="735" d="M246 1475l96 16l240 -1634l-99 -15z" />
+<glyph unicode="]" horiz-adv-x="591" d="M-131 -350l16 88h248l334 1724h-250l19 86h368l-368 -1898h-367z" />
+<glyph unicode="^" horiz-adv-x="1069" d="M209 770l479 686h119l158 -686h-111l-133 557l-381 -557h-131z" />
+<glyph unicode="_" horiz-adv-x="1005" d="M-113 -276l23 112h1012l-21 -112h-1014z" />
+<glyph unicode="`" horiz-adv-x="604" d="M123 1423q0 29 24 48.5t52 19.5q23 0 42 -16.5t50 -63.5l190 -293l-51 -39l-240 244q-38 38 -52.5 57.5t-14.5 42.5z" />
+<glyph unicode="a" horiz-adv-x="1128" d="M98 281q0 133 67 289t175 249q154 129 360 129q111 0 201 -55l33 76h90l-123 -477q-57 -225 -57 -336q0 -34 20 -53t70 -19t129 18l-16 -67q-100 -53 -201 -53q-63 0 -89 33t-26 100q0 5 1 21.5t1 21.5q-160 -183 -356 -183q-141 0 -210 79.5t-69 226.5zM215 285 q0 -109 42.5 -160t139.5 -51q160 0 340 176q21 125 47 217l88 336q-83 53 -204 53q-136 0 -256 -104q-83 -70 -140 -202t-57 -265z" />
+<glyph unicode="b" horiz-adv-x="1103" d="M123 41q15 58 57 264l160 754q39 195 39 258q0 44 -18 60t-66 16q-21 0 -84 -11l12 66q98 49 193 49q96 0 96 -90q0 -48 -14 -113q-89 -415 -109 -487q168 149 346 149q144 0 211.5 -81t67.5 -222q0 -305 -156 -495q-151 -187 -416 -187q-184 0 -319 70zM246 109 q71 -41 225 -41q185 0 307 157q59 76 89 182t30 211q0 109 -49 169.5t-166 60.5q-66 0 -152 -36.5t-157 -92.5z" />
+<glyph unicode="c" horiz-adv-x="942" d="M100 336q0 149 53.5 283.5t161.5 222.5q137 114 332 114q96 0 152 -22q75 -31 75 -105q0 -28 -8.5 -77t-19.5 -80h-68q0 116 -33 149q-43 43 -131 43q-140 0 -241 -96q-70 -67 -114 -178.5t-44 -222.5q0 -291 256 -291q147 0 320 127l49 -66q-192 -166 -410 -166 q-155 0 -242.5 98t-87.5 267z" />
+<glyph unicode="d" horiz-adv-x="1161" d="M98 301q0 144 61.5 290t168.5 236q148 127 381 127q107 0 194 -47l31 133q47 223 47 275q0 44 -19 61t-65 17q-21 0 -84 -11l12 66q98 49 193 49q45 0 70.5 -19.5t25.5 -70.5q0 -43 -63 -320l-150 -667q-37 -164 -37 -264q0 -72 86 -72q48 0 131 18l-16 -67 q-48 -26 -104 -39.5t-99 -13.5q-114 0 -114 116q0 27 2 62q-77 -89 -168.5 -137t-186.5 -48q-154 0 -225.5 87t-71.5 239zM215 322q0 -123 50 -185.5t161 -62.5q86 0 173.5 53t156.5 125q8 43 27.5 128t23.5 103l74 322q-93 59 -213 59q-165 0 -273 -108 q-75 -75 -127.5 -198t-52.5 -236z" />
+<glyph unicode="e" horiz-adv-x="897" d="M100 319q0 278 146 458.5t364 180.5q65 0 115 -18.5t78.5 -49t42.5 -65.5t14 -73q0 -161 -164.5 -242.5t-478.5 -81.5q-4 -27 -4 -88q0 -113 61.5 -188.5t184.5 -75.5q91 0 164.5 28.5t175.5 98.5l47 -66q-100 -82 -197.5 -124t-232.5 -42q-60 0 -114.5 20.5t-100.5 60.5 t-73.5 109t-27.5 158zM229 504q259 9 386.5 71t127.5 162q0 131 -149 131q-123 0 -226 -97.5t-139 -266.5z" />
+<glyph unicode="f" horiz-adv-x="661" d="M-309 -463q0 65 26 148h68q0 -92 21 -126t92 -34q49 0 91.5 27t67.5 73q48 81 86 293l160 905h-178l14 62q98 13 146 41q24 14 35.5 34.5t21.5 71.5q28 129 58.5 208t60 116t74.5 69q98 72 247 72q31 0 59 -4t56 -13t44.5 -26.5t16.5 -42.5q0 -74 -30 -192h-70q2 29 2 69 q-2 65 -35 94q-28 25 -94 25q-123 0 -182 -107q-48 -86 -96 -321l-13 -66q150 0 254 -4l-16 -80q-138 -6 -258 -6l-172 -921q-47 -247 -117 -340q-46 -59 -115.5 -92t-150.5 -33q-38 0 -76.5 8t-54.5 18q-43 24 -43 74z" />
+<glyph unicode="g" horiz-adv-x="1044" d="M-14 -291q0 104 104 185q62 50 172 104q-86 38 -86 111q0 57 39.5 101t106.5 85q-144 78 -144 246q0 194 137 319q107 98 275 98q122 0 190 -45q232 0 283 -4l-14 -82q-63 -4 -185 -4q18 -21 29.5 -65t11.5 -82q0 -173 -92 -281q-56 -68 -138.5 -102.5t-178.5 -34.5 q-65 0 -105 8q-100 -67 -100 -123q0 -32 22.5 -52.5t75.5 -35.5q39 -11 147 -33t171 -36q107 -26 155.5 -79t48.5 -138q0 -154 -130.5 -244t-348.5 -90q-214 0 -330 76t-116 198zM100 -279q0 -85 89 -138.5t262 -53.5q160 0 252 61t92 154q0 67 -49 101t-173 61 q-191 40 -229 53q-91 -33 -167.5 -98.5t-76.5 -139.5zM285 553q0 -104 62.5 -154.5t162.5 -50.5q66 0 126 26t95 75q64 89 64 198q0 221 -211 221q-136 0 -217.5 -89t-81.5 -226z" />
+<glyph unicode="h" horiz-adv-x="1112" d="M113 0l227 1059q39 201 39 258q0 44 -18 60t-66 16q-21 0 -84 -11l12 66q98 49 193 49q96 0 96 -90q0 -27 -14 -113q-60 -311 -115 -520q73 83 171.5 131.5t199.5 48.5q86 0 138 -39t52 -122q0 -78 -24 -177l-68 -286q-29 -126 -29 -174q0 -37 17.5 -54.5t60.5 -17.5 q78 0 141 18l-14 -67q-111 -53 -209 -53q-112 0 -112 106q0 67 26 176l80 350q14 65 14 117q0 65 -33 90t-96 25q-153 0 -325 -152l-158 -694h-102z" />
+<glyph unicode="i" horiz-adv-x="593" d="M123 831l12 66q95 51 189 51q45 0 71.5 -19.5t26.5 -72.5q0 -30 -9 -79t-25 -122l-17 -73l-58 -258q-28 -138 -28 -168q0 -37 16.5 -54.5t60.5 -17.5q77 0 144 18l-14 -67q-114 -53 -209 -53q-48 0 -82.5 23.5t-34.5 84.5q0 48 27 174l59 258q41 174 41 246 q0 41 -17.5 56.5t-64.5 15.5q-43 0 -88 -9zM297 1327q0 56 32.5 89.5t78.5 33.5q41 0 65.5 -27t24.5 -73q0 -49 -32 -82t-77 -33q-42 0 -67 25t-25 67z" />
+<glyph unicode="j" horiz-adv-x="548" d="M-205 -487q79 23 142.5 64t93.5 93q52 92 108 307q22 81 41.5 167t44 206.5t33.5 161.5q13 58 26 141.5t13 108.5q0 46 -17.5 62t-64.5 16q-36 0 -88 -9l12 66q95 51 189 51q45 0 71.5 -19.5t26.5 -72.5q0 -36 -25 -170q-34 -177 -155 -715q-53 -232 -123 -340 q-42 -65 -126 -120t-190 -74zM301 1327q0 56 33 89.5t78 33.5q41 0 65.5 -27t24.5 -73q0 -49 -31.5 -82t-75.5 -33q-43 0 -68.5 24.5t-25.5 67.5z" />
+<glyph unicode="k" horiz-adv-x="1001" d="M113 0l227 1061q39 195 39 256q0 44 -18 60t-66 16q-21 0 -84 -11l12 66q98 49 193 49q96 0 96 -90q0 -52 -14 -113q-93 -434 -283 -1294h-102zM362 520q126 160 265 295q151 139 272 139q102 0 102 -80q0 -44 -24 -120h-62q-4 42 -17.5 56.5t-43.5 14.5 q-38 0 -85.5 -22.5t-82.5 -54.5q-134 -119 -213 -211q53 -106 121 -209t123 -166q72 -78 145 -78q58 0 119 14l-20 -71q-19 -12 -58 -22.5t-69 -10.5q-62 0 -105.5 17t-81.5 61q-63 71 -142.5 198.5t-142.5 249.5z" />
+<glyph unicode="l" horiz-adv-x="561" d="M139 90q0 39 29 174l172 799q39 190 39 250q0 44 -16 62t-62 18q-27 0 -90 -11l12 66q95 49 191 49q45 0 71.5 -19.5t26.5 -72.5q0 -50 -63 -340l-162 -741q-29 -143 -29 -168q0 -37 17.5 -54.5t60.5 -17.5q78 0 145 18l-16 -67q-114 -53 -209 -53q-48 0 -82.5 23.5 t-34.5 84.5z" />
+<glyph unicode="m" horiz-adv-x="1660" d="M119 831l14 66q92 51 172 51q96 0 96 -114q0 -26 -4 -66q72 87 169 136.5t202 49.5q83 0 131.5 -43t48.5 -135q70 83 166.5 130.5t200.5 47.5q82 0 130 -39t48 -122q0 -61 -25 -177l-67 -288q-27 -118 -27 -172q0 -37 17.5 -54.5t60.5 -17.5q78 0 141 18l-16 -67 q-111 -53 -207 -53q-115 0 -115 106q0 50 27 176l80 350q16 74 16 117q0 65 -30.5 90t-92.5 25q-146 0 -315 -152q-6 -34 -20 -90l-144 -604h-102l143 614q14 65 14 117q0 65 -29.5 90t-90.5 25q-144 0 -320 -152q-12 -84 -33 -178l-120 -516h-105l115 520q39 171 39 236 q0 45 -21 64.5t-67 19.5q-35 0 -80 -9z" />
+<glyph unicode="n" horiz-adv-x="1132" d="M119 831l14 66q92 51 172 51q46 0 71 -26.5t25 -96.5q0 -37 -4 -57q71 85 172.5 135.5t206.5 50.5q85 0 137 -39t52 -122q0 -71 -23 -177l-70 -286q-28 -122 -28 -174q0 -36 18 -54t60 -18q80 0 143 18l-16 -67q-111 -53 -209 -53q-111 0 -111 106q0 62 25 176l80 350 q14 65 14 117q0 65 -33 90t-96 25q-152 0 -328 -152q-9 -70 -26 -147l-127 -547h-105l115 520q39 176 39 236q0 45 -20 64.5t-66 19.5q-37 0 -82 -9z" />
+<glyph unicode="o" horiz-adv-x="1042" d="M100 356q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q176 0 264 -94t88 -258q0 -134 -37 -260.5t-116 -222.5q-60 -71 -150 -110.5t-180 -39.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q70 0 132 29.5t104 80.5q61 78 91 186t30 224 q0 270 -258 270q-173 0 -265 -129q-52 -70 -78 -167t-26 -197z" />
+<glyph unicode="p" horiz-adv-x="1122" d="M14 -535l236 1067q35 162 35 224q0 45 -20 64.5t-66 19.5q-37 0 -82 -9l14 66q92 51 172 51q96 0 96 -114q0 -46 -4 -58q64 69 166.5 122.5t202.5 53.5q135 0 199.5 -78t64.5 -217q0 -131 -37 -261.5t-119 -231.5q-148 -187 -415 -187q-120 0 -219 29l-117 -541h-107z M262 113q70 -39 225 -39q185 0 306 159q55 69 85.5 176.5t30.5 208.5q0 230 -194 230q-78 0 -163.5 -42.5t-162.5 -109.5q-6 -68 -33 -184z" />
+<glyph unicode="q" horiz-adv-x="1140" d="M96 301q0 145 61.5 293t166.5 237q148 127 378 127q63 0 149 -16.5t153 -56.5q-15 -52 -29 -110.5t-32 -140.5t-25 -112l-232 -1057h-106l149 674q-72 -79 -159.5 -121.5t-178.5 -42.5q-153 0 -224 87.5t-71 238.5zM213 322q0 -121 49.5 -180.5t161.5 -59.5 q87 0 173.5 47t152.5 113l124 583q-69 41 -217 41q-154 0 -266 -106q-75 -72 -126.5 -197.5t-51.5 -240.5z" />
+<glyph unicode="r" horiz-adv-x="804" d="M109 831l14 66q92 51 172 51q96 0 96 -114q0 -46 -4 -66q50 71 128.5 128.5t164.5 57.5q111 0 111 -80q0 -52 -31 -143h-60q-6 50 -27 70t-63 20q-103 0 -225 -131q-2 -8 -7.5 -45t-14 -86t-19.5 -98l-106 -461h-105l111 492q35 161 35 256q0 49 -21.5 70.5t-67.5 21.5 q-36 0 -81 -9z" />
+<glyph unicode="s" horiz-adv-x="899" d="M92 133q0 57 17 150h67q2 -97 43 -154q47 -59 187 -59q105 0 169 39t64 110q0 47 -26 84.5t-87 73.5l-172 102q-141 80 -141 211q0 134 102.5 201t259.5 67q117 0 193 -36q23 -10 37 -33t14 -51q0 -75 -22 -152h-66q-6 64 -15.5 95t-29.5 46q-55 39 -149 39 q-59 0 -105.5 -13.5t-79.5 -48.5t-33 -89q0 -46 32 -85t106 -83l155 -90q136 -77 136 -205q0 -74 -29.5 -129.5t-81.5 -87.5t-116 -47t-140 -15q-136 0 -231 56q-58 34 -58 104z" />
+<glyph unicode="t" horiz-adv-x="659" d="M123 823l14 62q63 14 117 33q24 8 38 22.5t27 40.5q27 53 76 166q14 31 49 31t35 -27q0 -12 -51 -238q156 0 254 -4l-14 -80q-132 -6 -262 -6l-80 -405q-1 -7 -9 -51t-11.5 -63t-7 -54t-3.5 -62q0 -110 104 -110q74 0 172 39l31 -74q-123 -68 -246 -68q-81 0 -130.5 41.5 t-49.5 130.5q0 51 12 109q15 88 113 567h-178z" />
+<glyph unicode="u" horiz-adv-x="1185" d="M143 831l15 66q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-82 -349q-15 -69 -15 -116q0 -65 33.5 -91t95.5 -26q150 0 328 154q7 52 33 176l119 516h106l-115 -518q-36 -167 -36 -246q0 -42 19.5 -62t64.5 -20q13 0 65 6.5t68 9.5l-17 -63q-51 -27 -107.5 -41 t-95.5 -14q-46 0 -80 29.5t-34 90.5q0 39 4 62q-72 -88 -168 -138.5t-199 -50.5q-85 0 -141.5 42t-56.5 124q0 81 20 174l72 299q24 101 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9z" />
+<glyph unicode="v" horiz-adv-x="1110" d="M117 831l12 66q95 51 188 51q45 0 70 -19t25 -73q0 -59 -25 -190l-65 -357q-15 -92 -15 -114q0 -60 22.5 -88.5t76.5 -28.5q76 0 155.5 45t140.5 117q79 96 133 234.5t54 246.5q0 66 -24 93.5t-87 27.5q-50 0 -80 -6l13 65q87 47 166 47q71 0 97.5 -48.5t26.5 -137.5 q0 -124 -63.5 -286.5t-157.5 -278.5q-86 -108 -202.5 -165t-202.5 -57q-83 0 -131.5 41.5t-48.5 124.5q0 66 18 168l53 301q21 132 21 154q0 45 -17.5 60.5t-64.5 15.5q-43 0 -88 -9z" />
+<glyph unicode="w" horiz-adv-x="1613" d="M117 831l12 66q95 51 188 51q45 0 70 -19t25 -73q0 -59 -25 -190l-65 -357q-15 -92 -15 -114q0 -63 17.5 -90t74.5 -27q116 0 252 182q60 85 107 184l80 449h106l-86 -506q-20 -118 -20 -192q0 -61 22 -89t76 -28q135 0 272 162q79 95 132 233.5t53 247.5q0 66 -25 93.5 t-88 27.5q-50 0 -80 -6l12 65q87 47 168 47q71 0 98 -48.5t27 -137.5q0 -125 -62 -286t-157 -277q-89 -110 -194.5 -167t-188.5 -57q-81 0 -125.5 42t-44.5 126q0 70 10 129q-74 -138 -182.5 -217.5t-189.5 -79.5q-176 0 -176 166q0 78 16 166l55 301q23 127 23 156 q0 45 -18.5 60.5t-65.5 15.5q-43 0 -88 -9z" />
+<glyph unicode="x" horiz-adv-x="1091" d="M8 59q0 67 15 121h67q3 -86 68 -86q66 0 121 68q57 67 227 311q-20 57 -53.5 146.5t-46.5 125.5q-23 64 -43 79.5t-62 15.5q-17 0 -52.5 -8.5t-55.5 -16.5l12 64q99 69 170 69q47 0 72.5 -23t50.5 -89q17 -46 30.5 -88t29.5 -96t26 -85q143 217 204 281q93 98 197 98 q52 0 77 -21t25 -53q0 -50 -10 -118h-69q-5 65 -62 65q-54 0 -121 -67q-59 -61 -211 -283q10 -24 35 -90t47.5 -121.5t44.5 -105.5q20 -43 42.5 -55.5t60.5 -12.5q81 0 141 35l-16 -70q-81 -67 -189 -67q-104 0 -141 106q-78 227 -100 297q-144 -226 -226 -317 q-88 -95 -198 -95q-54 0 -80.5 25t-26.5 61z" />
+<glyph unicode="y" horiz-adv-x="1189" d="M100 -446q0 60 27 163h70q-2 -23 -2 -59q3 -61 36 -88q47 -43 148 -43q82 0 144.5 33t94.5 96q54 107 115 371q6 30 19 84t14 57q-169 -193 -379 -193q-85 0 -133.5 41.5t-48.5 124.5q0 84 20 176l66 297q24 118 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9l15 66 q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-76 -349q-15 -69 -15 -116q0 -67 26.5 -92t90.5 -25q75 0 166 48.5t176 125.5l140 672h110q-39 -181 -102.5 -506.5t-94.5 -474.5q-32 -161 -67.5 -250t-89.5 -143q-119 -119 -320 -119q-142 0 -213 47q-41 26 -41 70z " />
+<glyph unicode="z" horiz-adv-x="1019" d="M23 0l4 39l741 813q-320 0 -381 -8q-33 -3 -49.5 -10t-32.5 -27q-20 -28 -47 -133h-74q1 16 3 50.5t4 62.5t6 53q4 24 7.5 37t13 27t28 20t47.5 6h655l-6 -47l-739 -799q78 -4 205 -4q230 0 288 18q53 19 77 59.5t50 125.5h74q-20 -154 -33 -203q-10 -41 -35 -60.5 t-86 -19.5h-720z" />
+<glyph unicode="{" horiz-adv-x="612" d="M35 586l12 69q50 4 84.5 17.5t59.5 35t43.5 61.5t31 86t27.5 120l45 233q15 77 32 128.5t48.5 101t76.5 78t115.5 46t165.5 17.5l-16 -82q-94 0 -149.5 -23t-92.5 -85.5t-59 -180.5l-60 -305q-30 -154 -71.5 -210t-151.5 -79q70 -18 97.5 -55t27.5 -102q0 -50 -16 -144 l-64 -327q-12 -65 -12 -113q0 -90 47 -127t156 -37l-15 -80q-164 0 -235.5 56t-71.5 174q0 64 12 123l62 309q16 82 16 135q0 75 -33.5 114t-111.5 46z" />
+<glyph unicode="|" horiz-adv-x="526" d="M33 -377l381 1954h106l-383 -1954h-104z" />
+<glyph unicode="}" horiz-adv-x="612" d="M-133 -371l14 82q95 0 150 23t91 85t60 181l62 305q16 80 30 125t39 81.5t60 54t92 28.5q-69 18 -97 55.5t-28 102.5q0 54 18 145l62 328q12 65 12 110q0 90 -47 127t-154 37l15 80q163 0 234 -55.5t71 -171.5q0 -52 -12 -123l-60 -311q-18 -92 -18 -136q0 -74 33.5 -113 t113.5 -46l-14 -70q-62 -5 -101.5 -22.5t-67 -57t-44 -92t-33.5 -143.5l-45 -238q-14 -76 -30.5 -128t-48 -101.5t-76.5 -78t-115.5 -46t-165.5 -17.5z" />
+<glyph unicode="~" horiz-adv-x="1175" d="M137 557q76 107 147 152t152 45q46 0 91 -17.5t135 -77.5q100 -65 159 -65q53 0 102.5 33t112.5 114l74 -69q-144 -199 -293 -199q-89 0 -205 74q-75 51 -116 68.5t-76 17.5q-54 0 -100.5 -32t-110.5 -112z" />
+<glyph unicode="&#xa1;" horiz-adv-x="577" d="M25 -334q0 13 4 37q3 21 14 66.5t32.5 130t43.5 170.5t61.5 239t73.5 285h68q-106 -757 -129 -893q-11 -55 -33.5 -79.5t-65.5 -24.5q-34 0 -51.5 18.5t-17.5 50.5zM238 932q0 45 28.5 77.5t75.5 32.5q45 0 73.5 -27.5t28.5 -72.5t-30 -79t-78 -34q-42 0 -70 29t-28 74z " />
+<glyph unicode="&#xa2;" horiz-adv-x="1032" d="M162 342q0 140 46 258t134 201q112 109 276 129l41 207h91l-39 -201q77 0 159 -21q80 -20 80 -94q0 -64 -32 -155h-72q0 105 -27 139q-28 33 -127 41l-147 -760q150 5 301 117l39 -64q-74 -62 -168 -100.5t-191 -44.5l-43 -230h-90l45 232q-129 13 -202.5 105.5 t-73.5 240.5zM285 356q0 -223 172 -262l145 748q-103 -16 -176.5 -89t-107 -175t-33.5 -222z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1169" d="M-2 0l18 96q89 16 157.5 59t110.5 105.5t65.5 136t31.5 160.5h-201l25 98h182q0 17 -2 100t-2 111q0 234 122.5 370t368.5 136q107 0 181 -22q44 -14 61 -41t17 -72q0 -64 -29 -164h-68q0 123 -41 164t-164 41q-162 0 -243.5 -100t-81.5 -281q0 -33 1 -127.5t1 -114.5 h328l-23 -98h-311q-5 -65 -18.5 -121t-41 -115t-77 -112t-119.5 -94q184 4 418 4q109 0 163.5 7t79.5 28q40 32 80 129h68q-21 -132 -49 -211q-25 -72 -134 -72h-874z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1132" d="M117 233l135 136q-94 113 -94 282q0 164 92 275l-133 137l73 78l138 -140q54 45 126 69t144 24q155 0 270 -90l131 137l78 -76l-131 -139q90 -120 90 -275q0 -153 -90 -276l135 -142l-80 -75l-133 139q-119 -88 -274 -88q-162 0 -268 84l-136 -135zM262 655 q0 -154 94.5 -254t241.5 -100q144 0 237 98.5t93 251.5q0 147 -94 246.5t-236 99.5q-146 0 -241 -96.5t-95 -245.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1259" d="M176 1266l17 77q45 -1 89.5 -2t70.5 -1.5t50 -0.5q20 0 238 4l-14 -77q-81 -3 -118 -10t-44.5 -15.5t-7.5 -28.5q0 -45 51 -188q10 -28 62.5 -168t78.5 -219q95 135 314 416q59 78 81.5 114.5t22.5 57.5q0 12 -5 19t-23 11.5t-46 6.5t-80 4l15 77q172 -4 239 -4 q105 0 191 4l-17 -77q-37 -3 -56.5 -8t-39.5 -17q-6 -3 -12 -8t-15 -14.5t-16.5 -18t-22 -26.5t-25.5 -31.5t-33.5 -41t-39.5 -48.5l-256 -318h277l-19 -82h-323l-80 -102l-10 -62h383l-17 -81h-383l-37 -199q-10 -67 -10 -74q1 -12 3 -18.5t11.5 -14.5t28.5 -12.5t55 -8 t89 -5.5l-15 -78q-208 4 -250 4q-64 0 -252 -4l15 78q74 6 110 12t47.5 12t20.5 19q17 20 29 84l39 205h-353l19 81h350l12 60l-41 104h-291l17 82h242l-138 375q-6 15 -14 38.5t-11.5 32.5t-10.5 24.5t-11 20t-14 13.5t-18.5 11t-24 6.5t-32.5 6t-42 3.5z" />
+<glyph unicode="&#xa6;" horiz-adv-x="526" d="M59 -244l136 690h104l-133 -690h-107zM252 752l135 692h107l-136 -692h-106z" />
+<glyph unicode="&#xa7;" horiz-adv-x="933" d="M18 -260q0 35 21 158h72q0 -73 13 -109t40 -63q18 -17 58 -29t75 -12q60 0 114.5 21.5t94 70.5t39.5 117q0 118 -146 296l-145 177q-121 149 -121 266q0 64 22 116.5t64 91t89.5 66t111.5 51.5q-74 107 -74 209q0 96 51 167t133 105t183 34q46 0 102 -8t84 -21 q43 -22 43 -80q0 -15 -11 -68.5t-22 -89.5h-69q0 109 -29 144.5t-121 35.5q-104 0 -167.5 -46.5t-63.5 -149.5q0 -116 121 -250l118 -135q74 -82 110 -140.5t43 -89.5t7 -79q0 -60 -23 -111t-66 -91t-90.5 -70t-111.5 -60q95 -132 95 -232q0 -149 -104.5 -241t-272.5 -92 q-76 0 -139 17t-89 40q-39 35 -39 84zM248 647q0 -89 82 -186l92 -113q67 -82 102 -129q43 21 77 43t68 53.5t53 72t19 87.5q0 52 -22 100.5t-84 120.5l-98 111q-63 70 -78 94q-108 -49 -159.5 -109t-51.5 -145z" />
+<glyph unicode="&#xa8;" horiz-adv-x="595" d="M57 1272q0 38 26.5 65t66.5 27q37 0 59 -22.5t22 -57.5q0 -41 -25 -70.5t-69 -29.5q-35 0 -57.5 24t-22.5 64zM365 1272q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25.5 -70.5t-67.5 -29.5q-35 0 -57 24t-22 64z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1609" d="M106 694q0 197 95.5 362t261.5 261t366 96q147 0 280 -56.5t228.5 -151.5t152 -227t56.5 -278q0 -153 -55.5 -289t-150.5 -233t-227 -154t-279 -57q-206 0 -373 95.5t-261 262t-94 369.5zM197 692q0 -133 49.5 -253t134 -207t203.5 -138t252 -51q173 0 315 85 t222.5 232.5t80.5 325.5q0 183 -79.5 332t-222.5 235t-321 86q-179 0 -325 -86t-227.5 -234t-81.5 -327zM406 604q0 231 138 382t367 151q140 0 215 -27q30 -12 40 -27.5t10 -44.5q0 -16 -8 -64t-17 -77h-70q-3 96 -20 113q-38 41 -168 41q-113 0 -197 -61t-125 -159 t-41 -217q0 -135 75.5 -207.5t193.5 -72.5q132 0 176 47q41 45 63 104h74q-16 -108 -37 -147t-92 -62q-88 -30 -215 -30q-167 0 -264.5 97.5t-97.5 260.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="696" d="M84 754q0 87 45.5 187t118.5 161q106 86 244 86q69 0 129 -35l20 49h74l-82 -313q-39 -147 -39 -209q0 -47 61 -47q32 0 86 14l-8 -55q-79 -35 -143 -35q-48 0 -69 20.5t-21 63.5q0 4 1 15t1 14q-114 -117 -228 -117q-190 0 -190 201zM180 762q0 -55 29 -91t80 -36 q57 0 116 31t103 75q4 26 33 133l57 203q-62 35 -131 35q-84 0 -148 -51q-56 -44 -97.5 -129t-41.5 -170z" />
+<glyph unicode="&#xab;" horiz-adv-x="886" d="M74 455q0 36 49 77l387 310l45 -54l-344 -331l213 -344l-64 -43l-268 331q-18 22 -18 54zM408 455q0 36 49 77l387 310l45 -54l-344 -331l213 -344l-64 -43l-268 331q-18 22 -18 54z" />
+<glyph unicode="&#xac;" horiz-adv-x="1179" d="M135 586l27 116h907l-125 -542h-113l99 426h-795z" />
+<glyph unicode="&#xad;" horiz-adv-x="534" d="M55 440l25 117h409l-24 -117h-410z" />
+<glyph unicode="&#xae;" horiz-adv-x="1609" d="M106 694q0 197 95.5 362t261.5 261t366 96q147 0 280 -56.5t228.5 -151.5t152 -227t56.5 -278q0 -153 -55.5 -289t-150.5 -233t-227 -154t-279 -57q-206 0 -373 95.5t-261 262t-94 369.5zM197 692q0 -133 49.5 -253t134 -207t203.5 -138t252 -51q173 0 315 85 t222.5 232.5t80.5 325.5q0 183 -79.5 332t-222.5 235t-321 86q-179 0 -325 -86t-227.5 -234t-81.5 -327zM412 305l12 70q83 5 102 16q8 8 13 22t12 54l96 514q6 41 6 55q0 7 -3.5 12t-10.5 8t-14 5t-19 3t-21 1.5t-23.5 1t-22.5 0.5l12 66h244q153 0 219 -17 q155 -39 155 -180q0 -207 -247 -262q51 -103 82 -153.5t65 -84.5q29 -29 61 -47q32 -14 72 -14l-12 -68q-10 -2 -53 -2q-96 0 -154 55q-43 39 -80 105.5t-92 193.5q-77 0 -111 3l-36 -191q-7 -36 -7 -55q0 -35 104 -40q9 -1 13 -1l-14 -70q-114 4 -191 4q-43 0 -157 -4z M713 737q20 -2 71 -2q39 0 72.5 4t70 16t62 31t42 52t16.5 77q0 41 -19 72.5t-57 42.5q-14 4 -38.5 8.5t-53 7.5t-48.5 3h-59z" />
+<glyph unicode="&#xaf;" horiz-adv-x="595" d="M37 1151l20 111h500l-20 -111h-500z" />
+<glyph unicode="&#xb0;" horiz-adv-x="710" d="M217 1155q0 125 81.5 202t197.5 77q112 0 183 -65t71 -189q0 -129 -78 -205t-197 -76q-112 0 -185 68t-73 188zM307 1165q0 -82 44.5 -134t127.5 -52q84 0 134.5 52.5t50.5 131.5q0 88 -44 139.5t-131 51.5q-79 0 -130.5 -53t-51.5 -136z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1179" d="M39 14l29 113h909l-29 -113h-909zM182 709l25 108h399l94 418h115l-96 -418h399l-28 -108h-394l-100 -420h-111l95 420h-398z" />
+<glyph unicode="&#xb2;" horiz-adv-x="743" d="M135 862l8 64q19 13 80.5 52t102 66t102 71.5t102.5 84.5t82 88t61.5 98t20.5 99q0 61 -34.5 103t-110.5 42q-100 0 -143 -37q-28 -28 -48 -100h-53q4 78 8 102q6 31 21.5 48t54.5 36q81 35 178 35q118 0 178 -57.5t60 -151.5q0 -71 -33.5 -142t-81 -125.5t-121 -113 t-129.5 -94.5t-131 -80q59 2 219 2q110 0 142 16.5t61 88.5h55q-24 -105 -41 -148q-15 -47 -90 -47h-520z" />
+<glyph unicode="&#xb3;" horiz-adv-x="743" d="M199 938q0 58 22 125h58q3 -67 24 -92q32 -43 135 -43q100 0 168 43t68 135q0 58 -47.5 98t-141.5 47q-58 4 -92 4l13 74q93 6 96 6q87 14 145 56.5t58 121.5q0 52 -31 85.5t-99 33.5q-88 0 -135 -35q-31 -27 -49 -96h-59q0 79 15 117t67 63q68 33 170 33 q112 0 169.5 -52.5t57.5 -127.5q0 -190 -238 -231q96 -7 149.5 -57t53.5 -124q0 -137 -98.5 -206.5t-251.5 -69.5q-114 0 -180 28q-47 23 -47 64z" />
+<glyph unicode="&#xb4;" horiz-adv-x="604" d="M113 1122l215 279q35 42 55 58t41 16q26 0 48 -18.5t22 -47.5q0 -43 -72 -102l-262 -228z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1214" d="M57 -444q0 4 2 13t4 20.5t3 15.5l235 1009q25 109 25 150q0 45 -17.5 60.5t-64.5 15.5q-43 0 -88 -9l12 66q95 51 188 51q45 0 72 -19.5t27 -72.5q0 -19 -35 -190l-82 -349q-14 -65 -14 -116q0 -65 33.5 -91t95.5 -26q149 0 327 154q9 69 35 176l119 516h104l-114 -518 q-37 -171 -37 -246q0 -42 19.5 -62t64.5 -20q43 0 135 16l-19 -63q-51 -27 -107.5 -41t-94.5 -14q-46 0 -79.5 29.5t-33.5 90.5q0 39 4 62q-73 -87 -167 -134.5t-197 -47.5q-102 0 -140 53q-12 -63 -31.5 -171t-32.5 -179.5t-18 -96.5q-10 -40 -26.5 -58.5t-50.5 -18.5 q-56 0 -56 45z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1110" d="M172 815q0 178 86.5 308.5t235 195.5t340.5 65h366l-14 -75q-87 -4 -118.5 -10t-45.5 -19q-16 -14 -25 -42.5t-22 -100.5q-30 -157 -83.5 -449.5t-78.5 -419.5q-67 -320 -80 -360q-29 -82 -64.5 -142.5t-91.5 -114t-138.5 -93t-196.5 -68.5l-23 80q187 60 274 146 t123 221q44 161 91 401l8 43q-23 -2 -70 -2q-206 0 -339.5 119t-133.5 317z" />
+<glyph unicode="&#xb7;" horiz-adv-x="428" d="M106 496q0 45 28.5 77.5t76.5 32.5q45 0 73.5 -27.5t28.5 -72.5t-30 -79t-78 -34q-42 0 -70.5 29t-28.5 74z" />
+<glyph unicode="&#xb8;" horiz-adv-x="595" d="M117 -475q239 45 239 153q0 34 -18.5 56.5t-63.5 50.5q-18 11 -24 21.5t-6 31.5q0 49 69 172h66q-45 -76 -45 -102q0 -34 26 -47q69 -33 94 -66.5t25 -89.5q0 -99 -99.5 -166.5t-252.5 -85.5z" />
+<glyph unicode="&#xb9;" horiz-adv-x="743" d="M295 860l12 60q106 8 127 22q15 13 25 66l71 366q29 166 29 185q0 34 -27 34q-32 0 -106 -18l-14 53q94 41 178 72q48 16 61 16q37 0 37 -35q0 -1 -6 -49q-1 -3 -53 -260l-66 -346q-8 -54 -8 -63q0 -13 7.5 -21t24 -12t30 -5.5t38 -2.5t35.5 -2l-10 -60q-114 4 -207 4 q-64 0 -178 -4z" />
+<glyph unicode="&#xba;" horiz-adv-x="821" d="M176 805q0 89 32.5 173.5t98.5 141.5q92 74 225 74q114 0 183 -57.5t69 -173.5q0 -184 -102 -299q-94 -111 -246 -111q-111 0 -185.5 68.5t-74.5 183.5zM268 817q0 -81 48 -131.5t135 -50.5q76 0 131.5 48t81.5 118.5t26 150.5q0 82 -46 123t-128 41q-92 0 -149 -51 q-46 -44 -72.5 -111t-26.5 -137z" />
+<glyph unicode="&#xbb;" horiz-adv-x="886" d="M-2 123l344 332l-213 344l66 43l266 -332q20 -24 20 -53q0 -36 -51 -78l-387 -309zM332 123l344 332l-213 344l65 43l267 -332q20 -24 20 -53q0 -36 -51 -78l-387 -309z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1654" d="M203 514l10 61q107 5 127 21q18 15 27 66l71 368q27 154 27 182q0 19 -6 27t-19 8q-38 0 -108 -16l-13 51q58 29 177 72q53 16 63 16q16 0 26.5 -8.5t10.5 -26.5q0 -17 -8 -49q-44 -220 -117 -604q-10 -62 -10 -64q0 -16 8 -22.5t29 -11.5q34 -6 100 -9l-12 -61 q-165 6 -207 6q-11 0 -176 -6zM422 18l766 1366l69 -38l-763 -1364zM825 227l9 54l479 526q17 18 27 26.5t24 14.5t31 6q39 0 39 -43q0 -9 -9 -55.5t-35 -180.5t-51 -264h134l-17 -84h-133l-14 -73q-9 -44 -9 -56q0 -28 29 -32q4 0 20 -3t34 -5t36 -3l-10 -57q-159 6 -192 6 q-14 0 -40.5 -1t-63.5 -2.5t-56 -2.5l10 57q91 5 115 25l6 6t5 8t3.5 8.5t3 11t2.5 11.5t3 15t3 16l17 71h-400zM954 307h285q63 308 88 416z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1654" d="M184 514l11 61q107 5 127 21q17 14 26 66l72 368q26 149 26 182q0 35 -24 35q-39 0 -109 -16l-12 51q61 30 176 72q53 16 64 16q37 0 37 -35q0 -13 -9 -49q-44 -220 -116 -604q-2 -10 -4.5 -24.5t-4.5 -25t-2 -14.5q0 -16 8 -22.5t29 -11.5q34 -6 101 -9l-13 -61 q-165 6 -207 6q-11 0 -176 -6zM403 18l766 1366l70 -38l-764 -1364zM881 2l8 64q20 13 61.5 39.5t74.5 48t79 52.5t82.5 60t77 63.5t70.5 69.5t55 72t38 76.5t13 77.5q0 61 -35 103t-111 42q-100 0 -143 -37q-26 -26 -47 -100h-53q4 78 8 102q6 31 21.5 48t54.5 36 q81 35 178 35q118 0 177.5 -57.5t59.5 -151.5q0 -51 -17.5 -102.5t-44.5 -95t-69.5 -88t-83 -79t-94.5 -72t-94 -63t-92 -55.5q59 2 219 2q40 0 64 1t45.5 5.5t33 10.5t23.5 19t19 28t18 41h55q-24 -105 -41 -148q-15 -47 -90 -47h-520z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1654" d="M154 592q0 55 20 125h59q3 -61 23 -92q19 -23 50.5 -33t86.5 -10q46 0 85.5 9.5t74 29.5t54.5 55.5t20 83.5q0 28 -11 52.5t-33 45.5t-59 34t-84 15q-29 2 -94 2l14 76q95 6 97 6q40 6 73.5 18t63.5 32t47.5 52.5t17.5 73.5q0 52 -31 85.5t-98 33.5q-39 0 -65 -4 t-41.5 -11.5t-28.5 -19.5q-28 -22 -51 -94h-57q0 79 15 115.5t67 62.5q68 33 170 33q112 0 169.5 -52t57.5 -126q0 -189 -238 -234q95 -6 149 -55.5t54 -122.5q0 -139 -98.5 -208.5t-253.5 -69.5q-116 0 -178 30q-47 20 -47 62zM475 18l766 1366l70 -38l-764 -1364zM856 227 l8 54l479 526q17 18 27 26.5t24 14.5t31 6q39 0 39 -43q0 -6 -3.5 -26.5t-12 -64.5t-18 -94t-27 -139t-33.5 -176h133l-16 -84h-133l-15 -73q-8 -39 -8 -56q0 -28 29 -32q4 0 20 -3t34 -5t36 -3l-10 -57q-159 6 -193 6q-11 0 -31 -0.5t-39.5 -1.5t-46 -2t-43.5 -2l11 57 q90 5 114 25q10 9 14.5 22.5t10.5 44.5q1 6 2 9l16 71h-399zM985 307h285q63 308 88 416z" />
+<glyph unicode="&#xbf;" horiz-adv-x="770" d="M-43 -133q0 83 25.5 151t77.5 122.5t111.5 95.5t145.5 86q74 38 93 116q4 13 9.5 38t14.5 64.5t15 63.5h77q-6 -98 -20 -203q-8 -51 -41.5 -84t-95.5 -67q-63 -34 -106.5 -65t-85 -74.5t-62.5 -99t-21 -122.5q0 -34 10 -65.5t30.5 -60.5t59 -47t89.5 -19q134 0 178 33 q39 27 67 157h74q0 -84 -10 -143q-7 -43 -36.5 -69t-84.5 -44q-102 -30 -209 -30q-143 1 -224 73t-81 193zM410 932q0 45 28.5 77.5t75.5 32.5q45 0 73.5 -27.5t28.5 -72.5t-30 -79t-78 -34q-42 0 -70 29t-28 74z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1411" d="M-76 -2l19 78q101 5 137 30q20 13 39.5 40t70.5 114l641 1104q34 57 82 57q26 0 41 -12t21 -45l176 -1126q15 -108 43 -136q19 -22 141 -26l-16 -78q-126 4 -264 4q-104 0 -236 -4l17 78q87 0 133 12q37 9 51 26t14 50q0 36 -8 98l-39 254h-538l-142 -246 q-59 -98 -59 -137q0 -23 14 -35q23 -16 178 -22l-18 -78q-114 4 -268 4q-108 0 -230 -4zM498 606h477q-52 340 -101 670q-119 -224 -376 -670zM672 1788q0 29 21.5 48t51.5 19q20 0 41 -17t54 -58l204 -260l-47 -45l-256 211q-69 60 -69 102z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1411" d="M-76 -2l19 78q101 5 137 30q20 13 39.5 40t70.5 114l641 1104q34 57 82 57q26 0 41 -12t21 -45l176 -1126q15 -108 43 -136q19 -22 141 -26l-16 -78q-126 4 -264 4q-104 0 -236 -4l17 78q87 0 133 12q37 9 51 26t14 50q0 36 -8 98l-39 254h-538l-142 -246 q-59 -98 -59 -137q0 -23 14 -35q23 -16 178 -22l-18 -78q-114 4 -268 4q-108 0 -230 -4zM498 606h477q-52 340 -101 670q-119 -224 -376 -670zM741 1524l256 229q37 34 59.5 46.5t47.5 12.5t41 -21t16 -50q0 -43 -88 -96l-293 -172z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1411" d="M-76 -2l19 78q101 5 137 30q20 13 39.5 40t70.5 114l641 1104q34 57 82 57q26 0 41 -12t21 -45l176 -1126q15 -108 43 -136q19 -22 141 -26l-16 -78q-126 4 -264 4q-104 0 -236 -4l17 78q87 0 133 12q37 9 51 26t14 50q0 36 -8 98l-39 254h-538l-142 -246 q-59 -98 -59 -137q0 -23 14 -35q23 -16 178 -22l-18 -78q-114 4 -268 4q-108 0 -230 -4zM498 606h477q-52 340 -101 670q-119 -224 -376 -670zM600 1516l274 270q40 37 74 37q22 0 36 -7.5t28 -31.5l170 -279l-47 -41l-207 215l-287 -215z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1411" d="M-76 -2l19 78q101 5 137 30q20 13 39.5 40t70.5 114l641 1104q34 57 82 57q26 0 41 -12t21 -45l176 -1126q15 -108 43 -136q19 -22 141 -26l-16 -78q-126 4 -264 4q-104 0 -236 -4l17 78q87 0 133 12q37 9 51 26t14 50q0 36 -8 98l-39 254h-538l-142 -246 q-59 -98 -59 -137q0 -23 14 -35q23 -16 178 -22l-18 -78q-114 4 -268 4q-108 0 -230 -4zM498 606h477q-52 340 -101 670q-119 -224 -376 -670zM610 1524q36 90 87 146t116 56q34 0 109 -32l53 -25q52 -22 86 -22q31 0 56.5 26t56.5 82l65 -22q-81 -207 -184 -207 q-43 0 -127 37l-49 18q-66 27 -88 27q-33 0 -59.5 -25.5t-59.5 -83.5z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1411" d="M-76 -2l19 78q101 5 137 30q20 13 39.5 40t70.5 114l641 1104q34 57 82 57q26 0 41 -12t21 -45l176 -1126q15 -108 43 -136q19 -22 141 -26l-16 -78q-126 4 -264 4q-104 0 -236 -4l17 78q87 0 133 12q37 9 51 26t14 50q0 36 -8 98l-39 254h-538l-142 -246 q-59 -98 -59 -137q0 -23 14 -35q23 -16 178 -22l-18 -78q-114 4 -268 4q-108 0 -230 -4zM498 606h477q-52 340 -101 670q-119 -224 -376 -670zM668 1610q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 25t-22.5 63zM1012 1610 q0 38 25.5 65t64.5 27t60.5 -22.5t21.5 -57.5q0 -41 -24.5 -70.5t-67.5 -29.5q-35 0 -57.5 25t-22.5 63z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1411" d="M-76 -2l19 78q101 5 137 30q20 13 39.5 40t70.5 114l641 1104q34 57 82 57q26 0 41 -12t21 -45l176 -1126q15 -108 43 -136q19 -22 141 -26l-16 -78q-126 4 -264 4q-104 0 -236 -4l17 78q87 0 133 12q37 9 51 26t14 50q0 36 -8 98l-39 254h-538l-142 -246 q-59 -98 -59 -137q0 -23 14 -35q23 -16 178 -22l-18 -78q-114 4 -268 4q-108 0 -230 -4zM498 606h477q-52 340 -101 670q-119 -224 -376 -670zM743 1616q0 88 58.5 146.5t144.5 58.5q73 0 122.5 -46t49.5 -120q0 -85 -56.5 -145t-148.5 -60q-70 0 -120 46t-50 120zM819 1622 q0 -46 29.5 -75t71.5 -29q55 0 87.5 34.5t32.5 100.5q0 47 -29 73.5t-73 26.5q-53 0 -86 -35t-33 -96z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2058" d="M-6 -2l14 76q122 9 152 35q59 46 149 151l758 895q68 80 68 113q0 15 -9.5 23t-35.5 12q-55 8 -140 10l15 71h958q58 0 81.5 -19t23.5 -54q0 -82 -33 -236h-72q0 101 -8 136.5t-27 48.5q-26 20 -78.5 27t-191.5 7h-201l-100 -526h178q96 0 132.5 6.5t58.5 28.5 q27 25 59 131h74q-51 -195 -82 -414h-70q2 16 2 49q0 76 -31 93.5t-153 17.5h-187l-88 -455q-10 -70 -10 -73q0 -49 41 -54q53 -6 203 -6q259 0 332 58q52 42 122 188h68q-26 -178 -84 -285q-29 -53 -160 -53h-860l17 74q115 8 149 18q33 9 43 39q8 21 31 137l51 267h-489 l-220 -263q-54 -63 -69 -88.5t-15 -54.5q0 -9 3.5 -16.5t11.5 -12.5t16.5 -9t22.5 -7t24.5 -4.5t28 -2.5t28 -1.5t28.5 -1t26 -0.5l-14 -76q-196 4 -277 4q-72 0 -264 -4zM733 621h434l125 634q2 12 2 19q0 10 -8 10q-2 0 -4 -1t-4.5 -3t-4 -4t-5 -6.5t-6.5 -7.5 q-182 -225 -529 -641z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1345" d="M135 543q0 340 211 600q113 135 272.5 203.5t352.5 68.5q183 0 297 -43q42 -14 58.5 -41.5t16.5 -73.5q0 -50 -28 -198h-72q0 135 -41 188q-51 68 -260 68q-151 0 -282 -59t-224 -175q-84 -103 -128 -240.5t-44 -279.5q0 -242 130.5 -365.5t353.5 -123.5q97 0 173 22 t119 53q57 40 121 170h74q-7 -41 -26 -99.5t-35 -88.5q-45 -88 -138 -115q-146 -43 -313 -43q-27 0 -39 2q-25 -59 -25 -71q0 -35 27 -52q71 -39 96 -72t25 -91q0 -104 -100.5 -174t-257.5 -91l-11 76q118 25 181 63t63 99q0 35 -18 56.5t-66 54.5q-18 12 -24.5 24.5 t-6.5 36.5q0 43 54 145q-226 28 -356 176.5t-130 389.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1196" d="M2 0l16 76q150 5 177 30l6 6t5.5 8t4.5 9.5t4 12.5l3.5 14t4 17.5t4 19l4.5 22.5l5 25l176 915q14 75 14 98q0 37 -45 45q-47 10 -135 13l14 73h803q104 0 104 -69q0 -106 -32 -240h-70q0 78 -2 111q-5 58 -37 76q-26 18 -76 25t-188 7h-205l-100 -526h178q93 0 129.5 7 t60.5 28q33 36 60 131h73q-16 -60 -28.5 -124t-29 -158.5t-23.5 -131.5h-70q4 20 4 51q0 92 -57 103q-31 6 -140 6h-174l-96 -492q-4 -32 -4 -38q0 -47 41 -52q55 -6 215 -6q150 0 219.5 15t102.5 45q52 44 120 186h70q-30 -186 -84 -285q-29 -53 -162 -53h-860zM512 1786 q0 29 22 48t52 19q20 0 40 -17t54 -58l205 -260l-47 -45l-256 210q-70 61 -70 103z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1196" d="M2 0l16 76q150 5 177 30l6 6t5.5 8t4.5 9.5t4 12.5l3.5 14t4 17.5t4 19l4.5 22.5l5 25l176 915q14 75 14 98q0 37 -45 45q-47 10 -135 13l14 73h803q104 0 104 -69q0 -106 -32 -240h-70q0 78 -2 111q-5 58 -37 76q-26 18 -76 25t-188 7h-205l-100 -526h178q93 0 129.5 7 t60.5 28q33 36 60 131h73q-16 -60 -28.5 -124t-29 -158.5t-23.5 -131.5h-70q4 20 4 51q0 92 -57 103q-31 6 -140 6h-174l-96 -492q-4 -32 -4 -38q0 -47 41 -52q55 -6 215 -6q150 0 219.5 15t102.5 45q52 44 120 186h70q-30 -186 -84 -285q-29 -53 -162 -53h-860zM647 1524 l256 229q37 34 59.5 46.5t47.5 12.5t41 -21t16 -50q0 -43 -88 -96l-293 -172z" />
+<glyph unicode="&#xca;" horiz-adv-x="1196" d="M2 0l16 76q150 5 177 30l6 6t5.5 8t4.5 9.5t4 12.5l3.5 14t4 17.5t4 19l4.5 22.5l5 25l176 915q14 75 14 98q0 37 -45 45q-47 10 -135 13l14 73h803q104 0 104 -69q0 -106 -32 -240h-70q0 78 -2 111q-5 58 -37 76q-26 18 -76 25t-188 7h-205l-100 -526h178q93 0 129.5 7 t60.5 28q33 36 60 131h73q-16 -60 -28.5 -124t-29 -158.5t-23.5 -131.5h-70q4 20 4 51q0 92 -57 103q-31 6 -140 6h-174l-96 -492q-4 -32 -4 -38q0 -47 41 -52q55 -6 215 -6q150 0 219.5 15t102.5 45q52 44 120 186h70q-30 -186 -84 -285q-29 -53 -162 -53h-860zM451 1516 l274 270q40 37 74 37q21 0 35 -7.5t28 -31.5l170 -279l-47 -41l-207 215l-286 -215z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1196" d="M2 0l16 76q150 5 177 30l6 6t5.5 8t4.5 9.5t4 12.5l3.5 14t4 17.5t4 19l4.5 22.5l5 25l176 915q14 75 14 98q0 37 -45 45q-47 10 -135 13l14 73h803q104 0 104 -69q0 -106 -32 -240h-70q0 78 -2 111q-5 58 -37 76q-26 18 -76 25t-188 7h-205l-100 -526h178q93 0 129.5 7 t60.5 28q33 36 60 131h73q-16 -60 -28.5 -124t-29 -158.5t-23.5 -131.5h-70q4 20 4 51q0 92 -57 103q-31 6 -140 6h-174l-96 -492q-4 -32 -4 -38q0 -47 41 -52q55 -6 215 -6q150 0 219.5 15t102.5 45q52 44 120 186h70q-30 -186 -84 -285q-29 -53 -162 -53h-860zM496 1612 q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25.5 -70.5t-67.5 -29.5q-35 0 -57 25t-22 63zM840 1612q0 38 25.5 65t64.5 27t60.5 -22.5t21.5 -57.5q0 -41 -24.5 -70.5t-67.5 -29.5q-35 0 -57.5 25t-22.5 63z" />
+<glyph unicode="&#xcc;" horiz-adv-x="692" d="M2 -2l16 76q152 11 179 35q11 9 18.5 33.5t20.5 95.5l176 917q14 82 14 98q0 21 -12 30.5t-37 14.5q-56 10 -131 15l14 73q164 -4 242 -4q88 0 272 4l-16 -73q-98 -9 -137.5 -17t-51.5 -20q-18 -21 -37 -119l-176 -921q-16 -79 -16 -103q0 -22 12.5 -31t38.5 -14 q53 -8 141 -14l-18 -76q-172 4 -270 4q-66 0 -242 -4zM274 1786q0 29 22 48t52 19q20 0 40 -17t54 -58l205 -260l-47 -45l-256 210q-70 61 -70 103z" />
+<glyph unicode="&#xcd;" horiz-adv-x="692" d="M2 -2l16 76q152 11 179 35q11 9 18.5 33.5t20.5 95.5l176 917q14 82 14 98q0 21 -12 30.5t-37 14.5q-56 10 -131 15l14 73q164 -4 242 -4q88 0 272 4l-16 -73q-98 -9 -137.5 -17t-51.5 -20q-18 -21 -37 -119l-176 -921q-16 -79 -16 -103q0 -22 12.5 -31t38.5 -14 q53 -8 141 -14l-18 -76q-172 4 -270 4q-66 0 -242 -4zM412 1524l256 229q37 34 59 46.5t47 12.5t41 -21t16 -50q0 -43 -88 -96l-292 -172z" />
+<glyph unicode="&#xce;" horiz-adv-x="692" d="M2 -2l16 76q152 11 179 35q11 9 18.5 33.5t20.5 95.5l176 917q14 82 14 98q0 21 -12 30.5t-37 14.5q-56 10 -131 15l14 73q164 -4 242 -4q88 0 272 4l-16 -73q-98 -9 -137.5 -17t-51.5 -20q-18 -21 -37 -119l-176 -921q-16 -79 -16 -103q0 -22 12.5 -31t38.5 -14 q53 -8 141 -14l-18 -76q-172 4 -270 4q-66 0 -242 -4zM256 1516l274 270q40 37 74 37q22 0 36 -7.5t28 -31.5l170 -279l-47 -41l-207 215l-287 -215z" />
+<glyph unicode="&#xcf;" horiz-adv-x="692" d="M2 -2l16 76q152 11 179 35q11 9 18.5 33.5t20.5 95.5l176 917q14 82 14 98q0 21 -12 30.5t-37 14.5q-56 10 -131 15l14 73q164 -4 242 -4q88 0 272 4l-16 -73q-98 -9 -137.5 -17t-51.5 -20q-18 -21 -37 -119l-176 -921q-16 -79 -16 -103q0 -22 12.5 -31t38.5 -14 q53 -8 141 -14l-18 -76q-172 4 -270 4q-66 0 -242 -4zM293 1612q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 25t-22.5 63zM637 1612q0 38 25.5 65t64.5 27t60.5 -22.5t21.5 -57.5q0 -41 -24.5 -70.5t-67.5 -29.5 q-35 0 -57.5 25t-22.5 63z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1474" d="M2 -2l16 76q96 8 130.5 14.5t48.5 20.5q11 10 17 30.5t19 89.5l86 449h-202l18 94h203l74 383q14 75 14 100q0 20 -12.5 29t-36.5 14q-32 8 -131 15l14 71h318q207 0 338.5 -15.5t199.5 -41.5t129 -72q79 -61 124.5 -167.5t45.5 -227.5q0 -489 -330 -723 q-102 -73 -243.5 -106t-358.5 -33h-481zM340 160q0 -49 49 -58q53 -10 195 -10q168 0 302 55.5t220.5 154t132 231.5t45.5 290q0 134 -47.5 239t-130.5 152q-139 80 -406 80h-145l-100 -522h407l-20 -94h-406l-90 -477q-6 -30 -6 -41z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1488" d="M2 -2l16 76q86 5 126 13.5t55 27.5q3 4 6 9t6 13.5t5 16t5.5 23.5t6 27.5t7.5 36t9 42.5q14 70 79 407t80 412q21 114 21 145q0 45 -57 53q-67 13 -134 13l17 73q86 -4 176 -4q73 0 147 4q470 -1006 551 -1200q155 837 166 908q19 127 19 155q0 37 -35 45q-76 17 -144 19 l17 73q106 -4 256 -4q9 0 235 4l-16 -73q-88 -4 -118.5 -11.5t-49.5 -23.5q-15 -12 -25.5 -46t-29.5 -130q-115 -581 -201 -1061q-9 -55 -68 -55q-40 0 -59 39q-372 817 -547 1192q-32 -166 -100.5 -545t-69.5 -385q-22 -113 -22 -150q0 -23 13.5 -33.5t41.5 -15.5 q52 -8 139 -14l-18 -76q-204 4 -268 4q-20 0 -238 -4zM688 1524q36 90 87 146t116 56q33 0 108 -32l54 -25q52 -22 86 -22q31 0 55.5 25.5t56.5 82.5l66 -22q-81 -207 -184 -207q-43 0 -127 37l-50 18q-66 27 -88 27q-33 0 -59 -25.5t-59 -83.5z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1415" d="M135 535q0 164 49.5 335t145.5 295q195 250 522 250q253 0 379.5 -137.5t126.5 -376.5q0 -453 -217 -713q-86 -103 -213.5 -160t-261.5 -57q-257 0 -394 144t-137 420zM260 541q0 -471 414 -471q118 0 214 50t158 131.5t104.5 190.5t60.5 222t18 231q0 206 -103.5 314 t-296.5 108q-128 0 -232.5 -57t-174.5 -156q-78 -113 -120 -262.5t-42 -300.5zM602 1786q0 29 22 48t52 19q20 0 40 -17t54 -58l205 -260l-47 -45l-256 210q-70 61 -70 103z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1415" d="M135 535q0 164 49.5 335t145.5 295q195 250 522 250q253 0 379.5 -137.5t126.5 -376.5q0 -453 -217 -713q-86 -103 -213.5 -160t-261.5 -57q-257 0 -394 144t-137 420zM260 541q0 -471 414 -471q118 0 214 50t158 131.5t104.5 190.5t60.5 222t18 231q0 206 -103.5 314 t-296.5 108q-128 0 -232.5 -57t-174.5 -156q-78 -113 -120 -262.5t-42 -300.5zM715 1524l256 229q37 34 59 46.5t47 12.5t41.5 -21t16.5 -50q0 -43 -88 -96l-293 -172z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1415" d="M135 535q0 164 49.5 335t145.5 295q195 250 522 250q253 0 379.5 -137.5t126.5 -376.5q0 -453 -217 -713q-86 -103 -213.5 -160t-261.5 -57q-257 0 -394 144t-137 420zM260 541q0 -471 414 -471q118 0 214 50t158 131.5t104.5 190.5t60.5 222t18 231q0 206 -103.5 314 t-296.5 108q-128 0 -232.5 -57t-174.5 -156q-78 -113 -120 -262.5t-42 -300.5zM582 1516l274 270q40 37 74 37q21 0 35 -7.5t28 -31.5l170 -279l-47 -41l-207 215l-286 -215z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1415" d="M135 535q0 164 49.5 335t145.5 295q195 250 522 250q253 0 379.5 -137.5t126.5 -376.5q0 -453 -217 -713q-86 -103 -213.5 -160t-261.5 -57q-257 0 -394 144t-137 420zM260 541q0 -471 414 -471q118 0 214 50t158 131.5t104.5 190.5t60.5 222t18 231q0 206 -103.5 314 t-296.5 108q-128 0 -232.5 -57t-174.5 -156q-78 -113 -120 -262.5t-42 -300.5zM580 1524q36 90 86.5 146t115.5 56q34 0 109 -32l53 -25q52 -22 86 -22q31 0 56.5 26t56.5 82l65 -22q-81 -207 -184 -207q-43 0 -127 37l-49 18q-66 27 -88 27q-33 0 -59.5 -25.5t-59.5 -83.5z " />
+<glyph unicode="&#xd6;" horiz-adv-x="1415" d="M135 535q0 164 49.5 335t145.5 295q195 250 522 250q253 0 379.5 -137.5t126.5 -376.5q0 -453 -217 -713q-86 -103 -213.5 -160t-261.5 -57q-257 0 -394 144t-137 420zM260 541q0 -471 414 -471q118 0 214 50t158 131.5t104.5 190.5t60.5 222t18 231q0 206 -103.5 314 t-296.5 108q-128 0 -232.5 -57t-174.5 -156q-78 -113 -120 -262.5t-42 -300.5zM641 1612q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 25t-22.5 63zM985 1612q0 38 25.5 65t64.5 27t60.5 -22.5t21.5 -57.5q0 -41 -24.5 -70.5 t-67.5 -29.5q-35 0 -57.5 25t-22.5 63z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1224" d="M217 340l358 311l-233 307l90 74l230 -305l348 305l67 -86l-356 -311l233 -311l-88 -74l-233 311l-350 -305z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1415" d="M80 2l145 172q-90 137 -90 361q0 164 49.5 335t145.5 295q195 250 522 250q212 0 336 -98l129 151l67 -57l-133 -158q107 -131 107 -352q0 -453 -217 -713q-86 -103 -213.5 -160t-261.5 -57q-247 0 -383 133l-136 -159zM260 541q0 -163 49 -269l801 953q-105 94 -281 94 q-112 0 -207 -45.5t-160.5 -121.5t-112 -177t-68 -211t-21.5 -223zM356 193q106 -125 318 -125q99 0 182.5 35t143 96.5t104.5 141t72 173.5t40 189t13 192q0 158 -62 258z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1525" d="M221 1313l17 73q160 -4 270 -4q71 0 235 4l-14 -73q-100 -7 -130 -14t-46 -23q-18 -21 -39 -111q-71 -320 -113 -534q-34 -162 -34 -281q0 -276 338 -276q114 0 212.5 38t149.5 101q51 64 84.5 165t69.5 277q18 79 92 500q10 56 10 90q0 19 -5 29t-12.5 13.5t-25.5 8.5 q-24 5 -139 17l14 73q148 -4 244 -4q98 0 246 4l-17 -73q-94 -3 -131 -13.5t-47 -29.5q-18 -36 -37 -133l-100 -519q-40 -203 -81 -312.5t-110 -178.5q-156 -156 -456 -156q-84 0 -156.5 18t-135 56t-98.5 106.5t-36 161.5q0 110 41 312q66 340 110 534q15 67 15 88 q0 20 -7.5 31t-29.5 18q-37 14 -148 17zM637 1786q0 29 22 48t52 19q20 0 40 -17t54 -58l205 -260l-47 -45l-256 210q-70 61 -70 103z" />
+<glyph unicode="&#xda;" horiz-adv-x="1525" d="M221 1313l17 73q160 -4 270 -4q71 0 235 4l-14 -73q-100 -7 -130 -14t-46 -23q-18 -21 -39 -111q-71 -320 -113 -534q-34 -162 -34 -281q0 -276 338 -276q114 0 212.5 38t149.5 101q51 64 84.5 165t69.5 277q18 79 92 500q10 56 10 90q0 19 -5 29t-12.5 13.5t-25.5 8.5 q-24 5 -139 17l14 73q148 -4 244 -4q98 0 246 4l-17 -73q-94 -3 -131 -13.5t-47 -29.5q-18 -36 -37 -133l-100 -519q-40 -203 -81 -312.5t-110 -178.5q-156 -156 -456 -156q-84 0 -156.5 18t-135 56t-98.5 106.5t-36 161.5q0 110 41 312q66 340 110 534q15 67 15 88 q0 20 -7.5 31t-29.5 18q-37 14 -148 17zM791 1524l256 229q37 34 59 46.5t47 12.5t41 -21t16 -50q0 -43 -88 -96l-293 -172z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1525" d="M221 1313l17 73q160 -4 270 -4q71 0 235 4l-14 -73q-100 -7 -130 -14t-46 -23q-18 -21 -39 -111q-71 -320 -113 -534q-34 -162 -34 -281q0 -276 338 -276q114 0 212.5 38t149.5 101q51 64 84.5 165t69.5 277q18 79 92 500q10 56 10 90q0 19 -5 29t-12.5 13.5t-25.5 8.5 q-24 5 -139 17l14 73q148 -4 244 -4q98 0 246 4l-17 -73q-94 -3 -131 -13.5t-47 -29.5q-18 -36 -37 -133l-100 -519q-40 -203 -81 -312.5t-110 -178.5q-156 -156 -456 -156q-84 0 -156.5 18t-135 56t-98.5 106.5t-36 161.5q0 110 41 312q66 340 110 534q15 67 15 88 q0 20 -7.5 31t-29.5 18q-37 14 -148 17zM676 1516l274 270q40 37 74 37q21 0 35 -7.5t28 -31.5l170 -279l-47 -41l-206 215l-287 -215z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1525" d="M221 1313l17 73q160 -4 270 -4q71 0 235 4l-14 -73q-100 -7 -130 -14t-46 -23q-18 -21 -39 -111q-71 -320 -113 -534q-34 -162 -34 -281q0 -276 338 -276q114 0 212.5 38t149.5 101q51 64 84.5 165t69.5 277q18 79 92 500q10 56 10 90q0 19 -5 29t-12.5 13.5t-25.5 8.5 q-24 5 -139 17l14 73q148 -4 244 -4q98 0 246 4l-17 -73q-94 -3 -131 -13.5t-47 -29.5q-18 -36 -37 -133l-100 -519q-40 -203 -81 -312.5t-110 -178.5q-156 -156 -456 -156q-84 0 -156.5 18t-135 56t-98.5 106.5t-36 161.5q0 110 41 312q66 340 110 534q15 67 15 88 q0 20 -7.5 31t-29.5 18q-37 14 -148 17zM696 1612q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 25t-22.5 63zM1040 1612q0 38 25.5 65t64.5 27t60.5 -22.5t21.5 -57.5q0 -41 -24.5 -70.5t-67.5 -29.5q-35 0 -57.5 25t-22.5 63z " />
+<glyph unicode="&#xdd;" horiz-adv-x="1228" d="M162 1313l16 73q230 -4 234 -4q17 0 235 4l-18 -73q-112 0 -146 -10q-39 -8 -39 -50q0 -29 27 -102q98 -255 184 -487q220 289 383 497q62 77 62 115q0 13 -12 21.5t-38 11.5t-42.5 3.5t-50.5 0.5h-5h-5h-5l16 73q94 -4 244 -4q99 0 189 4l-19 -73q-55 -3 -96 -29 q-27 -16 -98 -104l-484 -602l-71 -367q-13 -70 -13 -90q0 -29 31 -35q42 -6 154 -12l-15 -76q-218 4 -248 4q-65 0 -249 -4l14 76q99 4 128 11t44 24q20 24 35 102l69 364l-229 570q-11 26 -22 56.5t-16 43t-12 24t-15 17.5q-37 24 -117 27zM666 1524l256 229q37 34 59 46.5 t47 12.5t41 -21t16 -50q0 -43 -88 -96l-292 -172z" />
+<glyph unicode="&#xde;" horiz-adv-x="1144" d="M2 -2l16 76q90 6 125 13t52 19q12 9 19.5 34.5t21.5 99.5l176 917q14 82 14 96q0 21 -12 30.5t-37 14.5q-56 10 -131 15l14 73q164 -4 240 -4q88 0 272 4l-16 -73q-98 -9 -137.5 -17t-51.5 -20q-22 -25 -37 -119l-8 -43q279 0 365 -14q133 -23 194.5 -104t61.5 -193 q0 -133 -47.5 -231.5t-134.5 -156t-198 -85t-249 -27.5q-104 0 -147 2l-13 -67q-16 -79 -16 -103q0 -37 41 -45q45 -9 166 -16l-17 -76q-172 4 -284 4q-66 0 -242 -4zM383 389q33 -2 117 -2q54 0 100 3.5t99.5 14t96 28t83.5 48t68.5 71.5t44 100.5t16.5 133.5 q0 94 -40 146.5t-116 75.5q-67 22 -225 22h-121z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1193" d="M-258 -461q0 60 27 146h67q0 -92 21 -126t92 -34q49 0 92.5 27t69.5 73q52 93 86 287l159 911h-180l17 62q96 13 143 41q24 14 34 33.5t25 82.5q23 99 46 165.5t52 108t50.5 62t60.5 47.5q99 72 266 72q153 0 230.5 -73.5t77.5 -174.5q0 -59 -12.5 -104t-43 -84.5 t-65 -69.5t-94.5 -73q-15 -11 -40.5 -29.5t-38.5 -28t-31.5 -24t-27.5 -24t-19 -21.5t-14 -23t-4 -23q0 -30 23 -59q10 -15 28 -33.5t57 -57t67 -67.5q66 -67 97.5 -124t31.5 -125q0 -144 -102.5 -226t-262.5 -82q-145 0 -223 45q-55 34 -55 107q0 57 22 125h68 q3 -104 36 -133q55 -52 177 -52q103 0 165.5 48.5t63.5 134.5q0 100 -137 237q-82 81 -125 131q-45 53 -45 115q0 50 27 86.5t102 95.5q21 16 60 45t55 41t43.5 35t38.5 36t28 33.5t23 37.5t11 39t5 47q0 83 -54.5 132.5t-164.5 49.5q-156 0 -244 -113q-27 -35 -56 -123 t-48 -192l-201 -1077q-26 -134 -52 -212t-65 -128q-98 -125 -266 -125q-81 0 -131 26q-43 21 -43 76z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1128" d="M98 281q0 133 67 289t175 249q154 129 360 129q111 0 201 -55l33 76h90l-123 -477q-57 -225 -57 -336q0 -34 20 -53t70 -19t129 18l-16 -67q-100 -53 -201 -53q-63 0 -89 33t-26 100q0 5 1 21.5t1 21.5q-160 -183 -356 -183q-141 0 -210 79.5t-69 226.5zM215 285 q0 -109 42.5 -160t139.5 -51q160 0 340 176q21 125 47 217l88 336q-83 53 -204 53q-136 0 -256 -104q-83 -70 -140 -202t-57 -265zM500 1423q0 29 23.5 48.5t51.5 19.5q23 0 42.5 -17t50.5 -63l190 -293l-51 -39l-240 244q-38 38 -52.5 57.5t-14.5 42.5z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1128" d="M98 281q0 133 67 289t175 249q154 129 360 129q111 0 201 -55l33 76h90l-123 -477q-57 -225 -57 -336q0 -34 20 -53t70 -19t129 18l-16 -67q-100 -53 -201 -53q-63 0 -89 33t-26 100q0 5 1 21.5t1 21.5q-160 -183 -356 -183q-141 0 -210 79.5t-69 226.5zM215 285 q0 -109 42.5 -160t139.5 -51q160 0 340 176q21 125 47 217l88 336q-83 53 -204 53q-136 0 -256 -104q-83 -70 -140 -202t-57 -265zM629 1122l215 279q35 42 55 58t41 16q26 0 48 -18.5t22 -47.5q0 -43 -72 -102l-262 -228z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1128" d="M98 281q0 133 67 289t175 249q154 129 360 129q111 0 201 -55l33 76h90l-123 -477q-57 -225 -57 -336q0 -34 20 -53t70 -19t129 18l-16 -67q-100 -53 -201 -53q-63 0 -89 33t-26 100q0 5 1 21.5t1 21.5q-160 -183 -356 -183q-141 0 -210 79.5t-69 226.5zM215 285 q0 -109 42.5 -160t139.5 -51q160 0 340 176q21 125 47 217l88 336q-83 53 -204 53q-136 0 -256 -104q-83 -70 -140 -202t-57 -265zM444 1090l252 305q30 37 70 37q48 0 65 -37l144 -320l-60 -28l-165 239l-263 -239z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1128" d="M98 281q0 133 67 289t175 249q154 129 360 129q111 0 201 -55l33 76h90l-123 -477q-57 -225 -57 -336q0 -34 20 -53t70 -19t129 18l-16 -67q-100 -53 -201 -53q-63 0 -89 33t-26 100q0 5 1 21.5t1 21.5q-160 -183 -356 -183q-141 0 -210 79.5t-69 226.5zM215 285 q0 -109 42.5 -160t139.5 -51q160 0 340 176q21 125 47 217l88 336q-83 53 -204 53q-136 0 -256 -104q-83 -70 -140 -202t-57 -265zM446 1143q74 196 189 196q44 0 104 -26l41 -21q61 -26 84 -26q52 0 111 108l59 -22q-71 -203 -174 -203q-43 0 -121 37l-34 14q-70 25 -87 25 q-31 0 -52 -22.5t-58 -84.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1128" d="M98 281q0 133 67 289t175 249q154 129 360 129q111 0 201 -55l33 76h90l-123 -477q-57 -225 -57 -336q0 -34 20 -53t70 -19t129 18l-16 -67q-100 -53 -201 -53q-63 0 -89 33t-26 100q0 5 1 21.5t1 21.5q-160 -183 -356 -183q-141 0 -210 79.5t-69 226.5zM215 285 q0 -109 42.5 -160t139.5 -51q160 0 340 176q21 125 47 217l88 336q-83 53 -204 53q-136 0 -256 -104q-83 -70 -140 -202t-57 -265zM543 1272q0 38 26 65t66 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-69 -29.5q-35 0 -57.5 24t-22.5 64zM850 1272q0 38 25.5 65 t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 24t-22.5 64z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1128" d="M98 281q0 133 67 289t175 249q154 129 360 129q111 0 201 -55l33 76h90l-123 -477q-57 -225 -57 -336q0 -34 20 -53t70 -19t129 18l-16 -67q-100 -53 -201 -53q-63 0 -89 33t-26 100q0 5 1 21.5t1 21.5q-160 -183 -356 -183q-141 0 -210 79.5t-69 226.5zM215 285 q0 -109 42.5 -160t139.5 -51q160 0 340 176q21 125 47 217l88 336q-83 53 -204 53q-136 0 -256 -104q-83 -70 -140 -202t-57 -265zM580 1241q0 89 58 147t144 58q73 0 122.5 -46t49.5 -120q0 -85 -56 -145t-148 -60q-71 0 -120.5 45.5t-49.5 120.5zM655 1247q0 -46 29.5 -75 t71.5 -29q56 0 88.5 34.5t32.5 100.5q0 47 -29.5 73.5t-73.5 26.5q-53 0 -86 -35t-33 -96z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1574" d="M98 281q0 133 67 289t175 249q154 129 360 129q45 0 98 -13t87 -38l35 80h86l-45 -170q67 78 158.5 114.5t168.5 36.5q127 0 188.5 -61.5t61.5 -144.5q0 -161 -168 -242.5t-483 -81.5q-6 -41 -6 -88q0 -54 14 -100.5t42 -84.5t76 -59.5t111 -21.5q157 0 342 127l37 -49 q-104 -91 -196 -136t-224 -45q-108 0 -190.5 59t-108.5 177q-80 -100 -184.5 -166t-224.5 -66q-277 0 -277 306zM215 285q0 -211 180 -211q82 0 183.5 60t191.5 161q0 97 86 512q-85 49 -188 49q-136 0 -256 -104q-83 -70 -140 -202t-57 -265zM899 504q255 9 388.5 71.5 t133.5 157.5q0 64 -33.5 99.5t-125.5 35.5q-40 0 -100.5 -24t-100.5 -58q-61 -49 -102.5 -112.5t-59.5 -169.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="942" d="M100 336q0 149 53.5 283.5t161.5 222.5q137 114 332 114q96 0 152 -22q75 -31 75 -105q0 -28 -8.5 -77t-19.5 -80h-68q0 116 -33 149q-43 43 -131 43q-140 0 -241 -96q-70 -67 -114 -178.5t-44 -222.5q0 -291 256 -291q147 0 320 127l49 -66q-178 -157 -394 -166 q-22 -46 -22 -63q0 -34 27 -47q69 -33 93.5 -66t24.5 -90q0 -99 -99.5 -166.5t-252.5 -85.5l-10 72q239 45 239 153q0 34 -18 57t-63 50q-18 11 -24.5 21.5t-6.5 31.5q0 44 49 135q-134 15 -208.5 111t-74.5 252z" />
+<glyph unicode="&#xe8;" horiz-adv-x="897" d="M100 319q0 278 146 458.5t364 180.5q65 0 115 -18.5t78.5 -49t42.5 -65.5t14 -73q0 -161 -164.5 -242.5t-478.5 -81.5q-4 -27 -4 -88q0 -113 61.5 -188.5t184.5 -75.5q91 0 164.5 28.5t175.5 98.5l47 -66q-100 -82 -197.5 -124t-232.5 -42q-60 0 -114.5 20.5t-100.5 60.5 t-73.5 109t-27.5 158zM229 504q259 9 386.5 71t127.5 162q0 131 -149 131q-123 0 -226 -97.5t-139 -266.5zM338 1423q0 29 24 48.5t52 19.5q23 0 42 -16.5t50 -63.5l190 -293l-51 -39l-239 244q-28 28 -38.5 39.5t-20 28t-9.5 32.5z" />
+<glyph unicode="&#xe9;" horiz-adv-x="897" d="M100 319q0 278 146 458.5t364 180.5q65 0 115 -18.5t78.5 -49t42.5 -65.5t14 -73q0 -161 -164.5 -242.5t-478.5 -81.5q-4 -27 -4 -88q0 -113 61.5 -188.5t184.5 -75.5q91 0 164.5 28.5t175.5 98.5l47 -66q-100 -82 -197.5 -124t-232.5 -42q-60 0 -114.5 20.5t-100.5 60.5 t-73.5 109t-27.5 158zM229 504q259 9 386.5 71t127.5 162q0 131 -149 131q-123 0 -226 -97.5t-139 -266.5zM518 1122l215 279q35 42 55 58t41 16q26 0 48 -18.5t22 -47.5q0 -43 -72 -102l-262 -228z" />
+<glyph unicode="&#xea;" horiz-adv-x="897" d="M100 319q0 278 146 458.5t364 180.5q65 0 115 -18.5t78.5 -49t42.5 -65.5t14 -73q0 -161 -164.5 -242.5t-478.5 -81.5q-4 -27 -4 -88q0 -113 61.5 -188.5t184.5 -75.5q91 0 164.5 28.5t175.5 98.5l47 -66q-100 -82 -197.5 -124t-232.5 -42q-60 0 -114.5 20.5t-100.5 60.5 t-73.5 109t-27.5 158zM229 504q259 9 386.5 71t127.5 162q0 131 -149 131q-123 0 -226 -97.5t-139 -266.5zM356 1090l252 305q30 37 70 37q48 0 65 -37l144 -320l-60 -28l-165 239l-263 -239z" />
+<glyph unicode="&#xeb;" horiz-adv-x="897" d="M100 319q0 278 146 458.5t364 180.5q65 0 115 -18.5t78.5 -49t42.5 -65.5t14 -73q0 -161 -164.5 -242.5t-478.5 -81.5q-4 -27 -4 -88q0 -113 61.5 -188.5t184.5 -75.5q91 0 164.5 28.5t175.5 98.5l47 -66q-100 -82 -197.5 -124t-232.5 -42q-60 0 -114.5 20.5t-100.5 60.5 t-73.5 109t-27.5 158zM229 504q259 9 386.5 71t127.5 162q0 131 -149 131q-123 0 -226 -97.5t-139 -266.5zM430 1272q0 38 26 65t66 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-69 -29.5q-35 0 -57.5 24t-22.5 64zM737 1272q0 38 25.5 65t64.5 27q37 0 59.5 -22.5 t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 24t-22.5 64z" />
+<glyph unicode="&#xec;" horiz-adv-x="593" d="M100 1423q0 29 24 48.5t52 19.5q23 0 42 -16.5t50 -63.5l191 -293l-51 -39l-240 244q-28 28 -38.5 39.5t-20 28t-9.5 32.5zM123 831l12 66q95 51 189 51q45 0 71.5 -19.5t26.5 -72.5q0 -23 -6.5 -65t-13 -73.5t-17.5 -80t-12 -55.5l-60 -258q-28 -118 -28 -168 q0 -37 16.5 -54.5t60.5 -17.5q77 0 144 18l-14 -67q-114 -53 -209 -53q-48 0 -82.5 23.5t-34.5 84.5q0 41 29 176l55 254q43 198 43 248q0 41 -17.5 56.5t-64.5 15.5q-43 0 -88 -9z" />
+<glyph unicode="&#xed;" horiz-adv-x="593" d="M123 831l12 66q95 51 189 51q45 0 71.5 -19.5t26.5 -72.5q0 -23 -6.5 -65t-13 -73.5t-17.5 -80t-12 -55.5l-60 -258q-28 -118 -28 -168q0 -37 16.5 -54.5t60.5 -17.5q77 0 144 18l-14 -67q-114 -53 -209 -53q-48 0 -82.5 23.5t-34.5 84.5q0 41 29 176l55 254 q43 198 43 248q0 41 -17.5 56.5t-64.5 15.5q-43 0 -88 -9zM244 1122l215 279q35 42 55 58t41 16q26 0 48 -18.5t22 -47.5q0 -43 -72 -102l-262 -228z" />
+<glyph unicode="&#xee;" horiz-adv-x="593" d="M88 1090l252 305q30 37 70 37q48 0 65 -37l143 -320l-59 -28l-166 239l-262 -239zM123 831l12 66q95 51 189 51q45 0 71.5 -19.5t26.5 -72.5q0 -23 -6.5 -65t-13 -73.5t-17.5 -80t-12 -55.5l-60 -258q-28 -118 -28 -168q0 -37 16.5 -54.5t60.5 -17.5q77 0 144 18l-14 -67 q-114 -53 -209 -53q-48 0 -82.5 23.5t-34.5 84.5q0 41 29 176l55 254q43 198 43 248q0 41 -17.5 56.5t-64.5 15.5q-43 0 -88 -9z" />
+<glyph unicode="&#xef;" horiz-adv-x="593" d="M123 831l12 66q95 51 189 51q45 0 71.5 -19.5t26.5 -72.5q0 -23 -6.5 -65t-13 -73.5t-17.5 -80t-12 -55.5l-60 -258q-28 -118 -28 -168q0 -37 16.5 -54.5t60.5 -17.5q77 0 144 18l-14 -67q-114 -53 -209 -53q-48 0 -82.5 23.5t-34.5 84.5q0 41 29 176l55 254 q43 198 43 248q0 41 -17.5 56.5t-64.5 15.5q-43 0 -88 -9zM158 1272q0 38 26 65t66 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-69 -29.5q-35 0 -57.5 24t-22.5 64zM465 1272q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5 q-35 0 -57.5 24t-22.5 64z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1042" d="M100 356q0 112 33 222t103 196q64 79 160 121.5t206 42.5q159 0 238 -98q-11 73 -48.5 168.5t-74.5 140.5l-262 -145l-39 69l252 139q-43 67 -123.5 128t-161.5 98l43 65q204 -87 332 -235l200 106l39 -71l-190 -103q72 -109 109.5 -254.5t37.5 -294.5 q0 -166 -30.5 -290.5t-122.5 -237.5q-60 -71 -150 -110.5t-180 -39.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q70 0 132 29.5t104 80.5q121 153 121 400q0 264 -258 264q-173 0 -265 -129q-104 -139 -104 -348z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1132" d="M119 831l14 66q92 51 172 51q46 0 71 -26.5t25 -96.5q0 -37 -4 -57q71 85 172.5 135.5t206.5 50.5q85 0 137 -39t52 -122q0 -71 -23 -177l-70 -286q-28 -122 -28 -174q0 -36 18 -54t60 -18q80 0 143 18l-16 -67q-111 -53 -209 -53q-111 0 -111 106q0 62 25 176l80 350 q14 65 14 117q0 65 -33 90t-96 25q-152 0 -328 -152q-9 -70 -26 -147l-127 -547h-105l115 520q39 176 39 236q0 45 -20 64.5t-66 19.5q-37 0 -82 -9zM381 1143q74 196 188 196q45 0 105 -26l41 -21q61 -26 84 -26q51 0 110 108l60 -22q-71 -203 -174 -203q-43 0 -121 37 l-35 14q-70 25 -86 25q-31 0 -52.5 -23t-58.5 -84z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1042" d="M100 356q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q176 0 264 -94t88 -258q0 -134 -37 -260.5t-116 -222.5q-60 -71 -150 -110.5t-180 -39.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q70 0 132 29.5t104 80.5q61 78 91 186t30 224 q0 270 -258 270q-173 0 -265 -129q-52 -70 -78 -167t-26 -197zM401 1423q0 29 24 48.5t52 19.5q23 0 42 -16.5t50 -63.5l191 -293l-51 -39l-240 244q-28 28 -38.5 39.5t-20 28t-9.5 32.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1042" d="M100 356q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q176 0 264 -94t88 -258q0 -134 -37 -260.5t-116 -222.5q-60 -71 -150 -110.5t-180 -39.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q70 0 132 29.5t104 80.5q61 78 91 186t30 224 q0 270 -258 270q-173 0 -265 -129q-52 -70 -78 -167t-26 -197zM520 1122l215 279q35 42 55 58t41 16q26 0 48 -18.5t22 -47.5q0 -43 -72 -102l-262 -228z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1042" d="M100 356q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q176 0 264 -94t88 -258q0 -134 -37 -260.5t-116 -222.5q-60 -71 -150 -110.5t-180 -39.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q70 0 132 29.5t104 80.5q61 78 91 186t30 224 q0 270 -258 270q-173 0 -265 -129q-52 -70 -78 -167t-26 -197zM371 1090l252 305q30 37 69 37q49 0 66 -37l143 -320l-59 -28l-166 239l-262 -239z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1042" d="M100 356q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q176 0 264 -94t88 -258q0 -134 -37 -260.5t-116 -222.5q-60 -71 -150 -110.5t-180 -39.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q70 0 132 29.5t104 80.5q61 78 91 186t30 224 q0 270 -258 270q-173 0 -265 -129q-52 -70 -78 -167t-26 -197zM352 1143q74 196 189 196q44 0 104 -26l41 -21q61 -26 84 -26q52 0 111 108l59 -22q-71 -203 -174 -203q-43 0 -121 37l-35 14q-70 25 -86 25q-31 0 -52 -22.5t-58 -84.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1042" d="M100 356q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q176 0 264 -94t88 -258q0 -134 -37 -260.5t-116 -222.5q-60 -71 -150 -110.5t-180 -39.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q70 0 132 29.5t104 80.5q61 78 91 186t30 224 q0 270 -258 270q-173 0 -265 -129q-52 -70 -78 -167t-26 -197zM426 1272q0 38 26 65t66 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-69 -29.5q-35 0 -57.5 24t-22.5 64zM733 1272q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5 q-35 0 -57.5 24t-22.5 64z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1177" d="M154 580l22 116h909l-24 -116h-907zM459 307q2 46 29 76.5t67 30.5q36 0 56 -22t20 -58q-2 -45 -29.5 -77t-69.5 -32q-34 0 -53.5 23.5t-19.5 58.5zM604 942q0 44 29.5 74.5t68.5 30.5q36 0 56 -23.5t20 -62.5q0 -41 -30 -71t-70 -30q-32 0 -53 23.5t-21 58.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1042" d="M43 -6l113 127q-56 92 -56 235q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q145 0 234 -67l102 117l61 -56l-108 -121q63 -86 63 -225q0 -134 -37 -260.5t-116 -222.5q-60 -71 -150 -110.5t-180 -39.5q-172 0 -266 88l-103 -116zM215 369q0 -91 25 -154 l522 594q-65 53 -178 53q-173 0 -265 -129q-52 -70 -78 -167t-26 -197zM281 145q64 -73 204 -73q70 0 132 29.5t104 80.5q61 78 91 186t30 224q0 85 -29 151z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1185" d="M143 831l15 66q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-82 -349q-15 -69 -15 -116q0 -65 33.5 -91t95.5 -26q150 0 328 154q7 52 33 176l119 516h106l-115 -518q-36 -167 -36 -246q0 -42 19.5 -62t64.5 -20q13 0 65 6.5t68 9.5l-17 -63q-51 -27 -107.5 -41 t-95.5 -14q-46 0 -80 29.5t-34 90.5q0 39 4 62q-72 -88 -168 -138.5t-199 -50.5q-85 0 -141.5 42t-56.5 124q0 81 20 174l72 299q24 101 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9zM416 1423q0 29 24 48.5t52 19.5q23 0 42 -16.5t50 -63.5l190 -293l-51 -39l-240 244 q-38 38 -52.5 57.5t-14.5 42.5z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1185" d="M143 831l15 66q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-82 -349q-15 -69 -15 -116q0 -65 33.5 -91t95.5 -26q150 0 328 154q7 52 33 176l119 516h106l-115 -518q-36 -167 -36 -246q0 -42 19.5 -62t64.5 -20q13 0 65 6.5t68 9.5l-17 -63q-51 -27 -107.5 -41 t-95.5 -14q-46 0 -80 29.5t-34 90.5q0 39 4 62q-72 -88 -168 -138.5t-199 -50.5q-85 0 -141.5 42t-56.5 124q0 81 20 174l72 299q24 101 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9zM559 1122l215 279q35 42 55 58t41 16q26 0 48 -18.5t22 -47.5q0 -43 -72 -102 l-262 -228z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1185" d="M143 831l15 66q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-82 -349q-15 -69 -15 -116q0 -65 33.5 -91t95.5 -26q150 0 328 154q7 52 33 176l119 516h106l-115 -518q-36 -167 -36 -246q0 -42 19.5 -62t64.5 -20q13 0 65 6.5t68 9.5l-17 -63q-51 -27 -107.5 -41 t-95.5 -14q-46 0 -80 29.5t-34 90.5q0 39 4 62q-72 -88 -168 -138.5t-199 -50.5q-85 0 -141.5 42t-56.5 124q0 81 20 174l72 299q24 101 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9zM414 1090l252 305q30 37 69 37q49 0 66 -37l143 -320l-59 -28l-166 239l-262 -239z " />
+<glyph unicode="&#xfc;" horiz-adv-x="1185" d="M143 831l15 66q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-82 -349q-15 -69 -15 -116q0 -65 33.5 -91t95.5 -26q150 0 328 154q7 52 33 176l119 516h106l-115 -518q-36 -167 -36 -246q0 -42 19.5 -62t64.5 -20q13 0 65 6.5t68 9.5l-17 -63q-51 -27 -107.5 -41 t-95.5 -14q-46 0 -80 29.5t-34 90.5q0 39 4 62q-72 -88 -168 -138.5t-199 -50.5q-85 0 -141.5 42t-56.5 124q0 81 20 174l72 299q24 101 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9zM459 1272q0 38 26 65t66 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-69 -29.5 q-35 0 -57.5 24t-22.5 64zM766 1272q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 24t-22.5 64z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1189" d="M100 -446q0 60 27 163h70q-2 -23 -2 -59q3 -61 36 -88q47 -43 148 -43q82 0 144.5 33t94.5 96q54 107 115 371q6 30 19 84t14 57q-169 -193 -379 -193q-85 0 -133.5 41.5t-48.5 124.5q0 84 20 176l66 297q24 118 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9l15 66 q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-76 -349q-15 -69 -15 -116q0 -67 26.5 -92t90.5 -25q75 0 166 48.5t176 125.5l140 672h110q-39 -181 -102.5 -506.5t-94.5 -474.5q-32 -161 -67.5 -250t-89.5 -143q-119 -119 -320 -119q-142 0 -213 47q-41 26 -41 70z M553 1122l215 279q35 42 55 58t41 16q26 0 48 -18.5t22 -47.5q0 -43 -72 -102l-262 -228z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1122" d="M4 -535l350 1594q37 185 37 258q0 44 -18 60t-66 16q-21 0 -84 -11l15 66q95 49 190 49q46 0 72 -19.5t26 -70.5q0 -20 -16 -113q-78 -359 -123 -518q68 72 166 124t201 52q135 0 199.5 -78t64.5 -217q0 -131 -37 -261.5t-119 -231.5q-151 -187 -416 -187q-120 0 -221 29 l-114 -541h-107zM252 113q67 -39 223 -39q99 0 181 47t134 124t80.5 173.5t28.5 199.5q0 107 -45 168.5t-154 61.5q-72 0 -156.5 -43t-160.5 -109z" />
+<glyph unicode="&#xff;" horiz-adv-x="1189" d="M100 -446q0 60 27 163h70q-2 -23 -2 -59q3 -61 36 -88q47 -43 148 -43q82 0 144.5 33t94.5 96q54 107 115 371q6 30 19 84t14 57q-169 -193 -379 -193q-85 0 -133.5 41.5t-48.5 124.5q0 84 20 176l66 297q24 118 24 150q0 45 -17.5 60.5t-64.5 15.5q-38 0 -90 -9l15 66 q95 51 186 51q47 0 73.5 -19t26.5 -73q0 -23 -34 -190l-76 -349q-15 -69 -15 -116q0 -67 26.5 -92t90.5 -25q75 0 166 48.5t176 125.5l140 672h110q-39 -181 -102.5 -506.5t-94.5 -474.5q-32 -161 -67.5 -250t-89.5 -143q-119 -119 -320 -119q-142 0 -213 47q-41 26 -41 70z M473 1272q0 38 26 65t66 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-69 -29.5q-35 0 -57.5 24t-22.5 64zM780 1272q0 38 25.5 65t64.5 27q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 24t-22.5 64z" />
+<glyph unicode="&#x152;" horiz-adv-x="1970" d="M139 532q0 391 277 668q95 95 234.5 148t301.5 53q54 0 195 -8.5t207 -8.5h481q107 0 107 -69q0 -101 -33 -240h-72q0 78 -2 111q-5 56 -37 76q-28 17 -78.5 24.5t-183.5 7.5h-205l-100 -526h178q96 0 132 6.5t58 28.5q31 28 60 131h74q-31 -117 -82 -414h-70q2 20 2 51 q0 26 -2.5 43.5t-15.5 36t-37 23.5q-31 6 -142 6h-174l-94 -492q-4 -32 -4 -38q0 -47 41 -52q53 -6 215 -6q148 0 218.5 15.5t103.5 44.5q52 44 120 186h68q-26 -178 -84 -285q-29 -53 -162 -53h-555q-43 0 -193 -6t-224 -6q-130 0 -232 43t-164.5 118.5t-94.5 172.5 t-32 210zM266 547q0 -204 107.5 -332.5t302.5 -128.5q259 0 303 68q13 21 39 131l156 798q18 85 18 127q0 61 -70 74q-69 16 -215 16q-121 0 -230.5 -47t-191.5 -133q-106 -111 -162.5 -263t-56.5 -310z" />
+<glyph unicode="&#x153;" horiz-adv-x="1599" d="M100 356q0 111 34.5 227.5t101.5 204.5q63 82 157.5 126t208.5 44q266 0 320 -235q63 108 166.5 171.5t226.5 63.5q65 0 115 -18.5t78 -49t41.5 -65.5t13.5 -73q0 -162 -162 -243t-475 -81q-4 -27 -4 -88q0 -115 58.5 -190.5t180.5 -75.5q155 0 340 127l37 -49 q-99 -90 -191 -135.5t-221 -45.5q-62 0 -120 22t-107 74t-68 126q-53 -103 -148 -161.5t-212 -58.5q-178 0 -274.5 97t-96.5 286zM215 369q0 -297 270 -297q73 0 132.5 32t98.5 84t65.5 121t38 140t11.5 143q0 138 -59.5 204t-187.5 66q-173 0 -265 -129q-52 -70 -78 -167 t-26 -197zM938 504q253 9 380.5 71t127.5 158q0 64 -33.5 99.5t-124.5 35.5q-40 0 -98 -23.5t-98 -58.5q-115 -96 -154 -282z" />
+<glyph unicode="&#x178;" horiz-adv-x="1228" d="M162 1313l16 73q230 -4 234 -4q17 0 235 4l-18 -73q-112 0 -146 -10q-39 -8 -39 -50q0 -29 27 -102q98 -255 184 -487q220 289 383 497q62 77 62 115q0 13 -12 21.5t-38 11.5t-42.5 3.5t-50.5 0.5h-5h-5h-5l16 73q94 -4 244 -4q99 0 189 4l-19 -73q-55 -3 -96 -29 q-27 -16 -98 -104l-484 -602l-71 -367q-13 -70 -13 -90q0 -29 31 -35q42 -6 154 -12l-15 -76q-218 4 -248 4q-65 0 -249 -4l14 76q99 4 128 11t44 24q20 24 35 102l69 364l-229 570q-11 26 -22 56.5t-16 43t-12 24t-15 17.5q-37 24 -117 27zM561 1612q0 38 25.5 65t64.5 27 q37 0 59.5 -22.5t22.5 -57.5q0 -41 -25 -70.5t-67 -29.5q-35 0 -57.5 25t-22.5 63zM905 1612q0 38 25.5 65t64.5 27t60.5 -22.5t21.5 -57.5q0 -41 -24.5 -70.5t-67.5 -29.5q-35 0 -57.5 25t-22.5 63z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="595" d="M35 1090l252 305q30 37 69 37q49 0 66 -37l143 -320l-59 -28l-166 239l-262 -239z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="595" d="M4 1143q74 196 189 196q44 0 104 -26l41 -21q61 -26 84 -26q52 0 110 108l60 -22q-71 -203 -174 -203q-43 0 -121 37l-35 14q-70 25 -86 25q-31 0 -52 -22.5t-58 -84.5z" />
+<glyph unicode="&#x2000;" horiz-adv-x="927" />
+<glyph unicode="&#x2001;" horiz-adv-x="1855" />
+<glyph unicode="&#x2002;" horiz-adv-x="927" />
+<glyph unicode="&#x2003;" horiz-adv-x="1855" />
+<glyph unicode="&#x2004;" horiz-adv-x="618" />
+<glyph unicode="&#x2005;" horiz-adv-x="463" />
+<glyph unicode="&#x2006;" horiz-adv-x="309" />
+<glyph unicode="&#x2007;" horiz-adv-x="309" />
+<glyph unicode="&#x2008;" horiz-adv-x="231" />
+<glyph unicode="&#x2009;" horiz-adv-x="371" />
+<glyph unicode="&#x200a;" horiz-adv-x="103" />
+<glyph unicode="&#x2010;" horiz-adv-x="534" d="M55 440l25 117h409l-24 -117h-410z" />
+<glyph unicode="&#x2011;" horiz-adv-x="534" d="M55 440l25 117h409l-24 -117h-410z" />
+<glyph unicode="&#x2012;" horiz-adv-x="534" d="M55 440l25 117h409l-24 -117h-410z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1200" d="M80 444l22 109h992l-23 -109h-991z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1681" d="M80 444l22 109h1475l-25 -109h-1472z" />
+<glyph unicode="&#x2018;" horiz-adv-x="376" d="M182 1081q0 123 90.5 211t233.5 144l24 -54q-111 -51 -168 -108.5t-57 -104.5q0 -44 33 -61q20 -10 31.5 -17.5t21.5 -23t10 -35.5q0 -38 -26.5 -62t-71.5 -24q-54 0 -87.5 38t-33.5 97z" />
+<glyph unicode="&#x2019;" horiz-adv-x="376" d="M84 995q111 47 169 107.5t58 105.5q0 36 -39 56q-21 11 -30.5 17t-19 21.5t-9.5 36.5q0 39 27.5 65t72.5 26q52 0 85.5 -40t33.5 -98q0 -124 -90 -212.5t-231 -141.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="376" d="M-117 -246q111 47 169.5 107.5t58.5 105.5q0 36 -39 56q-21 11 -30.5 17t-19.5 21.5t-10 36.5q0 39 28 64.5t73 25.5q52 0 85 -39.5t33 -97.5q0 -124 -90 -212.5t-231 -141.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="716" d="M182 1081q0 123 90.5 211t233.5 144l24 -54q-111 -51 -168 -108.5t-57 -104.5q0 -44 33 -61q20 -10 31.5 -17.5t21.5 -23t10 -35.5q0 -38 -26.5 -62t-71.5 -24q-54 0 -87.5 38t-33.5 97zM504 1081q0 123 90 211t233 144l25 -54q-111 -51 -168 -108.5t-57 -104.5 q0 -44 32 -61q21 -10 32.5 -17.5t21.5 -23t10 -35.5q0 -38 -26.5 -62t-71.5 -24q-54 0 -87.5 38t-33.5 97z" />
+<glyph unicode="&#x201d;" horiz-adv-x="716" d="M84 995q111 47 169 107.5t58 105.5q0 36 -39 56q-21 11 -30.5 17t-19 21.5t-9.5 36.5q0 39 27.5 65t72.5 26q52 0 85.5 -40t33.5 -98q0 -124 -90 -212.5t-231 -141.5zM403 995q111 47 169.5 107.5t58.5 105.5q0 36 -39 56q-21 11 -30.5 17t-19.5 21.5t-10 36.5 q0 39 28 65t73 26q52 0 85.5 -40t33.5 -98q0 -64 -26 -121t-72.5 -100t-101.5 -75.5t-122 -57.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="716" d="M-117 -246q111 47 169.5 107.5t58.5 105.5q0 36 -39 56q-21 11 -30.5 17t-19.5 21.5t-10 36.5q0 39 28 64.5t73 25.5q52 0 85 -39.5t33 -97.5q0 -124 -90 -212.5t-231 -141.5zM203 -246q111 47 169 107.5t58 105.5q0 36 -39 56q-21 11 -30.5 17t-19 21.5t-9.5 36.5 q0 39 27.5 64.5t72.5 25.5q52 0 85.5 -39.5t33.5 -97.5q0 -64 -26 -121t-72.5 -100t-101.5 -75.5t-122 -57.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="675" d="M115 547q0 111 71.5 192.5t186.5 81.5q107 0 176 -67.5t69 -175.5q0 -116 -73.5 -196.5t-190.5 -80.5q-104 0 -171.5 67.5t-67.5 178.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1693" d="M100 80q0 45 30 77.5t79 32.5q43 0 72.5 -27.5t29.5 -72.5q0 -44 -31 -78.5t-77 -34.5q-43 0 -73 29t-30 74zM657 80q0 45 28.5 77.5t74.5 32.5q45 0 73.5 -27.5t28.5 -72.5t-29.5 -79t-76.5 -34q-42 0 -70.5 29t-28.5 74zM1210 80q0 45 29.5 77.5t77.5 32.5 q45 0 73.5 -27.5t28.5 -72.5t-29.5 -79t-76.5 -34q-43 0 -73 29t-30 74z" />
+<glyph unicode="&#x202f;" horiz-adv-x="371" />
+<glyph unicode="&#x2039;" horiz-adv-x="552" d="M74 455q0 36 49 77l387 310l45 -54l-344 -331l213 -344l-64 -43l-268 331q-18 22 -18 54z" />
+<glyph unicode="&#x203a;" horiz-adv-x="552" d="M-2 123l344 332l-213 344l66 43l266 -332q20 -24 20 -53q0 -36 -51 -78l-387 -309z" />
+<glyph unicode="&#x205f;" horiz-adv-x="463" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1384" d="M162 510l12 82h148q11 97 28 164h-149l12 82h160q70 217 217 358q182 176 442 176q150 0 260 -43q43 -17 61.5 -42t18.5 -66q0 -29 -9.5 -93.5t-21.5 -105.5h-73q-8 151 -33 182q-48 70 -227 70q-196 0 -344 -148q-113 -115 -168 -288h538l-12 -82h-549q-21 -83 -27 -164 h549l-12 -82h-541v-23q0 -210 96 -311.5t273 -101.5q104 0 175.5 21.5t105.5 51.5q51 44 100 158h78q-24 -127 -47 -180q-35 -76 -136 -113q-131 -43 -311 -43q-216 0 -337.5 131t-121.5 373v37h-155z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1484" d="M211 1225q4 72 10 106q2 13 4.5 21t8.5 16t18.5 12t30.5 4h440q47 0 47 -32q0 -33 -20 -127h-39q0 68 -19 84q-12 8 -37.5 10t-117.5 2l-82 -418q-6 -41 -6 -45q0 -10 6 -16t17.5 -8.5t21.5 -3.5t25 -1.5t22 -1.5l-11 -51q-37 2 -139 2q-96 0 -137 -2l10 51q67 2 84 15 q13 10 21 59l82 420q-95 0 -121.5 -2t-38.5 -10q-25 -20 -43 -84h-37zM729 776l10 51q63 3 75.5 12.5t23.5 61.5q1 3 1.5 5t1 5.5t1.5 6.5q18 83 34 159.5t24.5 117t12.5 56.5q9 37 9 49q0 6 -1.5 10.5t-4.5 8t-6.5 5.5t-9.5 3.5t-10.5 2.5t-12.5 1h-13h-14h-14l10 53 q61 -2 117 -2q54 0 79 2q89 -389 91 -401q13 22 251 401q33 -2 101 -2q47 0 94 2l-10 -53q-66 -2 -78 -14q-9 -9 -18 -47q-7 -20 -68 -357l-4 -24t-3 -18.5t-1 -10.5q0 -12 4.5 -17.5t19.5 -8.5q6 -1 64 -7l-10 -51q-41 2 -132 2q-76 0 -131 -2l13 51q58 4 71 17 q11 11 19 49q59 309 78 391q-6 -10 -34 -54.5t-83 -129.5t-139 -213q-13 -19 -33 -19q-24 0 -31 23q-70 280 -92 393q-8 -49 -38.5 -198t-35.5 -185q-4 -24 -4 -43q0 -7 3 -11.5t8.5 -8t11.5 -5.5t15.5 -3t16.5 -1.5t18 -1t17 -0.5l-10 -51q-37 2 -119 2q-90 0 -135 -2z" />
+<glyph unicode="&#xe000;" horiz-adv-x="952" d="M0 0v952h952v-952h-952z" />
+<hkern u1="&#x20;" u2="&#x201c;" k="4" />
+<hkern u1="&#x20;" u2="&#x2018;" k="4" />
+<hkern u1="&#x20;" u2="&#xef;" k="61" />
+<hkern u1="&#x20;" u2="&#xee;" k="61" />
+<hkern u1="&#x20;" u2="&#xed;" k="61" />
+<hkern u1="&#x20;" u2="&#xec;" k="61" />
+<hkern u1="&#x20;" u2="i" k="61" />
+<hkern u1="&#x21;" u2="&#x2026;" k="-51" />
+<hkern u1="&#x21;" u2="&#x7d;" k="-51" />
+<hkern u1="&#x21;" u2="]" k="-51" />
+<hkern u1="&#x21;" u2="&#x3a;" k="-41" />
+<hkern u1="&#x21;" u2="&#x2e;" k="-51" />
+<hkern u1="&#x21;" u2="&#x2c;" k="-51" />
+<hkern u1="&#x21;" u2="&#x29;" k="-51" />
+<hkern u1="&#x22;" g2="uniFB04" k="20" />
+<hkern u1="&#x22;" g2="uniFB03" k="20" />
+<hkern u1="&#x22;" g2="uniFB02" k="20" />
+<hkern u1="&#x22;" g2="uniFB01" k="20" />
+<hkern u1="&#x22;" u2="&#xdf;" k="20" />
+<hkern u1="&#x22;" u2="f" k="20" />
+<hkern u1="&#x22;" u2="&#x31;" k="184" />
+<hkern u1="&#x24;" u2="&#x33;" k="-41" />
+<hkern u1="&#x27;" u2="&#x31;" k="225" />
+<hkern u1="&#x28;" u2="W" k="-68" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="233" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="348" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="233" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="348" />
+<hkern u1="&#x2c;" u2="&#x38;" k="18" />
+<hkern u1="&#x2d;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2d;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="266" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="266" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="328" />
+<hkern u1="&#x2e;" u2="&#x2014;" k="41" />
+<hkern u1="&#x2e;" u2="&#x2013;" k="41" />
+<hkern u1="&#x2e;" u2="&#x38;" k="23" />
+<hkern u1="&#x2e;" u2="&#x2d;" k="41" />
+<hkern u1="&#x2f;" g2="uniFB04" k="41" />
+<hkern u1="&#x2f;" g2="uniFB03" k="41" />
+<hkern u1="&#x2f;" g2="uniFB02" k="41" />
+<hkern u1="&#x2f;" g2="uniFB01" k="41" />
+<hkern u1="&#x2f;" u2="&#x153;" k="119" />
+<hkern u1="&#x2f;" u2="&#xfe;" k="-29" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="119" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="119" />
+<hkern u1="&#x2f;" u2="&#xef;" k="61" />
+<hkern u1="&#x2f;" u2="&#xee;" k="61" />
+<hkern u1="&#x2f;" u2="&#xed;" k="61" />
+<hkern u1="&#x2f;" u2="&#xec;" k="61" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="119" />
+<hkern u1="&#x2f;" u2="&#xea;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="119" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="100" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="100" />
+<hkern u1="&#x2f;" u2="&#xdf;" k="41" />
+<hkern u1="&#x2f;" u2="&#xde;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd1;" k="18" />
+<hkern u1="&#x2f;" u2="&#xd0;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="18" />
+<hkern u1="&#x2f;" u2="&#xce;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcd;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcc;" k="18" />
+<hkern u1="&#x2f;" u2="&#xcb;" k="18" />
+<hkern u1="&#x2f;" u2="&#xca;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc9;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc8;" k="18" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="82" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="82" />
+<hkern u1="&#x2f;" u2="q" k="100" />
+<hkern u1="&#x2f;" u2="o" k="119" />
+<hkern u1="&#x2f;" u2="l" k="-29" />
+<hkern u1="&#x2f;" u2="k" k="-29" />
+<hkern u1="&#x2f;" u2="i" k="61" />
+<hkern u1="&#x2f;" u2="h" k="-29" />
+<hkern u1="&#x2f;" u2="f" k="41" />
+<hkern u1="&#x2f;" u2="e" k="119" />
+<hkern u1="&#x2f;" u2="d" k="119" />
+<hkern u1="&#x2f;" u2="c" k="119" />
+<hkern u1="&#x2f;" u2="b" k="-29" />
+<hkern u1="&#x2f;" u2="a" k="100" />
+<hkern u1="&#x2f;" u2="V" k="-25" />
+<hkern u1="&#x2f;" u2="R" k="18" />
+<hkern u1="&#x2f;" u2="P" k="18" />
+<hkern u1="&#x2f;" u2="N" k="18" />
+<hkern u1="&#x2f;" u2="M" k="18" />
+<hkern u1="&#x2f;" u2="L" k="18" />
+<hkern u1="&#x2f;" u2="K" k="18" />
+<hkern u1="&#x2f;" u2="I" k="18" />
+<hkern u1="&#x2f;" u2="H" k="18" />
+<hkern u1="&#x2f;" u2="F" k="18" />
+<hkern u1="&#x2f;" u2="E" k="18" />
+<hkern u1="&#x2f;" u2="D" k="18" />
+<hkern u1="&#x2f;" u2="B" k="18" />
+<hkern u1="&#x2f;" u2="A" k="82" />
+<hkern u1="&#x2f;" u2="&#x35;" k="23" />
+<hkern u1="&#x30;" u2="&#x153;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf6;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf5;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf4;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf3;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf2;" k="-61" />
+<hkern u1="&#x30;" u2="&#xf0;" k="-61" />
+<hkern u1="&#x30;" u2="&#xeb;" k="-61" />
+<hkern u1="&#x30;" u2="&#xea;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe9;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe8;" k="-61" />
+<hkern u1="&#x30;" u2="&#xe7;" k="-61" />
+<hkern u1="&#x30;" u2="o" k="-61" />
+<hkern u1="&#x30;" u2="e" k="-61" />
+<hkern u1="&#x30;" u2="d" k="-61" />
+<hkern u1="&#x30;" u2="c" k="-61" />
+<hkern u1="&#x30;" u2="&#x3a;" k="-102" />
+<hkern u1="&#x30;" u2="&#x25;" k="-76" />
+<hkern u1="&#x31;" u2="&#x2026;" k="143" />
+<hkern u1="&#x31;" u2="&#x2f;" k="102" />
+<hkern u1="&#x31;" u2="&#x2e;" k="143" />
+<hkern u1="&#x31;" u2="&#x2c;" k="143" />
+<hkern u1="&#x31;" u2="&#x27;" k="287" />
+<hkern u1="&#x31;" u2="&#x22;" k="287" />
+<hkern u1="&#x32;" u2="&#x2026;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2e;" k="-102" />
+<hkern u1="&#x32;" u2="&#x2c;" k="-102" />
+<hkern u1="&#x33;" g2="uniFB04" k="-78" />
+<hkern u1="&#x33;" g2="uniFB03" k="-78" />
+<hkern u1="&#x33;" g2="uniFB02" k="-78" />
+<hkern u1="&#x33;" g2="uniFB01" k="-78" />
+<hkern u1="&#x33;" u2="&#xdf;" k="-78" />
+<hkern u1="&#x33;" u2="f" k="-78" />
+<hkern u1="&#x34;" u2="&#xf1;" k="-102" />
+<hkern u1="&#x34;" u2="r" k="-102" />
+<hkern u1="&#x34;" u2="p" k="-102" />
+<hkern u1="&#x34;" u2="n" k="-102" />
+<hkern u1="&#x34;" u2="m" k="-102" />
+<hkern u1="&#x35;" u2="&#x2014;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2013;" k="-102" />
+<hkern u1="&#x35;" u2="&#x2d;" k="-102" />
+<hkern u1="&#x37;" u2="&#x2026;" k="229" />
+<hkern u1="&#x37;" u2="&#x2e;" k="229" />
+<hkern u1="&#x37;" u2="&#x2c;" k="229" />
+<hkern u1="&#x38;" u2="&#x2026;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2014;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2013;" k="-61" />
+<hkern u1="&#x38;" u2="&#x3a;" k="-14" />
+<hkern u1="&#x38;" u2="&#x2e;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2d;" k="-61" />
+<hkern u1="&#x38;" u2="&#x2c;" k="-61" />
+<hkern u1="&#x3a;" u2="&#x31;" k="123" />
+<hkern u1="&#x3f;" u2="&#x2026;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2e;" k="61" />
+<hkern u1="&#x3f;" u2="&#x2c;" k="61" />
+<hkern u1="&#x3f;" u2="&#x20;" k="2" />
+<hkern u1="A" u2="b" k="80" />
+<hkern u1="A" u2="W" k="137" />
+<hkern u1="A" u2="&#x2f;" k="-80" />
+<hkern u1="A" u2="&#x21;" k="82" />
+<hkern u1="B" u2="&#xd0;" k="-20" />
+<hkern u1="B" u2="W" k="29" />
+<hkern u1="C" u2="&#xee;" k="31" />
+<hkern u1="C" u2="W" k="80" />
+<hkern u1="D" u2="&#xd0;" k="-25" />
+<hkern u1="D" u2="W" k="57" />
+<hkern u1="E" u2="W" k="66" />
+<hkern u1="F" u2="&#x2026;" k="154" />
+<hkern u1="F" u2="&#x178;" k="43" />
+<hkern u1="F" u2="&#x153;" k="80" />
+<hkern u1="F" u2="&#xff;" k="98" />
+<hkern u1="F" u2="&#xfe;" k="25" />
+<hkern u1="F" u2="&#xfd;" k="98" />
+<hkern u1="F" u2="&#xfc;" k="109" />
+<hkern u1="F" u2="&#xfb;" k="109" />
+<hkern u1="F" u2="&#xfa;" k="109" />
+<hkern u1="F" u2="&#xf9;" k="109" />
+<hkern u1="F" u2="&#xf8;" k="80" />
+<hkern u1="F" u2="&#xf6;" k="80" />
+<hkern u1="F" u2="&#xf5;" k="80" />
+<hkern u1="F" u2="&#xf4;" k="80" />
+<hkern u1="F" u2="&#xf3;" k="80" />
+<hkern u1="F" u2="&#xf2;" k="80" />
+<hkern u1="F" u2="&#xf1;" k="80" />
+<hkern u1="F" u2="&#xf0;" k="80" />
+<hkern u1="F" u2="&#xef;" k="2" />
+<hkern u1="F" u2="&#xee;" k="10" />
+<hkern u1="F" u2="&#xed;" k="53" />
+<hkern u1="F" u2="&#xec;" k="-12" />
+<hkern u1="F" u2="&#xeb;" k="80" />
+<hkern u1="F" u2="&#xea;" k="80" />
+<hkern u1="F" u2="&#xe9;" k="80" />
+<hkern u1="F" u2="&#xe8;" k="80" />
+<hkern u1="F" u2="&#xe7;" k="80" />
+<hkern u1="F" u2="&#xe6;" k="102" />
+<hkern u1="F" u2="&#xe5;" k="102" />
+<hkern u1="F" u2="&#xe4;" k="102" />
+<hkern u1="F" u2="&#xe3;" k="102" />
+<hkern u1="F" u2="&#xe2;" k="102" />
+<hkern u1="F" u2="&#xe1;" k="102" />
+<hkern u1="F" u2="&#xe0;" k="102" />
+<hkern u1="F" u2="&#xdd;" k="43" />
+<hkern u1="F" u2="&#xc6;" k="225" />
+<hkern u1="F" u2="&#xc5;" k="76" />
+<hkern u1="F" u2="&#xc4;" k="76" />
+<hkern u1="F" u2="&#xc3;" k="76" />
+<hkern u1="F" u2="&#xc2;" k="76" />
+<hkern u1="F" u2="&#xc1;" k="76" />
+<hkern u1="F" u2="&#xc0;" k="76" />
+<hkern u1="F" u2="z" k="102" />
+<hkern u1="F" u2="y" k="98" />
+<hkern u1="F" u2="x" k="125" />
+<hkern u1="F" u2="w" k="94" />
+<hkern u1="F" u2="v" k="98" />
+<hkern u1="F" u2="u" k="109" />
+<hkern u1="F" u2="t" k="63" />
+<hkern u1="F" u2="s" k="102" />
+<hkern u1="F" u2="r" k="80" />
+<hkern u1="F" u2="q" k="102" />
+<hkern u1="F" u2="p" k="80" />
+<hkern u1="F" u2="o" k="80" />
+<hkern u1="F" u2="n" k="80" />
+<hkern u1="F" u2="m" k="80" />
+<hkern u1="F" u2="l" k="25" />
+<hkern u1="F" u2="k" k="25" />
+<hkern u1="F" u2="j" k="23" />
+<hkern u1="F" u2="i" k="53" />
+<hkern u1="F" u2="h" k="25" />
+<hkern u1="F" u2="g" k="102" />
+<hkern u1="F" u2="e" k="80" />
+<hkern u1="F" u2="d" k="80" />
+<hkern u1="F" u2="c" k="80" />
+<hkern u1="F" u2="b" k="25" />
+<hkern u1="F" u2="a" k="102" />
+<hkern u1="F" u2="Y" k="43" />
+<hkern u1="F" u2="X" k="68" />
+<hkern u1="F" u2="J" k="20" />
+<hkern u1="F" u2="A" k="76" />
+<hkern u1="F" u2="&#x2f;" k="61" />
+<hkern u1="F" u2="&#x2e;" k="154" />
+<hkern u1="F" u2="&#x2c;" k="154" />
+<hkern u1="G" u2="&#xd0;" k="-27" />
+<hkern u1="G" u2="W" k="53" />
+<hkern u1="H" u2="&#xef;" k="-6" />
+<hkern u1="H" u2="&#xec;" k="-8" />
+<hkern u1="H" u2="&#xd0;" k="-20" />
+<hkern u1="H" u2="&#x2f;" k="-20" />
+<hkern u1="I" u2="&#xef;" k="-6" />
+<hkern u1="I" u2="&#xec;" k="-33" />
+<hkern u1="I" u2="&#xd0;" k="-20" />
+<hkern u1="I" u2="&#x2f;" k="-20" />
+<hkern u1="J" u2="&#xef;" k="-12" />
+<hkern u1="J" u2="&#xec;" k="-74" />
+<hkern u1="J" u2="&#xd0;" k="-27" />
+<hkern u1="K" u2="&#xef;" k="18" />
+<hkern u1="K" u2="&#xec;" k="-45" />
+<hkern u1="K" u2="b" k="45" />
+<hkern u1="K" u2="W" k="76" />
+<hkern u1="L" u2="W" k="193" />
+<hkern u1="M" u2="&#xd0;" k="-27" />
+<hkern u1="N" u2="&#xef;" k="-66" />
+<hkern u1="N" u2="&#xec;" k="-66" />
+<hkern u1="N" u2="&#xd0;" k="-20" />
+<hkern u1="N" u2="&#x2f;" k="-20" />
+<hkern u1="O" u2="&#xd0;" k="-25" />
+<hkern u1="O" u2="W" k="57" />
+<hkern u1="P" u2="&#xd0;" k="-20" />
+<hkern u1="P" u2="W" k="66" />
+<hkern u1="Q" u2="&#xd0;" k="-35" />
+<hkern u1="Q" u2="W" k="57" />
+<hkern u1="Q" u2="J" k="-246" />
+<hkern u1="Q" u2="&#x2c;" k="-184" />
+<hkern u1="R" u2="W" k="104" />
+<hkern u1="S" u2="W" k="74" />
+<hkern u1="T" u2="&#x2019;" k="-61" />
+<hkern u1="T" u2="&#xef;" k="2" />
+<hkern u1="T" u2="&#xee;" k="-4" />
+<hkern u1="T" u2="&#xec;" k="20" />
+<hkern u1="T" u2="&#x3f;" k="-25" />
+<hkern u1="T" u2="&#x3b;" k="76" />
+<hkern u1="T" u2="&#x3a;" k="104" />
+<hkern u1="T" u2="&#x21;" k="-8" />
+<hkern u1="U" u2="&#xef;" k="-12" />
+<hkern u1="U" u2="&#xec;" k="-74" />
+<hkern u1="U" u2="&#xd0;" k="-27" />
+<hkern u1="V" u2="&#xf6;" k="129" />
+<hkern u1="V" u2="&#xef;" k="-82" />
+<hkern u1="V" u2="&#xee;" k="27" />
+<hkern u1="V" u2="&#xec;" k="-78" />
+<hkern u1="V" u2="&#xe8;" k="109" />
+<hkern u1="V" u2="&#x3b;" k="102" />
+<hkern u1="V" u2="&#x3a;" k="88" />
+<hkern u1="W" u2="&#x201d;" k="-43" />
+<hkern u1="W" u2="&#x2019;" k="-49" />
+<hkern u1="W" u2="&#xff;" k="109" />
+<hkern u1="W" u2="&#xfd;" k="109" />
+<hkern u1="W" u2="&#xf6;" k="129" />
+<hkern u1="W" u2="&#xef;" k="-82" />
+<hkern u1="W" u2="&#xee;" k="27" />
+<hkern u1="W" u2="&#xed;" k="70" />
+<hkern u1="W" u2="&#xec;" k="-78" />
+<hkern u1="W" u2="&#xe8;" k="109" />
+<hkern u1="W" u2="y" k="109" />
+<hkern u1="W" u2="x" k="176" />
+<hkern u1="W" u2="w" k="152" />
+<hkern u1="W" u2="v" k="158" />
+<hkern u1="W" u2="t" k="102" />
+<hkern u1="W" u2="s" k="168" />
+<hkern u1="W" u2="j" k="66" />
+<hkern u1="W" u2="&#x3b;" k="102" />
+<hkern u1="W" u2="&#x3a;" k="88" />
+<hkern u1="X" u2="&#xef;" k="4" />
+<hkern u1="X" u2="&#xec;" k="-31" />
+<hkern u1="Y" u2="&#xef;" k="-80" />
+<hkern u1="Y" u2="&#xee;" k="-18" />
+<hkern u1="Y" u2="&#xed;" k="66" />
+<hkern u1="Y" u2="&#xec;" k="-109" />
+<hkern u1="Y" u2="&#xe8;" k="115" />
+<hkern u1="Y" u2="W" k="27" />
+<hkern u1="Y" u2="&#x3b;" k="133" />
+<hkern u1="Y" u2="&#x3a;" k="123" />
+<hkern u1="Y" u2="&#x30;" k="-4" />
+<hkern u1="Y" u2="&#x21;" k="61" />
+<hkern u1="Z" u2="&#xef;" k="35" />
+<hkern u1="Z" u2="&#xec;" k="12" />
+<hkern u1="Z" u2="&#xd0;" k="-20" />
+<hkern u1="Z" u2="W" k="78" />
+<hkern u1="[" u2="W" k="-68" />
+<hkern u1="a" u2="&#x3f;" k="27" />
+<hkern u1="a" u2="&#x3b;" k="-16" />
+<hkern u1="a" u2="&#x2f;" k="-70" />
+<hkern u1="c" u2="&#x2019;" k="-20" />
+<hkern u1="c" u2="k" k="39" />
+<hkern u1="e" u2="&#x3a;" k="-20" />
+<hkern u1="f" u2="&#x2019;" k="-190" />
+<hkern u1="f" u2="&#xf2;" k="-14" />
+<hkern u1="f" u2="&#xf1;" k="-2" />
+<hkern u1="f" u2="&#xef;" k="-193" />
+<hkern u1="f" u2="&#xee;" k="-152" />
+<hkern u1="f" u2="&#xed;" k="-25" />
+<hkern u1="f" u2="&#xec;" k="-223" />
+<hkern u1="f" u2="&#xe8;" k="-25" />
+<hkern u1="f" u2="b" k="-121" />
+<hkern u1="f" u2="W" k="-205" />
+<hkern u1="f" u2="&#x3f;" k="-199" />
+<hkern u1="f" u2="&#x3a;" k="-6" />
+<hkern u1="f" u2="&#x2f;" k="-20" />
+<hkern u1="f" u2="&#x2a;" k="-184" />
+<hkern u1="f" u2="&#x27;" k="-221" />
+<hkern u1="f" u2="&#x22;" k="-205" />
+<hkern u1="f" u2="&#x21;" k="-94" />
+<hkern u1="g" u2="y" k="16" />
+<hkern u1="g" u2="&#x3b;" k="-23" />
+<hkern u1="g" u2="&#x2c;" k="-96" />
+<hkern u1="h" u2="&#x3f;" k="27" />
+<hkern u1="h" u2="&#x3b;" k="-16" />
+<hkern u1="h" u2="&#x2f;" k="-70" />
+<hkern u1="i" u2="q" k="-14" />
+<hkern u1="k" u2="e" k="10" />
+<hkern u1="k" u2="&#x3a;" k="-23" />
+<hkern u1="l" u2="&#x2f;" k="-47" />
+<hkern u1="m" u2="&#x3f;" k="27" />
+<hkern u1="m" u2="&#x3b;" k="-16" />
+<hkern u1="m" u2="&#x2f;" k="-70" />
+<hkern u1="n" u2="&#x3f;" k="27" />
+<hkern u1="n" u2="&#x3b;" k="-16" />
+<hkern u1="n" u2="&#x2f;" k="-70" />
+<hkern u1="q" u2="&#x2026;" k="72" />
+<hkern u1="q" u2="&#xff;" k="14" />
+<hkern u1="q" u2="&#xfd;" k="14" />
+<hkern u1="q" u2="&#xfc;" k="10" />
+<hkern u1="q" u2="&#xfb;" k="10" />
+<hkern u1="q" u2="&#xfa;" k="10" />
+<hkern u1="q" u2="&#xf9;" k="10" />
+<hkern u1="q" u2="&#xf1;" k="6" />
+<hkern u1="q" u2="&#x7d;" k="-8" />
+<hkern u1="q" u2="y" k="14" />
+<hkern u1="q" u2="x" k="35" />
+<hkern u1="q" u2="w" k="14" />
+<hkern u1="q" u2="v" k="14" />
+<hkern u1="q" u2="u" k="10" />
+<hkern u1="q" u2="r" k="6" />
+<hkern u1="q" u2="p" k="6" />
+<hkern u1="q" u2="n" k="6" />
+<hkern u1="q" u2="m" k="6" />
+<hkern u1="q" u2="j" k="-117" />
+<hkern u1="q" u2="]" k="-8" />
+<hkern u1="q" u2="&#x2e;" k="72" />
+<hkern u1="q" u2="&#x2c;" k="72" />
+<hkern u1="q" u2="&#x29;" k="-8" />
+<hkern u1="r" u2="&#x2019;" k="-27" />
+<hkern u1="r" u2="&#x3b;" k="-14" />
+<hkern u1="t" u2="&#x3a;" k="-16" />
+<hkern u1="v" u2="&#x3b;" k="6" />
+<hkern u1="v" u2="&#x3a;" k="6" />
+<hkern u1="w" u2="&#x2019;" k="41" />
+<hkern u1="w" u2="&#x3b;" k="10" />
+<hkern u1="w" u2="&#x3a;" k="10" />
+<hkern u1="x" u2="&#x2026;" k="-61" />
+<hkern u1="x" u2="&#x153;" k="8" />
+<hkern u1="x" u2="&#xf8;" k="8" />
+<hkern u1="x" u2="&#xf6;" k="8" />
+<hkern u1="x" u2="&#xf5;" k="8" />
+<hkern u1="x" u2="&#xf4;" k="8" />
+<hkern u1="x" u2="&#xf3;" k="8" />
+<hkern u1="x" u2="&#xf2;" k="8" />
+<hkern u1="x" u2="&#xf0;" k="8" />
+<hkern u1="x" u2="&#xeb;" k="8" />
+<hkern u1="x" u2="&#xea;" k="8" />
+<hkern u1="x" u2="&#xe9;" k="8" />
+<hkern u1="x" u2="&#xe8;" k="8" />
+<hkern u1="x" u2="&#xe7;" k="8" />
+<hkern u1="x" u2="&#xe6;" k="2" />
+<hkern u1="x" u2="&#xe5;" k="2" />
+<hkern u1="x" u2="&#xe4;" k="2" />
+<hkern u1="x" u2="&#xe3;" k="2" />
+<hkern u1="x" u2="&#xe2;" k="2" />
+<hkern u1="x" u2="&#xe1;" k="2" />
+<hkern u1="x" u2="&#xe0;" k="2" />
+<hkern u1="x" u2="q" k="2" />
+<hkern u1="x" u2="o" k="8" />
+<hkern u1="x" u2="g" k="74" />
+<hkern u1="x" u2="e" k="8" />
+<hkern u1="x" u2="d" k="8" />
+<hkern u1="x" u2="c" k="8" />
+<hkern u1="x" u2="a" k="2" />
+<hkern u1="x" u2="&#x2e;" k="-61" />
+<hkern u1="x" u2="&#x2c;" k="-61" />
+<hkern u1="y" u2="&#xef;" k="16" />
+<hkern u1="y" u2="&#xee;" k="16" />
+<hkern u1="y" u2="&#xed;" k="16" />
+<hkern u1="y" u2="&#xec;" k="16" />
+<hkern u1="y" u2="i" k="16" />
+<hkern u1="y" u2="&#x3b;" k="6" />
+<hkern u1="y" u2="&#x3a;" k="6" />
+<hkern u1="&#x7b;" u2="W" k="-68" />
+<hkern u1="&#xa1;" u2="&#x178;" k="270" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="270" />
+<hkern u1="&#xa1;" u2="&#xc5;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc4;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc3;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc2;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc1;" k="61" />
+<hkern u1="&#xa1;" u2="&#xc0;" k="61" />
+<hkern u1="&#xa1;" u2="Y" k="270" />
+<hkern u1="&#xa1;" u2="W" k="102" />
+<hkern u1="&#xa1;" u2="V" k="160" />
+<hkern u1="&#xa1;" u2="T" k="170" />
+<hkern u1="&#xa1;" u2="A" k="61" />
+<hkern u1="&#xa3;" u2="&#x35;" k="-25" />
+<hkern u1="&#xa7;" u2="&#x34;" k="-45" />
+<hkern u1="&#xa7;" u2="&#x32;" k="-72" />
+<hkern u1="&#xab;" u2="W" k="61" />
+<hkern u1="&#xbb;" u2="W" k="123" />
+<hkern u1="&#xbf;" u2="T" k="143" />
+<hkern u1="&#xbf;" u2="S" k="27" />
+<hkern u1="&#xc0;" u2="b" k="80" />
+<hkern u1="&#xc0;" u2="W" k="137" />
+<hkern u1="&#xc0;" u2="&#x2f;" k="-80" />
+<hkern u1="&#xc0;" u2="&#x21;" k="82" />
+<hkern u1="&#xc1;" u2="b" k="80" />
+<hkern u1="&#xc1;" u2="W" k="137" />
+<hkern u1="&#xc1;" u2="&#x2f;" k="-80" />
+<hkern u1="&#xc1;" u2="&#x21;" k="82" />
+<hkern u1="&#xc2;" u2="b" k="80" />
+<hkern u1="&#xc2;" u2="W" k="137" />
+<hkern u1="&#xc2;" u2="&#x2f;" k="-80" />
+<hkern u1="&#xc2;" u2="&#x21;" k="82" />
+<hkern u1="&#xc3;" u2="b" k="80" />
+<hkern u1="&#xc3;" u2="W" k="137" />
+<hkern u1="&#xc3;" u2="&#x2f;" k="-80" />
+<hkern u1="&#xc3;" u2="&#x21;" k="82" />
+<hkern u1="&#xc4;" u2="b" k="80" />
+<hkern u1="&#xc4;" u2="W" k="137" />
+<hkern u1="&#xc4;" u2="&#x2f;" k="-80" />
+<hkern u1="&#xc4;" u2="&#x21;" k="82" />
+<hkern u1="&#xc5;" u2="b" k="80" />
+<hkern u1="&#xc5;" u2="W" k="137" />
+<hkern u1="&#xc5;" u2="&#x2f;" k="-80" />
+<hkern u1="&#xc5;" u2="&#x21;" k="82" />
+<hkern u1="&#xc6;" u2="W" k="66" />
+<hkern u1="&#xc7;" u2="&#xee;" k="31" />
+<hkern u1="&#xc7;" u2="W" k="80" />
+<hkern u1="&#xc8;" u2="W" k="66" />
+<hkern u1="&#xc9;" u2="W" k="66" />
+<hkern u1="&#xca;" u2="W" k="66" />
+<hkern u1="&#xcb;" u2="W" k="66" />
+<hkern u1="&#xcc;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcc;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcc;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcc;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcd;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcd;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcd;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcd;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xce;" u2="&#xef;" k="-6" />
+<hkern u1="&#xce;" u2="&#xec;" k="-8" />
+<hkern u1="&#xce;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xce;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xcf;" u2="&#xef;" k="-6" />
+<hkern u1="&#xcf;" u2="&#xec;" k="-8" />
+<hkern u1="&#xcf;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xcf;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd0;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd0;" u2="W" k="57" />
+<hkern u1="&#xd1;" u2="&#xef;" k="-6" />
+<hkern u1="&#xd1;" u2="&#xec;" k="-8" />
+<hkern u1="&#xd1;" u2="&#xd0;" k="-20" />
+<hkern u1="&#xd1;" u2="&#x2f;" k="-20" />
+<hkern u1="&#xd2;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd2;" u2="W" k="57" />
+<hkern u1="&#xd3;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd3;" u2="W" k="57" />
+<hkern u1="&#xd4;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd4;" u2="W" k="57" />
+<hkern u1="&#xd5;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd5;" u2="W" k="57" />
+<hkern u1="&#xd6;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd6;" u2="W" k="57" />
+<hkern u1="&#xd8;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xd8;" u2="W" k="57" />
+<hkern u1="&#xd9;" u2="&#xef;" k="-12" />
+<hkern u1="&#xd9;" u2="&#xec;" k="-74" />
+<hkern u1="&#xd9;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xda;" u2="&#xef;" k="-12" />
+<hkern u1="&#xda;" u2="&#xec;" k="-74" />
+<hkern u1="&#xda;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdb;" u2="&#xef;" k="-12" />
+<hkern u1="&#xdb;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdb;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdc;" u2="&#xef;" k="-12" />
+<hkern u1="&#xdc;" u2="&#xec;" k="-74" />
+<hkern u1="&#xdc;" u2="&#xd0;" k="-27" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-80" />
+<hkern u1="&#xdd;" u2="&#xee;" k="-18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="66" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-109" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="115" />
+<hkern u1="&#xdd;" u2="W" k="27" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="133" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="123" />
+<hkern u1="&#xdd;" u2="&#x30;" k="-4" />
+<hkern u1="&#xdd;" u2="&#x21;" k="61" />
+<hkern u1="&#xde;" u2="&#xd0;" k="-25" />
+<hkern u1="&#xde;" u2="W" k="57" />
+<hkern u1="&#xdf;" u2="&#x2026;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="-61" />
+<hkern u1="&#xdf;" u2="&#x2e;" k="-41" />
+<hkern u1="&#xdf;" u2="&#x2c;" k="-41" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe0;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe0;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe2;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe2;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe3;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe3;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe4;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe4;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="27" />
+<hkern u1="&#xe5;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xe5;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xe6;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe7;" u2="&#x2019;" k="-20" />
+<hkern u1="&#xe7;" u2="k" k="39" />
+<hkern u1="&#xe8;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xe9;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xea;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xeb;" u2="&#x3a;" k="-20" />
+<hkern u1="&#xec;" u2="q" k="-14" />
+<hkern u1="&#xed;" u2="q" k="-14" />
+<hkern u1="&#xee;" u2="q" k="-14" />
+<hkern u1="&#xef;" u2="q" k="-14" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="27" />
+<hkern u1="&#xf1;" u2="&#x3b;" k="-16" />
+<hkern u1="&#xf1;" u2="&#x2f;" k="-70" />
+<hkern u1="&#xfd;" u2="&#x3b;" k="6" />
+<hkern u1="&#xfd;" u2="&#x3a;" k="6" />
+<hkern u1="&#xff;" u2="&#x3b;" k="6" />
+<hkern u1="&#xff;" u2="&#x3a;" k="6" />
+<hkern u1="&#x152;" u2="W" k="66" />
+<hkern u1="&#x153;" u2="&#x3a;" k="-20" />
+<hkern u1="&#x178;" u2="&#xef;" k="-80" />
+<hkern u1="&#x178;" u2="&#xee;" k="-18" />
+<hkern u1="&#x178;" u2="&#xed;" k="66" />
+<hkern u1="&#x178;" u2="&#xec;" k="-109" />
+<hkern u1="&#x178;" u2="&#xe8;" k="115" />
+<hkern u1="&#x178;" u2="W" k="27" />
+<hkern u1="&#x178;" u2="&#x3b;" k="133" />
+<hkern u1="&#x178;" u2="&#x3a;" k="123" />
+<hkern u1="&#x178;" u2="&#x30;" k="-4" />
+<hkern u1="&#x178;" u2="&#x21;" k="61" />
+<hkern u1="&#x2013;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2013;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2014;" u2="&#x38;" k="-41" />
+<hkern u1="&#x2014;" u2="&#x36;" k="-164" />
+<hkern u1="&#x2018;" u2="d" k="143" />
+<hkern u1="&#x2018;" u2="c" k="143" />
+<hkern u1="&#x2018;" u2="X" k="20" />
+<hkern u1="&#x2018;" u2="W" k="-49" />
+<hkern u1="&#x2018;" u2="J" k="-31" />
+<hkern u1="&#x2019;" u2="&#x20;" k="-29" />
+<hkern u1="&#x201a;" u2="W" k="246" />
+<hkern u1="&#x201c;" u2="d" k="143" />
+<hkern u1="&#x201c;" u2="W" k="-49" />
+<hkern u1="&#x201e;" u2="W" k="246" />
+<hkern u1="&#x2039;" u2="W" k="61" />
+<hkern u1="&#x203a;" u2="W" k="123" />
+<hkern u1="&#x20ac;" u2="&#x36;" k="-59" />
+<hkern g1="uniFB01" u2="q" k="-14" />
+<hkern g1="uniFB02" u2="&#x2f;" k="-47" />
+<hkern g1="uniFB03" u2="q" k="-14" />
+<hkern g1="uniFB04" u2="&#x2f;" k="-47" />
+<hkern g1="d" 	g2="v,y,yacute,ydieresis" 	k="6" />
+<hkern g1="d" 	g2="w" 	k="18" />
+<hkern g1="d" 	g2="comma,period,ellipsis" 	k="-45" />
+<hkern g1="d" 	g2="quoteright,quotedblright" 	k="41" />
+<hkern g1="d" 	g2="parenright,bracketright,braceright" 	k="-53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="x" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="g" 	k="25" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,ellipsis" 	k="-6" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="102" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="86" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="z" 	k="16" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="t" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="guillemotright,guilsinglright" 	k="-104" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="f" 	g2="b,h,k,l,thorn" 	k="-96" />
+<hkern g1="f" 	g2="x" 	k="37" />
+<hkern g1="f" 	g2="g" 	k="27" />
+<hkern g1="f" 	g2="comma,period,ellipsis" 	k="20" />
+<hkern g1="f" 	g2="quoteleft,quotedblleft" 	k="-211" />
+<hkern g1="f" 	g2="quoteright,quotedblright" 	k="-201" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-221" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-178" />
+<hkern g1="f" 	g2="z" 	k="20" />
+<hkern g1="f" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-59" />
+<hkern g1="f" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-102" />
+<hkern g1="f" 	g2="T" 	k="-186" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-184" />
+<hkern g1="f" 	g2="V" 	k="-207" />
+<hkern g1="f" 	g2="X" 	k="-147" />
+<hkern g1="f" 	g2="Z" 	k="-145" />
+<hkern g1="f" 	g2="j" 	k="-59" />
+<hkern g1="f" 	g2="s" 	k="4" />
+<hkern g1="f" 	g2="m,n,p,r,ntilde" 	k="-10" />
+<hkern g1="g" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="g" 	g2="w" 	k="-8" />
+<hkern g1="g" 	g2="x" 	k="12" />
+<hkern g1="g" 	g2="g" 	k="-8" />
+<hkern g1="g" 	g2="comma,period,ellipsis" 	k="12" />
+<hkern g1="g" 	g2="quoteleft,quotedblleft" 	k="2" />
+<hkern g1="g" 	g2="quoteright,quotedblright" 	k="-63" />
+<hkern g1="g" 	g2="parenright,bracketright,braceright" 	k="-139" />
+<hkern g1="g" 	g2="j" 	k="-53" />
+<hkern g1="g" 	g2="s" 	k="35" />
+<hkern g1="g" 	g2="m,n,p,r,ntilde" 	k="-4" />
+<hkern g1="g" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-66" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="comma,period,ellipsis" 	k="-68" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="z" 	k="6" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="s" 	k="4" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="i,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-14" />
+<hkern g1="k" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="k" 	g2="w" 	k="8" />
+<hkern g1="k" 	g2="g" 	k="23" />
+<hkern g1="k" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="k" 	g2="t" 	k="16" />
+<hkern g1="k" 	g2="j" 	k="14" />
+<hkern g1="k" 	g2="s" 	k="8" />
+<hkern g1="k" 	g2="m,n,p,r,ntilde" 	k="10" />
+<hkern g1="k" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="k" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="g" 	k="12" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="quoteright,quotedblright" 	k="-2" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="parenright,bracketright,braceright" 	k="-49" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotright,guilsinglright" 	k="-76" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-8" />
+<hkern g1="l,uniFB02,uniFB04" 	g2="guillemotleft,guilsinglleft" 	k="-143" />
+<hkern g1="j" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="j" 	g2="w" 	k="8" />
+<hkern g1="j" 	g2="x" 	k="25" />
+<hkern g1="j" 	g2="comma,period,ellipsis" 	k="43" />
+<hkern g1="j" 	g2="s" 	k="14" />
+<hkern g1="j" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="w" 	k="12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="x" 	k="4" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="comma,period,ellipsis" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quoteright,quotedblright" 	k="66" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotright,guilsinglright" 	k="-106" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="s" 	k="18" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="guillemotleft,guilsinglleft" 	k="-102" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="25" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,ellipsis" 	k="49" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteleft,quotedblleft" 	k="158" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quoteright,quotedblright" 	k="63" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="z" 	k="31" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-6" />
+<hkern g1="r" 	g2="b,h,k,l,thorn" 	k="72" />
+<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="33" />
+<hkern g1="r" 	g2="w" 	k="29" />
+<hkern g1="r" 	g2="x" 	k="66" />
+<hkern g1="r" 	g2="g" 	k="92" />
+<hkern g1="r" 	g2="comma,period,ellipsis" 	k="156" />
+<hkern g1="r" 	g2="quoteright,quotedblright" 	k="-41" />
+<hkern g1="r" 	g2="t" 	k="20" />
+<hkern g1="r" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="r" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="35" />
+<hkern g1="r" 	g2="j" 	k="43" />
+<hkern g1="r" 	g2="s" 	k="18" />
+<hkern g1="r" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="r" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="33" />
+<hkern g1="r" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="61" />
+<hkern g1="r" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
+<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="s" 	g2="b,h,k,l,thorn" 	k="27" />
+<hkern g1="s" 	g2="v,y,yacute,ydieresis" 	k="16" />
+<hkern g1="s" 	g2="comma,period,ellipsis" 	k="-20" />
+<hkern g1="s" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="s" 	g2="z" 	k="14" />
+<hkern g1="s" 	g2="guillemotright,guilsinglright" 	k="-86" />
+<hkern g1="s" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="6" />
+<hkern g1="s" 	g2="m,n,p,r,ntilde" 	k="-2" />
+<hkern g1="s" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="s" 	g2="guillemotleft,guilsinglleft" 	k="-41" />
+<hkern g1="t" 	g2="g" 	k="16" />
+<hkern g1="t" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="t" 	g2="guillemotright,guilsinglright" 	k="-82" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="v,y,yacute,ydieresis" 	k="6" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="quoteleft,quotedblleft" 	k="123" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="b,h,k,l,thorn" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="x" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="g" 	k="53" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,ellipsis" 	k="76" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteleft,quotedblleft" 	k="137" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="quoteright,quotedblright" 	k="72" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="z" 	k="10" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="s" 	k="33" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-25" />
+<hkern g1="v,y,yacute,ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
+<hkern g1="w" 	g2="b,h,k,l,thorn" 	k="12" />
+<hkern g1="w" 	g2="v,y,yacute,ydieresis" 	k="4" />
+<hkern g1="w" 	g2="w" 	k="6" />
+<hkern g1="w" 	g2="g" 	k="35" />
+<hkern g1="w" 	g2="comma,period,ellipsis" 	k="94" />
+<hkern g1="w" 	g2="quoteleft,quotedblleft" 	k="127" />
+<hkern g1="w" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="20" />
+<hkern g1="w" 	g2="s" 	k="12" />
+<hkern g1="z" 	g2="b,h,k,l,thorn" 	k="4" />
+<hkern g1="z" 	g2="g" 	k="12" />
+<hkern g1="z" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="z" 	g2="t" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="b,h,k,l,thorn" 	k="78" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v,y,yacute,ydieresis" 	k="86" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="47" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="x" 	k="20" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="g" 	k="68" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="comma,period,ellipsis" 	k="-51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="238" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="244" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="213" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotright,guilsinglright" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="39" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="18" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="168" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="70" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="145" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="X" 	k="25" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Z" 	k="66" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="s" 	k="63" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="m,n,p,r,ntilde" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="61" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="J" 	k="-4" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="S" 	k="51" />
+<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotesinglbase,quotedblbase" 	k="-61" />
+<hkern g1="B" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="B" 	g2="x" 	k="41" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="150" />
+<hkern g1="B" 	g2="z" 	k="47" />
+<hkern g1="B" 	g2="V" 	k="66" />
+<hkern g1="B" 	g2="X" 	k="25" />
+<hkern g1="B" 	g2="Z" 	k="4" />
+<hkern g1="B" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-4" />
+<hkern g1="B" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-8" />
+<hkern g1="B" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="B" 	g2="AE" 	k="145" />
+<hkern g1="C,Ccedilla" 	g2="b,h,k,l,thorn" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="v,y,yacute,ydieresis" 	k="96" />
+<hkern g1="C,Ccedilla" 	g2="w" 	k="82" />
+<hkern g1="C,Ccedilla" 	g2="x" 	k="98" />
+<hkern g1="C,Ccedilla" 	g2="g" 	k="59" />
+<hkern g1="C,Ccedilla" 	g2="quoteright,quotedblright" 	k="-20" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="88" />
+<hkern g1="C,Ccedilla" 	g2="z" 	k="63" />
+<hkern g1="C,Ccedilla" 	g2="t" 	k="61" />
+<hkern g1="C,Ccedilla" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="57" />
+<hkern g1="C,Ccedilla" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="25" />
+<hkern g1="C,Ccedilla" 	g2="X" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="Z" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="j" 	k="27" />
+<hkern g1="C,Ccedilla" 	g2="s" 	k="86" />
+<hkern g1="C,Ccedilla" 	g2="m,n,p,r,ntilde" 	k="76" />
+<hkern g1="C,Ccedilla" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="41" />
+<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="55" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="AE" 	k="113" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="b,h,k,l,thorn" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v,y,yacute,ydieresis" 	k="72" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="86" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="x" 	k="61" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="T" 	k="55" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="V" 	k="94" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="X" 	k="51" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="s" 	k="27" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,p,r,ntilde" 	k="31" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="25" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="J" 	k="-2" />
+<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="AE" 	k="66" />
+<hkern g1="G" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="G" 	g2="g" 	k="10" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="111" />
+<hkern g1="G" 	g2="T" 	k="90" />
+<hkern g1="G" 	g2="V" 	k="102" />
+<hkern g1="G" 	g2="X" 	k="72" />
+<hkern g1="G" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-12" />
+<hkern g1="G" 	g2="S" 	k="6" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="20" />
+<hkern g1="G" 	g2="AE" 	k="123" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="b,h,k,l,thorn" 	k="-2" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="23" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="x" 	k="39" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="27" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="-61" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="parenright,bracketright,braceright" 	k="-63" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="X" 	k="12" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="s" 	k="14" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-16" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="6" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="AE" 	k="49" />
+<hkern g1="K" 	g2="b,h,k,l,thorn" 	k="25" />
+<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="166" />
+<hkern g1="K" 	g2="w" 	k="168" />
+<hkern g1="K" 	g2="x" 	k="25" />
+<hkern g1="K" 	g2="g" 	k="72" />
+<hkern g1="K" 	g2="comma,period,ellipsis" 	k="-49" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="84" />
+<hkern g1="K" 	g2="z" 	k="72" />
+<hkern g1="K" 	g2="t" 	k="111" />
+<hkern g1="K" 	g2="guillemotright,guilsinglright" 	k="102" />
+<hkern g1="K" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="78" />
+<hkern g1="K" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="K" 	g2="T" 	k="80" />
+<hkern g1="K" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="80" />
+<hkern g1="K" 	g2="V" 	k="47" />
+<hkern g1="K" 	g2="X" 	k="39" />
+<hkern g1="K" 	g2="Z" 	k="41" />
+<hkern g1="K" 	g2="s" 	k="98" />
+<hkern g1="K" 	g2="m,n,p,r,ntilde" 	k="90" />
+<hkern g1="K" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="109" />
+<hkern g1="K" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="106" />
+<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="127" />
+<hkern g1="K" 	g2="guillemotleft,guilsinglleft" 	k="172" />
+<hkern g1="K" 	g2="J" 	k="4" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="86" />
+<hkern g1="K" 	g2="S" 	k="135" />
+<hkern g1="K" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="2" />
+<hkern g1="K" 	g2="AE" 	k="20" />
+<hkern g1="L" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="123" />
+<hkern g1="L" 	g2="w" 	k="115" />
+<hkern g1="L" 	g2="x" 	k="47" />
+<hkern g1="L" 	g2="g" 	k="88" />
+<hkern g1="L" 	g2="comma,period,ellipsis" 	k="-66" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="281" />
+<hkern g1="L" 	g2="z" 	k="61" />
+<hkern g1="L" 	g2="t" 	k="102" />
+<hkern g1="L" 	g2="guillemotright,guilsinglright" 	k="-61" />
+<hkern g1="L" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="96" />
+<hkern g1="L" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
+<hkern g1="L" 	g2="T" 	k="270" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="172" />
+<hkern g1="L" 	g2="V" 	k="252" />
+<hkern g1="L" 	g2="X" 	k="39" />
+<hkern g1="L" 	g2="Z" 	k="61" />
+<hkern g1="L" 	g2="s" 	k="41" />
+<hkern g1="L" 	g2="m,n,p,r,ntilde" 	k="86" />
+<hkern g1="L" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="61" />
+<hkern g1="L" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="53" />
+<hkern g1="L" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="27" />
+<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="98" />
+<hkern g1="L" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="L" 	g2="J" 	k="-25" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="82" />
+<hkern g1="L" 	g2="S" 	k="102" />
+<hkern g1="L" 	g2="AE" 	k="53" />
+<hkern g1="M" 	g2="v,y,yacute,ydieresis" 	k="18" />
+<hkern g1="M" 	g2="w" 	k="20" />
+<hkern g1="M" 	g2="x" 	k="12" />
+<hkern g1="M" 	g2="g" 	k="31" />
+<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="41" />
+<hkern g1="M" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="M" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="M" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="M" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="M" 	g2="AE" 	k="57" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="b,h,k,l,thorn" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="v,y,yacute,ydieresis" 	k="-4" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="w" 	k="-8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="x" 	k="18" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="g" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="parenright,bracketright,braceright" 	k="-225" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="106" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="72" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="59" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="90" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="j" 	k="-37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="-20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="AE" 	k="125" />
+<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="P" 	g2="w" 	k="12" />
+<hkern g1="P" 	g2="x" 	k="76" />
+<hkern g1="P" 	g2="g" 	k="102" />
+<hkern g1="P" 	g2="comma,period,ellipsis" 	k="205" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="P" 	g2="z" 	k="76" />
+<hkern g1="P" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="P" 	g2="T" 	k="47" />
+<hkern g1="P" 	g2="V" 	k="39" />
+<hkern g1="P" 	g2="X" 	k="121" />
+<hkern g1="P" 	g2="Z" 	k="25" />
+<hkern g1="P" 	g2="s" 	k="23" />
+<hkern g1="P" 	g2="m,n,p,r,ntilde" 	k="18" />
+<hkern g1="P" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="55" />
+<hkern g1="P" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="90" />
+<hkern g1="P" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="29" />
+<hkern g1="P" 	g2="J" 	k="23" />
+<hkern g1="P" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-6" />
+<hkern g1="P" 	g2="S" 	k="12" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="111" />
+<hkern g1="P" 	g2="AE" 	k="205" />
+<hkern g1="R" 	g2="b,h,k,l,thorn" 	k="88" />
+<hkern g1="R" 	g2="v,y,yacute,ydieresis" 	k="23" />
+<hkern g1="R" 	g2="w" 	k="72" />
+<hkern g1="R" 	g2="x" 	k="8" />
+<hkern g1="R" 	g2="g" 	k="66" />
+<hkern g1="R" 	g2="comma,period,ellipsis" 	k="-94" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="R" 	g2="z" 	k="33" />
+<hkern g1="R" 	g2="t" 	k="66" />
+<hkern g1="R" 	g2="guillemotright,guilsinglright" 	k="8" />
+<hkern g1="R" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="R" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-10" />
+<hkern g1="R" 	g2="T" 	k="125" />
+<hkern g1="R" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="111" />
+<hkern g1="R" 	g2="V" 	k="119" />
+<hkern g1="R" 	g2="X" 	k="39" />
+<hkern g1="R" 	g2="Z" 	k="23" />
+<hkern g1="R" 	g2="j" 	k="37" />
+<hkern g1="R" 	g2="s" 	k="25" />
+<hkern g1="R" 	g2="m,n,p,r,ntilde" 	k="33" />
+<hkern g1="R" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="R" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="R" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="47" />
+<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="66" />
+<hkern g1="R" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="R" 	g2="J" 	k="-4" />
+<hkern g1="R" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="R" 	g2="S" 	k="61" />
+<hkern g1="R" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-6" />
+<hkern g1="S" 	g2="v,y,yacute,ydieresis" 	k="8" />
+<hkern g1="S" 	g2="comma,period,ellipsis" 	k="-82" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="102" />
+<hkern g1="S" 	g2="z" 	k="25" />
+<hkern g1="S" 	g2="T" 	k="33" />
+<hkern g1="S" 	g2="V" 	k="61" />
+<hkern g1="S" 	g2="X" 	k="55" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="8" />
+<hkern g1="S" 	g2="AE" 	k="61" />
+<hkern g1="T" 	g2="b,h,k,l,thorn" 	k="70" />
+<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="113" />
+<hkern g1="T" 	g2="w" 	k="102" />
+<hkern g1="T" 	g2="x" 	k="150" />
+<hkern g1="T" 	g2="g" 	k="199" />
+<hkern g1="T" 	g2="comma,period,ellipsis" 	k="172" />
+<hkern g1="T" 	g2="quoteright,quotedblright" 	k="-61" />
+<hkern g1="T" 	g2="z" 	k="123" />
+<hkern g1="T" 	g2="t" 	k="123" />
+<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="6" />
+<hkern g1="T" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="129" />
+<hkern g1="T" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
+<hkern g1="T" 	g2="X" 	k="55" />
+<hkern g1="T" 	g2="j" 	k="111" />
+<hkern g1="T" 	g2="s" 	k="164" />
+<hkern g1="T" 	g2="m,n,p,r,ntilde" 	k="123" />
+<hkern g1="T" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="129" />
+<hkern g1="T" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="139" />
+<hkern g1="T" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="190" />
+<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="119" />
+<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="123" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="162" />
+<hkern g1="T" 	g2="AE" 	k="190" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="v,y,yacute,ydieresis" 	k="25" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="w" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="88" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="18" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="Y,Yacute,Ydieresis" 	k="31" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="49" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="X" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,p,r,ntilde" 	k="8" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="41" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="S" 	k="4" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="29" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="AE" 	k="31" />
+<hkern g1="V,W" 	g2="b,h,k,l,thorn" 	k="31" />
+<hkern g1="V,W" 	g2="v,y,yacute,ydieresis" 	k="156" />
+<hkern g1="V,W" 	g2="w" 	k="131" />
+<hkern g1="V,W" 	g2="x" 	k="156" />
+<hkern g1="V,W" 	g2="g" 	k="211" />
+<hkern g1="V,W" 	g2="comma,period,ellipsis" 	k="238" />
+<hkern g1="V,W" 	g2="quoteright,quotedblright" 	k="-80" />
+<hkern g1="V,W" 	g2="parenright,bracketright,braceright" 	k="-41" />
+<hkern g1="V,W" 	g2="Y,Yacute,Ydieresis" 	k="27" />
+<hkern g1="V,W" 	g2="z" 	k="170" />
+<hkern g1="V,W" 	g2="t" 	k="123" />
+<hkern g1="V,W" 	g2="guillemotright,guilsinglright" 	k="47" />
+<hkern g1="V,W" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="49" />
+<hkern g1="V,W" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
+<hkern g1="V,W" 	g2="X" 	k="25" />
+<hkern g1="V,W" 	g2="Z" 	k="41" />
+<hkern g1="V,W" 	g2="j" 	k="23" />
+<hkern g1="V,W" 	g2="s" 	k="147" />
+<hkern g1="V,W" 	g2="m,n,p,r,ntilde" 	k="139" />
+<hkern g1="V,W" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="V,W" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="121" />
+<hkern g1="V,W" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="154" />
+<hkern g1="V,W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="102" />
+<hkern g1="V,W" 	g2="guillemotleft,guilsinglleft" 	k="82" />
+<hkern g1="V,W" 	g2="J" 	k="18" />
+<hkern g1="V,W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V,W" 	g2="S" 	k="63" />
+<hkern g1="V,W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="102" />
+<hkern g1="V,W" 	g2="AE" 	k="225" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="b,h,k,l,thorn" 	k="23" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="137" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="211" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="166" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,ellipsis" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="quoteright,quotedblright" 	k="-68" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="parenright,bracketright,braceright" 	k="-61" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="197" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="74" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="72" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="66" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="Z" 	k="31" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="j" 	k="92" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="172" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,ntilde" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="131" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="170" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="104" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="102" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="25" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="223" />
+<hkern g1="X" 	g2="b,h,k,l,thorn" 	k="76" />
+<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="137" />
+<hkern g1="X" 	g2="w" 	k="129" />
+<hkern g1="X" 	g2="x" 	k="88" />
+<hkern g1="X" 	g2="g" 	k="84" />
+<hkern g1="X" 	g2="comma,period,ellipsis" 	k="-61" />
+<hkern g1="X" 	g2="quoteright,quotedblright" 	k="39" />
+<hkern g1="X" 	g2="Y,Yacute,Ydieresis" 	k="82" />
+<hkern g1="X" 	g2="z" 	k="51" />
+<hkern g1="X" 	g2="t" 	k="88" />
+<hkern g1="X" 	g2="guillemotright,guilsinglright" 	k="51" />
+<hkern g1="X" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="102" />
+<hkern g1="X" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="8" />
+<hkern g1="X" 	g2="T" 	k="74" />
+<hkern g1="X" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="8" />
+<hkern g1="X" 	g2="V" 	k="27" />
+<hkern g1="X" 	g2="j" 	k="68" />
+<hkern g1="X" 	g2="s" 	k="88" />
+<hkern g1="X" 	g2="m,n,p,r,ntilde" 	k="109" />
+<hkern g1="X" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
+<hkern g1="X" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="102" />
+<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="106" />
+<hkern g1="X" 	g2="guillemotleft,guilsinglleft" 	k="180" />
+<hkern g1="X" 	g2="J" 	k="18" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="66" />
+<hkern g1="X" 	g2="S" 	k="111" />
+<hkern g1="X" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="10" />
+<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="47" />
+<hkern g1="Z" 	g2="w" 	k="76" />
+<hkern g1="Z" 	g2="g" 	k="8" />
+<hkern g1="Z" 	g2="comma,period,ellipsis" 	k="-133" />
+<hkern g1="Z" 	g2="Y,Yacute,Ydieresis" 	k="94" />
+<hkern g1="Z" 	g2="t" 	k="82" />
+<hkern g1="Z" 	g2="guillemotright,guilsinglright" 	k="-43" />
+<hkern g1="Z" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="55" />
+<hkern g1="Z" 	g2="T" 	k="12" />
+<hkern g1="Z" 	g2="V" 	k="35" />
+<hkern g1="Z" 	g2="X" 	k="41" />
+<hkern g1="Z" 	g2="s" 	k="61" />
+<hkern g1="Z" 	g2="m,n,p,r,ntilde" 	k="45" />
+<hkern g1="Z" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="61" />
+<hkern g1="Z" 	g2="J" 	k="-6" />
+<hkern g1="Z" 	g2="S" 	k="35" />
+<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-2" />
+<hkern g1="Z" 	g2="AE" 	k="23" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="b,h,k,l,thorn" 	k="-20" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="comma,period,ellipsis" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="49" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-45" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="123" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="s" 	k="-25" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-31" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="J" 	k="-119" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-76" />
+<hkern g1="guillemotleft,guilsinglleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="252" />
+<hkern g1="guillemotright,guilsinglright" 	g2="i,igrave,iacute,icircumflex,idieresis" 	k="-25" />
+<hkern g1="guillemotright,guilsinglright" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-43" />
+<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="164" />
+<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="102" />
+<hkern g1="guillemotright,guilsinglright" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="-41" />
+<hkern g1="guillemotright,guilsinglright" 	g2="J" 	k="-61" />
+<hkern g1="guillemotright,guilsinglright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-96" />
+<hkern g1="guillemotright,guilsinglright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quoteleft,quotedblleft" 	g2="b,h,k,l,thorn" 	k="-53" />
+<hkern g1="quoteleft,quotedblleft" 	g2="v,y,yacute,ydieresis" 	k="20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Y,Yacute,Ydieresis" 	k="-45" />
+<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-47" />
+<hkern g1="quoteleft,quotedblleft" 	g2="T" 	k="-66" />
+<hkern g1="quoteleft,quotedblleft" 	g2="V" 	k="-82" />
+<hkern g1="quoteleft,quotedblleft" 	g2="X" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="Z" 	k="-8" />
+<hkern g1="quoteleft,quotedblleft" 	g2="m,n,p,r,ntilde" 	k="-20" />
+<hkern g1="quoteleft,quotedblleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quoteleft,quotedblleft" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="143" />
+<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="-31" />
+<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="270" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="v,y,yacute,ydieresis" 	k="131" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteleft,quotedblleft" 	k="352" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="246" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-20" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="190" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="307" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="j" 	k="-143" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="102" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="a,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="82" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="-84" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-41" />
+<hkern g1="quotesinglbase,quotedblbase" 	g2="AE" 	k="-68" />
+<hkern g1="hyphen,endash,emdash" 	g2="t" 	k="-41" />
+<hkern g1="hyphen,endash,emdash" 	g2="s" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="b,h,k,l,thorn" 	k="-82" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="v,y,yacute,ydieresis" 	k="61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="g" 	k="-12" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="-66" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="T" 	k="-25" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="V" 	k="-61" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-125" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="m,n,p,r,ntilde" 	k="-8" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="f,germandbls,uniFB01,uniFB02,uniFB03,uniFB04" 	k="-225" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="c,d,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="J" 	k="-162" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-41" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..6e2a9c1dda8e1c9b7bdc1211d9addd9864fdb9fe
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.woff
new file mode 100755
index 0000000000000000000000000000000000000000..6eb2be6bb6f8d17b687197956d75b8ef6f35e691
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/CapitaXLigIta.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.eot
new file mode 100755
index 0000000000000000000000000000000000000000..fab24a747843fc06ea88d809b9325a2a8e8580c4
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.otf
new file mode 100755
index 0000000000000000000000000000000000000000..2dca494120595aeafcb926259b1d50b305db4ff8
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.svg
new file mode 100755
index 0000000000000000000000000000000000000000..a2338b8f9b7358f0672eca7441dfc038c98a71e8
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.svg
@@ -0,0 +1,540 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_nova_blblack" horiz-adv-x="280" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="255" />
+<glyph unicode="&#xfb01;" horiz-adv-x="651" d="M7 327v156h80v22q0 75 52 123.5t132 48.5q67 0 112 -24l-33 -122q-17 13 -40 13q-18 0 -30.5 -11.5t-12.5 -27.5v-22h98v-156h-98v-327h-180v327h-80zM410 619q0 42 29.5 71.5t71.5 29.5t71.5 -29.5t29.5 -71.5t-29.5 -71.5t-71.5 -29.5t-71.5 29.5t-29.5 71.5zM421 0 v483h180v-483h-180z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="651" d="M7 327v156h80v22q0 75 52 123.5t132 48.5q67 0 112 -24l-33 -122q-17 13 -40 13q-18 0 -30.5 -11.5t-12.5 -27.5v-22h98v-156h-98v-327h-180v327h-80zM421 0v667h180v-667h-180z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1022" d="M7 327v156h80v22q0 76 52 124t132 48q102 0 151 -52l-65 -100q-16 19 -44 19q-18 0 -32 -11t-14 -28v-22h98v-156h-98v-327h-180v327h-80zM378 327v156h80v22q0 75 52 123.5t132 48.5q67 0 112 -24l-33 -122q-17 13 -40 13q-18 0 -30.5 -11.5t-12.5 -27.5v-22h98v-156 h-98v-327h-180v327h-80zM781 619q0 42 29.5 71.5t71.5 29.5t71.5 -29.5t29.5 -71.5t-29.5 -71.5t-71.5 -29.5t-71.5 29.5t-29.5 71.5zM792 0v483h180v-483h-180z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1022" d="M7 327v156h80v22q0 76 52 124t132 48q102 0 151 -52l-65 -100q-16 19 -44 19q-18 0 -32 -11t-14 -28v-22h98v-156h-98v-327h-180v327h-80zM378 327v156h80v22q0 75 52 123.5t132 48.5q67 0 112 -24l-33 -122q-17 13 -40 13q-18 0 -30.5 -11.5t-12.5 -27.5v-22h98v-156 h-98v-327h-180v327h-80zM792 0v667h180v-667h-180z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="255" />
+<glyph unicode="&#x09;" horiz-adv-x="255" />
+<glyph unicode="&#xa0;" horiz-adv-x="255" />
+<glyph unicode="!" d="M33 667h214l-25 -419h-162zM35 95q0 44 31.5 75.5t74.5 31.5t74.5 -31.5t31.5 -75.5q0 -43 -31.5 -74.5t-74.5 -31.5t-74.5 31.5t-31.5 74.5z" />
+<glyph unicode="&#x22;" horiz-adv-x="469" d="M34 585q0 38 27 65t65 27t65 -27t27 -65q0 -10 -14 -71.5t-28 -117.5l-13 -57h-74q-55 223 -55 246zM252 585q0 38 27 65t65 27t64.5 -27t26.5 -65q0 -10 -13.5 -71.5t-27.5 -117.5l-14 -57h-73q-55 223 -55 246z" />
+<glyph unicode="#" horiz-adv-x="646" d="M12 158l35 109h88l43 132h-87l34 108h90l53 160h127l-53 -160h78l53 160h127l-54 -160h88l-33 -108h-91l-44 -132h91l-34 -109h-94l-52 -158h-127l53 158h-79l-52 -158h-127l53 158h-86zM262 267h77l44 132h-78z" />
+<glyph unicode="$" horiz-adv-x="635" d="M18 94l105 150q90 -86 215 -86q74 0 74 36q0 17 -38.5 26t-93 19t-109 29t-93 67t-38.5 121q0 80 58.5 141.5t163.5 75.5v95h128v-96q123 -17 210 -88l-108 -143q-87 66 -196 66q-51 0 -51 -30q0 -16 38 -26t92.5 -21t109.5 -30t93 -65t38 -115q0 -96 -59.5 -155 t-166.5 -73v-92h-128v92q-148 14 -244 102z" />
+<glyph unicode="%" horiz-adv-x="784" d="M20 508q0 72 49 120.5t129 48.5q81 0 130.5 -48.5t49.5 -120.5q0 -71 -49.5 -119t-130.5 -48q-80 0 -129 48t-49 119zM131 0l426 667h98l-427 -667h-97zM142 508q0 -31 15.5 -46t40.5 -15q26 0 42 15t16 46q0 32 -16 47.5t-42 15.5q-25 0 -40.5 -15.5t-15.5 -47.5z M407 155q0 72 49 120.5t129 48.5t129.5 -48.5t49.5 -120.5q0 -71 -49.5 -119t-129.5 -48t-129 48t-49 119zM528 155q0 -61 57 -61q58 0 58 61q0 32 -16 47.5t-42 15.5q-57 0 -57 -63z" />
+<glyph unicode="&#x26;" horiz-adv-x="652" d="M12 189q0 120 140 187q-37 74 -37 136q0 70 59.5 117.5t153.5 47.5q81 0 140 -41.5t59 -109.5q0 -69 -41.5 -108t-116.5 -71q21 -30 38 -49l36 -46q33 52 49 106l139 -66q-43 -89 -95 -151q49 -55 128 -141h-222l-31 32q-77 -44 -166 -44q-102 0 -167.5 52t-65.5 149z M200 207q0 -35 21 -58t51 -23q24 0 47 10q-53 61 -99 127q-20 -25 -20 -56zM291 507q0 -28 19 -66q66 32 66 74q0 16 -11 26.5t-28 10.5q-20 0 -33 -12.5t-13 -32.5z" />
+<glyph unicode="'" horiz-adv-x="252" d="M34 585q0 38 27 65t65 27t65 -27t27 -65q0 -10 -14 -71.5t-28 -117.5l-13 -57h-74q-55 223 -55 246z" />
+<glyph unicode="(" horiz-adv-x="346" d="M37 243q0 122 49 247t128 195l114 -87q-53 -87 -75.5 -170t-22.5 -185q0 -101 22.5 -184.5t75.5 -168.5l-114 -89q-79 70 -128 195t-49 247z" />
+<glyph unicode=")" horiz-adv-x="347" d="M18 -110q53 85 75.5 168.5t22.5 184.5q0 102 -22.5 185t-75.5 170l114 87q79 -70 128 -195t49 -247t-49 -247t-128 -195z" />
+<glyph unicode="*" horiz-adv-x="363" d="M17 462l92 48l-92 48l40 70l88 -56l-4 105h81l-5 -105l88 56l41 -70l-93 -48l93 -48l-41 -70l-88 56l5 -105h-81l4 105l-88 -56z" />
+<glyph unicode="+" horiz-adv-x="510" d="M29 285v105h168v185h116v-185h168v-105h-168v-193h-116v193h-168z" />
+<glyph unicode="," horiz-adv-x="281" d="M34 97q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67z" />
+<glyph unicode="-" horiz-adv-x="300" d="M30 167v150h240v-150h-240z" />
+<glyph unicode="." horiz-adv-x="283" d="M34 95q0 43 32 75t75 32t75 -32t32 -75t-32 -75t-75 -32t-75 32t-32 75z" />
+<glyph unicode="/" horiz-adv-x="362" d="M0 -20l237 707h125l-237 -707h-125z" />
+<glyph unicode="0" horiz-adv-x="628" d="M18 333q0 145 77 244.5t219 99.5t219 -99.5t77 -244.5q0 -93 -31.5 -169.5t-100 -126t-164.5 -49.5t-164.5 49.5t-100 126t-31.5 169.5zM221 333q0 -167 93 -167t93 167q0 166 -93 166t-93 -166z" />
+<glyph unicode="1" horiz-adv-x="483" d="M0 417l255 250h174v-667h-202v410l-113 -112z" />
+<glyph unicode="2" horiz-adv-x="613" d="M12 564q54 58 129.5 85.5t152.5 27.5q129 0 207.5 -64.5t78.5 -165.5q0 -70 -47 -132t-164 -139h217v-176h-545v157q125 88 183 130t97 76t46.5 49t7.5 35q0 23 -22 37.5t-55 14.5q-94 0 -176 -69z" />
+<glyph unicode="3" horiz-adv-x="617" d="M12 92l99 138q36 -31 87 -47.5t94 -16.5q47 0 72 13t25 32t-20.5 27.5t-82.5 8.5q-77 0 -97 -2v179q13 -1 97 -1q92 0 92 33q0 43 -99 43q-93 0 -163 -58l-95 126q100 110 280 110q135 0 206.5 -50t71.5 -135q0 -53 -41.5 -95.5t-105.5 -52.5q61 -7 109.5 -49t48.5 -107 q0 -89 -80 -144.5t-210 -55.5q-95 0 -169.5 28.5t-118.5 75.5z" />
+<glyph unicode="4" horiz-adv-x="636" d="M18 107v155l243 405h280v-384h77v-176h-77v-107h-202v107h-321zM213 283h126v210z" />
+<glyph unicode="5" horiz-adv-x="626" d="M32 82l108 142q70 -58 169 -58q47 0 70.5 16t23.5 39q0 24 -22 39.5t-66 15.5q-75 0 -124 -46l-139 32v405h510v-176h-308v-94q53 51 139 51q89 0 152 -60.5t63 -157.5q0 -111 -79 -176.5t-218 -65.5q-175 0 -279 94z" />
+<glyph unicode="6" horiz-adv-x="625" d="M18 332q0 164 95.5 254.5t254.5 90.5q123 0 208 -58l-85 -156q-51 36 -123 36q-56 0 -101 -30t-45 -86v-2q53 68 155 68q96 0 166 -59.5t70 -161.5q0 -107 -78.5 -173.5t-198.5 -66.5q-157 0 -237.5 95t-80.5 249zM221 251q3 -37 28 -61t74 -24q37 0 61 16t24 38 q0 29 -28.5 43.5t-64.5 14.5q-59 0 -94 -27z" />
+<glyph unicode="7" horiz-adv-x="575" d="M18 491v176h545v-140l-222 -527h-221l211 491h-313z" />
+<glyph unicode="8" horiz-adv-x="630" d="M18 178q0 53 34.5 97.5t92.5 68.5q-116 48 -116 154q0 62 44.5 104t106 58.5t135.5 16.5t135.5 -16.5t106 -58.5t44.5 -104q0 -106 -117 -154q58 -24 93 -68.5t35 -97.5q0 -65 -44.5 -109t-109 -62.5t-143.5 -18.5t-143.5 18.5t-109 62.5t-44.5 109zM223 201 q0 -21 25 -35t67 -14q41 0 66.5 14t25.5 35q0 18 -28.5 32.5t-63.5 19.5q-36 -5 -64 -19.5t-28 -32.5zM234 468q0 -15 24.5 -28t56.5 -18q32 5 56 18t24 28q0 20 -21.5 32.5t-58.5 12.5q-38 0 -59.5 -12.5t-21.5 -32.5z" />
+<glyph unicode="9" horiz-adv-x="625" d="M12 438q0 107 78.5 173.5t198.5 66.5q157 0 237.5 -95t80.5 -249q0 -164 -95.5 -254.5t-254.5 -90.5q-123 0 -208 58l85 156q51 -36 123 -36q63 0 104.5 33t41.5 82v3q-53 -68 -155 -68q-96 0 -166 59.5t-70 161.5zM217 446q0 -29 28.5 -43.5t64.5 -14.5q59 0 94 27 q-3 37 -28 61t-75 24q-36 0 -60 -16t-24 -38z" />
+<glyph unicode=":" horiz-adv-x="266" d="M34 95q0 43 32 75t75 32t75 -32t32 -75t-32 -75t-75 -32t-75 32t-32 75zM34 383q0 43 32 75t75 32t75 -32t32 -75t-32 -75t-75 -32t-75 32t-32 75z" />
+<glyph unicode=";" horiz-adv-x="281" d="M34 98q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67zM34 384q0 43 31.5 74.5t75.5 31.5t75.5 -31.5t31.5 -74.5q0 -44 -32 -76t-75 -32t-75 32t-32 76z" />
+<glyph unicode="&#x3c;" horiz-adv-x="510" d="M29 270v130l452 180v-125l-334 -121l334 -119v-125z" />
+<glyph unicode="=" horiz-adv-x="510" d="M29 190v105h452v-105h-452zM29 373v105h452v-105h-452z" />
+<glyph unicode="&#x3e;" horiz-adv-x="510" d="M29 90v125l334 119l-334 121v125l452 -180v-130z" />
+<glyph unicode="?" horiz-adv-x="450" d="M0 586q42 45 101.5 68t120.5 23q101 0 160.5 -43.5t59.5 -117.5q0 -39 -14.5 -70t-35.5 -49t-42 -33.5t-35.5 -32t-14.5 -34.5q0 -24 11 -37l-158 -36q-27 37 -27 95q0 37 17.5 66t38.5 43t38.5 27t17.5 23q0 21 -39 21q-47 0 -87 -42zM121 95q0 43 31.5 75t75.5 32 t75.5 -32t31.5 -75t-31.5 -75t-75.5 -32t-75.5 32t-31.5 75z" />
+<glyph unicode="@" horiz-adv-x="783" d="M35 244q0 157 120 275.5t277 118.5q141 0 228 -86t87 -209q0 -64 -22 -115.5t-56 -81.5t-71.5 -45.5t-73.5 -15.5q-84 0 -105 73q-51 -73 -129 -73q-73 0 -115 49t-42 125q0 95 65.5 166.5t151.5 71.5q84 0 122 -56l9 44h158l-46 -217q-3 -15 -3 -27q0 -38 28 -38 q32 0 55.5 37.5t23.5 102.5q0 115 -72 183t-197 68q-140 0 -244 -104t-104 -243q0 -117 79 -195.5t198 -78.5q93 0 179 54l24 -34q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM295 273q0 -29 17 -46.5t46 -17.5q42 0 74 41l19 95q-19 28 -58 28q-44 0 -71 -30 t-27 -70z" />
+<glyph unicode="A" horiz-adv-x="710" d="M-18 0l246 667h254l246 -667h-229l-24 78h-240l-24 -78h-229zM289 254h132l-66 215z" />
+<glyph unicode="B" horiz-adv-x="697" d="M54 0v667h405q96 0 147 -52t51 -118q0 -61 -32 -101.5t-82 -51.5q55 -8 91 -53.5t36 -109.5q0 -75 -51 -128t-146 -53h-419zM256 168h162q22 0 34.5 11.5t12.5 30.5q0 18 -13 30.5t-34 12.5h-162v-85zM256 421h156q16 0 28 11.5t12 28.5t-12 27.5t-28 10.5h-156v-78z" />
+<glyph unicode="C" horiz-adv-x="697" d="M18 333q0 153 104 249t263 96q120 0 193.5 -56t109.5 -138l-174 -81q-13 40 -49 68.5t-80 28.5q-72 0 -117 -48t-45 -119t45 -119t117 -48q44 0 80 28.5t49 68.5l174 -80q-16 -37 -40 -68.5t-60 -61.5t-88.5 -47.5t-114.5 -17.5q-158 0 -262.5 96.5t-104.5 248.5z" />
+<glyph unicode="D" horiz-adv-x="736" d="M54 0v667h298q162 0 264 -88.5t102 -244.5t-102 -245t-263 -89h-299zM256 176h96q73 0 117 46t44 112q0 71 -41 114t-119 43h-97v-315z" />
+<glyph unicode="E" horiz-adv-x="596" d="M54 0v667h506v-176h-304v-66h297v-176h-297v-73h304v-176h-506z" />
+<glyph unicode="F" horiz-adv-x="592" d="M54 0v667h506v-176h-304v-66h297v-176h-297v-249h-202z" />
+<glyph unicode="G" horiz-adv-x="726" d="M18 333q0 156 105.5 250.5t261.5 94.5q110 0 183.5 -50t109.5 -124l-170 -87q-16 34 -48.5 58.5t-74.5 24.5q-72 0 -117 -48t-45 -119t45 -119t117 -48q28 0 58 9t46 21v24h-124v176h325v-273q-122 -135 -305 -135q-156 0 -261.5 94.5t-105.5 250.5z" />
+<glyph unicode="H" horiz-adv-x="751" d="M54 0v667h202v-236h239v236h202v-667h-202v255h-239v-255h-202z" />
+<glyph unicode="I" horiz-adv-x="310" d="M54 0v667h202v-667h-202z" />
+<glyph unicode="J" horiz-adv-x="498" d="M0 42l82 154q44 -30 86 -30q33 0 53.5 20t20.5 55v426h202v-429q0 -125 -69 -187.5t-189 -62.5q-116 0 -186 54z" />
+<glyph unicode="K" horiz-adv-x="671" d="M54 0v667h202v-250l175 250h247l-252 -310l263 -357h-246l-150 235l-37 -50v-185h-202z" />
+<glyph unicode="L" horiz-adv-x="536" d="M54 0v667h202v-491h253v-176h-455z" />
+<glyph unicode="M" horiz-adv-x="900" d="M54 0v667h279l117 -320l117 320h279v-667h-202v401l-149 -401h-90l-149 401v-401h-202z" />
+<glyph unicode="N" horiz-adv-x="750" d="M54 0v667h208l232 -316v316h202v-667h-194l-246 338v-338h-202z" />
+<glyph unicode="O" horiz-adv-x="766" d="M18 333q0 152 104.5 248.5t260.5 96.5t260.5 -96.5t104.5 -248.5t-104.5 -248.5t-260.5 -96.5t-260.5 96.5t-104.5 248.5zM223 333q0 -71 44.5 -119t115.5 -48t115.5 48t44.5 119t-44.5 119t-115.5 48t-115.5 -48t-44.5 -119z" />
+<glyph unicode="P" horiz-adv-x="662" d="M54 0v667h356q113 0 176.5 -65.5t63.5 -163.5q0 -97 -63.5 -162.5t-176.5 -65.5h-154v-210h-202zM256 386h128q27 0 44 13.5t17 38.5q0 26 -17 39.5t-44 13.5h-128v-105z" />
+<glyph unicode="Q" horiz-adv-x="766" d="M18 333q0 152 104.5 248.5t260.5 96.5t260.5 -96.5t104.5 -248.5q0 -133 -83 -226l36 -45l-140 -112l-47 58q-63 -20 -131 -20q-156 0 -260.5 96.5t-104.5 248.5zM223 333q0 -71 44.5 -119t115.5 -48h6l-46 58l140 112l50 -64q10 27 10 61q0 71 -44.5 119t-115.5 48 t-115.5 -48t-44.5 -119z" />
+<glyph unicode="R" horiz-adv-x="678" d="M54 0v667h356q113 0 176.5 -65.5t63.5 -163.5q0 -78 -35.5 -128t-84.5 -74l121 -236h-230l-92 210h-73v-210h-202zM256 386h123q28 0 47 13.5t19 39.5q0 25 -19 38.5t-47 13.5h-123v-105z" />
+<glyph unicode="S" horiz-adv-x="613" d="M3 94l105 150q90 -86 215 -86q74 0 74 36q0 17 -38.5 26t-93 19t-109 29t-93 67t-38.5 121q0 91 73.5 156t203.5 65q169 0 283 -93l-108 -143q-87 66 -196 66q-51 0 -51 -30q0 -14 27.5 -24t68.5 -15.5t89.5 -20t89.5 -34.5t68.5 -62.5t27.5 -100.5q0 -110 -76.5 -171 t-211.5 -61q-192 0 -310 106z" />
+<glyph unicode="T" horiz-adv-x="595" d="M18 491v176h559v-176h-178v-491h-202v491h-179z" />
+<glyph unicode="U" horiz-adv-x="767" d="M54 274v393h205v-386q0 -50 32.5 -82.5t92.5 -32.5q59 0 91.5 32.5t32.5 82.5v386h205v-392q0 -130 -83 -208.5t-246 -78.5t-246.5 78.5t-83.5 207.5z" />
+<glyph unicode="V" horiz-adv-x="710" d="M-18 667h229l144 -449l144 449h229l-246 -667h-254z" />
+<glyph unicode="W" horiz-adv-x="954" d="M-12 667h226l86 -408l101 408h152l101 -408l85 408h227l-191 -667h-212l-86 378l-86 -378h-212z" />
+<glyph unicode="X" horiz-adv-x="684" d="M-18 0l223 342l-208 325h237l108 -190l106 190h239l-208 -324l223 -343h-238l-122 204l-122 -204h-238z" />
+<glyph unicode="Y" horiz-adv-x="664" d="M-18 667h227l124 -225l122 225h227l-248 -402v-265h-202v265z" />
+<glyph unicode="Z" horiz-adv-x="600" d="M36 0v160l254 331h-254v176h521v-159l-255 -332h262v-176h-528z" />
+<glyph unicode="[" horiz-adv-x="317" d="M54 -190v868h245v-114h-120v-640h120v-114h-245z" />
+<glyph unicode="\" horiz-adv-x="362" d="M0 687h125l237 -707h-125z" />
+<glyph unicode="]" horiz-adv-x="317" d="M18 -76h120v640h-120v114h245v-868h-245v114z" />
+<glyph unicode="^" horiz-adv-x="450" d="M19 333l143 334h129l140 -334h-126l-80 215l-79 -215h-127z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-3 -40h570v-114h-570v114z" />
+<glyph unicode="`" horiz-adv-x="275" d="M0 700h155l120 -144h-120z" />
+<glyph unicode="a" horiz-adv-x="559" d="M17 147q0 56 27.5 92.5t62.5 49t76 12.5q104 0 146 -53v50q0 26 -23.5 43t-66.5 17q-72 0 -134 -47l-61 111q91 73 228 73q48 0 88 -9.5t75 -31t54.5 -63t19.5 -99.5v-292h-180v46q-20 -26 -60.5 -42t-85.5 -16q-62 0 -114 41.5t-52 117.5zM195 144q0 -39 63 -39 q53 0 71 26v27q-18 26 -71 26q-63 0 -63 -40z" />
+<glyph unicode="b" horiz-adv-x="596" d="M50 0v667h180v-235q52 63 136 63q92 0 152.5 -68t60.5 -185q0 -120 -60.5 -187t-152.5 -67q-80 0 -136 63v-51h-180zM230 179q26 -32 75 -32q38 0 64 25.5t26 69.5q0 43 -26 68.5t-64 25.5q-48 0 -75 -33v-124z" />
+<glyph unicode="c" horiz-adv-x="502" d="M17 242q0 113 77 183t194 70q75 0 128 -27.5t77 -63.5l-116 -109q-27 41 -81 41q-40 0 -67.5 -24.5t-27.5 -69.5t27.5 -70t67.5 -25q52 0 81 42l116 -110q-24 -36 -77 -63.5t-128 -27.5q-117 0 -194 70t-77 184z" />
+<glyph unicode="d" horiz-adv-x="596" d="M17 242q0 117 60.5 185t152.5 68q84 0 136 -63v235h180v-667h-180v51q-56 -63 -136 -63q-92 0 -152.5 67t-60.5 187zM201 242q0 -44 26 -69.5t64 -25.5q48 0 75 33v124q-26 32 -75 32q-38 0 -64 -25.5t-26 -68.5z" />
+<glyph unicode="e" horiz-adv-x="543" d="M17 242q0 107 74 180t189 73q109 0 180 -73.5t71 -198.5v-37h-328q8 -25 35 -43t69 -18q23 0 58.5 10t52.5 24l74 -111q-34 -29 -91 -44.5t-115 -15.5q-116 0 -192.5 69t-76.5 185zM201 300h159q-14 58 -80 58q-63 0 -79 -58z" />
+<glyph unicode="f" horiz-adv-x="371" d="M7 327v156h80v22q0 76 52 124t132 48q102 0 151 -52l-65 -100q-16 19 -44 19q-18 0 -32 -11t-14 -28v-22h98v-156h-98v-327h-180v327h-80z" />
+<glyph unicode="g" horiz-adv-x="595" d="M17 254q0 116 59.5 178.5t152.5 62.5q83 0 136 -63v51h180v-431q0 -60 -19.5 -106t-48.5 -72t-69.5 -42.5t-77.5 -22t-77 -5.5q-129 0 -220 72l76 128q53 -53 144 -53q43 0 77.5 22.5t34.5 78.5v26q-57 -65 -136 -65q-93 0 -152.5 61.5t-59.5 179.5zM201 254 q0 -42 25 -62t65 -20q19 0 40.5 8.5t33.5 22.5v102q-12 14 -33.5 22.5t-40.5 8.5q-40 0 -65 -20t-25 -62z" />
+<glyph unicode="h" horiz-adv-x="608" d="M51 0v667h180v-239q59 67 166 67q80 0 120.5 -41.5t40.5 -108.5v-345h-180v269q0 67 -70 67q-43 0 -77 -38v-298h-180z" />
+<glyph unicode="i" d="M39 619q0 42 29.5 71.5t71.5 29.5t71.5 -29.5t29.5 -71.5t-29.5 -71.5t-71.5 -29.5t-71.5 29.5t-29.5 71.5zM50 0v483h180v-483h-180z" />
+<glyph unicode="j" d="M-106 -163l43 133q25 -19 60 -19q53 0 53 70v462h180v-462q0 -98 -50 -157.5t-151 -59.5q-52 0 -78 7t-57 26zM39 619q0 42 29.5 71.5t71.5 29.5t71.5 -29.5t29.5 -71.5t-29.5 -71.5t-71.5 -29.5t-71.5 29.5t-29.5 71.5z" />
+<glyph unicode="k" horiz-adv-x="557" d="M50 0v667h180v-356l111 172h217l-166 -220l177 -263h-221l-83 156l-35 -47v-109h-180z" />
+<glyph unicode="l" d="M50 0v667h180v-667h-180z" />
+<glyph unicode="m" horiz-adv-x="897" d="M50 0v483h180v-55q19 24 63 45.5t97 21.5q108 0 139 -85q23 35 68.5 60t100.5 25q69 0 109 -36t40 -109v-350h-180v282q0 24 -13.5 39t-41.5 15q-41 0 -74 -38v-298h-180v282q0 54 -55 54q-40 0 -73 -38v-298h-180z" />
+<glyph unicode="n" horiz-adv-x="607" d="M50 0v483h180v-55q59 67 166 67q80 0 120.5 -42.5t40.5 -109.5v-343h-180v267q0 69 -70 69q-43 0 -77 -38v-298h-180z" />
+<glyph unicode="o" horiz-adv-x="577" d="M17 242q0 106 73.5 179.5t197.5 73.5t198 -73.5t74 -179.5t-74 -180t-198 -74t-197.5 74t-73.5 180zM202 242q0 -42 23 -68.5t63 -26.5q41 0 64 26.5t23 68.5q0 41 -23 67.5t-64 26.5q-40 0 -63 -26.5t-23 -67.5z" />
+<glyph unicode="p" horiz-adv-x="595" d="M50 -184v667h180v-51q53 63 136 63q93 0 152.5 -66.5t59.5 -186.5q0 -121 -59.5 -187.5t-152.5 -66.5q-81 0 -136 63v-235h-180zM230 180q11 -14 33.5 -23.5t40.5 -9.5q38 0 64 25.5t26 69.5q0 43 -26 68.5t-64 25.5q-19 0 -40.5 -9t-33.5 -24v-123z" />
+<glyph unicode="q" horiz-adv-x="595" d="M17 242q0 120 59.5 186.5t152.5 66.5q83 0 136 -63v51h180v-667h-180v235q-55 -63 -136 -63q-93 0 -152.5 66.5t-59.5 187.5zM201 242q0 -44 26 -69.5t64 -25.5q18 0 40.5 9.5t33.5 23.5v123q-12 15 -33.5 24t-40.5 9q-38 0 -64 -25.5t-26 -68.5z" />
+<glyph unicode="r" horiz-adv-x="390" d="M50 0v483h180v-53q23 27 65.5 47t82.5 20v-172q-15 5 -41 5q-79 0 -107 -34v-296h-180z" />
+<glyph unicode="s" horiz-adv-x="490" d="M9 62l72 121q29 -23 82 -42t92 -19q48 0 48 21q0 10 -20.5 16t-50.5 8.5t-66 11.5t-66 23.5t-50.5 47.5t-20.5 80q0 69 57.5 117t158.5 48q115 0 209 -62l-66 -117q-25 20 -63.5 35t-78.5 15q-19 0 -32 -6.5t-13 -14.5q0 -10 28 -15t68.5 -12t81 -21t68.5 -50.5t28 -92.5 q0 -73 -62 -119.5t-167 -46.5q-66 0 -132 20.5t-105 53.5z" />
+<glyph unicode="t" horiz-adv-x="382" d="M7 327v156h80v132h180v-132h98v-156h-98v-135q0 -19 11 -32t29 -13q27 0 36 9l32 -136q-36 -32 -122 -32q-81 0 -123.5 38.5t-42.5 113.5v187h-80z" />
+<glyph unicode="u" horiz-adv-x="606" d="M50 138v345h180v-268q0 -68 70 -68q42 0 76 38v298h180v-483h-180v54q-60 -66 -166 -66q-80 0 -120 42t-40 108z" />
+<glyph unicode="v" horiz-adv-x="535" d="M-15 483h190l92 -276l93 276h190l-187 -483h-191z" />
+<glyph unicode="w" horiz-adv-x="805" d="M-12 483h185l64 -266l85 266h161l84 -266l64 266h186l-140 -483h-196l-79 270l-78 -270h-196z" />
+<glyph unicode="x" horiz-adv-x="521" d="M-12 0l158 248l-148 235h197l65 -113l65 113h197l-148 -235l159 -248h-197l-75 128l-77 -128h-196z" />
+<glyph unicode="y" horiz-adv-x="535" d="M-15 483h190l92 -276l93 276h190l-210 -543q-30 -78 -84 -105.5t-141 -30.5q-43 0 -70 8l25 160q16 -9 38 -9q54 0 63 19l4 10z" />
+<glyph unicode="z" horiz-adv-x="486" d="M33 0v132l170 195h-170v156h416v-126l-174 -201h178v-156h-420z" />
+<glyph unicode="{" horiz-adv-x="316" d="M2 197v94q25 0 38.5 17.5t13.5 46.5v138q0 84 54.5 134.5t130.5 50.5h60v-114h-60q-26 0 -43 -19t-17 -51v-159q0 -71 -46 -91q46 -20 46 -91v-158q0 -32 17.5 -51.5t42.5 -19.5h60v-114h-60q-76 0 -130.5 50t-54.5 134v139q0 29 -13.5 46.5t-38.5 17.5z" />
+<glyph unicode="|" horiz-adv-x="222" d="M54 -20v707h114v-707h-114z" />
+<glyph unicode="}" horiz-adv-x="316" d="M17 -76h60q25 0 42.5 19.5t17.5 51.5v158q0 71 46 91q-46 20 -46 91v159q0 32 -17 51t-43 19h-60v114h60q76 0 130.5 -50.5t54.5 -134.5v-138q0 -29 13.5 -46.5t38.5 -17.5v-94q-25 0 -38.5 -17.5t-13.5 -46.5v-139q0 -84 -54.5 -134t-130.5 -50h-60v114z" />
+<glyph unicode="~" horiz-adv-x="518" d="M25 414q4 51 12 90.5t24.5 79t48 61.5t75.5 22q38 0 63 -17t36 -40.5t17.5 -47.5t14 -41t18.5 -17q33 0 43 163l116 -14q-4 -52 -11.5 -90.5t-24 -78.5t-47.5 -61.5t-76 -21.5q-38 0 -63 16.5t-36 40.5t-17.5 48t-14 40.5t-18.5 16.5q-32 0 -42 -162z" />
+<glyph unicode="&#xa1;" d="M33 -184l25 419h162l27 -419h-214zM33 389q0 43 31.5 74.5t74.5 31.5t74.5 -31.5t31.5 -74.5q0 -44 -31.5 -75.5t-74.5 -31.5t-74.5 31.5t-31.5 75.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="502" d="M17 242q0 97 59 163.5t153 84.5v75h126v-77q96 -20 138 -84l-116 -109q-27 41 -81 41q-40 0 -67.5 -24.5t-27.5 -69.5t27.5 -70t67.5 -25q52 0 81 42l116 -110q-43 -64 -138 -84v-95h-126v93q-94 17 -153 84t-59 165z" />
+<glyph unicode="&#xa3;" horiz-adv-x="581" d="M26 270v109h38q-22 42 -22 81q0 68 42.5 119.5t100.5 74.5t118 23q100 0 163.5 -31t99.5 -99l-160 -92q-21 60 -77 60q-29 0 -47.5 -17t-18.5 -42q0 -27 22 -77h134v-109h-109q-2 -24 -16 -48t-35 -37q18 6 43 6q28 0 61 -12.5t53 -12.5q52 0 76 33l77 -159 q-48 -52 -160 -52q-47 0 -106 21t-77 21q-50 0 -114 -37l-66 132q85 47 85 96q0 22 -10 49h-95z" />
+<glyph unicode="&#xa4;" horiz-adv-x="648" d="M20 134l68 68q-35 59 -35 131q0 74 36 132l-69 69l105 104l75 -76q58 24 124 24t124 -24l76 76l104 -104l-68 -69q36 -61 36 -132q0 -73 -37 -133l69 -66l-104 -104l-77 73q-56 -24 -123 -24q-69 0 -125 25l-74 -74zM232 333q0 -42 24.5 -68.5t67.5 -26.5q44 0 68.5 26.5 t24.5 68.5q0 41 -24.5 67.5t-68.5 26.5q-43 0 -67.5 -26.5t-24.5 -67.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="664" d="M-18 667h227l124 -225l122 225h227l-183 -297h142v-105h-207v-53h207v-105h-207v-107h-202v107h-207v105h207v53h-207v105h141z" />
+<glyph unicode="&#xa6;" horiz-adv-x="222" d="M54 -20v316h114v-316h-114zM54 371v316h114v-316h-114z" />
+<glyph unicode="&#xa7;" horiz-adv-x="500" d="M12 -1l69 112q31 -27 77 -48.5t88 -21.5q57 0 57 27q0 18 -28 28t-68.5 18t-81 21.5t-68.5 48t-28 89.5q0 43 25.5 74.5t54.5 46.5q-80 37 -80 130q0 66 62 109.5t153 43.5q134 0 209 -65l-65 -105q-60 48 -135 48q-52 0 -52 -27q0 -15 28 -23.5t68.5 -15.5t81 -20 t68.5 -46.5t28 -86.5q0 -39 -20 -73.5t-55 -54.5q75 -37 75 -123q0 -77 -64.5 -121.5t-164.5 -44.5q-137 0 -234 80zM201 303q0 -43 63 -54q34 14 34 49q0 42 -54 53q-43 -8 -43 -48z" />
+<glyph unicode="&#xa8;" horiz-adv-x="318" d="M-38 618q0 38 26 63.5t63 25.5t63 -25.5t26 -63.5t-26 -63.5t-63 -25.5t-63 25.5t-26 63.5zM178 618q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M44 334q0 143 101 244t244 101t244 -101t101 -244t-101 -244t-244 -101t-244 101.5t-101 243.5zM86 334q0 -124 89 -213.5t214 -89.5t214 89t89 214t-89 214t-214 89t-214 -89t-89 -214zM189 335q0 90 60.5 149t147.5 59q92 0 150 -68l-37 -37q-43 58 -113 58 q-65 0 -109 -45.5t-44 -115.5q0 -69 44.5 -116t108.5 -47q70 0 114 59l38 -36q-60 -70 -152 -70q-87 0 -147.5 60t-60.5 150z" />
+<glyph unicode="&#xaa;" horiz-adv-x="392" d="M20 421q0 49 33 74.5t76 25.5q68 0 96 -33v24q0 19 -14.5 31t-42.5 12q-47 0 -86 -36l-44 82q63 47 153 47q161 0 161 -139v-183h-127v29q-29 -37 -96 -37q-42 0 -75.5 27t-33.5 76zM145 421q0 -26 38 -26q31 0 42 19v15q-11 18 -42 18q-38 0 -38 -26z" />
+<glyph unicode="&#xab;" horiz-adv-x="615" d="M30 243l160 177h160l-160 -177l160 -180h-160zM265 243l160 177h160l-160 -177l160 -180h-160z" />
+<glyph unicode="&#xac;" horiz-adv-x="527" d="M29 373v105h452v-288h-108v183h-344z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M30 167v150h240v-150h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M35 465q0 88 62 150t150 62q89 0 150.5 -61.5t61.5 -150.5q0 -88 -62 -150t-150 -62t-150 62t-62 150zM70 465q0 -73 52 -125t125 -52t125 52t52 125q0 74 -51.5 125.5t-125.5 51.5t-125.5 -51.5t-51.5 -125.5zM165 343v243h99q32 0 57 -21t25 -53q0 -35 -22.5 -53.5 t-39.5 -18.5l65 -97h-45l-63 96h-39v-96h-37zM202 471h62q17 0 30.5 11.5t13.5 29.5q0 19 -13.5 31t-30.5 12h-62v-84z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M0 551v97h363v-97h-363z" />
+<glyph unicode="&#xb0;" horiz-adv-x="331" d="M17 528q0 62 43.5 105.5t104.5 43.5t105 -43.5t44 -105.5q0 -61 -43.5 -104.5t-105.5 -43.5q-61 0 -104.5 43t-43.5 105zM108 528q0 -24 16.5 -40.5t40.5 -16.5t41.5 16.5t17.5 40.5t-17.5 41.5t-41.5 17.5t-40.5 -17.5t-16.5 -41.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="510" d="M29 0v105h452v-105h-452zM29 328v105h168v185h116v-185h168v-105h-168v-193h-116v193h-168z" />
+<glyph unicode="&#xb2;" horiz-adv-x="407" d="M22 759q65 68 175 68q83 0 131 -35.5t48 -95.5q0 -39 -30.5 -76t-113.5 -95h148v-104h-338v95q96 67 138.5 99t53 44.5t10.5 25.5q0 38 -50 38q-30 0 -60 -15t-46 -33z" />
+<glyph unicode="&#xb3;" horiz-adv-x="407" d="M23 476l62 87q23 -23 55 -34t57 -11q55 0 55 26q0 18 -17 23t-56 5q-43 0 -49 -1v102q9 -1 48 -1q38 0 52.5 5.5t14.5 20.5q0 25 -57 25q-60 0 -102 -39l-58 77q63 66 175 66q85 0 129 -30.5t44 -80.5q0 -31 -24.5 -56.5t-64.5 -32.5q37 -3 66.5 -28.5t29.5 -64.5 q0 -53 -50 -86.5t-131 -33.5q-119 0 -179 62z" />
+<glyph unicode="&#xb4;" horiz-adv-x="275" d="M0 556l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xb5;" horiz-adv-x="620" d="M50 -184v667h180v-268q0 -68 70 -68q42 0 76 38v298h180v-305q0 -15 10 -23t24 -8q10 0 19 3l11 -152q-33 -10 -78 -10q-121 0 -156 87q-16 -40 -46.5 -63.5t-70.5 -23.5q-23 0 -39 8v-180h-180z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M27 495q0 71 50.5 121.5t121.5 50.5h228v-767h-80v687h-68v-687h-80v423q-71 0 -121.5 50.5t-50.5 121.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="283" d="M35 244q0 44 31.5 75.5t74.5 31.5t74.5 -31.5t31.5 -75.5q0 -43 -31.5 -74.5t-74.5 -31.5t-74.5 31.5t-31.5 74.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="237" d="M0 -166l31 64q43 -30 83 -30q42 0 42 24q0 17 -21 17q-16 0 -26 -12l-59 34l30 80h80l-25 -58q15 9 34 9q28 0 48 -20.5t20 -52.5q0 -41 -34 -65t-84 -24q-77 0 -119 34z" />
+<glyph unicode="&#xb9;" horiz-adv-x="336" d="M0 663l163 158h113v-400h-132v233l-70 -69z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M20 483q0 68 50 116.5t132 48.5q84 0 133.5 -48.5t49.5 -116.5t-49.5 -116.5t-133.5 -48.5q-82 0 -132 48.5t-50 116.5zM151 483q0 -65 51 -65q53 0 53 65q0 63 -53 63q-51 0 -51 -63z" />
+<glyph unicode="&#xbb;" horiz-adv-x="615" d="M30 63l160 180l-160 177h160l160 -177l-160 -180h-160zM265 63l160 180l-160 177h160l160 -177l-160 -180h-160z" />
+<glyph unicode="&#xbc;" horiz-adv-x="897" d="M0 509l163 158h113v-400h-132v233l-70 -69zM168 0l426 667h98l-427 -667h-97zM509 71v87l143 242h185v-227h47v-102h-47v-71h-131v71h-197zM638 173h68v118z" />
+<glyph unicode="&#xbd;" horiz-adv-x="927" d="M0 509l163 158h113v-400h-132v233l-70 -69zM168 0l426 667h98l-427 -667h-97zM542 338q65 68 175 68q83 0 131 -35.5t48 -95.5q0 -39 -30.5 -76t-113.5 -95h148v-104h-338v95q96 67 138.5 99t53 44.5t10.5 25.5q0 38 -50 38q-30 0 -60 -15t-46 -33z" />
+<glyph unicode="&#xbe;" horiz-adv-x="964" d="M23 322l62 87q23 -23 55 -34t57 -11q55 0 55 26q0 18 -17 23t-56 5q-43 0 -49 -1v102q9 -1 48 -1q38 0 52.5 5.5t14.5 20.5q0 25 -57 25q-60 0 -102 -39l-58 77q63 66 175 66q85 0 129 -30.5t44 -80.5q0 -31 -24.5 -56.5t-64.5 -32.5q37 -3 66.5 -28.5t29.5 -64.5 q0 -53 -50 -86.5t-131 -33.5q-119 0 -179 62zM235 0l426 667h98l-427 -667h-97zM576 71v87l143 242h185v-227h47v-102h-47v-71h-131v71h-197zM705 173h68v118z" />
+<glyph unicode="&#xbf;" horiz-adv-x="401" d="M8 -33q0 39 14.5 70t35.5 49t42 33.5t35.5 32t14.5 34.5q0 24 -11 37l158 36q27 -37 27 -95q0 -37 -17.5 -66t-38.5 -43t-38.5 -27t-17.5 -23q0 -21 39 -21q47 0 87 42l112 -129q-42 -45 -101.5 -68t-120.5 -23q-101 0 -160.5 43.5t-59.5 117.5zM115 388q0 44 31.5 75.5 t75.5 31.5t75.5 -31.5t31.5 -75.5t-31.5 -75.5t-75.5 -31.5t-75.5 31.5t-31.5 75.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="710" d="M-18 0l246 667h254l246 -667h-229l-24 78h-240l-24 -78h-229zM147 867h155l120 -144h-120zM289 254h132l-66 215z" />
+<glyph unicode="&#xc1;" horiz-adv-x="710" d="M-18 0l246 667h254l246 -667h-229l-24 78h-240l-24 -78h-229zM285 723l120 144h155l-155 -144h-120zM289 254h132l-66 215z" />
+<glyph unicode="&#xc2;" horiz-adv-x="710" d="M-18 0l246 667h254l246 -667h-229l-24 78h-240l-24 -78h-229zM189 723l88 144h156l91 -144h-105l-64 73l-61 -73h-105zM289 254h132l-66 215z" />
+<glyph unicode="&#xc3;" horiz-adv-x="710" d="M-18 0l246 667h254l246 -667h-229l-24 78h-240l-24 -78h-229zM185 727q0 134 118 134q35 0 68 -21.5t42 -21.5q24 0 24 37h89q0 -134 -118 -134q-35 0 -68 21.5t-42 21.5q-24 0 -24 -37h-89zM289 254h132l-66 215z" />
+<glyph unicode="&#xc4;" horiz-adv-x="710" d="M-18 0l246 667h254l246 -667h-229l-24 78h-240l-24 -78h-229zM158 785q0 37 26 63t63 26t63 -26t26 -63t-26 -63t-63 -26t-63 26t-26 63zM289 254h132l-66 215zM374 785q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xc5;" horiz-adv-x="710" d="M-18 0l246 667h254l246 -667h-229l-24 78h-240l-24 -78h-229zM244 798q0 46 33 79t79 33t78 -33t32 -79t-32 -79t-78 -33t-79 33t-33 79zM289 254h132l-66 215zM321 798q0 -14 10.5 -24.5t24.5 -10.5t24 10.5t10 24.5t-10 24.5t-24 10.5t-24.5 -10.5t-10.5 -24.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="989" d="M-25 0l395 667h589v-176h-304v-66h297v-176h-297v-73h304v-176h-506v78h-207l-41 -78h-230zM340 254h113v215z" />
+<glyph unicode="&#xc7;" horiz-adv-x="697" d="M18 333q0 153 104 249t263 96q120 0 193.5 -56t109.5 -138l-174 -81q-13 40 -49 68.5t-80 28.5q-72 0 -117 -48t-45 -119t45 -119t117 -48q44 0 80 28.5t49 68.5l174 -80q-33 -76 -102 -132t-178 -62l-13 -32q15 9 34 9q28 0 48 -20.5t20 -52.5q0 -41 -34 -65t-84 -24 q-77 0 -119 34l31 64q43 -30 83 -30q42 0 42 24q0 17 -21 17q-16 0 -26 -12l-59 34l21 57q-138 16 -225.5 109t-87.5 232z" />
+<glyph unicode="&#xc8;" horiz-adv-x="596" d="M54 0v667h506v-176h-304v-66h297v-176h-297v-73h304v-176h-506zM96 867h155l120 -144h-120z" />
+<glyph unicode="&#xc9;" horiz-adv-x="596" d="M54 0v667h506v-176h-304v-66h297v-176h-297v-73h304v-176h-506zM239 723l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xca;" horiz-adv-x="596" d="M54 0v667h506v-176h-304v-66h297v-176h-297v-73h304v-176h-506zM140 723l88 144h156l91 -144h-105l-64 73l-61 -73h-105z" />
+<glyph unicode="&#xcb;" horiz-adv-x="596" d="M54 0v667h506v-176h-304v-66h297v-176h-297v-73h304v-176h-506zM113 785q0 37 25.5 63t63.5 26t63.5 -26t25.5 -63t-25.5 -63t-63.5 -26t-63.5 26t-25.5 63zM329 785q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xcc;" horiz-adv-x="310" d="M-50 867h155l120 -144h-120zM54 0v667h202v-667h-202z" />
+<glyph unicode="&#xcd;" horiz-adv-x="310" d="M54 0v667h202v-667h-202zM87 723l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xce;" horiz-adv-x="310" d="M-14 723l88 144h156l91 -144h-105l-64 73l-61 -73h-105zM54 0v667h202v-667h-202z" />
+<glyph unicode="&#xcf;" horiz-adv-x="310" d="M-42 785q0 37 26 63t63 26t63 -26t26 -63t-26 -63t-63 -26t-63 26t-26 63zM54 0v667h202v-667h-202zM174 785q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xd0;" horiz-adv-x="757" d="M7 254v159h68v254h298q162 0 264 -88.5t102 -244.5t-102 -245t-263 -89h-299v254h-68zM277 176h96q73 0 117 46t44 112q0 71 -41 114t-119 43h-97v-78h129v-159h-129v-78z" />
+<glyph unicode="&#xd1;" horiz-adv-x="750" d="M54 0v667h208l232 -316v316h202v-667h-194l-246 338v-338h-202zM203 727q0 134 118 134q35 0 68 -21.5t42 -21.5q24 0 24 37h89q0 -134 -118 -134q-35 0 -68 21.5t-42 21.5q-24 0 -24 -37h-89z" />
+<glyph unicode="&#xd2;" horiz-adv-x="766" d="M18 333q0 152 104.5 248.5t260.5 96.5t260.5 -96.5t104.5 -248.5t-104.5 -248.5t-260.5 -96.5t-260.5 96.5t-104.5 248.5zM177 867h155l120 -144h-120zM223 333q0 -71 44.5 -119t115.5 -48t115.5 48t44.5 119t-44.5 119t-115.5 48t-115.5 -48t-44.5 -119z" />
+<glyph unicode="&#xd3;" horiz-adv-x="766" d="M18 333q0 152 104.5 248.5t260.5 96.5t260.5 -96.5t104.5 -248.5t-104.5 -248.5t-260.5 -96.5t-260.5 96.5t-104.5 248.5zM223 333q0 -71 44.5 -119t115.5 -48t115.5 48t44.5 119t-44.5 119t-115.5 48t-115.5 -48t-44.5 -119zM312 723l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xd4;" horiz-adv-x="766" d="M18 333q0 152 104.5 248.5t260.5 96.5t260.5 -96.5t104.5 -248.5t-104.5 -248.5t-260.5 -96.5t-260.5 96.5t-104.5 248.5zM219 723l88 144h156l91 -144h-105l-64 73l-61 -73h-105zM223 333q0 -71 44.5 -119t115.5 -48t115.5 48t44.5 119t-44.5 119t-115.5 48t-115.5 -48 t-44.5 -119z" />
+<glyph unicode="&#xd5;" horiz-adv-x="766" d="M18 333q0 152 104.5 248.5t260.5 96.5t260.5 -96.5t104.5 -248.5t-104.5 -248.5t-260.5 -96.5t-260.5 96.5t-104.5 248.5zM213 727q0 134 118 134q35 0 68 -21.5t42 -21.5q24 0 24 37h89q0 -134 -118 -134q-35 0 -68 21.5t-42 21.5q-24 0 -24 -37h-89zM223 333 q0 -71 44.5 -119t115.5 -48t115.5 48t44.5 119t-44.5 119t-115.5 48t-115.5 -48t-44.5 -119z" />
+<glyph unicode="&#xd6;" horiz-adv-x="766" d="M18 333q0 152 104.5 248.5t260.5 96.5t260.5 -96.5t104.5 -248.5t-104.5 -248.5t-260.5 -96.5t-260.5 96.5t-104.5 248.5zM189 785q0 37 25.5 63t63.5 26t63.5 -26t25.5 -63t-25.5 -63t-63.5 -26t-63.5 26t-25.5 63zM223 333q0 -71 44.5 -119t115.5 -48t115.5 48 t44.5 119t-44.5 119t-115.5 48t-115.5 -48t-44.5 -119zM405 785q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xd7;" horiz-adv-x="510" d="M47 200l134 134l-134 134l75 74l133 -134l134 134l74 -74l-133 -134l133 -134l-74 -74l-134 134l-133 -134z" />
+<glyph unicode="&#xd8;" horiz-adv-x="766" d="M18 0l87 102q-87 93 -87 231q0 152 104.5 248.5t260.5 96.5q93 0 178 -40l25 29h138l-76 -90q100 -97 100 -244q0 -152 -104.5 -248.5t-260.5 -96.5q-110 0 -196 49l-31 -37h-138zM223 333q0 -42 15 -75l198 233q-24 9 -53 9q-71 0 -115.5 -48t-44.5 -119zM311 182 q34 -16 72 -16q71 0 115.5 48t44.5 119q0 51 -25 92z" />
+<glyph unicode="&#xd9;" horiz-adv-x="767" d="M54 274v393h205v-386q0 -50 32.5 -82.5t92.5 -32.5q59 0 91.5 32.5t32.5 82.5v386h205v-392q0 -130 -83 -208.5t-246 -78.5t-246.5 78.5t-83.5 207.5zM177 867h155l120 -144h-120z" />
+<glyph unicode="&#xda;" horiz-adv-x="767" d="M54 274v393h205v-386q0 -50 32.5 -82.5t92.5 -32.5q59 0 91.5 32.5t32.5 82.5v386h205v-392q0 -130 -83 -208.5t-246 -78.5t-246.5 78.5t-83.5 207.5zM315 723l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xdb;" horiz-adv-x="767" d="M54 274v393h205v-386q0 -50 32.5 -82.5t92.5 -32.5q59 0 91.5 32.5t32.5 82.5v386h205v-392q0 -130 -83 -208.5t-246 -78.5t-246.5 78.5t-83.5 207.5zM224 723l88 144h156l91 -144h-105l-64 73l-61 -73h-105z" />
+<glyph unicode="&#xdc;" horiz-adv-x="767" d="M54 274v393h205v-386q0 -50 32.5 -82.5t92.5 -32.5q59 0 91.5 32.5t32.5 82.5v386h205v-392q0 -130 -83 -208.5t-246 -78.5t-246.5 78.5t-83.5 207.5zM190 785q0 37 26 63t63 26t63 -26t26 -63t-26 -63t-63 -26t-63 26t-26 63zM406 785q0 37 26 63t63 26q38 0 64 -26 t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xdd;" horiz-adv-x="664" d="M-18 667h227l124 -225l122 225h227l-248 -402v-265h-202v265zM263 723l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xde;" horiz-adv-x="662" d="M54 0v667h202v-96h154q113 0 176.5 -66t63.5 -164t-63.5 -162.5t-176.5 -64.5h-154v-114h-202zM256 290h123q27 0 46.5 13.5t19.5 38.5t-19.5 39t-46.5 14h-123v-105z" />
+<glyph unicode="&#xdf;" horiz-adv-x="688" d="M51 0v451q0 95 71.5 160.5t195.5 65.5q95 0 166 -45t71 -118q0 -39 -17.5 -70t-39 -46t-39 -30.5t-17.5 -27.5q0 -8 17.5 -12.5t43.5 -7t56 -12t56 -25t43.5 -49t17.5 -80.5q0 -75 -61 -120.5t-155 -45.5q-122 0 -207 72l69 123q20 -25 60.5 -43t77.5 -18q44 0 44 21 q0 11 -24 17.5t-58.5 14t-69 21t-58.5 48.5t-24 88q0 34 15.5 62.5t34.5 43t34.5 28t15.5 20.5q0 32 -56 32q-38 0 -60.5 -17.5t-22.5 -49.5v-451h-180z" />
+<glyph unicode="&#xe0;" horiz-adv-x="559" d="M17 147q0 56 27.5 92.5t62.5 49t76 12.5q104 0 146 -53v50q0 26 -23.5 43t-66.5 17q-72 0 -134 -47l-61 111q91 73 228 73q48 0 88 -9.5t75 -31t54.5 -63t19.5 -99.5v-292h-180v46q-20 -26 -60.5 -42t-85.5 -16q-62 0 -114 41.5t-52 117.5zM66 700h155l120 -144h-120z M195 144q0 -39 63 -39q53 0 71 26v27q-18 26 -71 26q-63 0 -63 -40z" />
+<glyph unicode="&#xe1;" horiz-adv-x="559" d="M17 147q0 56 27.5 92.5t62.5 49t76 12.5q104 0 146 -53v50q0 26 -23.5 43t-66.5 17q-72 0 -134 -47l-61 111q91 73 228 73q48 0 88 -9.5t75 -31t54.5 -63t19.5 -99.5v-292h-180v46q-20 -26 -60.5 -42t-85.5 -16q-62 0 -114 41.5t-52 117.5zM195 144q0 -39 63 -39 q53 0 71 26v27q-18 26 -71 26q-63 0 -63 -40zM203 556l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xe2;" horiz-adv-x="559" d="M17 147q0 56 27.5 92.5t62.5 49t76 12.5q104 0 146 -53v50q0 26 -23.5 43t-66.5 17q-72 0 -134 -47l-61 111q91 73 228 73q48 0 88 -9.5t75 -31t54.5 -63t19.5 -99.5v-292h-180v46q-20 -26 -60.5 -42t-85.5 -16q-62 0 -114 41.5t-52 117.5zM111 556l88 144h156l91 -144 h-105l-64 73l-61 -73h-105zM195 144q0 -39 63 -39q53 0 71 26v27q-18 26 -71 26q-63 0 -63 -40z" />
+<glyph unicode="&#xe3;" horiz-adv-x="559" d="M17 147q0 56 27.5 92.5t62.5 49t76 12.5q104 0 146 -53v50q0 26 -23.5 43t-66.5 17q-72 0 -134 -47l-61 111q91 73 228 73q48 0 88 -9.5t75 -31t54.5 -63t19.5 -99.5v-292h-180v46q-20 -26 -60.5 -42t-85.5 -16q-62 0 -114 41.5t-52 117.5zM105 560q0 134 118 134 q35 0 68 -21.5t42 -21.5q24 0 24 37h89q0 -134 -118 -134q-35 0 -68 21.5t-42 21.5q-24 0 -24 -37h-89zM195 144q0 -39 63 -39q53 0 71 26v27q-18 26 -71 26q-63 0 -63 -40z" />
+<glyph unicode="&#xe4;" horiz-adv-x="559" d="M17 147q0 56 27.5 92.5t62.5 49t76 12.5q104 0 146 -53v50q0 26 -23.5 43t-66.5 17q-72 0 -134 -47l-61 111q91 73 228 73q48 0 88 -9.5t75 -31t54.5 -63t19.5 -99.5v-292h-180v46q-20 -26 -60.5 -42t-85.5 -16q-62 0 -114 41.5t-52 117.5zM76 618q0 38 26 63.5t63 25.5 t63 -25.5t26 -63.5t-26 -63.5t-63 -25.5t-63 25.5t-26 63.5zM195 144q0 -39 63 -39q53 0 71 26v27q-18 26 -71 26q-63 0 -63 -40zM292 618q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xe5;" horiz-adv-x="559" d="M17 147q0 56 27.5 92.5t62.5 49t76 12.5q104 0 146 -53v50q0 26 -23.5 43t-66.5 17q-72 0 -134 -47l-61 111q91 73 228 73q48 0 88 -9.5t75 -31t54.5 -63t19.5 -99.5v-292h-180v46q-20 -26 -60.5 -42t-85.5 -16q-62 0 -114 41.5t-52 117.5zM165 631q0 46 33 79t79 33 t78 -33t32 -79t-32 -79t-78 -33t-79 33t-33 79zM195 144q0 -39 63 -39q53 0 71 26v27q-18 26 -71 26q-63 0 -63 -40zM242 631q0 -14 10.5 -24.5t24.5 -10.5t24 10.5t10 24.5t-10 24.5t-24 10.5t-24.5 -10.5t-10.5 -24.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="851" d="M17 144q0 77 48 117t121 40q47 0 89 -14t63 -38v49q0 26 -24.5 42.5t-69.5 16.5q-76 0 -139 -47l-61 112q91 73 228 73q104 0 156 -59q66 59 170 59q102 0 171.5 -74t69.5 -198v-37h-319q27 -57 104 -57q59 0 98 34l78 -115q-34 -29 -89.5 -44.5t-107.5 -15.5 q-106 0 -175 65q-77 -65 -198 -65q-94 0 -153.5 39t-59.5 117zM195 149q0 -17 17.5 -25.5t38.5 -8.5q35 0 61 12.5t26 26.5v3q-21 27 -76 27q-27 0 -47 -9t-20 -26zM518 300h150q-14 58 -76 58q-59 0 -74 -58z" />
+<glyph unicode="&#xe7;" horiz-adv-x="502" d="M17 242q0 113 77 183t194 70q75 0 128 -27.5t77 -63.5l-116 -109q-27 41 -81 41q-40 0 -67.5 -24.5t-27.5 -69.5t27.5 -70t67.5 -25q52 0 81 42l116 -110q-21 -31 -64.5 -56.5t-104.5 -32.5l-15 -35q15 9 34 9q28 0 48 -20.5t20 -52.5q0 -41 -34 -65t-84 -24 q-77 0 -119 34l31 64q43 -30 83 -30q42 0 42 24q0 17 -21 17q-16 0 -26 -12l-59 34l21 58q-101 12 -164.5 80t-63.5 171z" />
+<glyph unicode="&#xe8;" horiz-adv-x="543" d="M17 242q0 107 74 180t189 73q109 0 180 -73.5t71 -198.5v-37h-328q8 -25 35 -43t69 -18q23 0 58.5 10t52.5 24l74 -111q-34 -29 -91 -44.5t-115 -15.5q-116 0 -192.5 69t-76.5 185zM72 700h155l120 -144h-120zM201 300h159q-14 58 -80 58q-63 0 -79 -58z" />
+<glyph unicode="&#xe9;" horiz-adv-x="543" d="M17 242q0 107 74 180t189 73q109 0 180 -73.5t71 -198.5v-37h-328q8 -25 35 -43t69 -18q23 0 58.5 10t52.5 24l74 -111q-34 -29 -91 -44.5t-115 -15.5q-116 0 -192.5 69t-76.5 185zM201 300h159q-14 58 -80 58q-63 0 -79 -58zM209 556l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xea;" horiz-adv-x="543" d="M17 242q0 107 74 180t189 73q109 0 180 -73.5t71 -198.5v-37h-328q8 -25 35 -43t69 -18q23 0 58.5 10t52.5 24l74 -111q-34 -29 -91 -44.5t-115 -15.5q-116 0 -192.5 69t-76.5 185zM113 556l88 144h156l91 -144h-105l-64 73l-61 -73h-105zM201 300h159q-14 58 -80 58 q-63 0 -79 -58z" />
+<glyph unicode="&#xeb;" horiz-adv-x="543" d="M17 242q0 107 74 180t189 73q109 0 180 -73.5t71 -198.5v-37h-328q8 -25 35 -43t69 -18q23 0 58.5 10t52.5 24l74 -111q-34 -29 -91 -44.5t-115 -15.5q-116 0 -192.5 69t-76.5 185zM84 618q0 38 26 63.5t63 25.5t63 -25.5t26 -63.5t-26 -63.5t-63 -25.5t-63 25.5 t-26 63.5zM201 300h159q-14 58 -80 58q-63 0 -79 -58zM300 618q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xec;" d="M-65 700h155l120 -144h-120zM50 0v483h180v-483h-180z" />
+<glyph unicode="&#xed;" d="M50 0v483h180v-483h-180zM71 556l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xee;" d="M-27 556l88 144h156l91 -144h-105l-64 73l-61 -73h-105zM50 0v483h180v-483h-180z" />
+<glyph unicode="&#xef;" d="M-57 618q0 38 25.5 63.5t63.5 25.5t63.5 -25.5t25.5 -63.5t-25.5 -63.5t-63.5 -25.5t-63.5 25.5t-25.5 63.5zM50 0v483h180v-483h-180zM159 618q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xf0;" horiz-adv-x="577" d="M17 215q0 100 60.5 163t147.5 63q107 0 162 -96q-22 68 -154 161l-149 -66l-32 78l97 42l-47 28l96 143q70 -42 134 -90l99 43l33 -75l-61 -27q157 -146 157 -324q0 -124 -72 -197t-200 -73q-122 0 -196.5 62.5t-74.5 164.5zM202 215q0 -31 23 -49.5t63 -18.5 q41 0 64 18.5t23 49.5t-23 49.5t-64 18.5q-40 0 -63 -18.5t-23 -49.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="607" d="M50 0v483h180v-55q59 67 166 67q80 0 120.5 -42.5t40.5 -109.5v-343h-180v267q0 69 -70 69q-43 0 -77 -38v-298h-180zM134 560q0 134 118 134q35 0 68 -21.5t42 -21.5q24 0 24 37h89q0 -134 -118 -134q-35 0 -68 21.5t-42 21.5q-24 0 -24 -37h-89z" />
+<glyph unicode="&#xf2;" horiz-adv-x="577" d="M17 242q0 106 73.5 179.5t197.5 73.5t198 -73.5t74 -179.5t-74 -180t-198 -74t-197.5 74t-73.5 180zM82 700h155l120 -144h-120zM202 242q0 -42 23 -68.5t63 -26.5q41 0 64 26.5t23 68.5q0 41 -23 67.5t-64 26.5q-40 0 -63 -26.5t-23 -67.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="577" d="M17 242q0 106 73.5 179.5t197.5 73.5t198 -73.5t74 -179.5t-74 -180t-198 -74t-197.5 74t-73.5 180zM202 242q0 -42 23 -68.5t63 -26.5q41 0 64 26.5t23 68.5q0 41 -23 67.5t-64 26.5q-40 0 -63 -26.5t-23 -67.5zM218 556l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xf4;" horiz-adv-x="577" d="M17 242q0 106 73.5 179.5t197.5 73.5t198 -73.5t74 -179.5t-74 -180t-198 -74t-197.5 74t-73.5 180zM122 556l88 144h156l91 -144h-105l-64 73l-61 -73h-105zM202 242q0 -42 23 -68.5t63 -26.5q41 0 64 26.5t23 68.5q0 41 -23 67.5t-64 26.5q-40 0 -63 -26.5t-23 -67.5z " />
+<glyph unicode="&#xf5;" horiz-adv-x="577" d="M17 242q0 106 73.5 179.5t197.5 73.5t198 -73.5t74 -179.5t-74 -180t-198 -74t-197.5 74t-73.5 180zM118 560q0 134 118 134q35 0 68 -21.5t42 -21.5q24 0 24 37h89q0 -134 -118 -134q-35 0 -68 21.5t-42 21.5q-24 0 -24 -37h-89zM202 242q0 -42 23 -68.5t63 -26.5 q41 0 64 26.5t23 68.5q0 41 -23 67.5t-64 26.5q-40 0 -63 -26.5t-23 -67.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="577" d="M17 242q0 106 73.5 179.5t197.5 73.5t198 -73.5t74 -179.5t-74 -180t-198 -74t-197.5 74t-73.5 180zM91 618q0 38 25.5 63.5t63.5 25.5t63.5 -25.5t25.5 -63.5t-25.5 -63.5t-63.5 -25.5t-63.5 25.5t-25.5 63.5zM202 242q0 -42 23 -68.5t63 -26.5q41 0 64 26.5t23 68.5 q0 41 -23 67.5t-64 26.5q-40 0 -63 -26.5t-23 -67.5zM307 618q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M29 285v105h453v-105h-453zM179 170q0 32 22.5 54t53.5 22t53.5 -22t22.5 -54t-22.5 -54t-53.5 -22t-53.5 22t-22.5 54zM179 505q0 31 22 53t54 22t54 -22t22 -53q0 -32 -22.5 -54.5t-53.5 -22.5t-53.5 22.5t-22.5 54.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="577" d="M17 0l64 71q-64 70 -64 171q0 106 73.5 179.5t197.5 73.5q82 0 146 -35l21 23h105l-65 -71q65 -71 65 -170q0 -106 -74 -180t-198 -74q-84 0 -147 36l-22 -24h-102zM202 242q0 -20 4 -33l111 123q-12 4 -29 4q-40 0 -63 -26.5t-23 -67.5zM257 152q15 -5 31 -5 q41 0 64 26.5t23 68.5q0 16 -5 33z" />
+<glyph unicode="&#xf9;" horiz-adv-x="606" d="M50 138v345h180v-268q0 -68 70 -68q42 0 76 38v298h180v-483h-180v54q-60 -66 -166 -66q-80 0 -120 42t-40 108zM97 700h155l120 -144h-120z" />
+<glyph unicode="&#xfa;" horiz-adv-x="606" d="M50 138v345h180v-268q0 -68 70 -68q42 0 76 38v298h180v-483h-180v54q-60 -66 -166 -66q-80 0 -120 42t-40 108zM233 556l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xfb;" horiz-adv-x="606" d="M50 138v345h180v-268q0 -68 70 -68q42 0 76 38v298h180v-483h-180v54q-60 -66 -166 -66q-80 0 -120 42t-40 108zM138 556l88 144h156l91 -144h-105l-64 73l-61 -73h-105z" />
+<glyph unicode="&#xfc;" horiz-adv-x="606" d="M50 138v345h180v-268q0 -68 70 -68q42 0 76 38v298h180v-483h-180v54q-60 -66 -166 -66q-80 0 -120 42t-40 108zM108 618q0 38 26 63.5t63 25.5t63 -25.5t26 -63.5t-26 -63.5t-63 -25.5t-63 25.5t-26 63.5zM324 618q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26 q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#xfd;" horiz-adv-x="535" d="M-15 483h190l92 -276l93 276h190l-210 -543q-30 -78 -84 -105.5t-141 -30.5q-43 0 -70 8l25 160q16 -9 38 -9q54 0 63 19l4 10zM197 556l120 144h155l-155 -144h-120z" />
+<glyph unicode="&#xfe;" horiz-adv-x="595" d="M50 -184v851h180v-235q53 63 136 63q93 0 152.5 -66.5t59.5 -186.5q0 -121 -59.5 -187.5t-152.5 -66.5q-81 0 -136 63v-235h-180zM230 180q11 -14 33.5 -23.5t40.5 -9.5q38 0 64 25.5t26 69.5q0 43 -26 68.5t-64 25.5q-19 0 -40.5 -9t-33.5 -24v-123z" />
+<glyph unicode="&#xff;" horiz-adv-x="535" d="M-15 483h190l92 -276l93 276h190l-210 -543q-30 -78 -84 -105.5t-141 -30.5q-43 0 -70 8l25 160q16 -9 38 -9q54 0 63 19l4 10zM70 618q0 38 26 63.5t63 25.5t63 -25.5t26 -63.5t-26 -63.5t-63 -25.5t-63 25.5t-26 63.5zM286 618q0 37 26 63t63 26q38 0 64 -26t26 -63 t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#x152;" horiz-adv-x="1062" d="M18 333q0 153 97 248.5t245 95.5q106 0 166 -46v36h506v-176h-304v-66h297v-176h-297v-73h304v-176h-506v36q-61 -48 -166 -48q-148 0 -245 96t-97 249zM223 333q0 -72 45.5 -119.5t122.5 -47.5q44 0 80 19t55 52v193q-40 69 -135 69q-77 0 -122.5 -47t-45.5 -119z" />
+<glyph unicode="&#x153;" horiz-adv-x="901" d="M17 242q0 106 73.5 179.5t197.5 73.5q95 0 178 -77q73 77 172 77q109 0 180 -73.5t71 -198.5v-37h-328q30 -62 109 -62q61 0 102 34l78 -110q-34 -29 -91 -44.5t-115 -15.5q-60 0 -100 20t-79 56q-76 -76 -177 -76q-124 0 -197.5 74t-73.5 180zM202 242q0 -46 24 -71 t62 -25t62.5 25t24.5 71t-24.5 70t-62.5 24t-62 -24.5t-24 -69.5zM559 300h159q-14 59 -80 59q-64 0 -79 -59z" />
+<glyph unicode="&#x178;" horiz-adv-x="664" d="M-18 667h227l124 -225l122 225h227l-248 -402v-265h-202v265zM136 785q0 37 26 63t63 26t63 -26t26 -63t-26 -63t-63 -26t-63 26t-26 63zM352 785q0 37 26 63t63 26q38 0 64 -26t26 -63t-26 -63t-64 -26q-37 0 -63 26t-26 63z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="335" d="M0 556l88 144h156l91 -144h-105l-64 73l-61 -73h-105z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="341" d="M0 560q0 134 118 134q35 0 68 -21.5t42 -21.5q24 0 24 37h89q0 -134 -118 -134q-35 0 -68 21.5t-42 21.5q-24 0 -24 -37h-89z" />
+<glyph unicode="&#x2000;" horiz-adv-x="455" />
+<glyph unicode="&#x2001;" horiz-adv-x="910" />
+<glyph unicode="&#x2002;" horiz-adv-x="455" />
+<glyph unicode="&#x2003;" horiz-adv-x="910" />
+<glyph unicode="&#x2004;" horiz-adv-x="303" />
+<glyph unicode="&#x2005;" horiz-adv-x="227" />
+<glyph unicode="&#x2006;" horiz-adv-x="151" />
+<glyph unicode="&#x2007;" horiz-adv-x="151" />
+<glyph unicode="&#x2008;" horiz-adv-x="113" />
+<glyph unicode="&#x2009;" horiz-adv-x="182" />
+<glyph unicode="&#x200a;" horiz-adv-x="50" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M30 167v150h240v-150h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M30 167v150h240v-150h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M30 167v150h240v-150h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M30 167v150h533v-150h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M30 167v150h773v-150h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="281" d="M30 458q0 132 125 220l73 -59q-25 -11 -53.5 -40t-37.5 -56q10 4 26 4q37 0 62 -26t25 -67q0 -43 -31 -74t-73 -31q-48 0 -82 35t-34 94z" />
+<glyph unicode="&#x2019;" horiz-adv-x="281" d="M34 572q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67z" />
+<glyph unicode="&#x201a;" horiz-adv-x="281" d="M34 97q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67z" />
+<glyph unicode="&#x201c;" horiz-adv-x="528" d="M26 458q0 132 125 220l73 -59q-25 -11 -53.5 -40t-37.5 -56q10 4 26 4q37 0 62 -26t25 -67q0 -43 -31 -74t-73 -31q-48 0 -82 35t-34 94zM273 458q0 132 125 220l73 -59q-25 -11 -53.5 -40t-37.5 -56q10 4 26 4q37 0 62 -26t25 -67q0 -43 -31 -74t-73 -31q-48 0 -82 35 t-34 94z" />
+<glyph unicode="&#x201d;" horiz-adv-x="528" d="M34 572q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67zM281 572q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67z " />
+<glyph unicode="&#x201e;" horiz-adv-x="528" d="M34 97q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67zM281 97q0 43 31 74t73 31q48 0 82 -35t34 -94q0 -132 -125 -220l-73 59q25 11 53.5 40t37.5 56q-10 -4 -26 -4q-37 0 -62 26t-25 67z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M50 242q0 54 38 92t92 38t92 -38t38 -92q0 -53 -38 -91t-92 -38t-92 38t-38 91z" />
+<glyph unicode="&#x2026;" horiz-adv-x="846" d="M35 95q0 44 31.5 75.5t74.5 31.5t74.5 -31.5t31.5 -75.5q0 -43 -31.5 -74.5t-74.5 -31.5t-74.5 31.5t-31.5 74.5zM317 95q0 44 31.5 75.5t74.5 31.5t74.5 -31.5t31.5 -75.5q0 -43 -31.5 -74.5t-74.5 -31.5t-74.5 31.5t-31.5 74.5zM599 95q0 44 31.5 75.5t74.5 31.5 t74.5 -31.5t31.5 -75.5q0 -43 -31.5 -74.5t-74.5 -31.5t-74.5 31.5t-31.5 74.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="182" />
+<glyph unicode="&#x2039;" horiz-adv-x="380" d="M30 243l160 177h160l-160 -177l160 -180h-160z" />
+<glyph unicode="&#x203a;" horiz-adv-x="380" d="M30 63l160 180l-160 177h160l160 -177l-160 -180h-160z" />
+<glyph unicode="&#x205f;" horiz-adv-x="227" />
+<glyph unicode="&#x20ac;" horiz-adv-x="722" d="M12 218v95h31v43h-31v95h50q36 104 130 165.5t218 61.5q120 0 193.5 -56t109.5 -138l-174 -81q-13 40 -49 68.5t-80 28.5q-72 0 -118 -49h178v-95h-221q-1 -8 -1 -23q0 -14 1 -20h221v-95h-181q47 -52 121 -52q44 0 80 28.5t49 68.5l174 -80q-16 -37 -40 -68.5t-60 -61.5 t-88.5 -47.5t-114.5 -17.5q-125 0 -219.5 62t-129.5 168h-49z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M17 641v26h152v-26h-62v-194h-28v194h-62zM205 447v220h43l64 -160l64 160h43v-220h-28v182l-75 -182h-8l-75 182v-182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="10" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="20" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="5" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="80" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="50" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="20" />
+<hkern g1="G" 	g2="question" 	k="20" />
+<hkern g1="G" 	g2="T" 	k="10" />
+<hkern g1="G" 	g2="W" 	k="10" />
+<hkern g1="G" 	g2="V" 	k="20" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="G" 	g2="X" 	k="10" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="40" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="60" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
+<hkern g1="K" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="K" 	g2="x" 	k="40" />
+<hkern g1="L" 	g2="question" 	k="100" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="150" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="L" 	g2="asterisk" 	k="160" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="80" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="130" />
+<hkern g1="L" 	g2="t" 	k="40" />
+<hkern g1="L" 	g2="w" 	k="30" />
+<hkern g1="L" 	g2="v" 	k="50" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="50" />
+<hkern g1="P" 	g2="J" 	k="130" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="70" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
+<hkern g1="P" 	g2="X" 	k="30" />
+<hkern g1="P" 	g2="ampersand" 	k="40" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="20" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="P" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="R" 	g2="ampersand" 	k="10" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="20" />
+<hkern g1="S" 	g2="T" 	k="20" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="10" />
+<hkern g1="S" 	g2="w" 	k="10" />
+<hkern g1="S" 	g2="v" 	k="20" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="x" 	k="20" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="T" 	g2="J" 	k="90" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="10" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="50" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="60" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="100" />
+<hkern g1="T" 	g2="ampersand" 	k="50" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="60" />
+<hkern g1="T" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="80" />
+<hkern g1="T" 	g2="x" 	k="10" />
+<hkern g1="T" 	g2="s" 	k="70" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="S" 	k="10" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="50" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="40" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V" 	g2="J" 	k="100" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="70" />
+<hkern g1="V" 	g2="t" 	k="20" />
+<hkern g1="V" 	g2="w" 	k="20" />
+<hkern g1="V" 	g2="v" 	k="20" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="50" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="70" />
+<hkern g1="V" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="30" />
+<hkern g1="V" 	g2="s" 	k="60" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="70" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="W" 	g2="J" 	k="80" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="20" />
+<hkern g1="W" 	g2="v" 	k="10" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="10" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="60" />
+<hkern g1="W" 	g2="ampersand" 	k="20" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="40" />
+<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="40" />
+<hkern g1="W" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="30" />
+<hkern g1="W" 	g2="s" 	k="40" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="120" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="70" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="70" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="130" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="120" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="question" 	k="50" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="T" 	k="80" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="W" 	k="50" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="V" 	k="80" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="T" 	k="60" />
+<hkern g1="ampersand" 	g2="W" 	k="20" />
+<hkern g1="ampersand" 	g2="V" 	k="50" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="asterisk" 	g2="J" 	k="130" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="80" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="80" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="60" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="50" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="80" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="50" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="80" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="60" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="f" 	g2="question" 	k="-50" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-60" />
+<hkern g1="f" 	g2="asterisk" 	k="-60" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-70" />
+<hkern g1="f" 	g2="V" 	k="-70" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="10" />
+<hkern g1="f" 	g2="S" 	k="-30" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-60" />
+<hkern g1="g,j,q" 	g2="question" 	k="30" />
+<hkern g1="g,j,q" 	g2="T" 	k="50" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="70" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-60" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="40" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="60" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="130" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="50" />
+<hkern g1="k" 	g2="T" 	k="20" />
+<hkern g1="k" 	g2="W" 	k="30" />
+<hkern g1="k" 	g2="V" 	k="30" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="80" />
+<hkern g1="k" 	g2="bullet" 	k="20" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="20" />
+<hkern g1="k" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="10" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="100" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="80" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="50" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="80" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="120" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="10" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="120" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="90" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="20" />
+<hkern g1="r" 	g2="W" 	k="20" />
+<hkern g1="r" 	g2="V" 	k="30" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="r" 	g2="X" 	k="30" />
+<hkern g1="s" 	g2="question" 	k="50" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="60" />
+<hkern g1="s" 	g2="W" 	k="60" />
+<hkern g1="s" 	g2="V" 	k="50" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="s" 	g2="X" 	k="10" />
+<hkern g1="t" 	g2="T" 	k="10" />
+<hkern g1="t" 	g2="W" 	k="20" />
+<hkern g1="t" 	g2="V" 	k="40" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="50" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="V" 	k="70" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="W" 	k="10" />
+<hkern g1="v" 	g2="V" 	k="20" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="60" />
+<hkern g1="v" 	g2="X" 	k="30" />
+<hkern g1="w" 	g2="V" 	k="20" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="w" 	g2="X" 	k="30" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="10" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="10" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="30" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="30" />
+<hkern g1="X" 	g2="v" 	k="30" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="30" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="x" 	g2="T" 	k="10" />
+<hkern g1="x" 	g2="W" 	k="30" />
+<hkern g1="x" 	g2="V" 	k="30" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="80" />
+<hkern g1="x" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..2d637c3a20e6f8950bcdf26f35320978447f7d49
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.woff
new file mode 100755
index 0000000000000000000000000000000000000000..978a9e9247a82893a150036c946e606516f77859
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Black.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.eot
new file mode 100755
index 0000000000000000000000000000000000000000..dddd7b0b0711c2e6458f3573c8cbaf126cea894d
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..ad5bf7fc2eba9d8224e4ea63120a9dc4fa362211
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.svg
new file mode 100755
index 0000000000000000000000000000000000000000..4f87cf1fd9366a1e43e20761e49e94b0483fc133
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.svg
@@ -0,0 +1,558 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_novablack_italic" horiz-adv-x="596" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="255" />
+<glyph unicode="&#xfb01;" horiz-adv-x="651" d="M25 327l35 156h79l6 25q18 74 72 121.5t133 47.5q76 0 123 -28l-59 -117q-14 12 -39 12q-42 0 -50 -36l-6 -25h99l-35 -156h-98l-72 -327h-180l72 327h-80zM367 0l107 483h180l-107 -483h-180zM491 604q0 53 36 84.5t78 31.5q39 0 65 -25t26 -61q0 -53 -36 -84.5 t-78 -31.5q-39 0 -65 25t-26 61z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="651" d="M25 327l35 156h79l6 25q18 74 72 121.5t133 47.5q76 0 123 -28l-59 -117q-14 12 -39 12q-42 0 -50 -36l-6 -25h99l-35 -156h-98l-72 -327h-180l72 327h-80zM367 0l147 667h180l-147 -667h-180z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="1022" d="M25 327l35 156h79l6 26q17 74 69.5 121t139.5 47q98 0 149 -52l-84 -100q-18 19 -48 19q-38 0 -47 -40l-5 -21h99l-35 -156h-98l-72 -327h-180l72 327h-80zM396 327l35 156h79l6 25q18 74 72 121.5t133 47.5q76 0 123 -28l-59 -117q-13 12 -39 12q-42 0 -50 -36l-6 -25 h99l-35 -156h-98l-72 -327h-180l72 327h-80zM738 0l107 483h180l-107 -483h-180zM862 604q0 53 36 84.5t78 31.5q39 0 65 -25t26 -61q0 -53 -36 -84.5t-78 -31.5q-39 0 -65 25t-26 61z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="1022" d="M25 327l35 156h79l6 26q17 74 69.5 121t139.5 47q98 0 149 -52l-84 -100q-18 19 -48 19q-38 0 -47 -40l-5 -21h99l-35 -156h-98l-72 -327h-180l72 327h-80zM396 327l35 156h79l6 25q18 74 72 121.5t133 47.5q76 0 123 -28l-59 -117q-13 12 -39 12q-42 0 -50 -36l-6 -25 h99l-35 -156h-98l-72 -327h-180l72 327h-80zM738 0l147 667h180l-147 -667h-180z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="255" />
+<glyph unicode="&#x09;" horiz-adv-x="255" />
+<glyph unicode="&#xa0;" horiz-adv-x="255" />
+<glyph unicode="!" horiz-adv-x="283" d="M1 86q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70zM60 248l66 419h214l-118 -419h-162z" />
+<glyph unicode="&#x22;" horiz-adv-x="469" d="M107 571q0 45 31 75.5t75 30.5q33 0 57 -24t24 -59q0 -16 -9 -37l-101 -218h-74q-3 208 -3 232zM325 571q0 45 31 75.5t75 30.5q33 0 57 -24t24 -59q0 -16 -9 -37l-101 -218h-74q-3 208 -3 232z" />
+<glyph unicode="#" horiz-adv-x="646" d="M-9 0l88 158h-86l59 109h88l72 132h-87l58 108h90l88 160h127l-88 -160h78l88 160h127l-89 -160h88l-57 -108h-91l-73 -132h91l-58 -109h-94l-87 -158h-127l88 158h-79l-87 -158h-127zM267 267h77l73 132h-78z" />
+<glyph unicode="$" horiz-adv-x="635" d="M-3 118l120 144q35 -45 99 -73.5t131 -28.5q26 0 39.5 9t13.5 20q0 15 -33 28t-80 28t-93.5 36.5t-79.5 62t-33 94.5q0 93 73.5 164.5t202.5 74.5l21 91h128l-24 -106q107 -27 176 -96l-121 -140q-39 39 -95.5 60t-107.5 21q-19 0 -30 -7.5t-11 -19.5q0 -14 33 -27 t80 -28.5t94 -37t80 -62t33 -94.5q0 -106 -76.5 -174t-203.5 -69l-20 -88h-128l23 101q-139 31 -211 117z" />
+<glyph unicode="%" horiz-adv-x="784" d="M76 483q0 85 56 139.5t136 54.5q71 0 121 -38.5t50 -103.5q0 -85 -56 -139.5t-136 -54.5q-70 0 -120.5 38.5t-50.5 103.5zM77 0l573 667h98l-574 -667h-97zM198 494q0 -20 14.5 -33.5t38.5 -13.5q29 0 47.5 20.5t18.5 56.5q0 20 -14.5 33.5t-38.5 13.5q-29 0 -47.5 -20.5 t-18.5 -56.5zM384 130q0 85 56 139.5t136 54.5q71 0 121 -38.5t50 -103.5q0 -85 -56 -139.5t-136 -54.5q-70 0 -120.5 38.5t-50.5 103.5zM506 141q0 -20 14.5 -33.5t38.5 -13.5q29 0 47.5 20.5t18.5 56.5q0 20 -14.5 33.5t-38.5 13.5q-29 0 -47.5 -20.5t-18.5 -56.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="652" d="M-6 173q0 88 50.5 138t137.5 80q-13 52 -13 93q0 84 63 138.5t159 54.5q82 0 141 -39.5t59 -111.5q0 -42 -16 -73.5t-48 -52.5t-61.5 -33t-74.5 -26q11 -25 22 -43l31 -59q44 47 73 99l124 -80q-61 -81 -126 -139q40 -63 80 -119h-207q-3 3 -8.5 11t-7.5 11 q-73 -34 -147 -34q-105 0 -168 44.5t-63 140.5zM189 194q0 -33 19 -50.5t49 -17.5q20 0 40 7q-28 45 -37 64q-18 34 -36 74q-35 -30 -35 -77zM347 485q0 -23 6 -45q82 27 82 69q0 43 -37 43q-22 0 -36.5 -17.5t-14.5 -49.5z" />
+<glyph unicode="'" horiz-adv-x="252" d="M107 571q0 45 31 75.5t75 30.5q33 0 57 -24t24 -59q0 -16 -9 -37l-101 -218h-74q-3 208 -3 232z" />
+<glyph unicode="(" horiz-adv-x="346" d="M22 123q0 157 79.5 311t209.5 251l95 -97q-92 -100 -144 -234t-52 -273q0 -104 40 -204l-132 -76q-47 56 -71.5 143t-24.5 179z" />
+<glyph unicode=")" horiz-adv-x="347" d="M-61 -102q92 100 144 234t52 273q0 104 -40 204l132 76q47 -56 71.5 -143t24.5 -179q0 -157 -79.5 -311t-209.5 -251z" />
+<glyph unicode="*" horiz-adv-x="363" d="M66 481l102 37l-82 57l56 64l75 -64l19 102h82l-30 -110l101 46l24 -74l-101 -37l81 -57l-57 -64l-75 64l-17 -102h-83l29 110l-101 -45z" />
+<glyph unicode="+" horiz-adv-x="510" d="M38 285l23 105h168l41 185h116l-41 -185h168l-23 -105h-168l-43 -193h-116l43 193h-168z" />
+<glyph unicode="," horiz-adv-x="283" d="M-18 -79q84 34 112 84q-3 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5t-128 -103.5z" />
+<glyph unicode="-" horiz-adv-x="300" d="M13 167l33 150h240l-33 -150h-240z" />
+<glyph unicode="." horiz-adv-x="283" d="M1 86q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode="/" horiz-adv-x="362" d="M-61 -20l393 707h131l-394 -707h-130z" />
+<glyph unicode="0" horiz-adv-x="628" d="M28 266q0 174 100 292.5t249 118.5q117 0 189 -71.5t72 -205.5q0 -174 -99.5 -293t-248.5 -119q-116 0 -189 72t-73 206zM230 257q0 -91 79 -91q58 0 92 77.5t34 165.5q0 90 -78 90q-58 0 -92.5 -77t-34.5 -165z" />
+<glyph unicode="1" horiz-adv-x="483" d="M38 417l310 250h174l-147 -667h-202l90 410l-137 -112z" />
+<glyph unicode="2" horiz-adv-x="613" d="M-13 0l39 183q248 129 321.5 176t73.5 90q0 24 -27 38t-69 14q-85 0 -162 -55l-80 146q50 40 119 62.5t139 22.5q122 0 206 -57.5t84 -155.5q0 -84 -65.5 -152.5t-211.5 -135.5h217l-39 -176h-545z" />
+<glyph unicode="3" horiz-adv-x="617" d="M-22 127l129 125q35 -42 91 -64t106 -22q78 0 78 45q0 10 -4.5 17t-27.5 13t-64 6q-77 0 -97 -2l40 179q12 -1 96 -1q53 0 76.5 7t23.5 29q0 41 -110 41q-89 0 -156 -43l-67 136q97 84 244 84q139 0 218.5 -48t79.5 -132q0 -56 -55 -102t-125 -57q127 -32 127 -149 q0 -89 -81 -145t-194 -56q-104 0 -193.5 35.5t-134.5 103.5z" />
+<glyph unicode="4" horiz-adv-x="636" d="M-13 107l39 172l317 388h291l-85 -384h77l-39 -176h-77l-23 -107h-202l23 107h-321zM221 283h126l47 210z" />
+<glyph unicode="5" horiz-adv-x="626" d="M2 112l139 129q66 -75 173 -75q43 0 64 16.5t21 40.5q0 25 -27 39t-74 14q-37 0 -59.5 -7t-46.5 -26l-129 47l82 377h510l-39 -176h-308l-20 -94q50 41 126 41q86 0 141 -51t55 -139q0 -110 -82.5 -185t-214.5 -75q-207 0 -311 124z" />
+<glyph unicode="6" horiz-adv-x="625" d="M24 259q0 185 106 301.5t282 116.5q143 0 245 -81l-119 -145q-52 48 -139 48q-60 0 -104 -30t-54 -79q55 55 154 55q93 0 156.5 -53t63.5 -139q0 -110 -88 -187.5t-208 -77.5q-137 0 -216 72t-79 199zM221 246q0 -37 29.5 -58.5t67.5 -21.5q37 0 61.5 17t24.5 45 q0 17 -15.5 30t-40 20t-52.5 7q-43 0 -74 -18q-1 -6 -1 -21z" />
+<glyph unicode="7" horiz-adv-x="575" d="M58 0l317 491h-303l39 176h545l-31 -140l-336 -527h-231z" />
+<glyph unicode="8" horiz-adv-x="630" d="M-1 175q0 59 42.5 110.5t125.5 77.5q-39 20 -62.5 54t-23.5 74q0 63 44.5 107t107.5 61.5t136 17.5q74 0 137.5 -17t109 -59t45.5 -102q0 -61 -42.5 -108t-114.5 -65q97 -57 97 -145q0 -91 -89.5 -142t-212.5 -51q-58 0 -110 10.5t-95.5 32t-69 58.5t-25.5 86zM212 201 q0 -49 94 -49q40 0 65 13t25 32q0 40 -80 58q-45 -2 -74.5 -15.5t-29.5 -38.5zM284 471q0 -16 21 -29.5t49 -20.5q40 1 65.5 13.5t25.5 29.5q0 22 -24.5 35.5t-62.5 13.5q-30 0 -52 -12t-22 -30z" />
+<glyph unicode="9" horiz-adv-x="625" d="M6 70l119 145q52 -48 139 -48q60 0 104 30t54 79q-55 -55 -154 -55q-93 0 -156.5 53t-63.5 139q0 110 88 187.5t208 77.5q137 0 216 -72t79 -199q0 -185 -106 -301.5t-282 -116.5q-143 0 -245 81zM259 438q0 -25 32 -41t76 -16q43 0 74 18q1 6 1 21q0 19 -8.5 34.5 t-22.5 25.5t-31 15t-35 5q-24 0 -43.5 -7t-31 -21.5t-11.5 -33.5z" />
+<glyph unicode=":" horiz-adv-x="283" d="M1 86q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70zM64 375q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode=";" horiz-adv-x="283" d="M-18 -79q84 34 112 84q-3 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5t-128 -103.5zM64 375q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode="&#x3c;" horiz-adv-x="510" d="M34 270l29 130l492 180l-29 -130l-360 -121l307 -119l-27 -120z" />
+<glyph unicode="=" horiz-adv-x="510" d="M17 190l23 105h452l-23 -105h-452zM57 373l23 105h452l-23 -105h-452z" />
+<glyph unicode="&#x3e;" horiz-adv-x="510" d="M-6 90l29 130l361 119l-308 121l27 120l412 -180l-29 -130z" />
+<glyph unicode="?" horiz-adv-x="450" d="M75 609q90 68 205 68q92 0 157 -39.5t65 -109.5q0 -49 -20 -84t-48 -54t-56.5 -34.5t-48.5 -34.5t-20 -44q0 -9 5 -17l-166 -36q-10 30 -10 69q0 41 15.5 72.5t37.5 48t44.5 28t38 21t15.5 18.5q0 20 -42 20q-49 0 -89 -31zM88 86q0 47 35 81.5t82 34.5q40 0 68.5 -29 t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode="@" horiz-adv-x="783" d="M55 244q0 157 120 275.5t277 118.5q141 0 228 -86t87 -209q0 -64 -22 -115.5t-56 -81.5t-71.5 -45.5t-73.5 -15.5q-84 0 -105 73q-51 -73 -129 -73q-73 0 -115 49t-42 125q0 95 65.5 166.5t151.5 71.5q84 0 122 -56l9 44h158l-46 -217q-3 -15 -3 -27q0 -38 28 -38 q32 0 55.5 37.5t23.5 102.5q0 115 -72 183t-197 68q-140 0 -244 -104t-104 -243q0 -117 79 -195.5t198 -78.5q93 0 179 54l24 -34q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM315 273q0 -29 17 -46.5t46 -17.5q42 0 74 41l19 95q-19 28 -58 28q-44 0 -71 -30 t-27 -70z" />
+<glyph unicode="A" horiz-adv-x="710" d="M-72 0l393 667h254l99 -667h-219l-7 78h-240l-41 -78h-239zM301 254h132l-19 215z" />
+<glyph unicode="B" horiz-adv-x="697" d="M0 0l147 667h371q94 0 143.5 -49.5t49.5 -116.5q0 -63 -45 -114t-105 -56q46 -13 70.5 -50t24.5 -82q0 -35 -13 -68.5t-39 -63.5t-74 -48.5t-111 -18.5h-419zM239 168h159q25 0 41 13t16 34q0 17 -10.5 27.5t-27.5 10.5h-159zM295 421h152q26 0 37.5 13t11.5 32 q0 14 -9.5 23.5t-26.5 9.5h-146z" />
+<glyph unicode="C" horiz-adv-x="697" d="M28 294q0 170 115.5 277t285.5 107q70 0 127.5 -19t95 -52t61.5 -70t36 -80l-194 -61q-9 47 -46 75.5t-89 28.5q-79 0 -131 -57.5t-52 -134.5q0 -59 41.5 -100.5t108.5 -41.5q39 0 78.5 22.5t56.5 54.5l158 -102q-57 -82 -139.5 -117.5t-164.5 -35.5q-147 0 -247.5 84 t-100.5 222z" />
+<glyph unicode="D" horiz-adv-x="736" d="M0 0l147 667h293q75 0 143.5 -34t113.5 -101.5t45 -152.5q0 -54 -13.5 -105t-46.5 -101.5t-82 -88t-127 -61t-176 -23.5h-297zM241 176h93q91 0 145 54t54 134q0 54 -36 90.5t-94 36.5h-93z" />
+<glyph unicode="E" d="M0 0l147 667h506l-39 -176h-304l-14 -66h297l-39 -176h-297l-16 -73h304l-39 -176h-506z" />
+<glyph unicode="F" horiz-adv-x="592" d="M0 0l147 667h506l-39 -176h-304l-14 -66h297l-39 -176h-297l-55 -249h-202z" />
+<glyph unicode="G" horiz-adv-x="726" d="M28 294q0 166 117 275t304 109q110 0 184.5 -55t102.5 -130l-186 -76q-8 32 -45.5 57.5t-84.5 25.5q-76 0 -129.5 -56t-53.5 -136q0 -57 40.5 -99.5t109.5 -42.5q50 0 91 30l5 25h-124l40 176h325l-61 -274q-48 -64 -122.5 -99.5t-164.5 -35.5q-144 0 -246 83t-102 223z " />
+<glyph unicode="H" horiz-adv-x="751" d="M0 0l147 667h202l-52 -236h239l52 236h202l-147 -667h-202l56 255h-239l-56 -255h-202z" />
+<glyph unicode="I" horiz-adv-x="310" d="M0 0l147 667h202l-147 -667h-202z" />
+<glyph unicode="J" horiz-adv-x="498" d="M-36 54l104 153q14 -17 38.5 -29t49.5 -12q69 0 85 75l94 426h202l-95 -429q-29 -130 -92.5 -190t-178.5 -60q-135 0 -207 66z" />
+<glyph unicode="K" horiz-adv-x="671" d="M0 0l147 667h202l-52 -236l217 236h257l-320 -310l184 -357h-236l-103 241l-53 -56l-41 -185h-202z" />
+<glyph unicode="L" horiz-adv-x="536" d="M0 0l147 667h202l-108 -491h253l-39 -176h-455z" />
+<glyph unicode="M" horiz-adv-x="900" d="M0 0l147 667h272l46 -320l188 320h286l-147 -667h-202l88 401l-237 -401h-90l-61 401l-88 -401h-202z" />
+<glyph unicode="N" horiz-adv-x="750" d="M0 0l147 667h208l160 -324l72 324h202l-147 -667h-194l-170 346l-76 -346h-202z" />
+<glyph unicode="O" horiz-adv-x="766" d="M28 294q0 161 114.5 272.5t286.5 111.5q149 0 248 -85t99 -219q0 -162 -114 -274t-286 -112q-150 0 -249 85.5t-99 220.5zM237 308q0 -62 41.5 -102t108.5 -40q78 0 129 57t51 135q0 62 -41.5 102t-108.5 40q-78 0 -129 -57t-51 -135z" />
+<glyph unicode="P" horiz-adv-x="662" d="M0 0l147 667h352q83 0 139.5 -57.5t56.5 -139.5q0 -41 -14.5 -82.5t-45.5 -83t-92 -68t-143 -26.5h-152l-46 -210h-202zM287 386h123q30 0 53 16.5t23 44.5q0 44 -55 44h-121z" />
+<glyph unicode="Q" horiz-adv-x="766" d="M28 294q0 161 114.5 272.5t286.5 111.5q149 0 248 -85t99 -219q0 -91 -39 -170.5t-109 -132.5l28 -48l-161 -73l-27 48q-50 -10 -92 -10q-150 0 -249 85.5t-99 220.5zM237 308q0 -58 37 -97.5t97 -44.5l-33 58l161 73l31 -56q37 53 37 117q0 62 -41.5 102t-108.5 40 q-78 0 -129 -57t-51 -135z" />
+<glyph unicode="R" horiz-adv-x="678" d="M0 0l147 667h324q94 0 159 -56t65 -146q0 -85 -47.5 -150t-116.5 -90l66 -225h-222l-46 210h-81l-46 -210h-202zM287 386h123q34 0 55 14.5t21 42.5q0 21 -16 34.5t-40 13.5h-120z" />
+<glyph unicode="S" horiz-adv-x="613" d="M-18 118l120 144q35 -45 99 -73.5t131 -28.5q26 0 39.5 9t13.5 20q0 15 -33 28t-80 28t-93.5 36.5t-79.5 62t-33 94.5q0 95 76 167t210 72q83 0 160 -28.5t131 -82.5l-121 -140q-39 39 -95.5 60t-107.5 21q-19 0 -30 -7.5t-11 -19.5q0 -14 33 -27t80 -28.5t94 -37t80 -62 t33 -94.5q0 -106 -77.5 -174.5t-204.5 -68.5q-106 0 -195 35t-139 95z" />
+<glyph unicode="T" horiz-adv-x="595" d="M72 491l39 176h559l-39 -176h-178l-108 -491h-202l108 491h-179z" />
+<glyph unicode="U" horiz-adv-x="767" d="M55 232q0 17 5 42l87 393h205l-86 -388q-2 -10 -2 -24q1 -36 30 -63.5t82 -27.5q58 0 93 31.5t46 83.5l86 388h205l-87 -392q-62 -287 -343 -287q-158 0 -239.5 66t-81.5 178z" />
+<glyph unicode="V" horiz-adv-x="710" d="M75 667h219l45 -449l243 449h239l-393 -667h-254z" />
+<glyph unicode="W" horiz-adv-x="954" d="M81 667h221l-4 -408l191 408h152l11 -408l175 408h232l-338 -667h-212l-3 378l-169 -378h-212z" />
+<glyph unicode="X" horiz-adv-x="684" d="M-72 0l307 354l-145 313h227l75 -178l139 178h249l-288 -336l156 -331h-228l-86 192l-158 -192h-248z" />
+<glyph unicode="Y" horiz-adv-x="664" d="M75 667h217l74 -225l172 225h237l-337 -402l-58 -265h-202l58 265z" />
+<glyph unicode="Z" horiz-adv-x="600" d="M-18 0l35 160l317 331h-244l39 176h521l-35 -159l-318 -332h252l-39 -176h-528z" />
+<glyph unicode="[" horiz-adv-x="317" d="M-43 -190l193 868h245l-25 -114h-120l-142 -640h120l-26 -114h-245z" />
+<glyph unicode="\" horiz-adv-x="362" d="M98 687h125l80 -707h-125z" />
+<glyph unicode="]" horiz-adv-x="317" d="M-78 -190l25 114h120l142 640h-120l25 114h245l-193 -868h-244z" />
+<glyph unicode="^" horiz-adv-x="450" d="M38 333l217 334h129l66 -334h-120l-32 215l-127 -215h-133z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-91 -154l26 114h569l-26 -114h-569z" />
+<glyph unicode="`" horiz-adv-x="275" d="M101 700h155l88 -144h-120z" />
+<glyph unicode="a" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-107 -483h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5z" />
+<glyph unicode="b" d="M-4 0l147 667h180l-52 -235q58 63 131 63q83 0 131.5 -52.5t48.5 -148.5q0 -52 -16 -104.5t-46.5 -98.5t-80.5 -74.5t-112 -28.5q-95 0 -140 63l-11 -51h-180zM215 180q30 -33 80 -33q43 0 72 31.5t29 77.5q0 35 -23.5 57.5t-56.5 22.5q-40 0 -73 -33z" />
+<glyph unicode="c" horiz-adv-x="502" d="M15 212q0 119 84 201t207 82q78 0 131.5 -28t80.5 -72l-134 -103q-26 44 -80 44q-47 0 -77 -31.5t-30 -80.5q0 -34 26 -55.5t63 -21.5q47 0 81 39l96 -119q-29 -31 -80 -55t-115 -24q-116 0 -184.5 63t-68.5 161z" />
+<glyph unicode="d" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l52 235h180l-148 -667h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5z" />
+<glyph unicode="e" horiz-adv-x="543" d="M15 208q0 118 81.5 202.5t205.5 84.5q96 0 161 -57.5t65 -162.5q0 -49 -11 -89h-324v-1q0 -6 9.5 -19t34 -27t55.5 -14q70 0 105 24l55 -117q-70 -44 -173 -44q-120 0 -192 58t-72 162zM210 300h159v3q0 16 -18.5 35.5t-55.5 19.5q-32 0 -55.5 -19t-29.5 -39z" />
+<glyph unicode="f" horiz-adv-x="371" d="M25 327l35 156h79l6 26q17 74 69.5 121t139.5 47q98 0 149 -52l-84 -100q-18 19 -48 19q-38 0 -47 -40l-5 -21h99l-35 -156h-98l-72 -327h-180l72 327h-80z" />
+<glyph unicode="g" horiz-adv-x="595" d="M-39 -110l101 119q21 -27 63.5 -42.5t83.5 -15.5q89 0 113 102l6 25q-54 -65 -132 -65t-130 46.5t-52 145.5q0 114 68.5 202t181.5 88q40 0 78.5 -16.5t63.5 -46.5l12 51h180l-96 -430q-14 -60 -38.5 -105.5t-53.5 -72t-65 -43.5t-67.5 -22.5t-65.5 -5.5q-161 0 -251 86z M200 242q0 -30 23.5 -50t60.5 -20q41 0 72 34l20 91q-27 39 -85 39q-39 0 -65 -24t-26 -70z" />
+<glyph unicode="h" horiz-adv-x="608" d="M-3 0l147 667h180l-54 -239q73 67 152 67q74 0 116.5 -35.5t42.5 -91.5q0 -17 -5 -39l-72 -329h-180l56 259q5 22 5 32q0 45 -65 45q-37 0 -78 -37l-65 -299h-180z" />
+<glyph unicode="i" horiz-adv-x="280" d="M-4 0l107 483h180l-107 -483h-180zM120 604q0 53 36 84.5t78 31.5q39 0 65 -25t26 -61q0 -53 -36 -84.5t-78 -31.5q-39 0 -65 25t-26 61z" />
+<glyph unicode="j" horiz-adv-x="280" d="M-192 -156l70 128q20 -21 56 -21q50 0 66 70l103 462h180l-103 -462q-47 -217 -219 -217q-104 0 -153 40zM120 604q0 53 36 84.5t78 31.5q39 0 65 -25t26 -61q0 -53 -36 -84.5t-78 -31.5q-39 0 -65 25t-26 61z" />
+<glyph unicode="k" horiz-adv-x="557" d="M-4 0l147 667h180l-77 -346l142 162h223l-215 -220l119 -263h-216l-51 159l-48 -50l-24 -109h-180z" />
+<glyph unicode="l" horiz-adv-x="280" d="M-4 0l147 667h180l-147 -667h-180z" />
+<glyph unicode="m" horiz-adv-x="897" d="M-4 0l107 483h180l-13 -55q67 67 142 67q36 0 66.5 -12t46.5 -28.5t24.5 -30.5t8.5 -21v-1q23 28 42 45.5t52 32.5t69 15q62 0 106 -34t44 -93q0 -19 -5 -39l-73 -329h-180l56 254q6 27 6 37q0 22 -16 33.5t-40 11.5q-36 0 -69 -37l-66 -299h-180l56 254q7 32 7 37 q0 21 -15 33t-42 12q-36 0 -68 -37l-66 -299h-180z" />
+<glyph unicode="n" horiz-adv-x="607" d="M-4 0l107 483h180l-13 -55q73 67 152 67q74 0 116.5 -35.5t42.5 -91.5q0 -17 -5 -39l-73 -329h-180l56 254q6 27 6 37q0 23 -17 34t-41 11q-44 0 -85 -37l-66 -299h-180z" />
+<glyph unicode="o" horiz-adv-x="577" d="M14 213q0 114 82 198t207 84q123 0 190.5 -63.5t67.5 -161.5q0 -114 -82 -198t-207 -84q-123 0 -190.5 63.5t-67.5 161.5zM198 222q0 -36 21.5 -55.5t59.5 -19.5q44 0 71 33.5t27 80.5q0 36 -21.5 55.5t-59.5 19.5q-44 0 -71 -33.5t-27 -80.5z" />
+<glyph unicode="p" horiz-adv-x="595" d="M-45 -184l148 667h180l-12 -51q58 63 131 63q83 0 131.5 -52.5t48.5 -148.5q0 -52 -16 -104.5t-46.5 -98.5t-80.5 -74.5t-112 -28.5q-95 0 -140 63l-52 -235h-180zM215 180q30 -33 80 -33q43 0 72 31.5t29 77.5q0 35 -23.5 57.5t-56.5 22.5q-40 0 -73 -33z" />
+<glyph unicode="q" horiz-adv-x="595" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-148 -667h-180l53 235q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5z" />
+<glyph unicode="r" horiz-adv-x="390" d="M-4 0l107 483h180l-12 -53q65 67 163 67l-39 -176q-24 8 -54 8q-61 0 -101 -37l-64 -292h-180z" />
+<glyph unicode="s" horiz-adv-x="490" d="M-20 77l92 113q27 -26 78.5 -50t97.5 -24q13 0 22 5t9 13q0 15 -24 25t-58.5 19t-69.5 23t-59 44t-24 73q0 72 57.5 124.5t157.5 52.5q135 0 225 -78l-84 -109q-22 22 -61 40t-78 18q-18 0 -27.5 -7t-9.5 -14q0 -10 24 -18.5t59 -18t69.5 -24t58.5 -44.5t24 -73 q0 -78 -61.5 -128.5t-166.5 -50.5q-69 0 -136.5 23.5t-114.5 65.5z" />
+<glyph unicode="t" horiz-adv-x="382" d="M25 327l35 156h80l29 132h180l-29 -132h98l-35 -156h-98l-26 -118q-3 -13 -3 -23q0 -39 45 -39q17 0 25 5v-144q-29 -20 -86 -20q-82 0 -130 30.5t-48 91.5q0 19 4 38l39 179h-80z" />
+<glyph unicode="u" horiz-adv-x="606" d="M24 115q0 17 5 39l73 329h180l-59 -267q-3 -14 -3 -23q0 -23 17.5 -34.5t43.5 -11.5q40 0 82 38l66 298h180l-107 -483h-180l13 55q-73 -67 -152 -67q-74 0 -116.5 35.5t-42.5 91.5z" />
+<glyph unicode="v" horiz-adv-x="535" d="M38 483h185l30 -276l155 276h195l-294 -483h-191z" />
+<glyph unicode="w" horiz-adv-x="805" d="M41 483h180l5 -266l144 266h161l25 -266l123 266h191l-247 -483h-196l-20 270l-137 -270h-196z" />
+<glyph unicode="x" horiz-adv-x="521" d="M-66 0l212 248l-95 235h192l40 -113l90 113h202l-201 -235l105 -248h-192l-47 128l-105 -128h-201z" />
+<glyph unicode="y" horiz-adv-x="535" d="M-49 -183l57 153q17 -7 51 -7q36 0 49 19l10 16l-80 485h185l30 -276l155 276h195l-331 -543q-46 -76 -97 -106t-126 -30q-58 0 -98 13z" />
+<glyph unicode="z" horiz-adv-x="486" d="M-21 0l29 132l208 195h-165l35 156h416l-28 -126l-214 -201h173l-34 -156h-420z" />
+<glyph unicode="{" horiz-adv-x="316" d="M-9 197l21 94q52 0 66 64l31 138q42 185 226 185h60l-25 -114h-60q-60 0 -76 -70l-38 -172q-19 -78 -66 -91q29 -17 29 -57q0 -18 -4 -34l-32 -145q-2 -12 -2 -17q0 -24 15 -39t39 -15h53l-26 -114h-43q-69 0 -117 43t-48 107q0 18 4 34l31 139q2 12 2 18 q0 21 -10.5 33.5t-29.5 12.5z" />
+<glyph unicode="|" horiz-adv-x="222" d="M74 -20v707h114v-707h-114z" />
+<glyph unicode="}" horiz-adv-x="316" d="M-80 -190l25 114h60q60 0 76 70l38 172q19 78 66 91q-29 17 -29 57q0 18 4 34l32 145q2 12 2 17q0 24 -15 39t-39 15h-53l26 114h43q69 0 117 -43t48 -107q0 -18 -4 -34l-31 -139q-2 -12 -2 -18q0 -21 10.5 -33.5t29.5 -12.5l-21 -94q-52 0 -66 -64l-31 -138 q-42 -185 -226 -185h-60z" />
+<glyph unicode="~" horiz-adv-x="518" d="M62 414q49 253 200 253q42 0 67 -17t32 -40.5t9 -47.5t6 -41t15 -17q22 0 46.5 55t32.5 108l113 -14q-53 -252 -199 -252q-42 0 -67 16.5t-32 40.5t-9 48t-6 40.5t-15 16.5q-22 0 -45.5 -53t-32.5 -109z" />
+<glyph unicode="&#xa1;" horiz-adv-x="283" d="M-61 -184l118 419h162l-66 -419h-214zM64 380q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode="&#xa2;" horiz-adv-x="502" d="M15 212q0 114 76.5 194t192.5 88l16 71h126l-20 -86q75 -26 112 -84l-134 -103q-26 44 -80 44q-47 0 -77 -31.5t-30 -80.5q0 -34 26 -55.5t63 -21.5q47 0 81 39l96 -119q-62 -66 -165 -77l-20 -90h-126l22 101q-75 22 -117 78.5t-42 132.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="581" d="M19 125q50 24 80 62t30 82v1h-98l25 109h47q-16 43 -16 80q0 94 83 156t198 62q101 0 171.5 -37.5t93.5 -110.5l-181 -74q-10 60 -74 60q-32 0 -52 -23.5t-20 -57.5q0 -19 8 -55h135l-25 -109h-113q-11 -30 -30.5 -54t-38.5 -32q21 7 42 7q27 0 65 -12.5t62 -12.5 q40 0 71 33l41 -159q-41 -52 -129 -52q-47 0 -129.5 21t-100.5 21q-50 0 -108 -37z" />
+<glyph unicode="&#xa4;" horiz-adv-x="648" d="M-1 144l86 70q-22 47 -19.5 98t20 94t44.5 75l-55 73l118 94l61 -81q66 22 141 15q59 -7 103 -30l94 76l91 -109l-85 -69q22 -48 18.5 -99t-20.5 -93.5t-45 -75.5l55 -68l-117 -94l-63 78q-68 -23 -140 -14q-55 6 -98 26l-98 -80zM250 343q-9 -41 9 -70t61 -33 q29 -3 53 7t39.5 29.5t21.5 46.5q8 41 -11 69.5t-62 32.5q-29 3 -52.5 -6.5t-38.5 -29.5t-20 -46z" />
+<glyph unicode="&#xa5;" horiz-adv-x="664" d="M-6 107l23 105h207l12 53h-207l24 105h141l-119 297h217l74 -225l172 225h237l-249 -297h143l-24 -105h-207l-12 -53h207l-23 -105h-207l-23 -107h-202l23 107h-207z" />
+<glyph unicode="&#xa6;" horiz-adv-x="222" d="M74 -20v316h114v-316h-114zM74 371v316h114v-316h-114z" />
+<glyph unicode="&#xa7;" horiz-adv-x="500" d="M-43 5l94 106q31 -31 77.5 -50.5t91.5 -19.5q20 0 32 8t12 19q0 17 -24 28.5t-58 22t-68 25t-58 44t-24 72.5q0 101 110 146q-55 31 -55 102q0 77 61.5 123t155.5 46q148 0 230 -72l-88 -98q-22 21 -59 34.5t-76 13.5q-47 0 -47 -29q0 -14 24 -25t58.5 -20.5t68.5 -23.5 t58 -43t24 -70q0 -50 -31 -92t-76 -60q52 -31 52 -96q0 -78 -63 -127.5t-159 -49.5q-78 0 -148 22.5t-115 63.5zM213 295q0 -17 15 -29.5t37 -18.5q21 5 33.5 21t12.5 34q0 19 -13 31.5t-31 16.5q-54 -9 -54 -55z" />
+<glyph unicode="&#xa8;" horiz-adv-x="318" d="M44 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM260 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M64 334q0 143 100.5 244t243.5 101t244.5 -101t101.5 -244t-101.5 -244t-244.5 -101q-142 0 -243 101t-101 244zM106 334q0 -125 89 -214t213 -89q125 0 214.5 89t89.5 214t-89.5 214t-214.5 89t-213.5 -89t-88.5 -214zM204 307q0 100 69 168t162 68q112 0 163 -81 l-45 -32q-37 66 -121 66q-67 0 -120 -54t-53 -133q0 -57 37 -97t100 -40q61 0 112 49l30 -40q-65 -56 -143 -56q-85 0 -138 51t-53 131z" />
+<glyph unicode="&#xaa;" horiz-adv-x="417" d="M68 449q0 86 49 142.5t118 56.5q65 0 95 -39l7 31h127l-69 -314h-128l6 31q-35 -39 -82 -39q-52 0 -87.5 34.5t-35.5 96.5zM199 466q0 -48 50 -48q24 0 43 17l22 101q-17 13 -43 13q-31 0 -51.5 -24.5t-20.5 -58.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="615" d="M29 243l200 177h164l-204 -182l116 -175h-156zM264 243l200 177h164l-204 -182l116 -175h-156z" />
+<glyph unicode="&#xac;" horiz-adv-x="527" d="M57 373l23 105h452l-63 -288h-108l40 183h-344z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M13 167l33 150h240l-33 -150h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M84 465q0 88 62 150t150 62t150 -61.5t62 -150.5q0 -88 -62.5 -150t-150.5 -62t-149.5 62t-61.5 150zM119 465q0 -73 51.5 -125t124.5 -52t125.5 52t52.5 125q0 74 -52 125.5t-126 51.5t-125 -51.5t-51 -125.5zM187 343l53 243h94q34 0 53.5 -19t19.5 -45 q0 -33 -24.5 -57.5t-55.5 -24.5l44 -97h-43l-42 96h-41l-21 -96h-37zM252 471h62q25 0 39.5 14t14.5 35q0 35 -43 35h-54z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M68 551l21 97h362l-21 -97h-362z" />
+<glyph unicode="&#xb0;" horiz-adv-x="331" d="M80 528q0 62 43.5 105.5t104.5 43.5q62 0 105.5 -43.5t43.5 -105.5q0 -61 -43.5 -104.5t-105.5 -43.5t-105 43t-43 105zM171 528q0 -24 16 -40.5t40 -16.5t42 16.5t18 40.5t-17.5 41.5t-41.5 17.5t-40.5 -17.5t-16.5 -41.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="510" d="M-25 0l23 105h452l-23 -105h-452zM47 328l23 105h168l42 185h116l-42 -185h168l-23 -105h-168l-43 -193h-116l43 193h-168z" />
+<glyph unicode="&#xb2;" horiz-adv-x="407" d="M81 421l22 99q111 63 161 94.5t63.5 45.5t13.5 30q0 33 -51 33q-31 0 -62 -12t-49 -29l-52 88q32 27 79 42t90 15q82 0 131.5 -34.5t49.5 -89.5q0 -45 -40.5 -85t-140.5 -93h146l-23 -104h-338z" />
+<glyph unicode="&#xb3;" horiz-adv-x="407" d="M82 488l79 82q41 -52 112 -52q45 0 45 28q0 26 -79 26q-31 0 -37 -1l22 102q9 -1 69 -1q52 0 52 25q0 26 -66 26q-61 0 -100 -31l-41 82q62 53 155 53q88 0 137.5 -30t49.5 -81q0 -36 -28 -65.5t-82 -32.5q78 -20 78 -87q0 -46 -45.5 -81.5t-122.5 -35.5q-65 0 -119 20.5 t-79 53.5z" />
+<glyph unicode="&#xb4;" horiz-adv-x="275" d="M67 556l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xb5;" horiz-adv-x="620" d="M-46 -184l152 667h180l-61 -268q-7 -32 7.5 -50t46.5 -18q43 0 85 38l65 298h180l-67 -305q-4 -15 4 -23t23 -8q11 0 20 3l-23 -152q-37 -10 -81 -10q-121 0 -136 87q-56 -87 -137 -87q-25 0 -37 7l-41 -179h-180z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M79 479q0 73 56.5 130.5t137.5 57.5h247l-170 -767h-80l153 687h-68l-153 -687h-80l94 423q-57 0 -97 44.5t-40 111.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="283" d="M34 237q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode="&#xb8;" horiz-adv-x="237" d="M-89 -156l43 60q43 -36 86 -36q38 0 38 24q0 17 -22 17q-14 0 -24 -12l-52 34l48 80h80l-38 -58q13 9 29 9q25 0 42.5 -18t17.5 -47q0 -44 -34 -70.5t-84 -26.5q-86 0 -130 44z" />
+<glyph unicode="&#xb9;" horiz-adv-x="336" d="M92 663l198 158h113l-88 -400h-132l50 229l-83 -66z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M70 467q0 78 59.5 129.5t137.5 51.5q80 0 127 -42t47 -107q0 -78 -59.5 -129.5t-137.5 -51.5q-80 0 -127 42t-47 107zM200 463q0 -45 47 -45q33 0 48.5 25.5t15.5 57.5q0 45 -47 45q-33 0 -48.5 -25.5t-15.5 -57.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="615" d="M-11 63l204 182l-116 175h156l120 -180l-200 -177h-164zM224 63l204 182l-116 175h156l120 -180l-200 -177h-164z" />
+<glyph unicode="&#xbc;" horiz-adv-x="897" d="M58 509l198 158h113l-88 -400h-132l50 229l-83 -66zM114 0l573 667h98l-574 -667h-97zM470 71l20 87l196 242h185l-50 -227h47l-23 -102h-47l-15 -71h-131l15 71h-197zM623 173h67l25 114z" />
+<glyph unicode="&#xbd;" horiz-adv-x="927" d="M58 509l198 158h113l-88 -400h-132l50 229l-83 -66zM114 0l573 667h98l-574 -667h-97zM508 0l22 99q111 63 161 94.5t63.5 45.5t13.5 30q0 33 -51 33q-31 0 -62 -12t-49 -29l-52 88q32 27 79 42t90 15q82 0 131.5 -34.5t49.5 -89.5q0 -45 -40.5 -85t-140.5 -93h146 l-23 -104h-338z" />
+<glyph unicode="&#xbe;" horiz-adv-x="964" d="M48 334l79 82q41 -52 112 -52q45 0 45 28q0 26 -79 26q-31 0 -37 -1l22 102q9 -1 69 -1q52 0 52 25q0 26 -66 26q-61 0 -100 -31l-41 82q62 53 155 53q88 0 137.5 -30t49.5 -81q0 -36 -28 -65.5t-82 -32.5q78 -20 78 -87q0 -46 -45.5 -81.5t-122.5 -35.5q-65 0 -119 20.5 t-79 53.5zM181 0l573 667h98l-574 -667h-97zM537 71l20 87l196 242h185l-50 -227h47l-23 -102h-47l-15 -71h-131l15 71h-197zM690 173h67l25 114z" />
+<glyph unicode="&#xbf;" horiz-adv-x="401" d="M-53 -46q0 49 20 84t48.5 54t56.5 34.5t48 34.5t20 44q0 9 -5 17l166 36q10 -30 10 -69q0 -41 -15.5 -72.5t-37.5 -48t-44.5 -28t-38 -21t-15.5 -18.5q0 -20 42 -20q49 0 89 31l83 -139q-90 -68 -205 -68q-92 0 -157 39.5t-65 109.5zM147 379q0 47 35 81.5t82 34.5 q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode="&#xc0;" horiz-adv-x="710" d="M-72 0l393 667h254l99 -667h-219l-7 78h-240l-41 -78h-239zM288 867h155l88 -144h-120zM301 254h132l-19 215z" />
+<glyph unicode="&#xc1;" horiz-adv-x="710" d="M-72 0l393 667h254l99 -667h-219l-7 78h-240l-41 -78h-239zM301 254h132l-19 215zM390 723l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xc2;" horiz-adv-x="710" d="M-72 0l393 667h254l99 -667h-219l-7 78h-240l-41 -78h-239zM295 723l120 144h156l59 -144h-103l-48 73l-77 -73h-107zM301 254h132l-19 215z" />
+<glyph unicode="&#xc3;" horiz-adv-x="710" d="M-72 0l393 667h254l99 -667h-219l-7 78h-240l-41 -78h-239zM292 727q14 71 42.5 102.5t84.5 31.5q37 0 73 -21.5t51 -21.5q19 0 28 37h90q-16 -72 -44 -103t-84 -31q-37 0 -72.5 21.5t-50.5 21.5q-21 0 -28 -37h-90zM301 254h132l-19 215z" />
+<glyph unicode="&#xc4;" horiz-adv-x="710" d="M-72 0l393 667h254l99 -667h-219l-7 78h-240l-41 -78h-239zM277 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM301 254h132l-19 215zM493 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69 t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="710" d="M-72 0l393 667h254l99 -667h-219l-7 78h-240l-41 -78h-239zM301 254h132l-19 215zM364 788q0 50 36 86t86 36q46 0 74 -28t28 -74q0 -50 -36 -86t-86 -36q-46 0 -74 28t-28 74zM442 796q0 -14 9 -23t23 -9t25 11t11 25t-9 23t-23 9t-25 -11t-11 -25z" />
+<glyph unicode="&#xc6;" horiz-adv-x="989" d="M-79 0l542 667h589l-39 -176h-304l-14 -66h297l-39 -176h-297l-16 -73h304l-39 -176h-506l17 78h-202l-58 -78h-235zM347 254h108l45 206z" />
+<glyph unicode="&#xc7;" horiz-adv-x="697" d="M28 294q0 170 115.5 277t285.5 107q70 0 127.5 -19t95 -52t61.5 -70t36 -80l-194 -61q-9 47 -46 75.5t-89 28.5q-79 0 -131 -57.5t-52 -134.5q0 -59 41.5 -100.5t108.5 -41.5q39 0 78.5 22.5t56.5 54.5l158 -102q-57 -82 -139.5 -117.5t-164.5 -35.5q-15 0 -23 1l-23 -36 q13 9 29 9q25 0 42.5 -18t17.5 -47q0 -44 -34 -70.5t-84 -26.5q-86 0 -130 44l43 60q43 -36 86 -36q38 0 38 24q0 17 -22 17q-14 0 -24 -12l-52 34l40 68q-112 25 -182 103t-70 192z" />
+<glyph unicode="&#xc8;" d="M0 0l147 667h506l-39 -176h-304l-14 -66h297l-39 -176h-297l-16 -73h304l-39 -176h-506zM238 867h155l88 -144h-120z" />
+<glyph unicode="&#xc9;" d="M0 0l147 667h506l-39 -176h-304l-14 -66h297l-39 -176h-297l-16 -73h304l-39 -176h-506zM341 723l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xca;" d="M0 0l147 667h506l-39 -176h-304l-14 -66h297l-39 -176h-297l-16 -73h304l-39 -176h-506zM244 723l120 144h156l59 -144h-103l-48 73l-77 -73h-107z" />
+<glyph unicode="&#xcb;" d="M0 0l147 667h506l-39 -176h-304l-14 -66h297l-39 -176h-297l-16 -73h304l-39 -176h-506zM228 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM444 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5 q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="310" d="M0 0l147 667h202l-147 -667h-202zM87 867h155l88 -144h-120z" />
+<glyph unicode="&#xcd;" horiz-adv-x="310" d="M0 0l147 667h202l-147 -667h-202zM188 723l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xce;" horiz-adv-x="310" d="M0 0l147 667h202l-147 -667h-202zM92 723l120 144h156l59 -144h-103l-48 73l-77 -73h-107z" />
+<glyph unicode="&#xcf;" horiz-adv-x="310" d="M0 0l147 667h202l-147 -667h-202zM76 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM292 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="757" d="M9 254l35 159h68l56 254h293q75 0 143.5 -34t113.5 -101.5t45 -152.5q0 -54 -13.5 -105t-46.5 -101.5t-82 -88t-127 -61t-176 -23.5h-297l56 254h-68zM262 176h96q90 1 143 55t53 133q0 54 -36 90.5t-94 36.5h-93l-17 -78h128l-35 -159h-128z" />
+<glyph unicode="&#xd1;" horiz-adv-x="750" d="M0 0l147 667h208l160 -324l72 324h202l-147 -667h-194l-170 346l-76 -346h-202zM310 727q14 71 42.5 102.5t84.5 31.5q37 0 73 -21.5t51 -21.5q19 0 28 37h90q-16 -72 -44 -103t-84 -31q-37 0 -72.5 21.5t-50.5 21.5q-21 0 -28 -37h-90z" />
+<glyph unicode="&#xd2;" horiz-adv-x="766" d="M28 294q0 161 114.5 272.5t286.5 111.5q149 0 248 -85t99 -219q0 -162 -114 -274t-286 -112q-150 0 -249 85.5t-99 220.5zM237 308q0 -62 41.5 -102t108.5 -40q78 0 129 57t51 135q0 62 -41.5 102t-108.5 40q-78 0 -129 -57t-51 -135zM315 867h155l88 -144h-120z" />
+<glyph unicode="&#xd3;" horiz-adv-x="766" d="M28 294q0 161 114.5 272.5t286.5 111.5q149 0 248 -85t99 -219q0 -162 -114 -274t-286 -112q-150 0 -249 85.5t-99 220.5zM237 308q0 -62 41.5 -102t108.5 -40q78 0 129 57t51 135q0 62 -41.5 102t-108.5 40q-78 0 -129 -57t-51 -135zM415 723l152 144h157l-187 -144 h-122z" />
+<glyph unicode="&#xd4;" horiz-adv-x="766" d="M28 294q0 161 114.5 272.5t286.5 111.5q149 0 248 -85t99 -219q0 -162 -114 -274t-286 -112q-150 0 -249 85.5t-99 220.5zM237 308q0 -62 41.5 -102t108.5 -40q78 0 129 57t51 135q0 62 -41.5 102t-108.5 40q-78 0 -129 -57t-51 -135zM321 723l120 144h156l59 -144h-103 l-48 73l-77 -73h-107z" />
+<glyph unicode="&#xd5;" horiz-adv-x="766" d="M28 294q0 161 114.5 272.5t286.5 111.5q149 0 248 -85t99 -219q0 -162 -114 -274t-286 -112q-150 0 -249 85.5t-99 220.5zM237 308q0 -62 41.5 -102t108.5 -40q78 0 129 57t51 135q0 62 -41.5 102t-108.5 40q-78 0 -129 -57t-51 -135zM320 727q14 71 42.5 102.5 t84.5 31.5q37 0 73 -21.5t51 -21.5q19 0 28 37h90q-16 -72 -44 -103t-84 -31q-37 0 -72.5 21.5t-50.5 21.5q-21 0 -28 -37h-90z" />
+<glyph unicode="&#xd6;" horiz-adv-x="766" d="M28 294q0 161 114.5 272.5t286.5 111.5q149 0 248 -85t99 -219q0 -162 -114 -274t-286 -112q-150 0 -249 85.5t-99 220.5zM237 308q0 -62 41.5 -102t108.5 -40q78 0 129 57t51 135q0 62 -41.5 102t-108.5 40q-78 0 -129 -57t-51 -135zM304 775q0 39 31 69t70 30 q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM520 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="510" d="M33 203l169 138l-102 130l84 68l100 -130l167 136l65 -80l-167 -138l100 -130l-83 -68l-101 130l-166 -136z" />
+<glyph unicode="&#xd8;" horiz-adv-x="766" d="M-36 0l123 115q-59 76 -59 179q0 161 114.5 272.5t286.5 111.5q118 0 204 -54l46 43h138l-111 -104q70 -80 70 -189q0 -162 -114 -274t-286 -112q-127 0 -220 63l-54 -51h-138zM237 308q0 -26 7 -47l241 225q-31 14 -68 14q-78 0 -129 -57t-51 -135zM303 187 q37 -21 84 -21q78 0 129 57t51 135q0 33 -14 63z" />
+<glyph unicode="&#xd9;" horiz-adv-x="767" d="M55 232q0 17 5 42l87 393h205l-86 -388q-2 -10 -2 -24q1 -36 30 -63.5t82 -27.5q58 0 93 31.5t46 83.5l86 388h205l-87 -392q-62 -287 -343 -287q-158 0 -239.5 66t-81.5 178zM315 867h155l88 -144h-120z" />
+<glyph unicode="&#xda;" horiz-adv-x="767" d="M55 232q0 17 5 42l87 393h205l-86 -388q-2 -10 -2 -24q1 -36 30 -63.5t82 -27.5q58 0 93 31.5t46 83.5l86 388h205l-87 -392q-62 -287 -343 -287q-158 0 -239.5 66t-81.5 178zM414 723l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xdb;" horiz-adv-x="767" d="M55 232q0 17 5 42l87 393h205l-86 -388q-2 -10 -2 -24q1 -36 30 -63.5t82 -27.5q58 0 93 31.5t46 83.5l86 388h205l-87 -392q-62 -287 -343 -287q-158 0 -239.5 66t-81.5 178zM319 723l120 144h156l59 -144h-103l-48 73l-77 -73h-107z" />
+<glyph unicode="&#xdc;" horiz-adv-x="767" d="M55 232q0 17 5 42l87 393h205l-86 -388q-2 -10 -2 -24q1 -36 30 -63.5t82 -27.5q58 0 93 31.5t46 83.5l86 388h205l-87 -392q-62 -287 -343 -287q-158 0 -239.5 66t-81.5 178zM304 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30 q-34 0 -56.5 22.5t-22.5 56.5zM520 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="664" d="M75 667h217l74 -225l172 225h237l-337 -402l-58 -265h-202l58 265zM366 723l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xde;" horiz-adv-x="662" d="M0 0l147 667h202l-21 -96h150q85 0 140.5 -58.5t55.5 -138.5q0 -36 -9.5 -71t-32 -69.5t-55.5 -61t-84 -42.5t-113 -16h-153l-25 -114h-202zM266 290h123q33 0 54.5 17.5t21.5 43.5q0 44 -55 44h-121z" />
+<glyph unicode="&#xdf;" horiz-adv-x="688" d="M-3 0l99 451q22 101 93 163.5t198 62.5q95 0 162.5 -44t67.5 -114q0 -46 -24 -81.5t-52.5 -51.5t-52.5 -31.5t-24 -27.5q0 -7 20.5 -13t49 -14.5t57.5 -22t49.5 -42t20.5 -68.5q0 -74 -64 -126.5t-156 -52.5q-141 0 -224 84l91 111q56 -61 136 -61q14 0 25.5 6t11.5 14 q0 14 -30.5 24.5t-67 19.5t-67 37.5t-30.5 74.5q0 39 14.5 69t35 47.5t40.5 30.5t34.5 25t14.5 24q0 17 -17 28t-42 11q-71 0 -90 -82l-99 -451h-180z" />
+<glyph unicode="&#xe0;" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-107 -483h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM189 700h155l88 -144h-120zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33 q-43 0 -72 -31.5t-29 -77.5z" />
+<glyph unicode="&#xe1;" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-107 -483h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5zM290 556 l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xe2;" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-107 -483h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM193 556l120 144h156l59 -144h-103l-48 73l-77 -73h-107zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123 q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5z" />
+<glyph unicode="&#xe3;" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-107 -483h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM193 560q14 71 42.5 102.5t84.5 31.5q37 0 73 -21.5t51 -21.5q19 0 28 37h90q-16 -72 -44 -103t-84 -31 q-37 0 -72.5 21.5t-50.5 21.5q-21 0 -28 -37h-90zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5z" />
+<glyph unicode="&#xe4;" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-107 -483h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM176 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z M199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5zM392 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xe5;" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-107 -483h-180l12 51q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5zM265 614 q0 50 36.5 86t85.5 36q46 0 74 -28t28 -74q0 -50 -36.5 -86t-85.5 -36q-46 0 -74 28t-28 74zM343 622q0 -14 9 -23t23 -9t25 11t11 25t-9 23t-23 9t-25 -11t-11 -25z" />
+<glyph unicode="&#xe6;" horiz-adv-x="890" d="M13 189q0 52 16 104.5t46.5 98.5t80.5 74.5t112 28.5q95 0 140 -63l11 51h180l-8 -34q54 46 118 46q166 0 166 -206q0 -60 -12 -103h-324v-1q0 -5 11 -17.5t38.5 -25.5t61.5 -13q60 0 95 24l54 -121q-70 -44 -146 -44q-107 0 -150 62l-11 -50h-180l12 51 q-58 -63 -131 -63q-83 0 -131.5 52.5t-48.5 148.5zM199 227q0 -35 23.5 -57.5t56.5 -22.5q40 0 73 33l28 123q-30 33 -80 33q-43 0 -72 -31.5t-29 -77.5zM559 300h158v1q0 18 -18.5 37.5t-56.5 19.5q-32 0 -54.5 -19t-28.5 -39z" />
+<glyph unicode="&#xe7;" horiz-adv-x="502" d="M15 212q0 119 84 201t207 82q78 0 131.5 -28t80.5 -72l-134 -103q-26 44 -80 44q-47 0 -77 -31.5t-30 -80.5q0 -34 26 -55.5t63 -21.5q47 0 81 39l96 -119q-29 -31 -80 -55t-115 -24h-1l-23 -35q13 9 29 9q25 0 42.5 -18t17.5 -47q0 -44 -34 -70.5t-84 -26.5 q-86 0 -130 44l43 60q43 -36 86 -36q38 0 38 24q0 17 -22 17q-14 0 -24 -12l-52 34l39 65q-84 19 -131 77t-47 139z" />
+<glyph unicode="&#xe8;" horiz-adv-x="543" d="M15 208q0 118 81.5 202.5t205.5 84.5q96 0 161 -57.5t65 -162.5q0 -49 -11 -89h-324v-1q0 -6 9.5 -19t34 -27t55.5 -14q70 0 105 24l55 -117q-70 -44 -173 -44q-120 0 -192 58t-72 162zM187 700h155l88 -144h-120zM210 300h159v3q0 16 -18.5 35.5t-55.5 19.5 q-32 0 -55.5 -19t-29.5 -39z" />
+<glyph unicode="&#xe9;" horiz-adv-x="543" d="M15 208q0 118 81.5 202.5t205.5 84.5q96 0 161 -57.5t65 -162.5q0 -49 -11 -89h-324v-1q0 -6 9.5 -19t34 -27t55.5 -14q70 0 105 24l55 -117q-70 -44 -173 -44q-120 0 -192 58t-72 162zM210 300h159v3q0 16 -18.5 35.5t-55.5 19.5q-32 0 -55.5 -19t-29.5 -39zM287 556 l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xea;" horiz-adv-x="543" d="M15 208q0 118 81.5 202.5t205.5 84.5q96 0 161 -57.5t65 -162.5q0 -49 -11 -89h-324v-1q0 -6 9.5 -19t34 -27t55.5 -14q70 0 105 24l55 -117q-70 -44 -173 -44q-120 0 -192 58t-72 162zM192 556l120 144h156l59 -144h-103l-48 73l-77 -73h-107zM210 300h159v3 q0 16 -18.5 35.5t-55.5 19.5q-32 0 -55.5 -19t-29.5 -39z" />
+<glyph unicode="&#xeb;" horiz-adv-x="543" d="M15 208q0 118 81.5 202.5t205.5 84.5q96 0 161 -57.5t65 -162.5q0 -49 -11 -89h-324v-1q0 -6 9.5 -19t34 -27t55.5 -14q70 0 105 24l55 -117q-70 -44 -173 -44q-120 0 -192 58t-72 162zM175 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30 q-34 0 -56.5 22.5t-22.5 56.5zM210 300h159v3q0 16 -18.5 35.5t-55.5 19.5q-32 0 -55.5 -19t-29.5 -39zM391 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="280" d="M-4 0l107 483h180l-107 -483h-180zM37 700h155l88 -144h-120z" />
+<glyph unicode="&#xed;" horiz-adv-x="280" d="M-4 0l107 483h180l-107 -483h-180zM135 556l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xee;" horiz-adv-x="280" d="M-4 0l107 483h180l-107 -483h-180zM41 556l120 144h156l59 -144h-103l-48 73l-77 -73h-107z" />
+<glyph unicode="&#xef;" horiz-adv-x="280" d="M-4 0l107 483h180l-107 -483h-180zM25 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM241 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="577" d="M10 202q0 101 67.5 170t168.5 69q120 0 162 -111q-7 69 -116 177l-164 -49l-16 78l111 32l-42 33l125 130q72 -57 117 -104l105 31l17 -76l-66 -20q92 -121 92 -253q0 -135 -79 -228t-217 -93q-121 0 -193 57.5t-72 156.5zM194 208q0 -61 84 -61q42 0 66.5 20.5 t24.5 54.5q0 28 -23.5 44.5t-64.5 16.5q-40 0 -63.5 -22t-23.5 -53z" />
+<glyph unicode="&#xf1;" horiz-adv-x="607" d="M-4 0l107 483h180l-13 -55q73 67 152 67q74 0 116.5 -35.5t42.5 -91.5q0 -17 -5 -39l-73 -329h-180l56 254q6 27 6 37q0 23 -17 34t-41 11q-44 0 -85 -37l-66 -299h-180zM204 560q14 71 42.5 102.5t84.5 31.5q37 0 73 -21.5t51 -21.5q19 0 28 37h90q-16 -72 -44 -103 t-84 -31q-37 0 -72.5 21.5t-50.5 21.5q-21 0 -28 -37h-90z" />
+<glyph unicode="&#xf2;" horiz-adv-x="577" d="M14 213q0 114 82 198t207 84q123 0 190.5 -63.5t67.5 -161.5q0 -114 -82 -198t-207 -84q-123 0 -190.5 63.5t-67.5 161.5zM187 700h155l88 -144h-120zM198 222q0 -36 21.5 -55.5t59.5 -19.5q44 0 71 33.5t27 80.5q0 36 -21.5 55.5t-59.5 19.5q-44 0 -71 -33.5t-27 -80.5z " />
+<glyph unicode="&#xf3;" horiz-adv-x="577" d="M14 213q0 114 82 198t207 84q123 0 190.5 -63.5t67.5 -161.5q0 -114 -82 -198t-207 -84q-123 0 -190.5 63.5t-67.5 161.5zM198 222q0 -36 21.5 -55.5t59.5 -19.5q44 0 71 33.5t27 80.5q0 36 -21.5 55.5t-59.5 19.5q-44 0 -71 -33.5t-27 -80.5zM285 556l152 144h157 l-187 -144h-122z" />
+<glyph unicode="&#xf4;" horiz-adv-x="577" d="M14 213q0 114 82 198t207 84q123 0 190.5 -63.5t67.5 -161.5q0 -114 -82 -198t-207 -84q-123 0 -190.5 63.5t-67.5 161.5zM191 556l120 144h156l59 -144h-103l-48 73l-77 -73h-107zM198 222q0 -36 21.5 -55.5t59.5 -19.5q44 0 71 33.5t27 80.5q0 36 -21.5 55.5 t-59.5 19.5q-44 0 -71 -33.5t-27 -80.5z" />
+<glyph unicode="&#xf5;" horiz-adv-x="577" d="M14 213q0 114 82 198t207 84q123 0 190.5 -63.5t67.5 -161.5q0 -114 -82 -198t-207 -84q-123 0 -190.5 63.5t-67.5 161.5zM189 560q14 71 42.5 102.5t84.5 31.5q37 0 73 -21.5t51 -21.5q19 0 28 37h90q-16 -72 -44 -103t-84 -31q-37 0 -72.5 21.5t-50.5 21.5 q-21 0 -28 -37h-90zM198 222q0 -36 21.5 -55.5t59.5 -19.5q44 0 71 33.5t27 80.5q0 36 -21.5 55.5t-59.5 19.5q-44 0 -71 -33.5t-27 -80.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="577" d="M14 213q0 114 82 198t207 84q123 0 190.5 -63.5t67.5 -161.5q0 -114 -82 -198t-207 -84q-123 0 -190.5 63.5t-67.5 161.5zM173 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM198 222q0 -36 21.5 -55.5 t59.5 -19.5q44 0 71 33.5t27 80.5q0 36 -21.5 55.5t-59.5 19.5q-44 0 -71 -33.5t-27 -80.5zM389 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M38 285l23 105h453l-23 -105h-453zM162 164q0 33 24.5 57.5t58.5 24.5q28 0 48.5 -20.5t20.5 -49.5q0 -33 -25 -57.5t-58 -24.5q-28 0 -48.5 20.5t-20.5 49.5zM236 498q0 33 24.5 57.5t58.5 24.5q28 0 48.5 -20.5t20.5 -49.5q0 -33 -25 -57.5t-58 -24.5q-28 0 -48.5 20.5 t-20.5 49.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="577" d="M-40 0l93 83q-39 54 -39 130q0 114 82 198t207 84q100 0 166 -44l36 32h111l-94 -83q39 -56 39 -130q0 -114 -82 -198t-207 -84q-103 0 -167 44l-37 -32h-108zM198 211l134 119q-15 6 -36 6q-44 0 -71 -33.5t-27 -80.5v-11zM242 153q15 -6 37 -6q44 0 71 33.5t27 80.5 q0 7 -1 10z" />
+<glyph unicode="&#xf9;" horiz-adv-x="606" d="M24 115q0 17 5 39l73 329h180l-59 -267q-3 -14 -3 -23q0 -23 17.5 -34.5t43.5 -11.5q40 0 82 38l66 298h180l-107 -483h-180l13 55q-73 -67 -152 -67q-74 0 -116.5 35.5t-42.5 91.5zM199 700h155l88 -144h-120z" />
+<glyph unicode="&#xfa;" horiz-adv-x="606" d="M24 115q0 17 5 39l73 329h180l-59 -267q-3 -14 -3 -23q0 -23 17.5 -34.5t43.5 -11.5q40 0 82 38l66 298h180l-107 -483h-180l13 55q-73 -67 -152 -67q-74 0 -116.5 35.5t-42.5 91.5zM299 556l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xfb;" horiz-adv-x="606" d="M24 115q0 17 5 39l73 329h180l-59 -267q-3 -14 -3 -23q0 -23 17.5 -34.5t43.5 -11.5q40 0 82 38l66 298h180l-107 -483h-180l13 55q-73 -67 -152 -67q-74 0 -116.5 35.5t-42.5 91.5zM203 556l120 144h156l59 -144h-103l-48 73l-77 -73h-107z" />
+<glyph unicode="&#xfc;" horiz-adv-x="606" d="M24 115q0 17 5 39l73 329h180l-59 -267q-3 -14 -3 -23q0 -23 17.5 -34.5t43.5 -11.5q40 0 82 38l66 298h180l-107 -483h-180l13 55q-73 -67 -152 -67q-74 0 -116.5 35.5t-42.5 91.5zM187 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30 q-34 0 -56.5 22.5t-22.5 56.5zM403 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="535" d="M-49 -183l57 153q17 -7 51 -7q36 0 49 19l10 16l-80 485h185l30 -276l155 276h195l-331 -543q-46 -76 -97 -106t-126 -30q-58 0 -98 13zM257 556l152 144h157l-187 -144h-122z" />
+<glyph unicode="&#xfe;" horiz-adv-x="595" d="M-45 -184l188 851h180l-52 -235q58 63 131 63q83 0 131.5 -52.5t48.5 -148.5q0 -52 -16 -104.5t-46.5 -98.5t-80.5 -74.5t-112 -28.5q-95 0 -140 63l-52 -235h-180zM215 180q30 -33 80 -33q43 0 72 31.5t29 77.5q0 35 -23.5 57.5t-56.5 22.5q-40 0 -73 -33z" />
+<glyph unicode="&#xff;" horiz-adv-x="535" d="M-49 -183l57 153q17 -7 51 -7q36 0 49 19l10 16l-80 485h185l30 -276l155 276h195l-331 -543q-46 -76 -97 -106t-126 -30q-58 0 -98 13zM146 608q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM362 608q0 39 31 69 t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="1062" d="M28 294q0 169 111.5 276t268.5 107q125 0 197 -74l14 64h506l-39 -176h-304l-14 -66h297l-39 -176h-297l-16 -73h304l-39 -176h-506l10 49q-66 -61 -175 -61q-114 0 -196.5 87t-82.5 219zM237 308q0 -63 40.5 -102.5t101.5 -39.5q89 0 145 71l40 179q-19 39 -55.5 61 t-83.5 22q-85 0 -136.5 -57t-51.5 -134z" />
+<glyph unicode="&#x153;" horiz-adv-x="901" d="M14 213q0 111 80 196.5t207 85.5q58 0 106.5 -22t76.5 -55q44 37 84 57t96 20q93 0 158.5 -56.5t65.5 -163.5q0 -43 -11 -89h-320v-1q0 -8 10.5 -21.5t34.5 -26t53 -12.5q68 0 103 24l54 -117q-69 -44 -171 -44q-62 0 -112 22t-77 54q-45 -37 -85.5 -56.5t-96.5 -19.5 q-116 0 -186 59.5t-70 165.5zM198 222q0 -36 21 -55.5t58 -19.5q43 0 69.5 33t26.5 81q0 37 -21.5 56t-57.5 19q-41 0 -68.5 -32t-27.5 -82zM574 300h155v1q0 19 -17.5 38t-54.5 19q-31 0 -54.5 -19t-28.5 -39z" />
+<glyph unicode="&#x178;" horiz-adv-x="664" d="M75 667h217l74 -225l172 225h237l-337 -402l-58 -265h-202l58 265zM255 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30q-34 0 -56.5 22.5t-22.5 56.5zM471 775q0 39 31 69t70 30q34 0 56.5 -22.5t22.5 -56.5q0 -39 -31 -69t-70 -30 q-34 0 -56.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="335" d="M69 556l120 144h156l59 -144h-103l-48 73l-77 -73h-107z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="341" d="M70 560q14 71 42.5 102.5t84.5 31.5q37 0 73 -21.5t51 -21.5q19 0 28 37h90q-16 -72 -44 -103t-84 -31q-37 0 -72.5 21.5t-50.5 21.5q-21 0 -28 -37h-90z" />
+<glyph unicode="&#x2000;" horiz-adv-x="455" />
+<glyph unicode="&#x2001;" horiz-adv-x="910" />
+<glyph unicode="&#x2002;" horiz-adv-x="455" />
+<glyph unicode="&#x2003;" horiz-adv-x="910" />
+<glyph unicode="&#x2004;" horiz-adv-x="303" />
+<glyph unicode="&#x2005;" horiz-adv-x="227" />
+<glyph unicode="&#x2006;" horiz-adv-x="151" />
+<glyph unicode="&#x2007;" horiz-adv-x="151" />
+<glyph unicode="&#x2008;" horiz-adv-x="113" />
+<glyph unicode="&#x2009;" horiz-adv-x="182" />
+<glyph unicode="&#x200a;" horiz-adv-x="50" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M13 167l33 150h240l-33 -150h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M13 167l33 150h240l-33 -150h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M13 167l33 150h240l-33 -150h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M13 167l33 150h533l-33 -150h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M13 167l33 150h773l-33 -150h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="281" d="M73 440q0 68 50 134.5t128 103.5l60 -62q-84 -34 -112 -84q4 1 13 1q35 0 58 -22t23 -63q0 -46 -36.5 -79.5t-81.5 -33.5q-42 0 -72 28t-30 77z" />
+<glyph unicode="&#x2019;" horiz-adv-x="281" d="M87 396q84 34 112 84q-4 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5t-128 -103.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="281" d="M-18 -79q84 34 112 84q-3 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5t-128 -103.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="528" d="M69 440q0 68 50 134.5t128 103.5l60 -62q-84 -34 -112 -84q4 1 13 1q35 0 58 -22t23 -63q0 -46 -36.5 -79.5t-81.5 -33.5q-42 0 -72 28t-30 77zM316 440q0 68 50 134.5t128 103.5l60 -62q-84 -34 -112 -84q4 1 13 1q35 0 58 -22t23 -63q0 -46 -36.5 -79.5t-81.5 -33.5 q-42 0 -72 28t-30 77z" />
+<glyph unicode="&#x201d;" horiz-adv-x="528" d="M87 396q84 34 112 84q-4 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5t-128 -103.5zM334 396q84 34 112 84q-4 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5 t-128 -103.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="528" d="M-18 -79q84 34 112 84q-3 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5t-128 -103.5zM229 -79q84 34 112 84q-3 -1 -13 -1q-35 0 -58 22t-23 63q0 46 36.5 79.5t81.5 33.5q42 0 72 -28t30 -77q0 -68 -50 -134.5 t-128 -103.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M48 230q0 58 43 100t102 42q50 0 83.5 -33.5t33.5 -83.5q0 -58 -43 -100t-102 -42q-50 0 -83.5 33.5t-33.5 83.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="846" d="M1 86q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70zM283 86q0 47 35 81.5t82 34.5q40 0 68.5 -29t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70zM565 86q0 47 35 81.5t82 34.5q40 0 68.5 -29 t28.5 -70q0 -47 -35 -81.5t-82 -34.5q-40 0 -68.5 29t-28.5 70z" />
+<glyph unicode="&#x202f;" horiz-adv-x="182" />
+<glyph unicode="&#x2039;" horiz-adv-x="380" d="M29 243l200 177h164l-204 -182l116 -175h-156z" />
+<glyph unicode="&#x203a;" horiz-adv-x="380" d="M-11 63l204 182l-116 175h156l120 -180l-200 -177h-164z" />
+<glyph unicode="&#x205f;" horiz-adv-x="227" />
+<glyph unicode="&#x20ac;" horiz-adv-x="722" d="M5 213l23 105h32q0 16 3 33h-28l24 105h33q46 103 145 162.5t223 59.5q70 0 127.5 -19t95 -52t61.5 -70t36 -80l-194 -61q-9 47 -46 75.5t-89 28.5q-66 0 -117 -44h183l-24 -105h-221q-4 -22 -4 -33h218l-23 -105h-159q42 -47 114 -47q39 0 78.5 22.5t56.5 54.5l158 -102 q-57 -82 -140 -117.5t-164 -35.5q-123 0 -216 60.5t-122 164.5h-64z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M105 641l5 26h152l-5 -26h-62l-43 -194h-28l43 194h-62zM250 447l48 220h43l29 -160l99 160h43l-48 -220h-28l40 182l-115 -182h-8l-35 182l-40 -182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern u1="K" u2="a" k="10" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="T" u2="a" k="60" />
+<hkern u1="V" u2="a" k="70" />
+<hkern u1="W" u2="a" k="40" />
+<hkern u1="Y" u2="a" k="100" />
+<hkern u1="a" u2="&#x2122;" k="20" />
+<hkern u1="a" u2="&#x201d;" k="20" />
+<hkern u1="a" u2="&#x201c;" k="20" />
+<hkern u1="a" u2="&#x2019;" k="20" />
+<hkern u1="a" u2="&#x2018;" k="20" />
+<hkern u1="a" u2="&#x178;" k="110" />
+<hkern u1="a" u2="&#xdd;" k="110" />
+<hkern u1="a" u2="&#xae;" k="20" />
+<hkern u1="a" u2="Y" k="110" />
+<hkern u1="a" u2="W" k="50" />
+<hkern u1="a" u2="V" k="80" />
+<hkern u1="a" u2="T" k="80" />
+<hkern u1="a" u2="&#x3f;" k="50" />
+<hkern u1="a" u2="&#x27;" k="20" />
+<hkern u1="a" u2="&#x22;" k="20" />
+<hkern u1="&#xdd;" u2="a" k="100" />
+<hkern u1="&#x178;" u2="a" k="100" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="10" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="20" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-10" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="-10" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="15" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="35" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="35" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="80" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="50" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="20" />
+<hkern g1="G" 	g2="question" 	k="20" />
+<hkern g1="G" 	g2="T" 	k="20" />
+<hkern g1="G" 	g2="W" 	k="20" />
+<hkern g1="G" 	g2="V" 	k="30" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="G" 	g2="X" 	k="10" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="40" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="60" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="20" />
+<hkern g1="K" 	g2="x" 	k="40" />
+<hkern g1="L" 	g2="question" 	k="100" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="150" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="L" 	g2="asterisk" 	k="160" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="80" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="130" />
+<hkern g1="L" 	g2="t" 	k="40" />
+<hkern g1="L" 	g2="w" 	k="30" />
+<hkern g1="L" 	g2="v" 	k="50" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="50" />
+<hkern g1="P" 	g2="J" 	k="130" />
+<hkern g1="P" 	g2="W" 	k="10" />
+<hkern g1="P" 	g2="V" 	k="10" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="70" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
+<hkern g1="P" 	g2="X" 	k="30" />
+<hkern g1="P" 	g2="ampersand" 	k="40" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="20" />
+<hkern g1="P" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="20" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="R" 	g2="ampersand" 	k="10" />
+<hkern g1="R" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="20" />
+<hkern g1="S" 	g2="T" 	k="30" />
+<hkern g1="S" 	g2="W" 	k="10" />
+<hkern g1="S" 	g2="V" 	k="15" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="S" 	g2="t" 	k="10" />
+<hkern g1="S" 	g2="w" 	k="10" />
+<hkern g1="S" 	g2="v" 	k="20" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="S" 	g2="x" 	k="20" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="5" />
+<hkern g1="T" 	g2="J" 	k="90" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="10" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="50" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="50" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="100" />
+<hkern g1="T" 	g2="ampersand" 	k="40" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="80" />
+<hkern g1="T" 	g2="x" 	k="10" />
+<hkern g1="T" 	g2="s" 	k="70" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="50" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="40" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="30" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="J" 	k="100" />
+<hkern g1="V" 	g2="S" 	k="-15" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="70" />
+<hkern g1="V" 	g2="t" 	k="20" />
+<hkern g1="V" 	g2="w" 	k="20" />
+<hkern g1="V" 	g2="v" 	k="20" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="30" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="40" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="V" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="30" />
+<hkern g1="V" 	g2="s" 	k="60" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="70" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="5" />
+<hkern g1="W" 	g2="J" 	k="80" />
+<hkern g1="W" 	g2="S" 	k="-10" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="20" />
+<hkern g1="W" 	g2="v" 	k="10" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="10" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="35" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="60" />
+<hkern g1="W" 	g2="ampersand" 	k="10" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="40" />
+<hkern g1="W" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="30" />
+<hkern g1="W" 	g2="s" 	k="40" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="120" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="70" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="45" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="130" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="120" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="80" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="ampersand" 	g2="T" 	k="70" />
+<hkern g1="ampersand" 	g2="W" 	k="30" />
+<hkern g1="ampersand" 	g2="V" 	k="60" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="85" />
+<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="asterisk" 	g2="J" 	k="130" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="80" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="80" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="60" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="50" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="80" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="50" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="10" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="80" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="60" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="f" 	g2="question" 	k="-50" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-60" />
+<hkern g1="f" 	g2="asterisk" 	k="-60" />
+<hkern g1="f" 	g2="S" 	k="-30" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-70" />
+<hkern g1="f" 	g2="V" 	k="-70" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-70" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="10" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-60" />
+<hkern g1="g,j,q" 	g2="question" 	k="30" />
+<hkern g1="g,j,q" 	g2="T" 	k="50" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="70" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-60" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="40" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="60" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="130" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="50" />
+<hkern g1="k" 	g2="T" 	k="20" />
+<hkern g1="k" 	g2="W" 	k="30" />
+<hkern g1="k" 	g2="V" 	k="30" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="80" />
+<hkern g1="k" 	g2="bullet" 	k="20" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="20" />
+<hkern g1="k" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="10" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="100" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="80" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="50" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="80" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="120" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="10" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="120" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="90" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="20" />
+<hkern g1="r" 	g2="W" 	k="20" />
+<hkern g1="r" 	g2="V" 	k="30" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="r" 	g2="X" 	k="30" />
+<hkern g1="s" 	g2="question" 	k="50" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="60" />
+<hkern g1="s" 	g2="W" 	k="60" />
+<hkern g1="s" 	g2="V" 	k="50" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="s" 	g2="X" 	k="10" />
+<hkern g1="t" 	g2="T" 	k="10" />
+<hkern g1="t" 	g2="W" 	k="20" />
+<hkern g1="t" 	g2="V" 	k="40" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="a,u,z,uni00B5" 	g2="question" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="T" 	k="50" />
+<hkern g1="a,u,z,uni00B5" 	g2="W" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="V" 	k="70" />
+<hkern g1="a,u,z,uni00B5" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="W" 	k="10" />
+<hkern g1="v" 	g2="V" 	k="20" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="60" />
+<hkern g1="v" 	g2="X" 	k="30" />
+<hkern g1="w" 	g2="V" 	k="20" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="w" 	g2="X" 	k="30" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="10" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="10" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="30" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="30" />
+<hkern g1="X" 	g2="v" 	k="30" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="30" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="x" 	g2="T" 	k="10" />
+<hkern g1="x" 	g2="W" 	k="30" />
+<hkern g1="x" 	g2="V" 	k="30" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="80" />
+<hkern g1="x" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..acfb13de90f82230844370bebb8c605378c5dd9d
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.woff
new file mode 100755
index 0000000000000000000000000000000000000000..67764b118a6266b22d6fb00d42f17de382f097db
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BlackIt.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.eot
new file mode 100755
index 0000000000000000000000000000000000000000..735958aee7bca24a762d31026bb71ec80a66e865
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.otf
new file mode 100755
index 0000000000000000000000000000000000000000..1ea77534aa78b23efbb6f9c755d54537553a6094
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.svg
new file mode 100755
index 0000000000000000000000000000000000000000..376b8e8b5a93fffbae32123ea7841f89d8ec2064
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.svg
@@ -0,0 +1,554 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_nova_rgbold" horiz-adv-x="256" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="500" />
+<glyph unicode="&#xfb01;" horiz-adv-x="580" d="M11 372v111h80v26q0 77 45.5 122.5t117.5 45.5q54 0 92 -20l-26 -92q-17 12 -41 12q-28 0 -44 -18t-16 -50v-26h98v-111h-98v-372h-128v372h-80zM377 611q0 31 22.5 53t53.5 22q32 0 54 -22t22 -53t-22.5 -53.5t-53.5 -22.5t-53.5 22.5t-22.5 53.5zM390 0v483h127v-483 h-127z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="580" d="M11 372v111h80v26q0 77 45.5 122.5t117.5 45.5q54 0 92 -20l-26 -92q-17 12 -41 12q-28 0 -44 -18t-16 -50v-26h98v-111h-98v-372h-128v372h-80zM390 0v667h127v-667h-127z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="907" d="M11 372v111h80v26q0 77 45 122.5t118 45.5q84 0 126 -45l-48 -75q-20 20 -53 20q-27 0 -43.5 -17.5t-16.5 -50.5v-26h98v-111h-98v-372h-128v372h-80zM338 372v111h80v26q0 77 45 122.5t118 45.5q54 0 92 -20l-26 -92q-17 12 -41 12q-28 0 -44 -18t-16 -50v-26h98v-111 h-98v-372h-128v372h-80zM705 611q0 31 22.5 53t53.5 22q32 0 54 -22t22 -53t-22.5 -53.5t-53.5 -22.5t-53.5 22.5t-22.5 53.5zM718 0v483h127v-483h-127z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="907" d="M11 372v111h80v26q0 77 45 122.5t118 45.5q84 0 126 -45l-48 -75q-20 20 -53 20q-27 0 -43.5 -17.5t-16.5 -50.5v-26h98v-111h-98v-372h-128v372h-80zM338 372v111h80v26q0 77 45 122.5t118 45.5q54 0 92 -20l-26 -92q-17 12 -41 12q-28 0 -44 -18t-16 -50v-26h98v-111 h-98v-372h-128v372h-80zM718 0v667h127v-667h-127z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" " />
+<glyph unicode="!" d="M48 70q0 33 23.5 57t56.5 24t57 -24t24 -57q0 -32 -24 -56t-57 -24t-56.5 24t-23.5 56zM51 667h153l-20 -450h-112z" />
+<glyph unicode="&#x22;" horiz-adv-x="406" d="M44 608q0 28 20 48.5t49 20.5q28 0 48.5 -20.5t20.5 -48.5l-41 -233h-56q-41 214 -41 233zM225 608q0 28 20.5 48.5t48.5 20.5t48 -20t20 -49l-41 -233h-55q-41 214 -41 233z" />
+<glyph unicode="#" horiz-adv-x="618" d="M17 169l26 81h98l54 166h-98l25 80h101l56 171h94l-56 -171h94l56 171h95l-58 -171h97l-24 -80h-100l-55 -166h101l-25 -81h-103l-56 -169h-95l58 169h-95l-57 -169h-94l57 169h-96zM235 250h93l55 166h-94z" />
+<glyph unicode="$" horiz-adv-x="614" d="M30 94l77 108q66 -70 159 -86v158q-37 9 -62.5 17.5t-57 25t-50.5 36t-32 51t-13 70.5q0 78 58 134.5t157 66.5v93h95v-95q120 -13 203 -89l-79 -104q-52 47 -124 65v-141q37 -9 63 -18t57.5 -25.5t51 -36.5t33 -51.5t13.5 -70.5q0 -86 -56 -143t-162 -68v-91h-95v90 q-146 13 -236 104zM196 486q0 -37 70 -57v122q-33 -4 -51.5 -21.5t-18.5 -43.5zM361 116q35 7 54.5 26.5t19.5 43.5q0 40 -74 64v-134z" />
+<glyph unicode="%" horiz-adv-x="757" d="M26 509q0 72 47 120t122 48q76 0 123 -48t47 -120q0 -71 -47 -117.5t-123 -46.5q-75 0 -122 46.5t-47 117.5zM116 509q0 -38 22.5 -62t56.5 -24q35 0 57 23.5t22 62.5q0 41 -22 65t-57 24t-57 -24t-22 -65zM130 0l426 667h76l-427 -667h-75zM393 153q0 72 47 120t122 48 t122.5 -48t47.5 -120q0 -71 -47.5 -118t-122.5 -47t-122 47t-47 118zM483 153q0 -40 22 -63.5t57 -23.5t57.5 23.5t22.5 63.5q0 41 -22.5 65t-57.5 24t-57 -24t-22 -65z" />
+<glyph unicode="&#x26;" horiz-adv-x="646" d="M24 181q0 69 38.5 114t104.5 78q-44 83 -44 144q0 68 54 114t137 46q74 0 124.5 -38.5t50.5 -102.5q0 -36 -13 -65t-39.5 -51t-50 -35.5t-61.5 -31.5q5 -7 114 -140q40 62 61 129l102 -47q-42 -92 -93 -161q67 -72 129 -134h-162q-21 20 -50 50q-82 -62 -182 -62 q-96 0 -158 50t-62 143zM159 193q0 -47 30 -76t73 -29q49 0 96 34q-83 91 -141 173q-58 -41 -58 -102zM250 514q0 -35 29 -90q49 23 74.5 47t25.5 58q0 26 -17 41t-42 15q-30 0 -50 -20.5t-20 -50.5z" />
+<glyph unicode="'" horiz-adv-x="225" d="M44 608q0 28 20 48.5t49 20.5q28 0 48.5 -20.5t20.5 -48.5l-41 -233h-56q-41 214 -41 233z" />
+<glyph unicode="(" horiz-adv-x="297" d="M41 243q0 121 42.5 240.5t115.5 201.5l80 -60q-52 -95 -76.5 -184t-24.5 -198t24.5 -198t76.5 -182l-80 -62q-73 82 -115.5 201.5t-42.5 240.5z" />
+<glyph unicode=")" horiz-adv-x="297" d="M17 -137q53 92 77.5 181t24.5 199t-24.5 199t-77.5 183l80 60q74 -83 117 -202t43 -240t-43.5 -240.5t-116.5 -201.5z" />
+<glyph unicode="*" horiz-adv-x="351" d="M25 471l97 50l-97 50l31 55l93 -59l-5 110h63l-5 -110l92 59l32 -55l-97 -50l97 -50l-32 -54l-92 59l5 -110h-63l5 110l-93 -59z" />
+<glyph unicode="+" horiz-adv-x="504" d="M29 298v79h180v195h87v-195h179v-79h-179v-203h-87v203h-180z" />
+<glyph unicode="," d="M47 71q0 33 23 56.5t55 23.5q37 0 63.5 -27.5t26.5 -74.5q0 -55 -28 -103.5t-75 -82.5l-55 45q25 13 48 40.5t29 53.5q-9 -3 -19 -3q-29 0 -48.5 20t-19.5 52z" />
+<glyph unicode="-" horiz-adv-x="300" d="M30 188v108h240v-108h-240z" />
+<glyph unicode="." d="M47 70q0 33 24 57t57 24t57 -24t24 -57t-24 -57t-57 -24t-57 24t-24 57z" />
+<glyph unicode="/" horiz-adv-x="329" d="M0 -20l237 707h92l-237 -707h-92z" />
+<glyph unicode="0" horiz-adv-x="620" d="M34 333q0 90 28 166t92.5 127t155.5 51t155 -51t92.5 -127t28.5 -166t-28.5 -166t-92.5 -127.5t-155 -51.5t-155.5 51.5t-92.5 127.5t-28 166zM178 333q0 -99 32 -159t100 -60t99.5 60t31.5 159t-31.5 158.5t-99.5 59.5t-100 -59.5t-32 -158.5z" />
+<glyph unicode="1" horiz-adv-x="411" d="M11 456l210 211h124v-667h-142v484l-111 -113z" />
+<glyph unicode="2" horiz-adv-x="600" d="M32 568q47 54 115.5 81.5t141.5 27.5q110 0 182.5 -58t72.5 -155q0 -82 -64.5 -160.5t-202.5 -178.5h272v-125h-502v111q214 159 283.5 226.5t69.5 126.5q0 41 -32 64t-76 23q-105 0 -179 -77z" />
+<glyph unicode="3" horiz-adv-x="587" d="M20 95l74 95q34 -35 84 -55.5t100 -20.5q60 0 93 23.5t33 61.5q0 40 -32 58.5t-102 18.5q-63 0 -83 -2v128q12 -1 83 -1q123 0 123 71q0 38 -34.5 58.5t-89.5 20.5q-97 0 -169 -69l-71 89q94 106 255 106q117 0 184.5 -49t67.5 -132q0 -60 -43 -100.5t-103 -51.5 q59 -6 107.5 -48.5t48.5 -111.5q0 -87 -72 -141.5t-191 -54.5q-88 0 -156 29.5t-107 77.5z" />
+<glyph unicode="4" horiz-adv-x="597" d="M25 138v112l265 417h196v-404h86v-125h-86v-138h-142v138h-319zM164 263h180v278z" />
+<glyph unicode="5" horiz-adv-x="608" d="M49 88l79 99q70 -73 177 -73q57 0 90.5 28.5t33.5 70.5q0 45 -32 72t-88 27q-83 0 -140 -54l-99 26v383h458v-125h-316v-163q56 56 147 56q89 0 151.5 -59t62.5 -157q0 -106 -73 -168.5t-194 -62.5q-165 0 -257 100z" />
+<glyph unicode="6" horiz-adv-x="608" d="M34 332q0 155 83 250t228 95q116 0 197 -69l-64 -109q-55 52 -133 52q-73 0 -120 -54.5t-47 -134.5q0 -9 1 -14q25 36 72 61t99 25q95 0 161 -57.5t66 -159.5q0 -99 -71 -164t-184 -65q-144 0 -216 96t-72 248zM179 249q5 -56 38 -95.5t97 -39.5q54 0 86.5 30t32.5 68 q0 49 -36 74.5t-88 25.5q-80 0 -130 -63z" />
+<glyph unicode="7" horiz-adv-x="545" d="M24 542v125h501v-99l-248 -568h-156l239 542h-336z" />
+<glyph unicode="8" horiz-adv-x="606" d="M35 173q0 58 40 103.5t103 67.5q-132 46 -132 157q0 87 76.5 131.5t180.5 44.5q66 0 122 -17t95.5 -58.5t39.5 -100.5q0 -110 -133 -157q63 -22 103.5 -67.5t40.5 -103.5q0 -88 -78 -136.5t-190 -48.5q-113 0 -190.5 48t-77.5 137zM179 191q0 -36 35.5 -58.5t88.5 -22.5 q52 0 88 22.5t36 58.5q0 37 -40.5 60t-83.5 29q-43 -6 -83.5 -29t-40.5 -60zM190 479q0 -33 36 -53t77 -26q41 6 76.5 26t35.5 53q0 35 -31 55.5t-81 20.5t-81.5 -20.5t-31.5 -55.5z" />
+<glyph unicode="9" horiz-adv-x="608" d="M30 449q0 99 71.5 164t184.5 65q97 0 163.5 -48t95 -123.5t28.5 -173.5q0 -154 -82.5 -249t-227.5 -95q-119 0 -196 69l63 109q55 -52 133 -52t122.5 55.5t44.5 132.5v15q-26 -36 -73 -61t-99 -25q-95 0 -161.5 57.5t-66.5 159.5zM175 454q0 -49 36 -74.5t87 -25.5 q80 0 131 62q-5 56 -38 96t-98 40q-54 0 -86 -30t-32 -68z" />
+<glyph unicode=":" horiz-adv-x="251" d="M47 70q0 33 24 57t57 24t57 -24t24 -57t-24 -57t-57 -24t-57 24t-24 57zM47 409q0 33 24 57t57 24t57 -24t24 -57t-24 -57t-57 -24t-57 24t-24 57z" />
+<glyph unicode=";" d="M47 74q0 33 23 56t55 23q37 0 63.5 -27.5t26.5 -74.5q0 -55 -28 -103.5t-75 -82.5l-55 45q25 14 48 42t29 53q-12 -4 -19 -4q-29 0 -48.5 20.5t-19.5 52.5zM47 409q0 33 24 57t57 24t57 -24t24 -57q0 -32 -24 -56.5t-57 -24.5t-57 24.5t-24 56.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="504" d="M29 289v91l446 200v-94l-355 -152l355 -150v-94z" />
+<glyph unicode="=" horiz-adv-x="504" d="M29 201v78h446v-78h-446zM29 388v80h446v-80h-446z" />
+<glyph unicode="&#x3e;" horiz-adv-x="504" d="M29 90v94l355 150l-355 152v94l446 -200v-91z" />
+<glyph unicode="?" horiz-adv-x="456" d="M9 580q83 97 219 97q96 0 152 -43.5t56 -114.5q0 -40 -17 -72t-41.5 -52t-49.5 -37t-42 -37t-17 -43q0 -26 18 -42l-109 -32q-33 36 -33 88q0 40 23 72t50 48t50 38t23 44q0 25 -19.5 41t-58.5 16q-71 0 -123 -62zM145 70q0 33 24 57t57 24t57 -24t24 -57t-24 -57 t-57 -24t-57 24t-24 57z" />
+<glyph unicode="@" horiz-adv-x="783" d="M35 244q0 104 55.5 195.5t147.5 145t194 53.5q140 0 227.5 -89t87.5 -217q0 -116 -62 -181.5t-136 -65.5q-85 0 -98 80q-26 -37 -65 -58.5t-79 -21.5q-71 0 -113 47t-42 121q0 99 69 172t157 73q43 0 75.5 -18.5t49.5 -48.5l11 53h113l-51 -244q-3 -18 -3 -24 q0 -45 37 -45q35 0 64.5 41.5t29.5 119.5q0 119 -75.5 193t-200.5 74q-142 0 -248 -106.5t-106 -246.5q0 -118 80.5 -198t201.5 -80q96 0 183 55l21 -30q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM268 263q0 -39 22.5 -63.5t60.5 -24.5q63 0 111 65l25 117 q-25 51 -81 51q-58 0 -98 -44t-40 -101z" />
+<glyph unicode="A" horiz-adv-x="684" d="M-5 0l258 667h178l257 -667h-162l-41 113h-286l-42 -113h-162zM238 238h208l-104 287z" />
+<glyph unicode="B" horiz-adv-x="663" d="M66 0v667h351q91 0 141.5 -49.5t50.5 -120.5q0 -61 -33 -102t-82 -51q54 -8 91 -55t37 -109q0 -78 -51 -129t-143 -51h-362zM208 123h183q40 0 63 20.5t23 56.5q0 33 -23 55.5t-63 22.5h-183v-155zM208 400h178q36 0 57 20t21 52t-21.5 52.5t-56.5 20.5h-178v-145z" />
+<glyph unicode="C" horiz-adv-x="687" d="M34 333q0 152 101.5 248.5t253.5 96.5q187 0 279 -163l-122 -60q-22 42 -64.5 69.5t-92.5 27.5q-91 0 -150 -62t-59 -157t59 -157t150 -62q50 0 92.5 27t64.5 70l122 -59q-95 -164 -279 -164q-152 0 -253.5 96.5t-101.5 248.5z" />
+<glyph unicode="D" horiz-adv-x="718" d="M66 0v667h263q157 0 255.5 -92t98.5 -242t-98 -241.5t-256 -91.5h-263zM208 125h121q96 0 152.5 60t56.5 148q0 92 -55 150.5t-154 58.5h-121v-417z" />
+<glyph unicode="E" horiz-adv-x="583" d="M66 0v667h472v-125h-330v-141h323v-125h-323v-151h330v-125h-472z" />
+<glyph unicode="F" horiz-adv-x="571" d="M66 0v667h472v-125h-330v-141h323v-125h-323v-276h-142z" />
+<glyph unicode="G" horiz-adv-x="720" d="M34 333q0 155 102.5 250t252.5 95q182 0 276 -149l-118 -64q-24 38 -65.5 62.5t-92.5 24.5q-91 0 -150 -62t-59 -157t59 -157t150 -62q42 0 81 15t61 36v80h-176v124h318v-256q-113 -126 -284 -126q-150 0 -252.5 96t-102.5 250z" />
+<glyph unicode="H" horiz-adv-x="731" d="M66 0v667h142v-262h315v262h143v-667h-143v280h-315v-280h-142z" />
+<glyph unicode="I" horiz-adv-x="274" d="M66 0v667h142v-667h-142z" />
+<glyph unicode="J" horiz-adv-x="486" d="M6 53l62 109q50 -48 106 -48q47 0 75.5 29t28.5 78v446h142v-448q0 -114 -64 -172.5t-171 -58.5q-113 0 -179 65z" />
+<glyph unicode="K" horiz-adv-x="636" d="M66 0v667h142v-298l236 298h175l-265 -313l283 -354h-175l-202 267l-52 -62v-205h-142z" />
+<glyph unicode="L" horiz-adv-x="523" d="M66 0v667h142v-542h282v-125h-424z" />
+<glyph unicode="M" horiz-adv-x="855" d="M66 0v667h199l162 -403l162 403h200v-667h-143v467l-188 -467h-62l-188 467v-467h-142z" />
+<glyph unicode="N" horiz-adv-x="729" d="M66 0v667h146l309 -419v419h142v-667h-137l-318 435v-435h-142z" />
+<glyph unicode="O" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q152 0 250.5 -97t98.5 -248t-98.5 -248t-250.5 -97q-151 0 -249.5 97.5t-98.5 247.5zM180 333q0 -95 55.5 -157t146.5 -62t147 62t56 157t-56 157t-147 62t-146.5 -62t-55.5 -157z" />
+<glyph unicode="P" horiz-adv-x="624" d="M66 0v667h312q105 0 164.5 -61.5t59.5 -153.5q0 -91 -60 -153t-164 -62h-170v-237h-142zM208 362h151q43 0 70.5 24.5t27.5 65.5t-27.5 65.5t-70.5 24.5h-151v-180z" />
+<glyph unicode="Q" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q152 0 250.5 -97t98.5 -248q0 -141 -87 -236l49 -57l-99 -81l-54 62q-74 -33 -158 -33q-151 0 -249.5 97.5t-98.5 247.5zM180 333q0 -95 55.5 -157t146.5 -62q35 0 70 11l-73 86l98 81l74 -87q34 56 34 128q0 95 -56 157t-147 62 t-146.5 -62t-55.5 -157z" />
+<glyph unicode="R" horiz-adv-x="643" d="M66 0v667h312q103 0 163.5 -60t60.5 -155q0 -82 -42.5 -133t-103.5 -65l150 -254h-163l-131 237h-104v-237h-142zM208 362h149q44 0 72 24.5t28 65.5t-28 65.5t-72 24.5h-149v-180z" />
+<glyph unicode="S" horiz-adv-x="600" d="M21 94l77 108q86 -90 212 -90q55 0 85.5 21.5t30.5 52.5q0 27 -28.5 45t-71 26t-92.5 23t-92.5 34t-71 60t-28.5 100q0 86 69 144.5t184 58.5q159 0 260 -93l-79 -104q-79 73 -194 73q-45 0 -70 -18t-25 -49q0 -24 28.5 -40.5t71 -24.5t92 -23.5t92 -35t71 -61 t28.5 -99.5q0 -96 -68.5 -155t-198.5 -59q-178 0 -282 106z" />
+<glyph unicode="T" horiz-adv-x="582" d="M25 542v125h532v-125h-194v-542h-143v542h-195z" />
+<glyph unicode="U" horiz-adv-x="733" d="M66 266v401h144v-396q0 -72 41 -114.5t116 -42.5t115.5 42.5t40.5 114.5v396h145v-400q0 -129 -76.5 -204t-224.5 -75t-224.5 75.5t-76.5 202.5z" />
+<glyph unicode="V" horiz-adv-x="684" d="M-5 667h162l185 -513l184 513h162l-257 -667h-178z" />
+<glyph unicode="W" horiz-adv-x="918" d="M1 667h159l117 -482l127 482h111l126 -482l116 482h160l-190 -667h-151l-117 458l-116 -458h-151z" />
+<glyph unicode="X" horiz-adv-x="668" d="M-3 0l242 342l-227 325h169l153 -228l151 228h171l-227 -324l242 -343h-170l-167 244l-168 -244h-169z" />
+<glyph unicode="Y" horiz-adv-x="645" d="M-5 667h162l166 -268l164 268h162l-255 -394v-273h-142v273z" />
+<glyph unicode="Z" horiz-adv-x="592" d="M42 0v115l315 427h-315v125h501v-114l-315 -428h322v-125h-508z" />
+<glyph unicode="[" horiz-adv-x="280" d="M47 -190v868h216v-85h-125v-698h125v-85h-216z" />
+<glyph unicode="\" horiz-adv-x="329" d="M0 687h92l237 -707h-92z" />
+<glyph unicode="]" horiz-adv-x="280" d="M17 -105h125v698h-125v85h216v-868h-216v85z" />
+<glyph unicode="^" horiz-adv-x="441" d="M19 333l156 334h93l154 -334h-94l-108 247l-107 -247h-94z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-3 -40h570v-85h-570v85z" />
+<glyph unicode="`" horiz-adv-x="251" d="M0 700h116l135 -144h-89z" />
+<glyph unicode="a" horiz-adv-x="543" d="M32 148q0 78 50.5 117t117.5 39q103 0 153 -59v65q0 37 -29 59t-77 22q-79 0 -141 -57l-48 85q86 76 211 76q93 0 152 -43t59 -140v-312h-127v50q-52 -62 -153 -62q-65 0 -116.5 42.5t-51.5 117.5zM160 145q0 -33 26 -52t65 -19q71 0 102 42v60q-31 42 -102 42 q-39 0 -65 -19.5t-26 -53.5z" />
+<glyph unicode="b" horiz-adv-x="586" d="M63 0v667h127v-246q57 74 149 74q94 0 154 -69t60 -185q0 -118 -60 -185.5t-154 -67.5q-90 0 -149 74v-62h-127zM190 155q16 -23 47 -38.5t62 -15.5q55 0 89 38.5t34 101.5t-34 102t-89 39q-31 0 -62 -16t-47 -40v-171z" />
+<glyph unicode="c" horiz-adv-x="499" d="M32 242q0 111 72 182t184 71q128 0 191 -87l-83 -78q-35 52 -102 52q-58 0 -94.5 -38.5t-36.5 -101.5t36.5 -102t94.5 -39q65 0 102 52l83 -77q-63 -88 -191 -88q-112 0 -184 71t-72 183z" />
+<glyph unicode="d" horiz-adv-x="586" d="M32 241q0 116 60 185t154 69q92 0 149 -74v246h128v-667h-128v62q-59 -74 -149 -74q-94 0 -154 67.5t-60 185.5zM163 241q0 -62 34 -101t88 -39q32 0 63 15.5t47 39.5v171q-16 24 -47 39.5t-63 15.5q-54 0 -88 -39t-34 -102z" />
+<glyph unicode="e" horiz-adv-x="553" d="M32 242q0 107 70.5 180t179.5 73q108 0 175 -73.5t67 -192.5v-28h-359q6 -48 43 -80t96 -32q32 0 69.5 13t59.5 35l56 -82q-73 -67 -199 -67q-112 0 -185 70t-73 184zM163 287h238q-3 41 -32.5 74t-86.5 33q-54 0 -84 -32.5t-35 -74.5z" />
+<glyph unicode="f" horiz-adv-x="327" d="M11 372v111h80v26q0 77 45 122.5t118 45.5q84 0 126 -45l-48 -75q-20 20 -53 20q-27 0 -43.5 -17.5t-16.5 -50.5v-26h98v-111h-98v-372h-128v372h-80z" />
+<glyph unicode="g" horiz-adv-x="585" d="M32 249q0 116 59.5 181t153.5 65q90 0 149 -74v62h128v-450q0 -66 -23.5 -113t-63.5 -71t-82.5 -34.5t-91.5 -10.5q-125 0 -208 72l57 92q54 -60 151 -60q54 0 93.5 28.5t39.5 93.5v49q-60 -76 -149 -76q-94 0 -153.5 64.5t-59.5 181.5zM163 249q0 -61 33.5 -97t88.5 -36 q31 0 62 16t47 39v156q-16 24 -46.5 39.5t-62.5 15.5q-55 0 -88.5 -36t-33.5 -97z" />
+<glyph unicode="h" horiz-adv-x="580" d="M63 0v667h127v-247q26 31 70.5 53t99.5 22q78 0 117.5 -40t39.5 -112v-343h-127v294q0 48 -23 68t-67 20q-67 0 -110 -57v-325h-127z" />
+<glyph unicode="i" horiz-adv-x="253" d="M50 611q0 31 22.5 53t53.5 22q32 0 54 -22t22 -53t-22 -53.5t-54 -22.5q-31 0 -53.5 22.5t-22.5 53.5zM63 0v483h127v-483h-127z" />
+<glyph unicode="j" horiz-adv-x="253" d="M-103 -162l35 95q30 -25 65 -25q30 0 48 20t18 59v496h127v-496q0 -85 -43.5 -134t-128.5 -49q-44 0 -68.5 7.5t-52.5 26.5zM50 611q0 31 22.5 53t53.5 22q32 0 54 -22t22 -53t-22 -53.5t-54 -22.5q-31 0 -53.5 22.5t-22.5 53.5z" />
+<glyph unicode="k" horiz-adv-x="535" d="M63 0v667h127v-399l183 215h156l-191 -219l197 -264h-159l-128 186l-58 -62v-124h-127z" />
+<glyph unicode="l" horiz-adv-x="253" d="M63 0v667h127v-667h-127z" />
+<glyph unicode="m" horiz-adv-x="852" d="M63 0v483h127v-63q18 26 63 50.5t95 24.5q105 0 134 -88q23 36 68.5 62t97.5 26q68 0 105 -36.5t37 -109.5v-349h-128v305q0 77 -72 77q-31 0 -57.5 -17t-42.5 -39v-326h-128v305q0 77 -72 77q-30 0 -57 -17t-43 -40v-325h-127z" />
+<glyph unicode="n" horiz-adv-x="579" d="M63 0v483h127v-63q63 75 169 75q78 0 117.5 -41t39.5 -113v-341h-127v292q0 90 -89 90q-69 0 -110 -57v-325h-127z" />
+<glyph unicode="o" horiz-adv-x="574" d="M32 242q0 107 69.5 180t185.5 73t186 -73t70 -180t-70 -180.5t-186 -73.5t-185.5 73.5t-69.5 180.5zM164 242q0 -60 33 -100.5t90 -40.5t90.5 40.5t33.5 100.5q0 59 -33.5 99.5t-90.5 40.5t-90 -40.5t-33 -99.5z" />
+<glyph unicode="p" horiz-adv-x="583" d="M63 -184v667h127v-61q57 73 149 73q95 0 154.5 -67.5t59.5 -185.5t-59.5 -186t-154.5 -68q-91 0 -149 74v-246h-127zM190 156q16 -23 47.5 -39t61.5 -16q55 0 88.5 39t33.5 102q0 62 -33.5 101t-88.5 39q-31 0 -62 -16t-47 -39v-171z" />
+<glyph unicode="q" horiz-adv-x="583" d="M30 242q0 118 59.5 185.5t154.5 67.5q92 0 149 -73v61h128v-667h-128v246q-58 -74 -149 -74q-95 0 -154.5 68t-59.5 186zM162 242q0 -63 34 -102t88 -39q30 0 61.5 16t47.5 39v171q-16 23 -47 39t-62 16q-54 0 -88 -39t-34 -101z" />
+<glyph unicode="r" horiz-adv-x="360" d="M63 0v483h127v-66q27 34 69 56t85 22v-124q-13 3 -35 3q-32 0 -68 -16t-51 -39v-319h-127z" />
+<glyph unicode="s" horiz-adv-x="477" d="M21 63l55 89q28 -26 76 -46t91 -20q40 0 60.5 14t20.5 38q0 18 -21.5 29.5t-53 16.5t-69 15t-69 24t-53 44.5t-21.5 75.5q0 64 53 108t145 44q112 0 195 -66l-51 -87q-23 24 -61.5 40t-81.5 16q-34 0 -55 -13.5t-21 -34.5q0 -16 21 -26.5t53 -15.5t69 -15.5t69 -25 t53 -46.5t21 -78q0 -68 -55.5 -111.5t-153.5 -43.5q-63 0 -120.5 20t-95.5 55z" />
+<glyph unicode="t" horiz-adv-x="338" d="M8 372v111h80v132h128v-132h98v-111h-98v-218q0 -23 12 -38t32 -15q30 0 44 14l27 -96q-35 -31 -106 -31q-67 0 -102 34t-35 98v252h-80z" />
+<glyph unicode="u" horiz-adv-x="579" d="M63 140v343h127v-293q0 -89 89 -89q67 0 110 55v327h127v-483h-127v61q-65 -73 -170 -73q-78 0 -117 40t-39 112z" />
+<glyph unicode="v" horiz-adv-x="513" d="M-6 483h136l126 -336l126 336h137l-194 -483h-137z" />
+<glyph unicode="w" horiz-adv-x="769" d="M0 483h132l90 -325l106 325h113l106 -325l90 325h132l-147 -483h-135l-102 329l-102 -329h-136z" />
+<glyph unicode="x" horiz-adv-x="504" d="M0 0l171 248l-161 235h142l100 -149l99 149h142l-162 -235l173 -248h-142l-110 163l-111 -163h-141z" />
+<glyph unicode="y" horiz-adv-x="513" d="M-6 483h136l126 -336l126 336h137l-227 -562q-25 -64 -70 -89.5t-113 -27.5q-35 0 -63 7l19 114q18 -8 40 -8q51 0 67 35l18 41z" />
+<glyph unicode="z" horiz-adv-x="479" d="M42 0v95l218 277h-218v111h390v-92l-221 -280h225v-111h-394z" />
+<glyph unicode="{" horiz-adv-x="288" d="M3 208v72q25 0 38.5 19t13.5 48v171q0 71 46 115.5t109 44.5h61v-85h-61q-26 0 -44 -20.5t-18 -53.5v-185q0 -70 -46 -90q46 -20 46 -90v-184q0 -33 18 -54t44 -21h61v-85h-61q-63 0 -109 44t-46 115v172q0 29 -13.5 48t-38.5 19z" />
+<glyph unicode="|" horiz-adv-x="216" d="M66 -20v707h85v-707h-85z" />
+<glyph unicode="}" horiz-adv-x="288" d="M17 -105h61q26 0 44.5 21t18.5 54v184q0 70 46 90q-46 20 -46 90v185q0 33 -18.5 53.5t-44.5 20.5h-61v85h61q63 0 109 -44.5t46 -115.5v-171q0 -29 13.5 -48t38.5 -19v-72q-25 0 -38.5 -19t-13.5 -48v-172q0 -71 -46 -115t-109 -44h-61v85z" />
+<glyph unicode="~" horiz-adv-x="510" d="M26 422q4 51 12 89.5t24 76t44.5 58t68.5 20.5q36 0 60.5 -18t35.5 -44t19 -52.5t18.5 -44.5t26.5 -18q49 0 63 178l86 -10q-4 -52 -12 -90t-23.5 -76t-44.5 -58.5t-69 -20.5q-44 0 -71 27.5t-35.5 60.5t-21.5 60.5t-32 27.5q-48 0 -62 -176z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa1;" d="M47 414q0 32 23.5 56t56.5 24t57 -24t24 -56q0 -33 -24 -57.5t-57 -24.5t-56.5 24.5t-23.5 57.5zM51 -184l20 449h113l21 -449h-154z" />
+<glyph unicode="&#xa2;" horiz-adv-x="499" d="M32 242q0 98 57.5 166.5t151.5 82.5v74h92v-73q95 -15 146 -84l-83 -78q-25 36 -63 46v-270q37 11 63 47l83 -77q-51 -72 -146 -85v-91h-92v92q-94 14 -151.5 82.5t-57.5 167.5zM163 242q0 -47 21 -81.5t57 -49.5v261q-36 -15 -57 -49t-21 -81z" />
+<glyph unicode="&#xa3;" horiz-adv-x="550" d="M23 269v81h68q-46 63 -46 120q0 91 74 149t169 58q169 0 232 -121l-113 -66q-13 32 -40.5 51.5t-61.5 19.5q-45 0 -75 -26t-30 -68q0 -14 2 -26.5t9 -27t10 -20t15 -23.5t13 -20h144v-81h-113q0 -3 0.5 -9.5t0.5 -9.5q0 -34 -18 -64t-46 -47q21 7 49 7q30 0 68 -16.5 t62 -16.5q59 0 86 37l56 -113q-48 -50 -147 -50q-47 0 -100.5 22t-80.5 22q-47 0 -116 -38l-48 97q109 53 109 125q0 25 -12 54h-120z" />
+<glyph unicode="&#xa4;" horiz-adv-x="623" d="M23 547l76 74l76 -76q60 34 136 34q74 0 136 -34l76 76l76 -75l-73 -73q41 -63 41 -140q0 -79 -42 -141l74 -71l-76 -74l-75 73q-59 -34 -137 -34t-138 35l-73 -74l-76 74l73 73q-40 62 -40 139t40 139zM184 333q0 -56 34 -94.5t93 -38.5q60 0 94 38t34 95q0 56 -34 94 t-94 38q-59 0 -93 -38t-34 -94z" />
+<glyph unicode="&#xa5;" horiz-adv-x="645" d="M-5 667h162l166 -268l164 268h162l-204 -315h178v-79h-229v-80h229v-78h-229v-115h-142v115h-228v78h228v80h-228v79h176z" />
+<glyph unicode="&#xa6;" horiz-adv-x="216" d="M66 -20v316h85v-316h-85zM66 371v316h85v-316h-85z" />
+<glyph unicode="&#xa7;" horiz-adv-x="484" d="M23 -2l53 80q29 -29 72 -50t89 -21q40 0 63.5 15t23.5 43q0 22 -21.5 36t-53 20.5t-69 17.5t-69 24.5t-53 43.5t-21.5 74q0 47 29 79t69 46q-98 37 -98 126q0 62 55.5 103.5t142.5 41.5q124 0 194 -68l-50 -75q-54 54 -139 54q-37 0 -58.5 -14.5t-21.5 -39.5 q0 -23 29.5 -35.5t71.5 -21t84 -21t71.5 -45.5t29.5 -85q0 -86 -83 -128q83 -36 83 -123q0 -73 -58 -114.5t-151 -41.5q-127 0 -214 79zM160 300q0 -32 27 -46.5t76 -25.5q58 25 58 74q0 53 -83 72q-43 -10 -60.5 -28t-17.5 -46z" />
+<glyph unicode="&#xa8;" horiz-adv-x="295" d="M-26 611q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20t-48 19.5t-20 48.5zM185 611q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M44 334q0 143 101 244t244 101t244 -101t101 -244t-101 -244t-244 -101t-244 101.5t-101 243.5zM80 334q0 -127 91 -218t218 -91t218 91t91 218q0 128 -91 218.5t-218 90.5t-218 -91t-91 -218zM186 335q0 90 60.5 150t147.5 60q92 0 148 -66l-31 -31q-42 57 -117 57 q-67 0 -114.5 -48t-47.5 -122q0 -73 47.5 -122.5t114.5 -49.5q75 0 118 58l31 -30q-58 -68 -149 -68q-87 0 -147.5 60.5t-60.5 151.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="385" d="M31 422q0 48 33 74.5t77 26.5q68 0 102 -38v40q0 25 -19 39.5t-50 14.5q-53 0 -92 -41l-35 60q59 50 143 50q63 0 104 -29t41 -96v-197h-92v32q-36 -40 -102 -40q-44 0 -77 27.5t-33 76.5zM122 422q0 -22 16.5 -34.5t40.5 -12.5q43 0 64 29v36q-21 27 -64 27 q-24 0 -40.5 -12t-16.5 -33z" />
+<glyph unicode="&#xab;" horiz-adv-x="527" d="M30 243l160 177h117l-160 -177l160 -180h-117zM220 243l160 177h117l-160 -177l160 -180h-117z" />
+<glyph unicode="&#xac;" horiz-adv-x="515" d="M29 388v80h446v-267h-81v187h-365z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M30 188v108h240v-108h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M35 465q0 88 62 150t150 62q89 0 150.5 -61.5t61.5 -150.5q0 -88 -62 -150t-150 -62t-150 62t-62 150zM67 465q0 -74 52.5 -127t127.5 -53q74 0 127 53t53 127q0 75 -53 127.5t-127 52.5q-75 0 -127.5 -52.5t-52.5 -127.5zM166 343v243h99q32 0 55.5 -20.5t23.5 -53.5 q0 -35 -22.5 -53.5t-39.5 -18.5l65 -97h-42l-63 96h-42v-96h-34zM200 470h65q17 0 30.5 12t13.5 30q0 19 -13.5 31.5t-30.5 12.5h-65v-86z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M0 562v72h363v-72h-363z" />
+<glyph unicode="&#xb0;" horiz-adv-x="311" d="M20 541q0 56 39.5 96t95.5 40t95.5 -40t39.5 -96t-39.5 -95t-95.5 -39t-95.5 39t-39.5 95zM90 541q0 -27 18.5 -46t46.5 -19q27 0 46.5 19t19.5 46q0 28 -19.5 47.5t-46.5 19.5q-28 0 -46.5 -19.5t-18.5 -47.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="504" d="M29 0v78h446v-78h-446zM29 326v78h180v197h87v-197h179v-78h-179v-204h-87v204h-180z" />
+<glyph unicode="&#xb2;" horiz-adv-x="397" d="M35 761q59 66 161 66q71 0 116 -33t45 -92q0 -47 -40.5 -93.5t-131.5 -110.5h175v-77h-314v70q131 92 173.5 131.5t42.5 72.5q0 27 -19 41t-49 14q-33 0 -63 -15t-46 -35z" />
+<glyph unicode="&#xb3;" horiz-adv-x="397" d="M32 477l47 63q46 -49 115 -49q35 0 54 13t19 34q0 49 -88 49q-39 0 -45 -1v76q9 -1 44 -1q82 0 82 45q0 44 -73 44q-61 0 -105 -44l-45 57q59 64 160 64q75 0 117 -29.5t42 -79.5q0 -35 -26 -60t-63 -31q35 -3 65.5 -28.5t30.5 -66.5q0 -53 -45.5 -85.5t-120.5 -32.5 q-111 0 -165 63z" />
+<glyph unicode="&#xb4;" horiz-adv-x="251" d="M0 556l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xb5;" horiz-adv-x="593" d="M63 -184v667h127v-293q0 -90 90 -90q65 0 109 56v327h127v-338q0 -21 11 -32.5t29 -11.5q9 0 19 2l9 -108q-26 -7 -59 -7q-104 0 -130 86q-22 -38 -57.5 -62t-77.5 -24q-49 0 -70 28v-200h-127z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M27 495q0 71 50.5 121.5t121.5 50.5h204v-767h-63v705h-78v-705h-63v423q-71 0 -121.5 50.5t-50.5 121.5z" />
+<glyph unicode="&#xb7;" d="M47 244q0 33 24 57t57 24t57 -24t24 -57q0 -32 -24 -56t-57 -24t-57 24t-24 56z" />
+<glyph unicode="&#xb8;" horiz-adv-x="221" d="M0 -164l25 51q38 -29 81 -29q22 0 37 8.5t15 24.5q0 26 -29 26q-18 0 -32 -14l-46 26l30 82h63l-26 -62q17 10 36 10q28 0 47.5 -19.5t19.5 -50.5q0 -39 -32 -62t-79 -23q-70 0 -110 32z" />
+<glyph unicode="&#xb9;" horiz-adv-x="286" d="M7 687l136 134h83v-400h-97v277l-68 -69z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M30 483q0 69 47.5 117t124.5 48q78 0 125.5 -48t47.5 -117t-47.5 -117t-125.5 -48q-77 0 -124.5 48t-47.5 117zM125 483q0 -42 20.5 -66.5t56.5 -24.5t57 24.5t21 66.5q0 41 -20.5 65t-57.5 24q-36 0 -56.5 -23.5t-20.5 -65.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="527" d="M30 63l160 180l-160 177h117l160 -177l-160 -180h-117zM220 63l160 180l-160 177h117l160 -177l-160 -180h-117z" />
+<glyph unicode="&#xbc;" horiz-adv-x="833" d="M7 533l136 134h83v-400h-97v277l-68 -69zM138 0l426 667h77l-427 -667h-76zM464 86v65l158 249h133v-239h53v-75h-53v-86h-95v86h-196zM559 161h101v158z" />
+<glyph unicode="&#xbd;" horiz-adv-x="867" d="M7 533l136 134h83v-400h-97v277l-68 -69zM138 0l426 667h77l-427 -667h-76zM504 340q59 66 161 66q71 0 116 -33t45 -92q0 -47 -40.5 -93.5t-131.5 -110.5h175v-77h-314v70q131 92 173.5 131.5t42.5 72.5q0 27 -19 41t-49 14q-33 0 -63 -15t-46 -35z" />
+<glyph unicode="&#xbe;" horiz-adv-x="921" d="M32 323l47 63q46 -49 115 -49q35 0 54 13t19 34q0 49 -88 49q-39 0 -45 -1v76q9 -1 44 -1q82 0 82 45q0 44 -73 44q-61 0 -105 -44l-45 57q59 64 160 64q75 0 117 -29.5t42 -79.5q0 -35 -26 -60t-63 -31q35 -3 65.5 -28.5t30.5 -66.5q0 -53 -45.5 -85.5t-120.5 -32.5 q-111 0 -165 63zM225 0l426 667h77l-427 -667h-76zM552 86v65l158 249h133v-239h53v-75h-53v-86h-95v86h-196zM647 161h101v158z" />
+<glyph unicode="&#xbf;" horiz-adv-x="398" d="M19 -37q0 49 26.5 87t57.5 57t57.5 44.5t26.5 52.5q0 26 -19 42l109 31q34 -34 34 -88q0 -40 -23 -71.5t-50.5 -48t-50.5 -38.5t-23 -44q0 -24 20 -40t59 -16q72 0 123 61l81 -91q-84 -96 -220 -96q-95 0 -151.5 43.5t-56.5 114.5zM149 413q0 33 24 57t57 24t57 -24 t24 -57t-24 -57t-57 -24t-57 24t-24 57z" />
+<glyph unicode="&#xc0;" horiz-adv-x="684" d="M-5 0l258 667h178l257 -667h-162l-41 113h-286l-42 -113h-162zM155 867h116l135 -144h-89zM238 238h208l-104 287z" />
+<glyph unicode="&#xc1;" horiz-adv-x="684" d="M-5 0l258 667h178l257 -667h-162l-41 113h-286l-42 -113h-162zM238 238h208l-104 287zM279 723l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xc2;" horiz-adv-x="684" d="M-5 0l258 667h178l257 -667h-162l-41 113h-286l-42 -113h-162zM193 723l92 144h114l94 -144h-78l-73 89l-71 -89h-78zM238 238h208l-104 287z" />
+<glyph unicode="&#xc3;" horiz-adv-x="684" d="M-5 0l258 667h178l257 -667h-162l-41 113h-286l-42 -113h-162zM179 727q0 64 28 99t80 35q22 0 40.5 -10.5t28 -23t22.5 -23t25 -10.5q36 0 36 61h67q0 -64 -27.5 -99t-79.5 -35q-29 0 -50 17t-36.5 34t-30.5 17q-36 0 -36 -62h-67zM238 238h208l-104 287z" />
+<glyph unicode="&#xc4;" horiz-adv-x="684" d="M-5 0l258 667h178l257 -667h-162l-41 113h-286l-42 -113h-162zM169 778q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20q-29 0 -48.5 20t-19.5 48zM238 238h208l-104 287zM380 778q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20 t-20 48z" />
+<glyph unicode="&#xc5;" horiz-adv-x="684" d="M-5 0l258 667h178l257 -667h-162l-41 113h-286l-42 -113h-162zM238 238h208l-104 287zM238 793q0 43 31 74.5t74 31.5t73.5 -31.5t30.5 -74.5q0 -44 -30.5 -74.5t-73.5 -30.5t-74 31t-31 74zM296 793q0 -19 14 -33t33 -14t32.5 14t13.5 33q0 20 -13.5 33.5t-32.5 13.5 t-33 -14t-14 -33z" />
+<glyph unicode="&#xc6;" horiz-adv-x="968" d="M-9 0l406 667h529v-125h-329v-141h322v-125h-322v-151h329v-125h-472v113h-235l-66 -113h-162zM287 238h167v287z" />
+<glyph unicode="&#xc7;" horiz-adv-x="687" d="M34 333q0 152 101.5 248.5t253.5 96.5q187 0 279 -163l-122 -60q-22 42 -64.5 69.5t-92.5 27.5q-91 0 -150 -62t-59 -157t59 -157t150 -62q50 0 92.5 27t64.5 70l122 -59q-89 -155 -262 -163l-15 -36q17 10 36 10q28 0 47.5 -19.5t19.5 -50.5q0 -39 -32 -62t-79 -23 q-70 0 -110 32l25 51q38 -29 81 -29q22 0 37 8.5t15 24.5q0 26 -29 26q-18 0 -32 -14l-46 26l21 58q-136 14 -223.5 108t-87.5 234z" />
+<glyph unicode="&#xc8;" horiz-adv-x="583" d="M66 0v667h472v-125h-330v-141h323v-125h-323v-151h330v-125h-472zM113 867h116l135 -144h-89z" />
+<glyph unicode="&#xc9;" horiz-adv-x="583" d="M66 0v667h472v-125h-330v-141h323v-125h-323v-151h330v-125h-472zM238 723l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xca;" horiz-adv-x="583" d="M66 0v667h472v-125h-330v-141h323v-125h-323v-151h330v-125h-472zM152 723l92 144h114l94 -144h-78l-73 89l-71 -89h-78z" />
+<glyph unicode="&#xcb;" horiz-adv-x="583" d="M66 0v667h472v-125h-330v-141h323v-125h-323v-151h330v-125h-472zM129 778q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20q-29 0 -48.5 20t-19.5 48zM340 778q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xcc;" horiz-adv-x="274" d="M-50 867h116l135 -144h-89zM66 0v667h142v-667h-142z" />
+<glyph unicode="&#xcd;" horiz-adv-x="274" d="M66 0v667h142v-667h-142zM75 723l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xce;" horiz-adv-x="274" d="M-13 723l92 144h114l94 -144h-78l-73 89l-71 -89h-78zM66 0v667h142v-667h-142z" />
+<glyph unicode="&#xcf;" horiz-adv-x="274" d="M-36 778q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20t-48 20t-20 48zM66 0v667h142v-667h-142zM175 778q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xd0;" horiz-adv-x="742" d="M8 277v105h83v285h263q157 0 255.5 -92t98.5 -242t-98 -241.5t-256 -91.5h-263v277h-83zM233 125h121q96 0 152.5 60t56.5 148q0 92 -55 150.5t-154 58.5h-121v-160h149v-105h-149v-152z" />
+<glyph unicode="&#xd1;" horiz-adv-x="729" d="M66 0v667h146l309 -419v419h142v-667h-137l-318 435v-435h-142zM200 727q0 64 28 99t80 35q22 0 40.5 -10.5t28 -23t22.5 -23t25 -10.5q36 0 36 61h67q0 -64 -27.5 -99t-79.5 -35q-29 0 -50 17t-36.5 34t-30.5 17q-36 0 -36 -62h-67z" />
+<glyph unicode="&#xd2;" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q152 0 250.5 -97t98.5 -248t-98.5 -248t-250.5 -97q-151 0 -249.5 97.5t-98.5 247.5zM180 333q0 -95 55.5 -157t146.5 -62t147 62t56 157t-56 157t-147 62t-146.5 -62t-55.5 -157zM196 867h116l135 -144h-89z" />
+<glyph unicode="&#xd3;" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q152 0 250.5 -97t98.5 -248t-98.5 -248t-250.5 -97q-151 0 -249.5 97.5t-98.5 247.5zM180 333q0 -95 55.5 -157t146.5 -62t147 62t56 157t-56 157t-147 62t-146.5 -62t-55.5 -157zM319 723l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xd4;" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q152 0 250.5 -97t98.5 -248t-98.5 -248t-250.5 -97q-151 0 -249.5 97.5t-98.5 247.5zM180 333q0 -95 55.5 -157t146.5 -62t147 62t56 157t-56 157t-147 62t-146.5 -62t-55.5 -157zM235 723l92 144h114l94 -144h-78l-73 89l-71 -89 h-78z" />
+<glyph unicode="&#xd5;" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q152 0 250.5 -97t98.5 -248t-98.5 -248t-250.5 -97q-151 0 -249.5 97.5t-98.5 247.5zM180 333q0 -95 55.5 -157t146.5 -62t147 62t56 157t-56 157t-147 62t-146.5 -62t-55.5 -157zM219 727q0 64 28 99t80 35q22 0 40.5 -10.5t28 -23 t22.5 -23t25 -10.5q36 0 36 61h67q0 -64 -27.5 -99t-79.5 -35q-29 0 -50 17t-36.5 34t-30.5 17q-36 0 -36 -62h-67z" />
+<glyph unicode="&#xd6;" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q152 0 250.5 -97t98.5 -248t-98.5 -248t-250.5 -97q-151 0 -249.5 97.5t-98.5 247.5zM180 333q0 -95 55.5 -157t146.5 -62t147 62t56 157t-56 157t-147 62t-146.5 -62t-55.5 -157zM210 778q0 28 20 47.5t48 19.5t47.5 -19.5 t19.5 -47.5t-19.5 -48t-47.5 -20t-48 20t-20 48zM421 778q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xd7;" horiz-adv-x="504" d="M55 192l141 142l-141 141l57 56l140 -142l141 142l56 -56l-141 -141l141 -142l-56 -55l-141 141l-140 -141z" />
+<glyph unicode="&#xd8;" horiz-adv-x="765" d="M34 333q0 150 98.5 247.5t249.5 97.5q94 0 173 -41l23 30h102l-58 -76q109 -99 109 -258q0 -151 -98.5 -248t-250.5 -97q-103 0 -184 47l-27 -35h-102l64 84q-99 97 -99 249zM180 333q0 -79 39 -137l255 335q-44 21 -92 21q-91 0 -146.5 -62t-55.5 -157zM278 141 q46 -27 104 -27q91 0 147 62t56 157q0 88 -48 147z" />
+<glyph unicode="&#xd9;" horiz-adv-x="733" d="M66 266v401h144v-396q0 -72 41 -114.5t116 -42.5t115.5 42.5t40.5 114.5v396h145v-400q0 -129 -76.5 -204t-224.5 -75t-224.5 75.5t-76.5 202.5zM180 867h116l135 -144h-89z" />
+<glyph unicode="&#xda;" horiz-adv-x="733" d="M66 266v401h144v-396q0 -72 41 -114.5t116 -42.5t115.5 42.5t40.5 114.5v396h145v-400q0 -129 -76.5 -204t-224.5 -75t-224.5 75.5t-76.5 202.5zM304 723l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xdb;" horiz-adv-x="733" d="M66 266v401h144v-396q0 -72 41 -114.5t116 -42.5t115.5 42.5t40.5 114.5v396h145v-400q0 -129 -76.5 -204t-224.5 -75t-224.5 75.5t-76.5 202.5zM221 723l92 144h114l94 -144h-78l-73 89l-71 -89h-78z" />
+<glyph unicode="&#xdc;" horiz-adv-x="733" d="M66 266v401h144v-396q0 -72 41 -114.5t116 -42.5t115.5 42.5t40.5 114.5v396h145v-400q0 -129 -76.5 -204t-224.5 -75t-224.5 75.5t-76.5 202.5zM196 778q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20t-48 20t-20 48zM407 778q0 28 20 47.5t48 19.5 t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xdd;" horiz-adv-x="645" d="M-5 667h162l166 -268l164 268h162l-255 -394v-273h-142v273zM259 723l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xde;" horiz-adv-x="624" d="M66 0v667h142v-108h170q105 0 164.5 -62t59.5 -154q0 -91 -60 -152t-164 -61h-170v-130h-142zM208 255h149q44 0 72 24t28 65t-28.5 65.5t-71.5 24.5h-149v-179z" />
+<glyph unicode="&#xdf;" horiz-adv-x="643" d="M63 0v475q0 86 62 144t167 58q83 0 144.5 -40t61.5 -105q0 -38 -20.5 -67.5t-45.5 -44t-45.5 -34t-20.5 -38.5t27 -29t65 -17.5t76.5 -21t65.5 -48t27 -88.5q0 -68 -55 -112t-146 -44q-66 0 -111 19.5t-86 56.5l54 88q21 -27 60.5 -46t82.5 -19q38 0 58.5 15t20.5 37 q0 21 -27 33.5t-65.5 21t-76.5 22t-65 45.5t-27 83q0 29 12.5 53t31 39.5t36.5 28t30.5 25t12.5 24.5q0 23 -23 36.5t-54 13.5q-43 0 -71.5 -24t-28.5 -65v-475h-127z" />
+<glyph unicode="&#xe0;" horiz-adv-x="543" d="M32 148q0 78 50.5 117t117.5 39q103 0 153 -59v65q0 37 -29 59t-77 22q-79 0 -141 -57l-48 85q86 76 211 76q93 0 152 -43t59 -140v-312h-127v50q-52 -62 -153 -62q-65 0 -116.5 42.5t-51.5 117.5zM81 700h116l135 -144h-89zM160 145q0 -33 26 -52t65 -19q71 0 102 42v60 q-31 42 -102 42q-39 0 -65 -19.5t-26 -53.5z" />
+<glyph unicode="&#xe1;" horiz-adv-x="543" d="M32 148q0 78 50.5 117t117.5 39q103 0 153 -59v65q0 37 -29 59t-77 22q-79 0 -141 -57l-48 85q86 76 211 76q93 0 152 -43t59 -140v-312h-127v50q-52 -62 -153 -62q-65 0 -116.5 42.5t-51.5 117.5zM160 145q0 -33 26 -52t65 -19q71 0 102 42v60q-31 42 -102 42 q-39 0 -65 -19.5t-26 -53.5zM205 556l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xe2;" horiz-adv-x="543" d="M32 148q0 78 50.5 117t117.5 39q103 0 153 -59v65q0 37 -29 59t-77 22q-79 0 -141 -57l-48 85q86 76 211 76q93 0 152 -43t59 -140v-312h-127v50q-52 -62 -153 -62q-65 0 -116.5 42.5t-51.5 117.5zM121 556l92 144h114l94 -144h-78l-73 89l-71 -89h-78zM160 145 q0 -33 26 -52t65 -19q71 0 102 42v60q-31 42 -102 42q-39 0 -65 -19.5t-26 -53.5z" />
+<glyph unicode="&#xe3;" horiz-adv-x="543" d="M32 148q0 78 50.5 117t117.5 39q103 0 153 -59v65q0 37 -29 59t-77 22q-79 0 -141 -57l-48 85q86 76 211 76q93 0 152 -43t59 -140v-312h-127v50q-52 -62 -153 -62q-65 0 -116.5 42.5t-51.5 117.5zM106 560q0 64 28 99t80 35q28 0 49 -17t36.5 -33.5t30.5 -16.5 q36 0 36 61h67q0 -64 -27.5 -99t-79.5 -35q-29 0 -50 17t-36.5 34t-30.5 17q-36 0 -36 -62h-67zM160 145q0 -33 26 -52t65 -19q71 0 102 42v60q-31 42 -102 42q-39 0 -65 -19.5t-26 -53.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="543" d="M32 148q0 78 50.5 117t117.5 39q103 0 153 -59v65q0 37 -29 59t-77 22q-79 0 -141 -57l-48 85q86 76 211 76q93 0 152 -43t59 -140v-312h-127v50q-52 -62 -153 -62q-65 0 -116.5 42.5t-51.5 117.5zM96 611q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48 t-47.5 -20t-48 19.5t-20 48.5zM160 145q0 -33 26 -52t65 -19q71 0 102 42v60q-31 42 -102 42q-39 0 -65 -19.5t-26 -53.5zM307 611q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xe5;" horiz-adv-x="543" d="M32 148q0 78 50.5 117t117.5 39q103 0 153 -59v65q0 37 -29 59t-77 22q-79 0 -141 -57l-48 85q86 76 211 76q93 0 152 -43t59 -140v-312h-127v50q-52 -62 -153 -62q-65 0 -116.5 42.5t-51.5 117.5zM160 145q0 -33 26 -52t65 -19q71 0 102 42v60q-31 42 -102 42 q-39 0 -65 -19.5t-26 -53.5zM166 636q0 43 31 74.5t74 31.5t73.5 -31.5t30.5 -74.5q0 -44 -30.5 -74.5t-73.5 -30.5t-74 31t-31 74zM224 636q0 -19 14 -33t33 -14t32.5 14t13.5 33q0 20 -13.5 33.5t-32.5 13.5t-33 -14t-14 -33z" />
+<glyph unicode="&#xe6;" horiz-adv-x="870" d="M32 146q0 76 50 117t125 41q109 0 165 -58v65q0 36 -31.5 58t-83.5 22q-83 0 -151 -57l-48 85q86 76 214 76q127 0 169 -83q63 83 175 83q100 0 162.5 -73.5t62.5 -192.5v-28h-341q7 -47 41 -78t89 -31q74 0 119 47l57 -84q-35 -32 -86 -49.5t-99 -17.5q-125 0 -186 88 q-31 -39 -84.5 -63.5t-116.5 -24.5q-86 0 -144 40.5t-58 117.5zM160 153q0 -31 27.5 -48t68.5 -17q46 0 81 25.5t35 55.5v6q-38 43 -113 43q-43 0 -71 -17t-28 -48zM498 287h220q-2 41 -29.5 74t-80.5 33q-50 0 -78 -32.5t-32 -74.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="499" d="M32 242q0 111 72 182t184 71q128 0 191 -87l-83 -78q-35 52 -102 52q-58 0 -94.5 -38.5t-36.5 -101.5t36.5 -102t94.5 -39q65 0 102 52l83 -77q-55 -78 -164 -87l-16 -38q17 10 36 10q28 0 47.5 -19.5t19.5 -50.5q0 -39 -32 -62t-79 -23q-70 0 -110 32l25 51 q38 -29 81 -29q22 0 37 8.5t15 24.5q0 26 -29 26q-18 0 -32 -14l-46 26l21 59q-99 11 -160 80t-61 172z" />
+<glyph unicode="&#xe8;" horiz-adv-x="553" d="M32 242q0 107 70.5 180t179.5 73q108 0 175 -73.5t67 -192.5v-28h-359q6 -48 43 -80t96 -32q32 0 69.5 13t59.5 35l56 -82q-73 -67 -199 -67q-112 0 -185 70t-73 184zM95 700h116l135 -144h-89zM163 287h238q-3 41 -32.5 74t-86.5 33q-54 0 -84 -32.5t-35 -74.5z" />
+<glyph unicode="&#xe9;" horiz-adv-x="553" d="M32 242q0 107 70.5 180t179.5 73q108 0 175 -73.5t67 -192.5v-28h-359q6 -48 43 -80t96 -32q32 0 69.5 13t59.5 35l56 -82q-73 -67 -199 -67q-112 0 -185 70t-73 184zM163 287h238q-3 41 -32.5 74t-86.5 33q-54 0 -84 -32.5t-35 -74.5zM219 556l134 144h117l-162 -144 h-89z" />
+<glyph unicode="&#xea;" horiz-adv-x="553" d="M32 242q0 107 70.5 180t179.5 73q108 0 175 -73.5t67 -192.5v-28h-359q6 -48 43 -80t96 -32q32 0 69.5 13t59.5 35l56 -82q-73 -67 -199 -67q-112 0 -185 70t-73 184zM133 556l92 144h114l94 -144h-78l-73 89l-71 -89h-78zM163 287h238q-3 41 -32.5 74t-86.5 33 q-54 0 -84 -32.5t-35 -74.5z" />
+<glyph unicode="&#xeb;" horiz-adv-x="553" d="M32 242q0 107 70.5 180t179.5 73q108 0 175 -73.5t67 -192.5v-28h-359q6 -48 43 -80t96 -32q32 0 69.5 13t59.5 35l56 -82q-73 -67 -199 -67q-112 0 -185 70t-73 184zM110 611q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20t-48 19.5t-20 48.5z M163 287h238q-3 41 -32.5 74t-86.5 33q-54 0 -84 -32.5t-35 -74.5zM321 611q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xec;" horiz-adv-x="253" d="M-61 700h116l135 -144h-89zM63 0v483h127v-483h-127z" />
+<glyph unicode="&#xed;" horiz-adv-x="253" d="M63 0v483h127v-483h-127zM63 556l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xee;" horiz-adv-x="253" d="M-24 556l92 144h114l94 -144h-78l-73 89l-71 -89h-78zM63 0v483h127v-483h-127z" />
+<glyph unicode="&#xef;" horiz-adv-x="253" d="M-47 611q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20q-29 0 -48.5 19.5t-19.5 48.5zM63 0v483h127v-483h-127zM164 611q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xf0;" horiz-adv-x="574" d="M32 224q0 103 61.5 169.5t152.5 66.5q101 0 160 -93q-36 81 -157 166l-146 -64l-25 60l107 47q-8 5 -61 37l69 103q79 -48 123 -83l103 45l25 -58l-73 -32q172 -153 172 -336q0 -119 -69 -191.5t-187 -72.5q-114 0 -184.5 66t-70.5 170zM164 224q0 -52 33 -87.5t90 -35.5 t90.5 35.5t33.5 87.5t-33.5 87.5t-90.5 35.5t-90 -35.5t-33 -87.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="579" d="M63 0v483h127v-63q63 75 169 75q78 0 117.5 -41t39.5 -113v-341h-127v292q0 90 -89 90q-69 0 -110 -57v-325h-127zM127 560q0 64 28 99t80 35q28 0 49 -17t36.5 -33.5t30.5 -16.5q36 0 36 61h67q0 -64 -27.5 -99t-79.5 -35q-29 0 -50 17t-36.5 34t-30.5 17q-36 0 -36 -62 h-67z" />
+<glyph unicode="&#xf2;" horiz-adv-x="574" d="M32 242q0 107 69.5 180t185.5 73t186 -73t70 -180t-70 -180.5t-186 -73.5t-185.5 73.5t-69.5 180.5zM100 700h116l135 -144h-89zM164 242q0 -60 33 -100.5t90 -40.5t90.5 40.5t33.5 100.5q0 59 -33.5 99.5t-90.5 40.5t-90 -40.5t-33 -99.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="574" d="M32 242q0 107 69.5 180t185.5 73t186 -73t70 -180t-70 -180.5t-186 -73.5t-185.5 73.5t-69.5 180.5zM164 242q0 -60 33 -100.5t90 -40.5t90.5 40.5t33.5 100.5q0 59 -33.5 99.5t-90.5 40.5t-90 -40.5t-33 -99.5zM224 556l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xf4;" horiz-adv-x="574" d="M32 242q0 107 69.5 180t185.5 73t186 -73t70 -180t-70 -180.5t-186 -73.5t-185.5 73.5t-69.5 180.5zM137 556l92 144h114l94 -144h-78l-73 89l-71 -89h-78zM164 242q0 -60 33 -100.5t90 -40.5t90.5 40.5t33.5 100.5q0 59 -33.5 99.5t-90.5 40.5t-90 -40.5t-33 -99.5z" />
+<glyph unicode="&#xf5;" horiz-adv-x="574" d="M32 242q0 107 69.5 180t185.5 73t186 -73t70 -180t-70 -180.5t-186 -73.5t-185.5 73.5t-69.5 180.5zM124 560q0 64 28 99t80 35q28 0 49 -17t36.5 -33.5t30.5 -16.5q36 0 36 61h67q0 -64 -27.5 -99t-79.5 -35q-29 0 -50 17t-36.5 34t-30.5 17q-36 0 -36 -62h-67zM164 242 q0 -60 33 -100.5t90 -40.5t90.5 40.5t33.5 100.5q0 59 -33.5 99.5t-90.5 40.5t-90 -40.5t-33 -99.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="574" d="M32 242q0 107 69.5 180t185.5 73t186 -73t70 -180t-70 -180.5t-186 -73.5t-185.5 73.5t-69.5 180.5zM114 611q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20t-48 19.5t-20 48.5zM164 242q0 -60 33 -100.5t90 -40.5t90.5 40.5t33.5 100.5 q0 59 -33.5 99.5t-90.5 40.5t-90 -40.5t-33 -99.5zM325 611q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M29 298v79h453v-79h-453zM194 157q0 25 18 43t43 18t43 -18t18 -43t-18 -43t-43 -18t-43 18t-18 43zM194 516q0 25 18 42.5t43 17.5t43 -17.5t18 -42.5q0 -26 -18 -44t-43 -18t-43 18t-18 44z" />
+<glyph unicode="&#xf8;" horiz-adv-x="574" d="M32 242q0 107 69.5 180t185.5 73q81 0 141 -38l22 26h80l-55 -64q68 -71 68 -177q0 -107 -70 -180.5t-186 -73.5q-85 0 -145 40l-24 -28h-78l57 67q-65 71 -65 175zM164 242q0 -42 17 -76l169 199q-28 17 -63 17q-57 0 -90 -40.5t-33 -99.5zM220 120q26 -19 67 -19 q57 0 90.5 40.5t33.5 100.5q0 44 -20 79z" />
+<glyph unicode="&#xf9;" horiz-adv-x="579" d="M63 140v343h127v-293q0 -89 89 -89q67 0 110 55v327h127v-483h-127v61q-65 -73 -170 -73q-78 0 -117 40t-39 112zM102 700h116l135 -144h-89z" />
+<glyph unicode="&#xfa;" horiz-adv-x="579" d="M63 140v343h127v-293q0 -89 89 -89q67 0 110 55v327h127v-483h-127v61q-65 -73 -170 -73q-78 0 -117 40t-39 112zM225 556l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xfb;" horiz-adv-x="579" d="M63 140v343h127v-293q0 -89 89 -89q67 0 110 55v327h127v-483h-127v61q-65 -73 -170 -73q-78 0 -117 40t-39 112zM140 556l92 144h114l94 -144h-78l-73 89l-71 -89h-78z" />
+<glyph unicode="&#xfc;" horiz-adv-x="579" d="M63 140v343h127v-293q0 -89 89 -89q67 0 110 55v327h127v-483h-127v61q-65 -73 -170 -73q-78 0 -117 40t-39 112zM116 611q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20t-48 19.5t-20 48.5zM327 611q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48 t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#xfd;" horiz-adv-x="513" d="M-6 483h136l126 -336l126 336h137l-227 -562q-25 -64 -70 -89.5t-113 -27.5q-35 0 -63 7l19 114q18 -8 40 -8q51 0 67 35l18 41zM192 556l134 144h117l-162 -144h-89z" />
+<glyph unicode="&#xfe;" horiz-adv-x="583" d="M63 -184v851h127v-245q57 73 149 73q95 0 154.5 -67.5t59.5 -185.5t-59.5 -186t-154.5 -68q-91 0 -149 74v-246h-127zM190 156q16 -23 47.5 -39t61.5 -16q55 0 88.5 39t33.5 102q0 62 -33.5 101t-88.5 39q-31 0 -62 -16t-47 -39v-171z" />
+<glyph unicode="&#xff;" horiz-adv-x="513" d="M-6 483h136l126 -336l126 336h137l-227 -562q-25 -64 -70 -89.5t-113 -27.5q-35 0 -63 7l19 114q18 -8 40 -8q51 0 67 35l18 41zM83 611q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20q-29 0 -48.5 19.5t-19.5 48.5zM294 611q0 28 20 47.5t48 19.5 t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#x152;" horiz-adv-x="1084" d="M34 333q0 151 94 247.5t240 96.5q58 0 113.5 -23t87.5 -66v79h472v-125h-329v-141h322v-125h-322v-151h329v-125h-472v78q-32 -43 -87.5 -66.5t-113.5 -23.5q-146 0 -240 97t-94 248zM180 333q0 -95 56.5 -157t151.5 -62q61 0 109 30.5t72 85.5v206q-24 56 -71.5 85.5 t-109.5 29.5q-95 0 -151.5 -61t-56.5 -157z" />
+<glyph unicode="&#x153;" horiz-adv-x="931" d="M32 242q0 107 69.5 180t185.5 73q112 0 189 -108q69 108 185 108q108 0 174.5 -73.5t66.5 -192.5v-28h-358q7 -48 43.5 -80t95.5 -32q76 0 128 47l57 -81q-75 -67 -199 -67q-120 0 -194 107q-74 -107 -188 -107q-116 0 -185.5 73.5t-69.5 180.5zM164 242q0 -63 34 -102.5 t89 -39.5q56 0 90 39.5t34 102.5q0 62 -34 101t-90 39q-55 0 -89 -39t-34 -101zM542 287h238q-3 41 -33 74t-87 33q-54 0 -84 -32.5t-34 -74.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="645" d="M-5 667h162l166 -268l164 268h162l-255 -394v-273h-142v273zM150 778q0 28 20 47.5t48 19.5t47.5 -19.5t19.5 -47.5t-19.5 -48t-47.5 -20t-48 20t-20 48zM361 778q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5t-20 -48t-48 -20t-48 20t-20 48z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="300" d="M0 556l92 144h114l94 -144h-78l-73 89l-71 -89h-78z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="327" d="M0 560q0 64 28 99t80 35q28 0 49 -17t36.5 -33.5t30.5 -16.5q36 0 36 61h67q0 -64 -27.5 -99t-79.5 -35q-29 0 -50 17t-36.5 34t-30.5 17q-36 0 -36 -62h-67z" />
+<glyph unicode="&#x2000;" horiz-adv-x="449" />
+<glyph unicode="&#x2001;" horiz-adv-x="899" />
+<glyph unicode="&#x2002;" horiz-adv-x="449" />
+<glyph unicode="&#x2003;" horiz-adv-x="899" />
+<glyph unicode="&#x2004;" horiz-adv-x="299" />
+<glyph unicode="&#x2005;" horiz-adv-x="224" />
+<glyph unicode="&#x2006;" horiz-adv-x="149" />
+<glyph unicode="&#x2007;" horiz-adv-x="149" />
+<glyph unicode="&#x2008;" horiz-adv-x="112" />
+<glyph unicode="&#x2009;" horiz-adv-x="179" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M30 188v108h240v-108h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M30 188v108h240v-108h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M30 188v108h240v-108h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M30 188v108h533v-108h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M30 188v108h773v-108h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="255" d="M38 492q0 55 28 103.5t76 81.5l55 -44q-25 -13 -48 -41t-30 -54q4 3 20 3q29 0 48.5 -20t19.5 -52t-23.5 -55.5t-55.5 -23.5q-37 0 -63.5 27.5t-26.5 74.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="255" d="M47 597q0 33 23 56.5t55 23.5q37 0 63.5 -27.5t26.5 -74.5q0 -55 -28 -103.5t-75 -82.5l-55 45q25 13 48 41t29 54q-6 -4 -19 -4q-29 0 -48.5 20.5t-19.5 51.5z" />
+<glyph unicode="&#x201a;" d="M47 71q0 33 23 56.5t55 23.5q37 0 63.5 -27.5t26.5 -74.5q0 -55 -28 -103.5t-75 -82.5l-55 45q25 13 48 40.5t29 53.5q-9 -3 -19 -3q-29 0 -48.5 20t-19.5 52z" />
+<glyph unicode="&#x201c;" horiz-adv-x="459" d="M40 492q0 55 27.5 103.5t75.5 81.5l55 -44q-25 -13 -48 -41t-30 -54q4 3 20 3q29 0 48.5 -20t19.5 -52t-23.5 -55.5t-55.5 -23.5q-37 0 -63 27.5t-26 74.5zM244 492q0 55 27.5 103.5t74.5 81.5l56 -44q-25 -13 -48.5 -41t-29.5 -54q4 3 20 3q28 0 47.5 -20t19.5 -52 t-23 -55.5t-56 -23.5q-37 0 -62.5 27.5t-25.5 74.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="459" d="M47 597q0 33 23 56.5t55 23.5q37 0 63.5 -27.5t26.5 -74.5q0 -55 -28 -103.5t-75 -82.5l-55 45q25 13 48 41t29 54q-6 -4 -19 -4q-29 0 -48.5 20.5t-19.5 51.5zM250 597q0 33 23.5 56.5t55.5 23.5q37 0 63 -27.5t26 -74.5q0 -55 -27.5 -103.5t-75.5 -82.5l-55 45 q25 13 48 41t30 54q-8 -4 -20 -4q-29 0 -48.5 20.5t-19.5 51.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="459" d="M47 71q0 33 23 56.5t55 23.5q37 0 63.5 -27.5t26.5 -74.5q0 -55 -28 -103.5t-75 -82.5l-55 45q25 13 48 40.5t29 53.5q-9 -3 -19 -3q-29 0 -48.5 20t-19.5 52zM250 71q0 33 23.5 56.5t55.5 23.5q37 0 63 -27.5t26 -74.5q0 -55 -27.5 -103.5t-75.5 -82.5l-55 45 q25 13 48 40.5t30 53.5q-12 -3 -20 -3q-29 0 -48.5 20t-19.5 52z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M61 242q0 50 34.5 84.5t84.5 34.5t84.5 -34.5t34.5 -84.5q0 -49 -35 -83.5t-84 -34.5t-84 34.5t-35 83.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="768" d="M47 70q0 33 23.5 57t56.5 24t57 -24t24 -57q0 -32 -24 -56t-57 -24t-56.5 24t-23.5 56zM303 70q0 33 23.5 57t56.5 24t57 -24t24 -57q0 -32 -24 -56t-57 -24t-56.5 24t-23.5 56zM559 70q0 33 23.5 57t56.5 24t57 -24t24 -57q0 -32 -24 -56t-57 -24t-56.5 24t-23.5 56z " />
+<glyph unicode="&#x202f;" horiz-adv-x="179" />
+<glyph unicode="&#x2039;" horiz-adv-x="337" d="M30 243l160 177h117l-160 -177l160 -180h-117z" />
+<glyph unicode="&#x203a;" horiz-adv-x="337" d="M30 63l160 180l-160 177h117l160 -177l-160 -180h-117z" />
+<glyph unicode="&#x205f;" horiz-adv-x="224" />
+<glyph unicode="&#x20ac;" horiz-adv-x="709" d="M21 226v76h37q-1 10 -1 31q0 23 1 34h-37v75h52q33 108 125 172t214 64q187 0 279 -163l-122 -60q-22 42 -64.5 69.5t-92.5 27.5q-61 0 -109 -29.5t-75 -80.5h245v-75h-268q-2 -11 -2 -34q0 -11 2 -31h268v-76h-246q26 -52 75 -82t110 -30q50 0 92.5 27t64.5 70l122 -59 q-95 -164 -279 -164q-122 0 -214.5 64.5t-125.5 173.5h-51z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M17 641v26h152v-26h-62v-194h-28v194h-62zM205 447v220h43l64 -160l64 160h43v-220h-28v182l-75 -182h-8l-75 182v-182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="14" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="17" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="7" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="7" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="7" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="24" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="34" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="14" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="24" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="70" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="43" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="13" />
+<hkern g1="G" 	g2="question" 	k="13" />
+<hkern g1="G" 	g2="T" 	k="7" />
+<hkern g1="G" 	g2="W" 	k="7" />
+<hkern g1="G" 	g2="V" 	k="13" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="19" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="7" />
+<hkern g1="G" 	g2="X" 	k="7" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="47" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="11" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="33" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="50" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
+<hkern g1="K" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
+<hkern g1="K" 	g2="x" 	k="33" />
+<hkern g1="L" 	g2="question" 	k="107" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="136" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
+<hkern g1="L" 	g2="asterisk" 	k="167" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="24" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="73" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="127" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="7" />
+<hkern g1="L" 	g2="t" 	k="37" />
+<hkern g1="L" 	g2="w" 	k="34" />
+<hkern g1="L" 	g2="v" 	k="54" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="54" />
+<hkern g1="L" 	g2="ampersand" 	k="4" />
+<hkern g1="L" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="7" />
+<hkern g1="L" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="11" />
+<hkern g1="P" 	g2="J" 	k="120" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="6" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="74" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="87" />
+<hkern g1="P" 	g2="X" 	k="20" />
+<hkern g1="P" 	g2="ampersand" 	k="33" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="27" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="P" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="17" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="7" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="18" />
+<hkern g1="R" 	g2="ampersand" 	k="6" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="13" />
+<hkern g1="S" 	g2="T" 	k="13" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="14" />
+<hkern g1="S" 	g2="w" 	k="7" />
+<hkern g1="S" 	g2="v" 	k="13" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="13" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="x" 	k="17" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="24" />
+<hkern g1="T" 	g2="J" 	k="87" />
+<hkern g1="T" 	g2="S" 	k="7" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="21" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="68" />
+<hkern g1="T" 	g2="w" 	k="28" />
+<hkern g1="T" 	g2="v" 	k="28" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="28" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="64" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="97" />
+<hkern g1="T" 	g2="ampersand" 	k="54" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="78" />
+<hkern g1="T" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="98" />
+<hkern g1="T" 	g2="x" 	k="38" />
+<hkern g1="T" 	g2="s" 	k="81" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="68" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="26" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V" 	g2="J" 	k="97" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="27" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="56" />
+<hkern g1="V" 	g2="t" 	k="17" />
+<hkern g1="V" 	g2="w" 	k="13" />
+<hkern g1="V" 	g2="v" 	k="17" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="13" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="47" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="40" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="57" />
+<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="67" />
+<hkern g1="V" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="26" />
+<hkern g1="V" 	g2="s" 	k="50" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="56" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="W" 	g2="J" 	k="59" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="16" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="16" />
+<hkern g1="W" 	g2="v" 	k="7" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="7" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="44" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="64" />
+<hkern g1="W" 	g2="ampersand" 	k="20" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="37" />
+<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="40" />
+<hkern g1="W" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="26" />
+<hkern g1="W" 	g2="s" 	k="29" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="33" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="67" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="123" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="111" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="124" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="77" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="70" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="question" 	k="43" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="13" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="T" 	k="94" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="W" 	k="47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="V" 	k="73" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="T" 	k="67" />
+<hkern g1="ampersand" 	g2="W" 	k="34" />
+<hkern g1="ampersand" 	g2="V" 	k="50" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="81" />
+<hkern g1="asterisk" 	g2="J" 	k="123" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="91" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="53" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="98" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="117" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="4" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="34" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="27" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="7" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="71" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="27" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="43" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="67" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="43" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="7" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="91" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="57" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="4" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="4" />
+<hkern g1="f" 	g2="question" 	k="-54" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-64" />
+<hkern g1="f" 	g2="asterisk" 	k="-64" />
+<hkern g1="f" 	g2="S" 	k="-27" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-67" />
+<hkern g1="f" 	g2="V" 	k="-67" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-63" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="47" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="7" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-67" />
+<hkern g1="g,j,q" 	g2="question" 	k="27" />
+<hkern g1="g,j,q" 	g2="T" 	k="68" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="56" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-53" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="37" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="57" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="120" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="46" />
+<hkern g1="k" 	g2="T" 	k="45" />
+<hkern g1="k" 	g2="W" 	k="26" />
+<hkern g1="k" 	g2="V" 	k="26" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="73" />
+<hkern g1="k" 	g2="bullet" 	k="24" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="24" />
+<hkern g1="k" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="6" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="83" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="97" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="64" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="84" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="27" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="27" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="37" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="64" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="54" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="4" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="73" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="99" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="21" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="7" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="106" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="97" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="83" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="34" />
+<hkern g1="r" 	g2="W" 	k="13" />
+<hkern g1="r" 	g2="V" 	k="27" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="87" />
+<hkern g1="r" 	g2="X" 	k="19" />
+<hkern g1="s" 	g2="question" 	k="47" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="74" />
+<hkern g1="s" 	g2="W" 	k="49" />
+<hkern g1="s" 	g2="V" 	k="46" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="97" />
+<hkern g1="s" 	g2="X" 	k="7" />
+<hkern g1="t" 	g2="T" 	k="31" />
+<hkern g1="t" 	g2="W" 	k="16" />
+<hkern g1="t" 	g2="V" 	k="33" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="37" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="27" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="68" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="V" 	k="56" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="28" />
+<hkern g1="v" 	g2="W" 	k="7" />
+<hkern g1="v" 	g2="V" 	k="17" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="64" />
+<hkern g1="v" 	g2="X" 	k="34" />
+<hkern g1="w" 	g2="T" 	k="28" />
+<hkern g1="w" 	g2="V" 	k="13" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="14" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="37" />
+<hkern g1="w" 	g2="X" 	k="37" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="6" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="28" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="7" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="13" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="54" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="34" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="37" />
+<hkern g1="X" 	g2="v" 	k="34" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="34" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="46" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="21" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="94" />
+<hkern g1="x" 	g2="T" 	k="38" />
+<hkern g1="x" 	g2="W" 	k="26" />
+<hkern g1="x" 	g2="V" 	k="26" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="77" />
+<hkern g1="x" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="34" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..8e11d352ccfb8b6759b027d260b437decb1e9062
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.woff
new file mode 100755
index 0000000000000000000000000000000000000000..24d9510d8dbdfa0ca5baa26f7bb0eeae6c2cfe06
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Bold.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.eot
new file mode 100755
index 0000000000000000000000000000000000000000..86ed06726afc0287f529de1eca7b1e601f027b5d
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..d2ab3d166a1c745c91a1500366f1d640d8da13c0
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.svg
new file mode 100755
index 0000000000000000000000000000000000000000..524b4a7585578f09ccaa965231a7d6ad51e1d7af
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.svg
@@ -0,0 +1,577 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_novabold_italic" horiz-adv-x="256" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="500" />
+<glyph unicode="&#xfb01;" horiz-adv-x="580" d="M37 0l83 372h-80l24 111h80l6 26q18 79 64 123.5t117 44.5q64 0 106 -27l-44 -86q-17 13 -46 13q-55 0 -70 -68l-6 -26h99l-25 -111h-98l-82 -372h-128zM336 0l107 483h127l-107 -483h-127zM457 600q0 39 26.5 62.5t58.5 23.5q30 0 49.5 -19t19.5 -46q0 -39 -27 -62.5 t-59 -23.5q-29 0 -48.5 19t-19.5 46z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="580" d="M37 0l83 372h-80l24 111h80l6 26q18 79 64 123.5t117 44.5q64 0 106 -27l-44 -86q-17 13 -46 13q-55 0 -70 -68l-6 -26h99l-25 -111h-98l-82 -372h-128zM336 0l147 667h127l-147 -667h-127z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="907" d="M38 0l82 373h-80l25 110h79l6 27q17 75 63 121t123 46q81 0 127 -47l-63 -74q-21 21 -54 21q-54 0 -69 -69l-6 -25h99l-25 -110h-98l-82 -373h-127zM364 0l83 372h-80l24 111h80l6 26q18 79 64 123.5t117 44.5q64 0 106 -27l-44 -86q-17 13 -46 13q-55 0 -70 -68l-6 -26 h99l-25 -111h-98l-82 -372h-128zM664 0l107 483h127l-107 -483h-127zM785 600q0 39 26.5 62.5t58.5 23.5q30 0 49.5 -19t19.5 -46q0 -39 -27 -62.5t-59 -23.5q-29 0 -48.5 19t-19.5 46z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="907" d="M38 0l82 373h-80l25 110h79l6 27q17 75 63 121t123 46q81 0 127 -47l-63 -74q-21 21 -54 21q-54 0 -69 -69l-6 -25h99l-25 -110h-98l-82 -373h-127zM364 0l83 372h-80l24 111h80l6 26q18 79 64 123.5t117 44.5q64 0 106 -27l-44 -86q-17 13 -46 13q-55 0 -70 -68l-6 -26 h99l-25 -111h-98l-82 -372h-128zM664 0l147 667h127l-147 -667h-127z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" " />
+<glyph unicode="!" d="M8 63q0 36 26.5 62t62.5 26q31 0 52 -22t21 -53q0 -36 -26 -62t-62 -26q-31 0 -52.5 22t-21.5 53zM65 217l79 450h153l-120 -450h-112z" />
+<glyph unicode="&#x22;" horiz-adv-x="406" d="M113 375q8 201 9 221q0 34 23 57.5t56 23.5q25 0 43 -18t18 -45q0 -9 -7 -30l-86 -209h-56zM295 375q8 201 9 221q1 35 23.5 58t55.5 23q25 0 43 -18t18 -45q0 -16 -7 -30l-86 -209h-56z" />
+<glyph unicode="#" horiz-adv-x="618" d="M0 169l44 81h97l92 166h-97l42 80h100l94 171h94l-94 -171h94l94 171h95l-96 -171h98l-42 -80h-100l-92 -166h101l-43 -81h-103l-93 -169h-95l95 169h-95l-94 -169h-94l95 169h-97zM236 250h93l92 166h-94z" />
+<glyph unicode="$" horiz-adv-x="614" d="M8 112l88 104q51 -68 143 -93l35 157q-39 15 -65 28.5t-54.5 34.5t-43 50.5t-14.5 66.5q0 87 71.5 152t189.5 65h4l20 91h95l-23 -102q106 -25 169 -97l-88 -100q-41 47 -109 70l-32 -142q39 -15 66 -28.5t55.5 -35t43 -51t14.5 -66.5q0 -96 -71.5 -162t-191.5 -66h-7 l-19 -88h-95l22 98q-138 28 -203 114zM247 486q0 -29 60 -56l27 124q-37 -1 -62 -21t-25 -47zM331 112q44 3 67 25.5t23 50.5q0 32 -61 59z" />
+<glyph unicode="%" horiz-adv-x="757" d="M76 0l573 667h76l-574 -667h-75zM82 483q0 85 54.5 139.5t130.5 54.5q66 0 112.5 -38t46.5 -100q0 -85 -54 -139.5t-131 -54.5q-66 0 -112.5 38t-46.5 100zM172 491q0 -29 20.5 -48.5t52.5 -19.5q38 0 64.5 30t26.5 77q0 29 -20.5 48.5t-52.5 19.5q-38 0 -64.5 -30 t-26.5 -77zM369 127q0 85 54.5 139.5t130.5 54.5q67 0 114 -38.5t47 -100.5q0 -85 -54.5 -139.5t-130.5 -54.5q-67 0 -114 38.5t-47 100.5zM461 135q0 -30 20 -49.5t51 -19.5q38 0 65 30t27 78q0 29 -20.5 48.5t-51.5 19.5q-38 0 -64.5 -30t-26.5 -77z" />
+<glyph unicode="&#x26;" horiz-adv-x="646" d="M5 164q0 88 51 138t140 83q-17 56 -17 105q0 79 59 133t144 54q73 0 123.5 -36t50.5 -100q0 -34 -12.5 -62t-29.5 -45.5t-48.5 -35t-54.5 -26.5t-62 -23q14 -28 37 -68q30 -54 46 -81q55 60 90 122l91 -57q-64 -91 -127 -151q35 -54 80 -114h-151l-28 37 q-83 -49 -166 -49q-97 0 -156.5 44t-59.5 132zM144 179q0 -44 28 -67.5t70 -23.5t90 29q-40 58 -56 90q-37 70 -48 94q-84 -46 -84 -122zM307 491q0 -30 11 -66q61 21 92.5 44t31.5 60q0 27 -15.5 41.5t-39.5 14.5q-31 0 -55.5 -25t-24.5 -69z" />
+<glyph unicode="'" horiz-adv-x="225" d="M113 375q8 201 9 221q0 34 23 57.5t56 23.5q25 0 43 -18t18 -45q0 -9 -7 -30l-86 -209h-56z" />
+<glyph unicode="(" horiz-adv-x="297" d="M23 107q0 156 73 309.5t200 268.5l67 -68q-206 -248 -206 -545q0 -104 38 -218l-92 -53q-80 119 -80 306z" />
+<glyph unicode=")" horiz-adv-x="297" d="M-67 -131q206 248 206 544q0 105 -38 219l92 53q80 -122 80 -306q0 -156 -73.5 -309.5t-200.5 -268.5z" />
+<glyph unicode="*" horiz-adv-x="351" d="M76 489l107 38l-85 60l43 50l79 -68l19 108h64l-31 -113l106 48l18 -58l-106 -39l85 -59l-45 -50l-78 68l-18 -108h-65l31 114l-106 -48z" />
+<glyph unicode="+" horiz-adv-x="504" d="M41 298l17 79h180l43 195h87l-43 -195h180l-18 -79h-180l-45 -203h-86l45 203h-180z" />
+<glyph unicode="," d="M-18 -84q30 13 58.5 36t39.5 48h-11q-26 0 -43.5 17t-17.5 48q0 35 27 60.5t61 25.5q33 0 55.5 -21.5t22.5 -60.5q0 -56 -42 -113t-105 -87z" />
+<glyph unicode="-" horiz-adv-x="300" d="M17 188l24 108h240l-24 -108h-240z" />
+<glyph unicode="." d="M8 63q0 36 26.5 62t62.5 26q31 0 52 -22t21 -53q0 -36 -26 -62t-62 -26q-31 0 -52.5 22t-21.5 53z" />
+<glyph unicode="/" horiz-adv-x="329" d="M-60 -20l393 707h96l-394 -707h-95z" />
+<glyph unicode="0" horiz-adv-x="620" d="M43 257q0 108 41 204t118.5 156t172.5 60q110 0 174.5 -70.5t64.5 -197.5q0 -109 -40.5 -204.5t-117.5 -156t-172 -60.5q-110 0 -175.5 71t-65.5 198zM187 250q0 -63 27 -99.5t83 -36.5q52 0 93.5 49t61 117t19.5 136q0 62 -27 98.5t-83 36.5q-77 0 -125.5 -96.5 t-48.5 -204.5z" />
+<glyph unicode="1" horiz-adv-x="411" d="M57 456l257 211h124l-147 -667h-142l106 484l-135 -113z" />
+<glyph unicode="2" horiz-adv-x="600" d="M-7 0l29 132q99 56 154.5 89t116 72.5t90 66.5t48.5 56.5t19 57.5q0 36 -33.5 57t-86.5 21q-95 0 -166 -60l-60 102q44 38 107 60.5t129 22.5q109 0 184 -51.5t75 -142.5q0 -94 -89.5 -180.5t-259.5 -177.5h272l-27 -125h-502z" />
+<glyph unicode="3" horiz-adv-x="587" d="M-13 127l95 86q30 -47 85 -73t110 -26q57 0 88 25.5t31 66.5q0 70 -122 70q-59 0 -81 -2l29 128q11 -1 93 -1q130 0 130 77q0 33 -34.5 53t-96.5 20q-93 0 -162 -54l-51 97q91 83 227 83q121 0 192.5 -46t71.5 -128q0 -64 -55 -110t-125 -55q124 -31 124 -146 q0 -88 -74.5 -146t-182.5 -58q-94 0 -174.5 37t-117.5 102z" />
+<glyph unicode="4" horiz-adv-x="597" d="M1 138l28 124l346 405h204l-89 -404h85l-27 -125h-86l-30 -138h-142l30 138h-319zM167 263h180l62 278z" />
+<glyph unicode="5" horiz-adv-x="608" d="M18 116l101 90q57 -92 179 -92q57 0 91.5 31t34.5 77q0 43 -34.5 66.5t-91.5 23.5q-69 0 -122 -40l-92 37l79 358h458l-27 -125h-317l-34 -157q54 43 133 43q84 0 140.5 -50.5t56.5 -138.5q0 -105 -78 -178t-199 -73q-191 0 -278 128z" />
+<glyph unicode="6" horiz-adv-x="608" d="M39 246q0 111 40.5 207.5t124 160t193.5 63.5q141 0 224 -91l-88 -100q-50 65 -144 65q-68 0 -117 -48t-70 -116q-3 -6 -9 -26q28 29 75.5 49.5t97.5 20.5q91 0 151 -50t60 -134q0 -107 -81 -183t-195 -76q-123 0 -192.5 68t-69.5 190zM178 232q0 -54 34.5 -86t88.5 -32 t91 33.5t37 81.5q0 40 -37 64t-92 24q-67 0 -121 -51q-1 -7 -1 -34z" />
+<glyph unicode="7" horiz-adv-x="545" d="M62 0l356 542h-328l27 125h501l-22 -99l-371 -568h-163z" />
+<glyph unicode="8" horiz-adv-x="606" d="M14 167q0 66 49 117.5t136 73.5q-43 19 -71.5 54.5t-28.5 79.5q0 62 40.5 105t98 61.5t123.5 18.5q105 0 182.5 -44.5t77.5 -126.5q0 -65 -47.5 -112.5t-125.5 -62.5q50 -26 80.5 -65.5t30.5 -85.5q0 -88 -81 -140t-193 -52q-114 0 -192.5 45.5t-78.5 133.5zM165 189 q0 -38 34.5 -58.5t91.5 -20.5q50 0 87 23.5t37 59.5q0 31 -31.5 54.5t-73.5 33.5q-62 -3 -103.5 -28t-41.5 -64zM241 477q0 -26 29.5 -48t66.5 -30q59 4 95 25.5t36 56.5q0 31 -33.5 52t-82.5 21q-46 0 -78.5 -21t-32.5 -56z" />
+<glyph unicode="9" horiz-adv-x="608" d="M26 79l87 101q47 -65 145 -65q68 0 116 47.5t71 115.5q7 22 8 27q-29 -30 -76 -50.5t-97 -20.5q-91 0 -151.5 50.5t-60.5 134.5q0 106 82 182.5t195 76.5q123 0 192.5 -68t69.5 -190q0 -82 -24 -158.5t-68 -137.5t-113.5 -98t-153.5 -37q-140 0 -222 90zM217 437 q0 -40 36.5 -64t91.5 -24q69 0 122 50q1 7 1 34q0 54 -34.5 86.5t-88.5 32.5t-91 -33.5t-37 -81.5z" />
+<glyph unicode=":" d="M8 63q0 36 26.5 62t62.5 26q31 0 52 -22t21 -53q0 -36 -26 -62t-62 -26q-31 0 -52.5 22t-21.5 53zM83 403q0 36 26 61.5t62 25.5q31 0 52.5 -21.5t21.5 -52.5q0 -36 -26.5 -62t-62.5 -26q-31 0 -52 22t-21 53z" />
+<glyph unicode=";" d="M-18 -84q30 13 58.5 36t39.5 48h-11q-26 0 -43.5 17t-17.5 48q0 35 27 60.5t61 25.5q33 0 55.5 -21.5t22.5 -60.5q0 -56 -42 -113t-105 -87zM83 403q0 36 26 61.5t62 25.5q31 0 52.5 -21.5t21.5 -52.5q0 -36 -26.5 -62t-62.5 -26q-31 0 -52 22t-21 53z" />
+<glyph unicode="&#x3c;" horiz-adv-x="504" d="M38 289l21 91l490 200l-22 -98l-388 -152l321 -150l-20 -90z" />
+<glyph unicode="=" horiz-adv-x="504" d="M19 201l18 78h446l-17 -78h-447zM61 388l17 80h446l-17 -80h-446z" />
+<glyph unicode="&#x3e;" horiz-adv-x="504" d="M-6 90l22 98l389 150l-322 152l20 90l402 -200l-20 -91z" />
+<glyph unicode="?" horiz-adv-x="456" d="M83 602q89 75 203 75q90 0 150.5 -40t60.5 -108q0 -49 -23 -85t-55.5 -56t-65.5 -37t-56 -38t-23 -49q0 -17 11 -28l-116 -32q-17 31 -17 70q0 50 30.5 85.5t66.5 52t66.5 39t30.5 48.5q0 53 -81 53q-69 0 -122 -48zM106 63q0 36 26.5 62t62.5 26q31 0 52 -22t21 -53 q0 -36 -26 -62t-63 -26q-30 0 -51.5 22t-21.5 53z" />
+<glyph unicode="@" horiz-adv-x="783" d="M55 244q0 104 55.5 195.5t147.5 145t194 53.5q140 0 227.5 -89t87.5 -217q0 -116 -62 -181.5t-136 -65.5q-85 0 -98 80q-26 -37 -65 -58.5t-79 -21.5q-71 0 -113 47t-42 121q0 99 69 172t157 73q43 0 75.5 -18.5t49.5 -48.5l11 53h113l-51 -244q-3 -18 -3 -24 q0 -45 37 -45q35 0 64.5 41.5t29.5 119.5q0 119 -75.5 193t-200.5 74q-142 0 -248 -106.5t-106 -246.5q0 -118 80.5 -198t201.5 -80q96 0 183 55l21 -30q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM288 263q0 -39 22.5 -63.5t60.5 -24.5q63 0 111 65l25 117 q-25 51 -81 51q-58 0 -98 -44t-40 -101z" />
+<glyph unicode="A" horiz-adv-x="684" d="M-59 0l405 667h178l110 -667h-154l-17 113h-286l-67 -113h-169zM244 238h207l-40 287z" />
+<glyph unicode="B" horiz-adv-x="663" d="M12 0l147 667h324q84 0 132.5 -46.5t48.5 -113.5t-45 -117.5t-107 -56.5q45 -12 70.5 -50.5t25.5 -84.5q0 -79 -58 -138.5t-174 -59.5h-364zM181 123h184q46 0 73.5 25t27.5 62q0 30 -20 49t-53 19h-178zM243 400h179q47 0 68.5 24.5t21.5 58.5q0 26 -19.5 44t-48.5 18 h-169z" />
+<glyph unicode="C" horiz-adv-x="687" d="M44 287q0 172 114 281.5t274 109.5q115 0 189.5 -53t106.5 -136l-137 -46q-19 52 -63.5 80.5t-102.5 28.5q-96 0 -164.5 -74t-68.5 -182q0 -79 51.5 -130.5t136.5 -51.5q43 0 86 21t71 56l109 -74q-53 -68 -126.5 -98.5t-147.5 -30.5q-141 0 -234.5 82.5t-93.5 216.5z " />
+<glyph unicode="D" horiz-adv-x="718" d="M12 0l147 667h258q116 0 202.5 -81t86.5 -206q0 -54 -14.5 -106.5t-48 -102.5t-82 -87.5t-122.5 -60.5t-165 -23h-262zM182 125h118q117 0 187.5 71.5t70.5 174.5q0 73 -47 122t-121 49h-116z" />
+<glyph unicode="E" horiz-adv-x="583" d="M12 0l147 667h472l-28 -125h-329l-31 -141h322l-28 -125h-322l-33 -151h329l-27 -125h-472z" />
+<glyph unicode="F" horiz-adv-x="571" d="M12 0l147 667h472l-28 -125h-329l-31 -141h322l-28 -125h-322l-61 -276h-142z" />
+<glyph unicode="G" horiz-adv-x="720" d="M44 287q0 169 114 280t287 111q100 0 171 -47t104 -118l-131 -56q-17 42 -62.5 68.5t-101.5 26.5q-95 0 -164 -74t-69 -182q0 -78 51 -130t137 -52q73 0 133 51l18 80h-177l28 125h319l-58 -260q-103 -122 -271 -122q-140 0 -234 82t-94 217z" />
+<glyph unicode="H" horiz-adv-x="731" d="M12 0l147 667h142l-57 -262h314l58 262h143l-147 -667h-143l62 280h-315l-62 -280h-142z" />
+<glyph unicode="I" horiz-adv-x="274" d="M12 0l147 667h142l-147 -667h-142z" />
+<glyph unicode="J" horiz-adv-x="486" d="M-29 63l77 106q36 -55 107 -55q93 0 118 107l98 446h142l-98 -448q-26 -119 -86.5 -175t-163.5 -56q-59 0 -111 19t-83 56z" />
+<glyph unicode="K" horiz-adv-x="636" d="M12 0l147 667h142l-63 -286l291 286h183l-334 -313l205 -354h-167l-147 273l-69 -68l-46 -205h-142z" />
+<glyph unicode="L" horiz-adv-x="523" d="M12 0l147 667h142l-119 -542h281l-27 -125h-424z" />
+<glyph unicode="M" horiz-adv-x="855" d="M12 0l147 667h194l69 -417l255 417h205l-147 -667h-143l106 481l-294 -481h-62l-82 481l-106 -481h-142z" />
+<glyph unicode="N" horiz-adv-x="729" d="M12 0l147 667h146l212 -434l97 434h142l-147 -667h-137l-218 450l-100 -450h-142z" />
+<glyph unicode="O" horiz-adv-x="765" d="M44 287q0 164 112 277.5t276 113.5q141 0 234 -82t93 -216q0 -164 -111.5 -278t-275.5 -114q-142 0 -235 82t-93 217zM192 296q0 -83 53 -132.5t135 -49.5q96 0 163.5 74.5t67.5 181.5q0 83 -53 132.5t-135 49.5q-97 0 -164 -74.5t-67 -181.5z" />
+<glyph unicode="P" horiz-adv-x="624" d="M12 0l147 667h293q90 0 144 -53.5t54 -131.5q0 -40 -14.5 -80.5t-44.5 -78.5t-86.5 -62t-130.5 -24h-167l-53 -237h-142zM234 362h149q52 0 85 30t33 75q0 33 -23 54t-60 21h-144z" />
+<glyph unicode="Q" horiz-adv-x="765" d="M44 287q0 164 112 277.5t276 113.5q141 0 234 -82t93 -216q0 -95 -40 -176.5t-110 -135.5l35 -54l-114 -55l-32 49q-60 -20 -126 -20q-142 0 -235 82t-93 217zM192 296q0 -83 53 -132.5t135 -49.5q23 0 48 5l-57 92l113 55l53 -84q74 76 74 188q0 83 -53 132.5t-135 49.5 q-97 0 -164 -74.5t-67 -181.5z" />
+<glyph unicode="R" horiz-adv-x="643" d="M12 0l147 667h285q84 0 145 -52t61 -136q0 -89 -53.5 -153t-136.5 -79l92 -247h-157l-79 237h-110l-52 -237h-142zM234 362h149q55 0 86.5 28.5t31.5 74.5q0 33 -25 55t-59 22h-143z" />
+<glyph unicode="S" horiz-adv-x="600" d="M-1 112l88 104q35 -47 96 -75.5t129 -28.5q49 0 74.5 23.5t25.5 52.5q0 25 -33.5 44.5t-81 36.5t-95 38t-81 60t-33.5 93q0 87 71.5 152t189.5 65q80 0 150.5 -28.5t114.5 -79.5l-88 -100q-36 41 -90.5 63t-108.5 22q-38 0 -63.5 -20t-25.5 -48q0 -23 33.5 -42 t81.5 -35.5t96 -38t81.5 -61t33.5 -93.5q0 -96 -71.5 -162t-191.5 -66q-97 0 -178 34t-124 90z" />
+<glyph unicode="T" horiz-adv-x="582" d="M90 542l28 125h532l-27 -125h-195l-119 -542h-143l119 542h-195z" />
+<glyph unicode="U" horiz-adv-x="733" d="M66 221q0 20 5 45l88 401h144l-87 -397q-4 -12 -4 -33q1 -53 38.5 -88.5t105.5 -35.5q138 0 172 157l88 397h145l-89 -400q-29 -133 -103 -206t-213 -73q-141 0 -215.5 63t-74.5 170z" />
+<glyph unicode="V" horiz-adv-x="684" d="M88 667h155l72 -513l297 513h169l-404 -667h-178z" />
+<glyph unicode="W" horiz-adv-x="918" d="M94 667h156l10 -482l233 482h111l20 -482l223 482h163l-337 -667h-151l-16 458l-217 -458h-151z" />
+<glyph unicode="X" horiz-adv-x="668" d="M-57 0l321 351l-159 316h161l109 -221l195 221h179l-303 -333l171 -334h-161l-121 237l-214 -237h-178z" />
+<glyph unicode="Y" horiz-adv-x="645" d="M88 667h154l107 -268l223 268h170l-342 -394l-60 -273h-142l60 273z" />
+<glyph unicode="Z" horiz-adv-x="592" d="M-12 0l25 115l401 427h-306l27 125h501l-24 -114l-403 -428h315l-28 -125h-508z" />
+<glyph unicode="[" horiz-adv-x="280" d="M-50 -190l193 868h216l-19 -85h-124l-155 -698h124l-19 -85h-216z" />
+<glyph unicode="\" horiz-adv-x="329" d="M98 687h92l80 -707h-92z" />
+<glyph unicode="]" horiz-adv-x="280" d="M-79 -190l19 85h124l155 698h-124l18 85h216l-193 -868h-215z" />
+<glyph unicode="^" horiz-adv-x="441" d="M38 333l230 334h93l80 -334h-89l-53 247l-162 -247h-99z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-85 -125l20 85h569l-20 -85h-569z" />
+<glyph unicode="`" horiz-adv-x="251" d="M101 700h117l102 -144h-89z" />
+<glyph unicode="a" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-107 -483h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118z" />
+<glyph unicode="b" horiz-adv-x="586" d="M9 0l147 667h127l-54 -244q61 72 146 72q83 0 133 -53t50 -147q0 -75 -28.5 -144t-88 -116t-137.5 -47q-103 0 -154 76l-14 -64h-127zM170 156q36 -55 113 -55q62 0 102 49.5t40 118.5q0 51 -30 82t-77 31q-64 0 -111 -58z" />
+<glyph unicode="c" horiz-adv-x="499" d="M28 208q0 120 81 203.5t200 83.5q139 0 196 -95l-95 -73q-32 55 -101 55q-67 0 -109.5 -49t-42.5 -119q0 -53 34.5 -83t86.5 -30q60 0 101 48l69 -85q-72 -76 -183 -76q-108 0 -172.5 60.5t-64.5 159.5z" />
+<glyph unicode="d" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l54 248h128l-148 -667h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118z" />
+<glyph unicode="e" horiz-adv-x="553" d="M28 205q0 120 80 205t199 85q95 0 156 -58.5t61 -157.5q0 -46 -10 -78h-359v-12q0 -36 35.5 -68t96.5 -32q75 0 122 36l40 -87q-73 -50 -171 -50q-115 0 -182.5 58t-67.5 159zM168 287h242v10q0 40 -28.5 68.5t-82.5 28.5q-49 0 -85.5 -32.5t-45.5 -74.5z" />
+<glyph unicode="f" horiz-adv-x="327" d="M38 0l82 373h-80l25 110h79l6 27q17 75 63 121t123 46q81 0 127 -47l-63 -74q-21 21 -54 21q-54 0 -69 -69l-6 -25h99l-25 -110h-98l-82 -373h-127z" />
+<glyph unicode="g" horiz-adv-x="585" d="M-21 -112l74 85q23 -31 65.5 -48t91.5 -17q109 0 137 125l10 44q-60 -73 -148 -73q-79 0 -130.5 48.5t-51.5 147.5q0 117 69 206t181 89q44 0 87 -20.5t69 -55.5l14 64h128l-100 -450q-14 -66 -42.5 -112.5t-65.5 -71t-75 -35t-80 -10.5q-156 0 -233 84zM159 225 q0 -49 30 -78.5t80 -29.5q63 0 109 55l34 150q-36 60 -118 60q-59 0 -97 -45.5t-38 -111.5z" />
+<glyph unicode="h" horiz-adv-x="580" d="M9 0l147 667h127l-54 -247q77 75 161 75q69 0 110 -33.5t41 -89.5q0 -15 -5 -40l-73 -332h-127l63 290q5 20 5 30q0 62 -83 62q-56 0 -113 -57l-72 -325h-127z" />
+<glyph unicode="i" horiz-adv-x="253" d="M9 0l107 483h127l-107 -483h-127zM130 600q0 39 26.5 62.5t58.5 23.5q30 0 49.5 -19t19.5 -46q0 -39 -27 -62.5t-59 -23.5q-29 0 -48.5 19t-19.5 46z" />
+<glyph unicode="j" horiz-adv-x="253" d="M-188 -155l53 91q22 -28 63 -28q59 0 77 79l111 496h127l-111 -496q-19 -88 -63 -135.5t-123 -47.5q-90 0 -134 41zM130 600q0 39 26.5 62.5t58.5 23.5q30 0 49.5 -19t19.5 -46q0 -39 -27 -62.5t-59 -23.5q-29 0 -48.5 19t-19.5 46z" />
+<glyph unicode="k" horiz-adv-x="535" d="M9 0l147 667h127l-87 -391l224 207h162l-240 -219l139 -264h-154l-89 189l-75 -65l-27 -124h-127z" />
+<glyph unicode="l" horiz-adv-x="253" d="M9 0l147 667h127l-147 -667h-127z" />
+<glyph unicode="m" horiz-adv-x="852" d="M9 0l107 483h127l-14 -63q70 75 147 75q33 0 60.5 -11t42 -26t22.5 -28.5t8 -21.5v-2q72 89 167 89q58 0 98 -33t40 -90q0 -20 -5 -40l-73 -332h-128l65 292q4 24 4 32q0 27 -20 42.5t-49 15.5q-51 0 -101 -56l-71 -326h-128l65 292q5 25 5 35q-1 24 -19.5 39.5 t-51.5 15.5q-49 0 -99 -56l-72 -326h-127z" />
+<glyph unicode="n" horiz-adv-x="579" d="M9 0l107 483h127l-14 -63q77 75 161 75q69 0 110 -33.5t41 -89.5q0 -15 -5 -40l-74 -332h-127l64 288q5 22 5 32q0 32 -21 47t-53 15q-64 0 -122 -56l-72 -326h-127z" />
+<glyph unicode="o" horiz-adv-x="574" d="M27 207q0 116 80 202t199 86q113 0 176.5 -61.5t63.5 -158.5q0 -116 -80 -201.5t-200 -85.5q-113 0 -176 61t-63 158zM158 214q0 -53 30 -83t83 -30q62 0 102.5 50t40.5 118q0 53 -30 83t-82 30q-62 0 -103 -50.5t-41 -117.5z" />
+<glyph unicode="p" horiz-adv-x="583" d="M-32 -184l148 667h127l-14 -60q61 72 146 72q83 0 133 -53t50 -147q0 -75 -28.5 -144t-88 -116t-137.5 -47q-103 0 -154 76l-55 -248h-127zM170 156q36 -55 113 -55q62 0 102 49.5t40 118.5q0 51 -30 82t-77 31q-64 0 -111 -58z" />
+<glyph unicode="q" horiz-adv-x="583" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-148 -667h-128l55 244q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118z" />
+<glyph unicode="r" horiz-adv-x="360" d="M9 0l107 483h127l-15 -63q70 75 172 75l-28 -126q-24 6 -46 6q-69 0 -120 -58l-70 -317h-127z" />
+<glyph unicode="s" horiz-adv-x="477" d="M-9 75l71 85q23 -28 71.5 -52t97.5 -24q31 0 50.5 15.5t19.5 35.5q0 23 -38.5 40.5t-84 30t-84 45t-38.5 81.5q0 67 53.5 115t145.5 48q61 0 115.5 -21.5t89.5 -57.5l-65 -81q-19 24 -59.5 43.5t-82.5 19.5q-32 0 -51 -13.5t-19 -33.5q0 -16 25 -29t61 -24t72.5 -26 t61.5 -44.5t25 -70.5q0 -72 -56.5 -120.5t-152.5 -48.5q-67 0 -127.5 22.5t-100.5 64.5z" />
+<glyph unicode="t" horiz-adv-x="338" d="M37 373l25 110h80l29 132h128l-29 -132h98l-26 -110h-98l-46 -210q-2 -12 -2 -20q0 -42 47 -42q23 0 35 10l5 -102q-31 -21 -80 -21q-67 0 -105.5 26.5t-38.5 78.5q0 17 4 33l54 247h-80z" />
+<glyph unicode="u" horiz-adv-x="579" d="M37 112q0 17 5 39l73 332h128l-65 -291q-4 -18 -4 -29q0 -31 22.5 -46.5t58.5 -15.5q56 0 115 57l72 325h127l-107 -483h-127l14 63q-79 -75 -161 -75q-69 0 -110 34t-41 90z" />
+<glyph unicode="v" horiz-adv-x="513" d="M47 483h132l51 -336l202 336h140l-301 -483h-137z" />
+<glyph unicode="w" horiz-adv-x="769" d="M53 483h127l19 -325l178 325h113l33 -325l163 325h136l-254 -483h-135l-30 329l-174 -329h-136z" />
+<glyph unicode="x" horiz-adv-x="504" d="M-54 0l225 248l-108 235h137l67 -149l133 149h146l-215 -235l119 -248h-138l-74 163l-147 -163h-145z" />
+<glyph unicode="y" horiz-adv-x="513" d="M-48 -184l42 110q18 -8 49 -8q37 0 60 34l30 45l-86 486h132l51 -336l202 336h140l-352 -562q-39 -64 -82.5 -90.5t-104.5 -26.5q-46 0 -81 12z" />
+<glyph unicode="z" horiz-adv-x="479" d="M-12 0l21 95l275 277h-213l24 111h390l-20 -92l-279 -280h220l-24 -111h-394z" />
+<glyph unicode="{" horiz-adv-x="288" d="M-10 -62q0 18 4 31l39 172q2 12 2 18q0 21 -11 35t-29 14l16 72q53 0 67 67l38 171q18 80 67.5 120t122.5 40h61l-19 -85h-60q-63 0 -80 -74l-43 -195q-18 -74 -66 -89q29 -17 29 -56q0 -18 -4 -34l-38 -175q-2 -12 -2 -19q0 -25 15.5 -40.5t39.5 -15.5h55l-20 -85h-45 q-57 0 -98 36t-41 92z" />
+<glyph unicode="|" horiz-adv-x="216" d="M86 -20v707h85v-707h-85z" />
+<glyph unicode="}" horiz-adv-x="288" d="M-80 -190l19 85h60q63 0 80 74l44 195q16 74 65 90q-29 15 -29 55q0 18 4 34l38 175q2 12 2 19q0 25 -15.5 40.5t-39.5 15.5h-55l20 85h45q57 0 98 -36t41 -92q0 -19 -4 -31l-38 -172q-2 -12 -2 -18q0 -22 10.5 -35.5t28.5 -13.5l-16 -72q-53 0 -67 -67l-38 -171 q-18 -80 -67.5 -120t-122.5 -40h-61z" />
+<glyph unicode="~" horiz-adv-x="510" d="M65 422q50 244 189 244q40 0 63.5 -18t30 -44t9.5 -52.5t10.5 -44.5t24.5 -18q29 0 57 53.5t42 124.5l84 -10q-53 -245 -189 -245q-49 0 -73 27.5t-26 60.5t-10 60.5t-28 27.5q-29 0 -57 -52.5t-42 -123.5z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa1;" d="M-44 -184l120 449h112l-78 -449h-154zM83 407q0 36 26.5 62t61.5 26q31 0 52.5 -22t21.5 -54q0 -35 -26.5 -61t-62.5 -26q-31 0 -52 22t-21 53z" />
+<glyph unicode="&#xa2;" horiz-adv-x="499" d="M28 208q0 116 76.5 199t190.5 88l16 70h93l-18 -80q80 -21 119 -85l-95 -73q-20 31 -50 44l-60 -268q45 7 79 46l69 -85q-68 -72 -172 -76l-20 -88h-93l22 98q-74 20 -115.5 75.5t-41.5 134.5zM157 214q0 -68 54 -97l58 260q-51 -14 -81.5 -59t-30.5 -104z" />
+<glyph unicode="&#xa3;" horiz-adv-x="550" d="M11 90q61 27 100.5 72.5t39.5 94.5q0 8 -1 12h-122l18 81h78q-33 68 -33 110q0 90 77 153.5t185 63.5q87 0 151.5 -35.5t84.5 -98.5l-129 -53q-7 33 -34.5 52t-65.5 19q-48 0 -81 -32.5t-33 -83.5q0 -14 3 -27.5t6.5 -22.5t10 -23t9.5 -22h142l-19 -81h-113 q-7 -41 -35 -77.5t-58 -52.5q21 7 44 7q30 0 74 -16.5t70 -16.5q46 0 81 37l31 -113q-48 -50 -123 -50q-46 0 -118.5 22t-101.5 22q-47 0 -111 -38z" />
+<glyph unicode="&#xa4;" horiz-adv-x="623" d="M2 131l92 74q-25 49 -22.5 102.5t21.5 99.5t49 79l-56 74l85 68l59 -77q69 33 154 24q66 -7 115 -39l95 77l66 -79l-92 -76q26 -49 23 -103t-22.5 -99.5t-49.5 -78.5l56 -69l-85 -68l-59 73q-70 -32 -153 -23q-65 7 -112 37l-98 -79zM205 347q-13 -56 12.5 -97.5 t84.5 -47.5t101.5 27.5t55.5 89.5q11 55 -15 96t-84 47q-59 7 -101.5 -26.5t-53.5 -88.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="645" d="M-6 115l17 78h230l18 80h-229l17 79h178l-136 315h154l107 -268l223 268h170l-274 -315h178l-18 -79h-228l-18 -80h228l-18 -78h-227l-25 -115h-142l25 115h-230z" />
+<glyph unicode="&#xa6;" horiz-adv-x="216" d="M86 -20v316h85v-316h-85zM86 371v316h85v-316h-85z" />
+<glyph unicode="&#xa7;" horiz-adv-x="484" d="M-32 2l71 76q28 -32 73.5 -51.5t93.5 -19.5q35 0 56.5 17.5t21.5 42.5q0 22 -25 37.5t-60 27.5t-70.5 27t-60.5 44t-25 70q0 50 32.5 87t95.5 54q-73 32 -73 106q0 68 55.5 112.5t142.5 44.5q138 0 213 -73l-66 -70q-23 25 -62 39.5t-80 14.5q-37 0 -57.5 -15.5 t-20.5 -38.5q0 -21 25 -35.5t60.5 -26t71.5 -26t61 -43.5t25 -70q0 -50 -31.5 -90t-83.5 -58q60 -33 60 -99q0 -72 -57 -119.5t-147 -47.5q-154 0 -239 83zM171 296q0 -25 22.5 -41t64.5 -30q39 11 58 32.5t19 46.5q0 44 -69 68q-47 -6 -71 -27t-24 -49z" />
+<glyph unicode="&#xa8;" horiz-adv-x="295" d="M55 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17.5t-17.5 42.5zM266 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17.5t-17 42.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M64 334q0 143 100.5 244t243.5 101t244.5 -101t101.5 -244t-101.5 -244t-244.5 -101q-142 0 -243 101t-101 244zM100 334q0 -127 90.5 -218t217.5 -91t218.5 91t91.5 218t-91 218t-219 91q-127 0 -217.5 -91t-90.5 -218zM201 307q0 100 70.5 169t162.5 69q111 0 160 -80 l-38 -27q-37 67 -124 67q-71 0 -128 -57t-57 -140q0 -60 40 -102.5t106 -42.5q64 0 114 48l24 -34q-65 -54 -139 -54q-86 0 -138.5 52t-52.5 132z" />
+<glyph unicode="&#xaa;" horiz-adv-x="414" d="M77 450q0 83 49 140.5t120 57.5q70 0 104 -47l8 39h93l-70 -314h-93l8 39q-40 -47 -94 -47q-53 0 -89 34.5t-36 97.5zM173 462q0 -35 18.5 -53t49.5 -18q38 0 70 34l27 122q-22 28 -69 28q-41 0 -68.5 -33.5t-27.5 -79.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="527" d="M29 243l200 177h121l-204 -182l116 -175h-113zM219 243l200 177h121l-204 -182l116 -175h-113z" />
+<glyph unicode="&#xac;" horiz-adv-x="515" d="M61 388l17 80h446l-58 -267h-82l42 187h-365z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M17 188l24 108h240l-24 -108h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M84 465q0 88 62 150t150 62t150 -61.5t62 -150.5q0 -88 -62.5 -150t-150.5 -62t-149.5 62t-61.5 150zM116 465q0 -75 52 -127.5t127 -52.5q74 0 127.5 53t53.5 127q0 75 -53 127.5t-128 52.5t-127 -52.5t-52 -127.5zM188 343l53 243h92q31 0 51.5 -18t20.5 -46 q0 -34 -25 -58t-55 -24l44 -97h-40l-42 96h-44l-21 -96h-34zM249 470h65q24 0 39.5 14t15.5 35q0 37 -43 37h-57z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M70 562l16 72h362l-16 -72h-362z" />
+<glyph unicode="&#xb0;" horiz-adv-x="311" d="M86 541q0 56 39.5 96t94.5 40q56 0 96 -40t40 -96t-40 -95t-96 -39t-95 39t-39 95zM156 541q0 -27 18 -46t45 -19q28 0 48 19t20 46q0 28 -19.5 47.5t-47.5 19.5q-27 0 -45.5 -19.5t-18.5 -47.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="504" d="M-25 0l17 78h446l-17 -78h-446zM46 326l18 78h180l44 197h86l-44 -197h180l-17 -78h-180l-45 -204h-87l45 204h-180z" />
+<glyph unicode="&#xb2;" horiz-adv-x="397" d="M85 421l17 74q155 90 207 130.5t52 76.5q0 23 -19 35.5t-48 12.5q-69 0 -112 -43l-40 64q62 56 155 56q71 0 117 -31t46 -85q0 -53 -53 -102t-164 -111h173l-17 -77h-314z" />
+<glyph unicode="&#xb3;" horiz-adv-x="397" d="M91 487l60 59q39 -55 114 -55q33 0 50 15t17 38q0 20 -24 31.5t-65 11.5q-27 0 -33 -1l16 76q22 -2 65 -2q72 0 72 47q0 21 -23 32t-57 11q-60 0 -103 -36l-33 60q63 53 145 53q76 0 122 -28.5t46 -78.5q0 -39 -29.5 -68t-80.5 -33q34 -7 56 -29.5t22 -56.5 q0 -47 -43 -83t-115 -36q-61 0 -108.5 19.5t-70.5 53.5z" />
+<glyph unicode="&#xb4;" horiz-adv-x="251" d="M67 556l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xb5;" horiz-adv-x="591" d="M-35 -184l152 667h127l-66 -292q-10 -45 9.5 -68t59.5 -23q65 0 121 56l72 327h128l-75 -338q-9 -44 31 -44q8 0 20 2l-16 -108q-30 -7 -61 -7q-105 0 -110 86q-70 -86 -155 -86q-49 0 -64 27l-45 -199h-128z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M79 479q0 73 56.5 130.5t137.5 57.5h223l-170 -767h-63l157 705h-79l-156 -705h-63l94 423q-57 0 -97 44.5t-40 111.5z" />
+<glyph unicode="&#xb7;" d="M47 238q0 37 26 62.5t63 25.5q30 0 51.5 -22t21.5 -53q0 -35 -26.5 -61t-61.5 -26q-31 0 -52.5 22t-21.5 52z" />
+<glyph unicode="&#xb8;" horiz-adv-x="221" d="M-89 -155l35 48q37 -35 84 -35q50 0 50 35q0 24 -30 24q-17 0 -29 -14l-40 26l48 82h63l-39 -62q14 10 31 10q26 0 42.5 -16.5t16.5 -45.5q0 -42 -32 -67.5t-81 -25.5q-78 0 -119 41z" />
+<glyph unicode="&#xb9;" horiz-adv-x="286" d="M104 687l166 134h83l-88 -400h-97l60 273l-81 -66z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M76 464q0 77 57 130.5t133 53.5q74 0 118 -40.5t44 -105.5q0 -78 -56.5 -131t-133.5 -53q-73 0 -117.5 40.5t-44.5 105.5zM171 461q0 -32 19 -50.5t51 -18.5q43 0 67.5 33.5t24.5 77.5q0 32 -18.5 50.5t-50.5 18.5q-43 0 -68 -34t-25 -77z" />
+<glyph unicode="&#xbb;" horiz-adv-x="527" d="M-11 63l204 182l-116 175h113l120 -180l-200 -177h-121zM179 63l204 182l-116 175h113l120 -180l-200 -177h-121z" />
+<glyph unicode="&#xbc;" horiz-adv-x="833" d="M70 533l166 134h83l-88 -400h-97l60 273l-81 -66zM84 0l573 667h77l-574 -667h-76zM428 86l15 65l213 249h133l-52 -239h52l-16 -75h-53l-19 -86h-95l19 86h-197zM541 161h100l34 154z" />
+<glyph unicode="&#xbd;" horiz-adv-x="867" d="M70 533l166 134h83l-88 -400h-97l60 273l-81 -66zM84 0l573 667h77l-574 -667h-76zM461 0l17 74q155 90 207 130.5t52 76.5q0 23 -19 35.5t-48 12.5q-69 0 -112 -43l-40 64q62 56 155 56q71 0 117 -31t46 -85q0 -53 -53 -102t-164 -111h173l-17 -77h-314z" />
+<glyph unicode="&#xbe;" horiz-adv-x="921" d="M57 333l60 59q39 -55 114 -55q33 0 50 15t17 38q0 20 -24 31.5t-65 11.5q-27 0 -33 -1l16 76q22 -2 65 -2q72 0 72 47q0 21 -23 32t-57 11q-60 0 -103 -36l-33 60q63 53 145 53q76 0 122 -28.5t46 -78.5q0 -39 -29.5 -68t-80.5 -33q34 -7 56 -29.5t22 -56.5 q0 -47 -43 -83t-115 -36q-61 0 -108.5 19.5t-70.5 53.5zM171 0l573 667h77l-574 -667h-76zM516 86l15 65l213 249h133l-52 -239h52l-16 -75h-53l-19 -86h-95l19 86h-197zM629 161h100l34 154z" />
+<glyph unicode="&#xbf;" horiz-adv-x="398" d="M-43 -47q0 49 23 85t55.5 56t65.5 37t56 38t23 49q0 17 -11 29l117 31q16 -29 16 -70q0 -50 -30.5 -85.5t-66.5 -52t-66.5 -39t-30.5 -48.5q0 -53 82 -53q70 0 121 48l60 -98q-89 -75 -203 -75q-90 0 -150.5 40t-60.5 108zM186 406q0 36 26.5 62t62.5 26q31 0 52 -22 t21 -53q0 -36 -26 -62t-63 -26q-30 0 -51.5 22t-21.5 53z" />
+<glyph unicode="&#xc0;" horiz-adv-x="684" d="M-59 0l405 667h178l110 -667h-154l-17 113h-286l-67 -113h-169zM244 238h207l-40 287zM292 867h117l102 -144h-89z" />
+<glyph unicode="&#xc1;" horiz-adv-x="684" d="M-59 0l405 667h178l110 -667h-154l-17 113h-286l-67 -113h-169zM244 238h207l-40 287zM382 723l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xc2;" horiz-adv-x="684" d="M-59 0l405 667h178l110 -667h-154l-17 113h-286l-67 -113h-169zM244 238h207l-40 287zM297 723l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xc3;" horiz-adv-x="684" d="M-59 0l405 667h178l110 -667h-154l-17 113h-286l-67 -113h-169zM244 238h207l-40 287zM284 727q13 67 41.5 100.5t79.5 33.5q24 0 42 -10.5t27.5 -23t23 -23t28.5 -10.5q30 0 45 61h68q-15 -67 -43.5 -100.5t-78.5 -33.5q-30 0 -50 17t-36 34t-35 17q-31 0 -44 -62h-68z " />
+<glyph unicode="&#xc4;" horiz-adv-x="684" d="M-59 0l405 667h178l110 -667h-154l-17 113h-286l-67 -113h-169zM244 238h207l-40 287zM286 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17t-17 43zM497 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23 q-25 0 -42.5 17t-17.5 43z" />
+<glyph unicode="&#xc5;" horiz-adv-x="684" d="M-59 0l405 667h178l110 -667h-154l-17 113h-286l-67 -113h-169zM244 238h207l-40 287zM357 784q0 46 34.5 80.5t80.5 34.5q43 0 69 -26.5t26 -69.5q0 -47 -34 -81t-81 -34q-42 0 -68.5 26.5t-26.5 69.5zM416 790q0 -19 11.5 -31t30.5 -12q20 0 35 15t15 35q0 19 -11 31 t-30 12q-20 0 -35.5 -15t-15.5 -35z" />
+<glyph unicode="&#xc6;" horiz-adv-x="968" d="M-63 0l553 667h529l-28 -125h-329l-31 -141h323l-28 -125h-322l-34 -151h329l-27 -125h-472l25 113h-231l-91 -113h-166zM290 238h163l61 280z" />
+<glyph unicode="&#xc7;" horiz-adv-x="687" d="M44 287q0 172 114 281.5t274 109.5q115 0 189.5 -53t106.5 -136l-137 -46q-19 52 -63.5 80.5t-102.5 28.5q-96 0 -164.5 -74t-68.5 -182q0 -79 51.5 -130.5t136.5 -51.5q43 0 86 21t71 56l109 -74q-53 -68 -126.5 -98.5t-147.5 -30.5q-14 0 -21 1l-25 -40q14 10 31 10 q25 0 42 -16.5t17 -45.5q0 -42 -32 -67.5t-81 -25.5q-78 0 -119 41l35 48q37 -35 84 -35q50 0 50 35q0 24 -30 24q-17 0 -29 -14l-40 26l39 67q-111 21 -180 99t-69 192z" />
+<glyph unicode="&#xc8;" horiz-adv-x="583" d="M12 0l147 667h472l-28 -125h-329l-31 -141h322l-28 -125h-322l-33 -151h329l-27 -125h-472zM253 867h117l102 -144h-89z" />
+<glyph unicode="&#xc9;" horiz-adv-x="583" d="M12 0l147 667h472l-28 -125h-329l-31 -141h322l-28 -125h-322l-33 -151h329l-27 -125h-472zM342 723l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xca;" horiz-adv-x="583" d="M12 0l147 667h472l-28 -125h-329l-31 -141h322l-28 -125h-322l-33 -151h329l-27 -125h-472zM257 723l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xcb;" horiz-adv-x="583" d="M12 0l147 667h472l-28 -125h-329l-31 -141h322l-28 -125h-322l-33 -151h329l-27 -125h-472zM246 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17t-17 43zM457 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23 q-25 0 -42.5 17t-17.5 43z" />
+<glyph unicode="&#xcc;" horiz-adv-x="274" d="M12 0l147 667h142l-147 -667h-142zM88 867h117l102 -144h-89z" />
+<glyph unicode="&#xcd;" horiz-adv-x="274" d="M12 0l147 667h142l-147 -667h-142zM177 723l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xce;" horiz-adv-x="274" d="M12 0l147 667h142l-147 -667h-142zM92 723l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xcf;" horiz-adv-x="274" d="M12 0l147 667h142l-147 -667h-142zM81 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17t-17.5 43zM292 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17t-17 43z" />
+<glyph unicode="&#xd0;" horiz-adv-x="742" d="M15 276l26 115h82l61 276h258q116 0 202.5 -81t86.5 -206q0 -54 -14.5 -106.5t-48 -102.5t-82 -87.5t-122.5 -60.5t-165 -23h-262l61 276h-83zM207 125h120q116 1 186 72t70 174q0 73 -47 122t-121 49h-116l-33 -151h147l-25 -115h-148z" />
+<glyph unicode="&#xd1;" horiz-adv-x="729" d="M12 0l147 667h146l212 -434l97 434h142l-147 -667h-137l-218 450l-100 -450h-142zM307 727q13 67 41.5 100.5t79.5 33.5q24 0 42 -10.5t27.5 -23t23 -23t28.5 -10.5q30 0 45 61h68q-15 -67 -43.5 -100.5t-78.5 -33.5q-30 0 -50 17t-36 34t-35 17q-31 0 -44 -62h-68z" />
+<glyph unicode="&#xd2;" horiz-adv-x="765" d="M44 287q0 164 112 277.5t276 113.5q141 0 234 -82t93 -216q0 -164 -111.5 -278t-275.5 -114q-142 0 -235 82t-93 217zM192 296q0 -83 53 -132.5t135 -49.5q96 0 163.5 74.5t67.5 181.5q0 83 -53 132.5t-135 49.5q-97 0 -164 -74.5t-67 -181.5zM335 867h117l102 -144h-89z " />
+<glyph unicode="&#xd3;" horiz-adv-x="765" d="M44 287q0 164 112 277.5t276 113.5q141 0 234 -82t93 -216q0 -164 -111.5 -278t-275.5 -114q-142 0 -235 82t-93 217zM192 296q0 -83 53 -132.5t135 -49.5q96 0 163.5 74.5t67.5 181.5q0 83 -53 132.5t-135 49.5q-97 0 -164 -74.5t-67 -181.5zM423 723l166 144h119 l-194 -144h-91z" />
+<glyph unicode="&#xd4;" horiz-adv-x="765" d="M44 287q0 164 112 277.5t276 113.5q141 0 234 -82t93 -216q0 -164 -111.5 -278t-275.5 -114q-142 0 -235 82t-93 217zM192 296q0 -83 53 -132.5t135 -49.5q96 0 163.5 74.5t67.5 181.5q0 83 -53 132.5t-135 49.5q-97 0 -164 -74.5t-67 -181.5zM339 723l124 144h114 l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xd5;" horiz-adv-x="765" d="M44 287q0 164 112 277.5t276 113.5q141 0 234 -82t93 -216q0 -164 -111.5 -278t-275.5 -114q-142 0 -235 82t-93 217zM192 296q0 -83 53 -132.5t135 -49.5q96 0 163.5 74.5t67.5 181.5q0 83 -53 132.5t-135 49.5q-97 0 -164 -74.5t-67 -181.5zM326 727q13 67 41.5 100.5 t79.5 33.5q24 0 42 -10.5t27.5 -23t23 -23t28.5 -10.5q30 0 45 61h68q-15 -67 -43.5 -100.5t-78.5 -33.5q-30 0 -50 17t-36 34t-35 17q-31 0 -44 -62h-68z" />
+<glyph unicode="&#xd6;" horiz-adv-x="765" d="M44 287q0 164 112 277.5t276 113.5q141 0 234 -82t93 -216q0 -164 -111.5 -278t-275.5 -114q-142 0 -235 82t-93 217zM192 296q0 -83 53 -132.5t135 -49.5q96 0 163.5 74.5t67.5 181.5q0 83 -53 132.5t-135 49.5q-97 0 -164 -74.5t-67 -181.5zM327 770q0 30 23 52.5 t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17t-17.5 43zM538 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17t-17 43z" />
+<glyph unicode="&#xd7;" horiz-adv-x="504" d="M41 195l176 144l-108 138l63 52l106 -139l176 143l49 -60l-176 -145l107 -138l-62 -50l-108 138l-174 -143z" />
+<glyph unicode="&#xd8;" horiz-adv-x="765" d="M15 0l95 97q-66 77 -66 190q0 164 112 277.5t276 113.5q112 0 197 -54l42 43h102l-88 -90q74 -80 74 -197q0 -164 -111.5 -278t-275.5 -114q-122 0 -208 60l-47 -48h-102zM192 296q0 -52 22 -93l316 320q-46 29 -107 29q-97 0 -164 -74.5t-67 -181.5zM263 148 q48 -34 117 -34q96 0 163.5 74.5t67.5 181.5q0 58 -29 103z" />
+<glyph unicode="&#xd9;" horiz-adv-x="733" d="M66 221q0 20 5 45l88 401h144l-87 -397q-4 -12 -4 -33q1 -53 38.5 -88.5t105.5 -35.5q138 0 172 157l88 397h145l-89 -400q-29 -133 -103 -206t-213 -73q-141 0 -215.5 63t-74.5 170zM317 867h117l102 -144h-89z" />
+<glyph unicode="&#xda;" horiz-adv-x="733" d="M66 221q0 20 5 45l88 401h144l-87 -397q-4 -12 -4 -33q1 -53 38.5 -88.5t105.5 -35.5q138 0 172 157l88 397h145l-89 -400q-29 -133 -103 -206t-213 -73q-141 0 -215.5 63t-74.5 170zM406 723l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xdb;" horiz-adv-x="733" d="M66 221q0 20 5 45l88 401h144l-87 -397q-4 -12 -4 -33q1 -53 38.5 -88.5t105.5 -35.5q138 0 172 157l88 397h145l-89 -400q-29 -133 -103 -206t-213 -73q-141 0 -215.5 63t-74.5 170zM321 723l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xdc;" horiz-adv-x="733" d="M66 221q0 20 5 45l88 401h144l-87 -397q-4 -12 -4 -33q1 -53 38.5 -88.5t105.5 -35.5q138 0 172 157l88 397h145l-89 -400q-29 -133 -103 -206t-213 -73q-141 0 -215.5 63t-74.5 170zM310 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23 q-26 0 -43 17t-17 43zM521 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17t-17.5 43z" />
+<glyph unicode="&#xdd;" horiz-adv-x="645" d="M88 667h154l107 -268l223 268h170l-342 -394l-60 -273h-142l60 273zM363 723l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xde;" horiz-adv-x="624" d="M12 0l147 667h142l-23 -108h162q80 0 133 -54t53 -130q0 -44 -15.5 -85.5t-46.5 -78t-86 -59t-127 -22.5h-168l-29 -130h-142zM211 255h148q55 0 87 30.5t32 73.5q0 33 -23.5 54t-59.5 21h-145z" />
+<glyph unicode="&#xdf;" horiz-adv-x="643" d="M9 0l105 475q20 89 81 145.5t163 56.5q82 0 144.5 -39t62.5 -101q0 -37 -18 -65t-43.5 -44.5t-51 -29.5t-43.5 -28t-18 -32q0 -15 22.5 -26.5t55 -21.5t64.5 -24.5t54.5 -42.5t22.5 -67q0 -69 -57.5 -118.5t-146.5 -49.5q-135 0 -214 88l70 80q57 -69 147 -69q33 0 53 16 t20 37q0 18 -22.5 30t-54.5 22t-64 23t-54.5 39.5t-22.5 63.5q0 32 12 58.5t30.5 41.5t40 29t40 23t30.5 21t12 26q0 23 -23 37.5t-57 14.5q-42 0 -70 -25.5t-38 -68.5l-105 -475h-127z" />
+<glyph unicode="&#xe0;" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-107 -483h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118zM202 700h117l102 -144h-89z" />
+<glyph unicode="&#xe1;" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-107 -483h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118zM291 556l166 144h119l-194 -144h-91z " />
+<glyph unicode="&#xe2;" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-107 -483h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118zM207 556l124 144h114l62 -144h-76 l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xe3;" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-107 -483h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118zM195 560q13 67 41.5 100.5t79.5 33.5 q30 0 50.5 -17t36 -33.5t34.5 -16.5q30 0 45 61h68q-15 -67 -43.5 -100.5t-78.5 -33.5q-30 0 -50 17t-36 34t-35 17q-31 0 -44 -62h-68z" />
+<glyph unicode="&#xe4;" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-107 -483h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118zM195 603q0 30 23 52.5t53 22.5 q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17.5t-17.5 42.5zM406 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17.5t-17 42.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="586" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-107 -483h-128l14 60q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118zM270 625q0 46 34.5 80.5t80.5 34.5 q43 0 69 -26.5t26 -69.5q0 -47 -34 -81t-81 -34q-42 0 -68.5 26.5t-26.5 69.5zM329 631q0 -19 11.5 -31t30.5 -12q20 0 35 15t15 35q0 19 -11 31t-30 12q-20 0 -35.5 -15t-15.5 -35z" />
+<glyph unicode="&#xe6;" horiz-adv-x="914" d="M26 188q0 76 28.5 144.5t88 115.5t138.5 47q48 0 89 -20t65 -56l13 64h128l-13 -59q64 71 147 71q85 0 131 -53t46 -154q0 -52 -11 -87h-357q-1 -2 -1 -12q0 -35 36 -66t100 -31q72 0 116 36l40 -90q-76 -50 -153 -50q-127 0 -170 94l-18 -82h-128l14 60 q-61 -72 -145 -72t-134 53t-50 147zM159 214q0 -51 30 -82t77 -31q66 0 111 57l37 168q-37 56 -113 56q-61 0 -101.5 -50t-40.5 -118zM532 287h239q1 2 1 10q0 40 -28 68.5t-81 28.5q-49 0 -85.5 -32.5t-45.5 -74.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="499" d="M28 208q0 120 81 203.5t200 83.5q139 0 196 -95l-95 -73q-32 55 -101 55q-67 0 -109.5 -49t-42.5 -119q0 -53 34.5 -83t86.5 -30q60 0 101 48l69 -85q-72 -76 -183 -76h-7l-24 -39q14 10 31 10q25 0 42 -16.5t17 -45.5q0 -42 -32 -67.5t-81 -25.5q-78 0 -119 41l35 48 q37 -35 84 -35q50 0 50 35q0 24 -30 24q-17 0 -29 -14l-40 26l38 66q-80 17 -126 73.5t-46 139.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="553" d="M28 205q0 120 80 205t199 85q95 0 156 -58.5t61 -157.5q0 -46 -10 -78h-359v-12q0 -36 35.5 -68t96.5 -32q75 0 122 36l40 -87q-73 -50 -171 -50q-115 0 -182.5 58t-67.5 159zM168 287h242v10q0 40 -28.5 68.5t-82.5 28.5q-49 0 -85.5 -32.5t-45.5 -74.5zM200 700h117 l102 -144h-89z" />
+<glyph unicode="&#xe9;" horiz-adv-x="553" d="M28 205q0 120 80 205t199 85q95 0 156 -58.5t61 -157.5q0 -46 -10 -78h-359v-12q0 -36 35.5 -68t96.5 -32q75 0 122 36l40 -87q-73 -50 -171 -50q-115 0 -182.5 58t-67.5 159zM168 287h242v10q0 40 -28.5 68.5t-82.5 28.5q-49 0 -85.5 -32.5t-45.5 -74.5zM290 556 l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xea;" horiz-adv-x="553" d="M28 205q0 120 80 205t199 85q95 0 156 -58.5t61 -157.5q0 -46 -10 -78h-359v-12q0 -36 35.5 -68t96.5 -32q75 0 122 36l40 -87q-73 -50 -171 -50q-115 0 -182.5 58t-67.5 159zM168 287h242v10q0 40 -28.5 68.5t-82.5 28.5q-49 0 -85.5 -32.5t-45.5 -74.5zM204 556 l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xeb;" horiz-adv-x="553" d="M28 205q0 120 80 205t199 85q95 0 156 -58.5t61 -157.5q0 -46 -10 -78h-359v-12q0 -36 35.5 -68t96.5 -32q75 0 122 36l40 -87q-73 -50 -171 -50q-115 0 -182.5 58t-67.5 159zM168 287h242v10q0 40 -28.5 68.5t-82.5 28.5q-49 0 -85.5 -32.5t-45.5 -74.5zM194 603 q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17.5t-17 42.5zM405 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17.5t-17.5 42.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="253" d="M9 0l107 483h127l-107 -483h-127zM41 700h117l102 -144h-89z" />
+<glyph unicode="&#xed;" horiz-adv-x="253" d="M9 0l107 483h127l-107 -483h-127zM129 556l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xee;" horiz-adv-x="253" d="M9 0l107 483h127l-107 -483h-127zM45 556l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xef;" horiz-adv-x="253" d="M9 0l107 483h127l-107 -483h-127zM35 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17.5t-17.5 42.5zM246 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17.5t-17 42.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="574" d="M25 198q0 110 70.5 186t172.5 76q119 0 164 -109q-19 82 -118 181l-161 -47l-15 58l124 37q-18 15 -54 43l90 93q65 -51 106 -94l109 32l15 -58l-80 -24q103 -127 103 -266q0 -134 -77.5 -226t-204.5 -92q-110 0 -177 57.5t-67 152.5zM156 205q0 -49 30 -76.5t85 -27.5 q59 0 98 41.5t39 103.5q0 42 -30.5 71.5t-87.5 29.5t-95.5 -41t-38.5 -101z" />
+<glyph unicode="&#xf1;" horiz-adv-x="579" d="M9 0l107 483h127l-14 -63q77 75 161 75q69 0 110 -33.5t41 -89.5q0 -15 -5 -40l-74 -332h-127l64 288q5 22 5 32q0 32 -21 47t-53 15q-64 0 -122 -56l-72 -326h-127zM195 560q13 67 41.5 100.5t79.5 33.5q30 0 50.5 -17t36 -33.5t34.5 -16.5q30 0 45 61h68 q-15 -67 -43.5 -100.5t-78.5 -33.5q-30 0 -50 17t-36 34t-35 17q-31 0 -44 -62h-68z" />
+<glyph unicode="&#xf2;" horiz-adv-x="574" d="M27 207q0 116 80 202t199 86q113 0 176.5 -61.5t63.5 -158.5q0 -116 -80 -201.5t-200 -85.5q-113 0 -176 61t-63 158zM158 214q0 -53 30 -83t83 -30q62 0 102.5 50t40.5 118q0 53 -30 83t-82 30q-62 0 -103 -50.5t-41 -117.5zM202 700h117l102 -144h-89z" />
+<glyph unicode="&#xf3;" horiz-adv-x="574" d="M27 207q0 116 80 202t199 86q113 0 176.5 -61.5t63.5 -158.5q0 -116 -80 -201.5t-200 -85.5q-113 0 -176 61t-63 158zM158 214q0 -53 30 -83t83 -30q62 0 102.5 50t40.5 118q0 53 -30 83t-82 30q-62 0 -103 -50.5t-41 -117.5zM289 556l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xf4;" horiz-adv-x="574" d="M27 207q0 116 80 202t199 86q113 0 176.5 -61.5t63.5 -158.5q0 -116 -80 -201.5t-200 -85.5q-113 0 -176 61t-63 158zM158 214q0 -53 30 -83t83 -30q62 0 102.5 50t40.5 118q0 53 -30 83t-82 30q-62 0 -103 -50.5t-41 -117.5zM206 556l124 144h114l62 -144h-76l-54 89 l-90 -89h-80z" />
+<glyph unicode="&#xf5;" horiz-adv-x="574" d="M27 207q0 116 80 202t199 86q113 0 176.5 -61.5t63.5 -158.5q0 -116 -80 -201.5t-200 -85.5q-113 0 -176 61t-63 158zM158 214q0 -53 30 -83t83 -30q62 0 102.5 50t40.5 118q0 53 -30 83t-82 30q-62 0 -103 -50.5t-41 -117.5zM195 560q13 67 41.5 100.5t79.5 33.5 q30 0 50.5 -17t36 -33.5t34.5 -16.5q30 0 45 61h68q-15 -67 -43.5 -100.5t-78.5 -33.5q-30 0 -50 17t-36 34t-35 17q-31 0 -44 -62h-68z" />
+<glyph unicode="&#xf6;" horiz-adv-x="574" d="M27 207q0 116 80 202t199 86q113 0 176.5 -61.5t63.5 -158.5q0 -116 -80 -201.5t-200 -85.5q-113 0 -176 61t-63 158zM158 214q0 -53 30 -83t83 -30q62 0 102.5 50t40.5 118q0 53 -30 83t-82 30q-62 0 -103 -50.5t-41 -117.5zM195 603q0 30 23 52.5t53 22.5q26 0 43 -17 t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17.5t-17.5 42.5zM406 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17.5t-17 42.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M41 298l17 79h453l-17 -79h-453zM175 152q0 27 19.5 46.5t46.5 19.5q23 0 39.5 -16.5t16.5 -39.5q0 -27 -20 -46.5t-47 -19.5q-23 0 -39 16.5t-16 39.5zM254 510q0 27 19.5 46.5t46.5 19.5q23 0 39 -16.5t16 -39.5q0 -28 -19.5 -47t-46.5 -19q-23 0 -39 16.5t-16 39.5z " />
+<glyph unicode="&#xf8;" horiz-adv-x="574" d="M-16 0l82 76q-39 54 -39 131q0 116 80 202t199 86q97 0 158 -47l37 35h84l-80 -75q41 -55 41 -133q0 -116 -80 -201.5t-200 -85.5q-99 0 -161 48l-38 -36h-83zM158 214q0 -27 7 -45l207 193q-28 20 -70 20q-62 0 -103 -50.5t-41 -117.5zM198 122q27 -21 73 -21 q62 0 102.5 50t40.5 118q0 25 -8 47z" />
+<glyph unicode="&#xf9;" horiz-adv-x="579" d="M37 112q0 17 5 39l73 332h128l-65 -291q-4 -18 -4 -29q0 -31 22.5 -46.5t58.5 -15.5q56 0 115 57l72 325h127l-107 -483h-127l14 63q-79 -75 -161 -75q-69 0 -110 34t-41 90zM204 700h117l102 -144h-89z" />
+<glyph unicode="&#xfa;" horiz-adv-x="579" d="M37 112q0 17 5 39l73 332h128l-65 -291q-4 -18 -4 -29q0 -31 22.5 -46.5t58.5 -15.5q56 0 115 57l72 325h127l-107 -483h-127l14 63q-79 -75 -161 -75q-69 0 -110 34t-41 90zM292 556l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xfb;" horiz-adv-x="579" d="M37 112q0 17 5 39l73 332h128l-65 -291q-4 -18 -4 -29q0 -31 22.5 -46.5t58.5 -15.5q56 0 115 57l72 325h127l-107 -483h-127l14 63q-79 -75 -161 -75q-69 0 -110 34t-41 90zM208 556l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#xfc;" horiz-adv-x="579" d="M37 112q0 17 5 39l73 332h128l-65 -291q-4 -18 -4 -29q0 -31 22.5 -46.5t58.5 -15.5q56 0 115 57l72 325h127l-107 -483h-127l14 63q-79 -75 -161 -75q-69 0 -110 34t-41 90zM198 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17.5 t-17 42.5zM409 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17.5t-17.5 42.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="513" d="M-48 -184l42 110q18 -8 49 -8q37 0 60 34l30 45l-86 486h132l51 -336l202 336h140l-352 -562q-39 -64 -82.5 -90.5t-104.5 -26.5q-46 0 -81 12zM256 556l166 144h119l-194 -144h-91z" />
+<glyph unicode="&#xfe;" horiz-adv-x="583" d="M-32 -184l188 851h127l-54 -244q61 72 146 72q83 0 133 -53t50 -147q0 -75 -28.5 -144t-88 -116t-137.5 -47q-103 0 -154 76l-55 -248h-127zM170 156q36 -55 113 -55q62 0 102 49.5t40 118.5q0 51 -30 82t-77 31q-64 0 -111 -58z" />
+<glyph unicode="&#xff;" horiz-adv-x="513" d="M-48 -184l42 110q18 -8 49 -8q37 0 60 34l30 45l-86 486h132l51 -336l202 336h140l-352 -562q-39 -64 -82.5 -90.5t-104.5 -26.5q-46 0 -81 12zM161 603q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17.5t-17.5 42.5zM372 603 q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17.5t-17 42.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="1084" d="M44 287q0 113 52.5 203.5t138.5 138.5t187 48q156 0 218 -115l22 105h472l-27 -125h-329l-31 -141h322l-28 -125h-322l-33 -151h329l-28 -125h-472l17 76q-78 -88 -208 -88q-119 0 -199.5 84t-80.5 215zM192 296q0 -82 50.5 -132t130.5 -50q57 0 108 28t83 77l44 201 q-16 62 -63.5 96.5t-113.5 34.5q-103 0 -171 -74.5t-68 -180.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="931" d="M27 207q0 114 78 201t199 87q69 0 118 -33.5t69 -74.5q27 31 48.5 50.5t62.5 38.5t87 19q92 0 153.5 -57t61.5 -159q0 -35 -9 -78h-355q0 -1 -0.5 -5t-0.5 -7q0 -38 35.5 -69t95.5 -31q73 0 120 36l39 -87q-71 -50 -169 -50q-73 0 -126 33t-72 74q-30 -33 -49 -50.5 t-60.5 -37t-88.5 -19.5q-107 0 -172 58.5t-65 160.5zM158 214q0 -53 29.5 -83t81.5 -30q60 0 100.5 49.5t40.5 118.5q0 56 -31 84.5t-79 28.5q-59 0 -100.5 -49t-41.5 -119zM552 287h238q1 3 1 10q0 40 -28 68.5t-81 28.5q-50 0 -86.5 -34t-43.5 -73z" />
+<glyph unicode="&#x178;" horiz-adv-x="645" d="M88 667h154l107 -268l223 268h170l-342 -394l-60 -273h-142l60 273zM268 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-26 0 -43 17t-17 43zM479 770q0 30 23 52.5t53 22.5q26 0 43 -17t17 -43q0 -29 -23 -52t-53 -23q-25 0 -42.5 17t-17.5 43z " />
+<glyph unicode="&#x2c6;" horiz-adv-x="300" d="M69 556l124 144h114l62 -144h-76l-54 89l-90 -89h-80z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="327" d="M70 560q13 67 41.5 100.5t79.5 33.5q24 0 42 -10.5t27.5 -23t23 -23t28.5 -10.5q30 0 45 61h68q-15 -67 -43.5 -100.5t-78.5 -33.5q-30 0 -50 17t-36 34t-35 17q-31 0 -44 -62h-68z" />
+<glyph unicode="&#x2000;" horiz-adv-x="449" />
+<glyph unicode="&#x2001;" horiz-adv-x="899" />
+<glyph unicode="&#x2002;" horiz-adv-x="449" />
+<glyph unicode="&#x2003;" horiz-adv-x="899" />
+<glyph unicode="&#x2004;" horiz-adv-x="299" />
+<glyph unicode="&#x2005;" horiz-adv-x="224" />
+<glyph unicode="&#x2006;" horiz-adv-x="149" />
+<glyph unicode="&#x2007;" horiz-adv-x="149" />
+<glyph unicode="&#x2008;" horiz-adv-x="112" />
+<glyph unicode="&#x2009;" horiz-adv-x="179" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M17 188l24 108h240l-24 -108h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M17 188l24 108h240l-24 -108h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M17 188l24 108h240l-24 -108h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M17 188l24 108h533l-24 -108h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M17 188l24 108h773l-24 -108h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="255" d="M91 477q0 57 42 113.5t105 86.5l45 -47q-30 -13 -58.5 -36t-39.5 -48q3 1 10 1q26 0 44 -17.5t18 -47.5q0 -35 -27 -60.5t-62 -25.5q-32 0 -54.5 21.5t-22.5 59.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="255" d="M98 442q30 13 58.5 36t39.5 48h-10q-26 0 -44 17t-18 48q0 35 27.5 60.5t61.5 25.5q32 0 55 -22t23 -60q0 -56 -42 -112.5t-105 -87.5z" />
+<glyph unicode="&#x201a;" d="M-18 -84q30 13 58.5 36t39.5 48h-11q-26 0 -43.5 17t-17.5 48q0 35 27 60.5t61 25.5q33 0 55.5 -21.5t22.5 -60.5q0 -56 -42 -113t-105 -87z" />
+<glyph unicode="&#x201c;" horiz-adv-x="459" d="M92 477q0 57 42 113.5t105 86.5l46 -47q-30 -13 -58.5 -36t-39.5 -48q2 1 10 1q26 0 44 -17.5t18 -47.5q0 -35 -27 -60.5t-62 -25.5q-32 0 -55 21.5t-23 59.5zM296 477q0 57 41.5 113.5t104.5 86.5l46 -47q-30 -13 -58.5 -36t-39.5 -48q2 1 10 1q26 0 44 -17.5t18 -47.5 q0 -35 -27 -60.5t-62 -25.5q-32 0 -54.5 21.5t-22.5 59.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="459" d="M98 442q30 13 58.5 36t39.5 48h-10q-26 0 -44 17t-18 48q0 35 27.5 60.5t61.5 25.5q32 0 55 -22t23 -60q0 -56 -42 -112.5t-105 -87.5zM302 442q30 13 58.5 36t39.5 48h-11q-26 0 -43.5 17t-17.5 48q0 35 27 60.5t61 25.5q33 0 55.5 -21.5t22.5 -60.5q0 -56 -42 -112.5 t-105 -87.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="459" d="M-18 -84q30 13 58.5 36t39.5 48h-11q-26 0 -43.5 17t-17.5 48q0 35 27 60.5t61 25.5q33 0 55.5 -21.5t22.5 -60.5q0 -56 -42 -113t-105 -87zM185 -84q30 13 58.5 36t39.5 48h-10q-26 0 -44 17t-18 48q0 35 27.5 60.5t61.5 25.5q32 0 54.5 -21.5t22.5 -60.5 q0 -56 -42 -113t-105 -87z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M59 231q0 53 39.5 91.5t93.5 38.5q46 0 76.5 -30.5t30.5 -76.5q0 -53 -39.5 -91.5t-93.5 -38.5q-46 0 -76.5 30.5t-30.5 76.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="768" d="M8 63q0 36 26.5 62t62.5 26q31 0 52 -22t21 -53q0 -36 -26 -62t-62 -26q-31 0 -52.5 22t-21.5 53zM264 63q0 36 26.5 62t62.5 26q31 0 52 -22t21 -53q0 -36 -26 -62t-62 -26q-31 0 -52.5 22t-21.5 53zM520 63q0 36 26.5 62t62.5 26q31 0 52 -22t21 -53q0 -36 -26 -62 t-62 -26q-31 0 -52.5 22t-21.5 53z" />
+<glyph unicode="&#x202f;" horiz-adv-x="179" />
+<glyph unicode="&#x2039;" horiz-adv-x="337" d="M29 243l200 177h121l-204 -182l116 -175h-113z" />
+<glyph unicode="&#x203a;" horiz-adv-x="337" d="M-11 63l204 182l-116 175h113l120 -180l-200 -177h-121z" />
+<glyph unicode="&#x205f;" horiz-adv-x="224" />
+<glyph unicode="&#x20ac;" horiz-adv-x="709" d="M17 225l17 78h38q2 35 7 62h-31l17 78h36q45 109 142.5 172t216.5 63q115 0 189.5 -53t106.5 -136l-137 -46q-19 52 -63.5 80.5t-102.5 28.5t-108.5 -29t-83.5 -80h256l-18 -78h-271q-8 -32 -8 -62h265l-17 -78h-236q20 -51 66 -81t110 -30q43 0 86 21t71 56l109 -74 q-53 -68 -126.5 -98.5t-147.5 -30.5q-123 0 -211.5 64.5t-110.5 172.5h-61z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M105 641l5 26h152l-5 -26h-62l-43 -194h-28l43 194h-62zM250 447l48 220h43l29 -160l99 160h43l-48 -220h-28l40 182l-115 -182h-8l-35 182l-40 -182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern u1="K" u2="a" k="14" />
+<hkern u1="L" u2="a" k="7" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="T" u2="a" k="78" />
+<hkern u1="V" u2="a" k="67" />
+<hkern u1="W" u2="a" k="40" />
+<hkern u1="Y" u2="a" k="111" />
+<hkern u1="a" u2="&#x2122;" k="13" />
+<hkern u1="a" u2="&#x201d;" k="13" />
+<hkern u1="a" u2="&#x201c;" k="13" />
+<hkern u1="a" u2="&#x2019;" k="13" />
+<hkern u1="a" u2="&#x2018;" k="13" />
+<hkern u1="a" u2="&#x178;" k="110" />
+<hkern u1="a" u2="&#xdd;" k="110" />
+<hkern u1="a" u2="&#xae;" k="13" />
+<hkern u1="a" u2="Y" k="110" />
+<hkern u1="a" u2="W" k="47" />
+<hkern u1="a" u2="V" k="73" />
+<hkern u1="a" u2="T" k="94" />
+<hkern u1="a" u2="&#x3f;" k="43" />
+<hkern u1="a" u2="&#x27;" k="13" />
+<hkern u1="a" u2="&#x22;" k="13" />
+<hkern u1="&#xdd;" u2="a" k="111" />
+<hkern u1="&#x178;" u2="a" k="111" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="14" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="17" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="7" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-7" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="-7" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="7" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="14" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="33" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="7" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="23" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="34" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="63" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="17" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="14" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="24" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="70" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="43" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="13" />
+<hkern g1="G" 	g2="question" 	k="13" />
+<hkern g1="G" 	g2="T" 	k="20" />
+<hkern g1="G" 	g2="W" 	k="15" />
+<hkern g1="G" 	g2="V" 	k="27" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="7" />
+<hkern g1="G" 	g2="X" 	k="7" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="47" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="11" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="33" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="50" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="27" />
+<hkern g1="K" 	g2="x" 	k="33" />
+<hkern g1="L" 	g2="question" 	k="107" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="136" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
+<hkern g1="L" 	g2="asterisk" 	k="167" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="24" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="73" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="127" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="7" />
+<hkern g1="L" 	g2="t" 	k="37" />
+<hkern g1="L" 	g2="w" 	k="34" />
+<hkern g1="L" 	g2="v" 	k="54" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="54" />
+<hkern g1="L" 	g2="ampersand" 	k="4" />
+<hkern g1="L" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="11" />
+<hkern g1="P" 	g2="J" 	k="120" />
+<hkern g1="P" 	g2="W" 	k="6" />
+<hkern g1="P" 	g2="V" 	k="7" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="74" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="87" />
+<hkern g1="P" 	g2="X" 	k="20" />
+<hkern g1="P" 	g2="ampersand" 	k="33" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="27" />
+<hkern g1="P" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="17" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="7" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="24" />
+<hkern g1="R" 	g2="ampersand" 	k="6" />
+<hkern g1="R" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="13" />
+<hkern g1="S" 	g2="T" 	k="23" />
+<hkern g1="S" 	g2="W" 	k="10" />
+<hkern g1="S" 	g2="V" 	k="14" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="35" />
+<hkern g1="S" 	g2="t" 	k="14" />
+<hkern g1="S" 	g2="w" 	k="7" />
+<hkern g1="S" 	g2="v" 	k="13" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="13" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="4" />
+<hkern g1="S" 	g2="x" 	k="17" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="11" />
+<hkern g1="T" 	g2="J" 	k="87" />
+<hkern g1="T" 	g2="S" 	k="-4" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="21" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="68" />
+<hkern g1="T" 	g2="w" 	k="28" />
+<hkern g1="T" 	g2="v" 	k="28" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="28" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="54" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="97" />
+<hkern g1="T" 	g2="ampersand" 	k="40" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="98" />
+<hkern g1="T" 	g2="x" 	k="38" />
+<hkern g1="T" 	g2="s" 	k="81" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="68" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="26" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="23" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="4" />
+<hkern g1="V" 	g2="J" 	k="97" />
+<hkern g1="V" 	g2="S" 	k="-13" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="27" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="56" />
+<hkern g1="V" 	g2="t" 	k="17" />
+<hkern g1="V" 	g2="w" 	k="13" />
+<hkern g1="V" 	g2="v" 	k="17" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="13" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="37" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="26" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="57" />
+<hkern g1="V" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="26" />
+<hkern g1="V" 	g2="s" 	k="50" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="56" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="7" />
+<hkern g1="W" 	g2="J" 	k="59" />
+<hkern g1="W" 	g2="S" 	k="-10" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="16" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="16" />
+<hkern g1="W" 	g2="v" 	k="7" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="7" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="37" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="64" />
+<hkern g1="W" 	g2="ampersand" 	k="10" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="37" />
+<hkern g1="W" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="26" />
+<hkern g1="W" 	g2="s" 	k="29" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="17" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="117" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="9" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="33" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="57" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="44" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="123" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="124" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="77" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="70" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
+<hkern g1="ampersand" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="11" />
+<hkern g1="ampersand" 	g2="T" 	k="81" />
+<hkern g1="ampersand" 	g2="W" 	k="44" />
+<hkern g1="ampersand" 	g2="V" 	k="64" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="98" />
+<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="asterisk" 	g2="J" 	k="123" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="91" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="53" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="98" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="117" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="4" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="34" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="27" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="7" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="71" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="27" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="43" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="67" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="43" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="7" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="14" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="91" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="57" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="4" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="4" />
+<hkern g1="f" 	g2="question" 	k="-54" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-64" />
+<hkern g1="f" 	g2="asterisk" 	k="-64" />
+<hkern g1="f" 	g2="S" 	k="-27" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-67" />
+<hkern g1="f" 	g2="V" 	k="-67" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-63" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="47" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="7" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-67" />
+<hkern g1="g,j,q" 	g2="question" 	k="27" />
+<hkern g1="g,j,q" 	g2="T" 	k="68" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="56" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-53" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="37" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="57" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="120" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="46" />
+<hkern g1="k" 	g2="T" 	k="45" />
+<hkern g1="k" 	g2="W" 	k="26" />
+<hkern g1="k" 	g2="V" 	k="26" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="73" />
+<hkern g1="k" 	g2="bullet" 	k="24" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="24" />
+<hkern g1="k" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="6" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="83" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="97" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="64" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="84" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="27" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="27" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="37" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="64" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="54" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="4" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="73" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="99" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="21" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="7" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="106" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="97" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="83" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="ampersand" 	k="-4" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="34" />
+<hkern g1="r" 	g2="W" 	k="13" />
+<hkern g1="r" 	g2="V" 	k="27" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="87" />
+<hkern g1="r" 	g2="X" 	k="19" />
+<hkern g1="s" 	g2="question" 	k="47" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="74" />
+<hkern g1="s" 	g2="W" 	k="49" />
+<hkern g1="s" 	g2="V" 	k="46" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="97" />
+<hkern g1="s" 	g2="X" 	k="7" />
+<hkern g1="t" 	g2="T" 	k="31" />
+<hkern g1="t" 	g2="W" 	k="16" />
+<hkern g1="t" 	g2="V" 	k="33" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="37" />
+<hkern g1="a,u,z,uni00B5" 	g2="question" 	k="27" />
+<hkern g1="a,u,z,uni00B5" 	g2="T" 	k="68" />
+<hkern g1="a,u,z,uni00B5" 	g2="W" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="V" 	k="56" />
+<hkern g1="a,u,z,uni00B5" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="28" />
+<hkern g1="v" 	g2="W" 	k="7" />
+<hkern g1="v" 	g2="V" 	k="17" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="64" />
+<hkern g1="v" 	g2="X" 	k="34" />
+<hkern g1="w" 	g2="T" 	k="28" />
+<hkern g1="w" 	g2="V" 	k="13" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="14" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="37" />
+<hkern g1="w" 	g2="X" 	k="37" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="6" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="28" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="7" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="13" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="54" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="34" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="37" />
+<hkern g1="X" 	g2="v" 	k="34" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="34" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="46" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="21" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="94" />
+<hkern g1="x" 	g2="T" 	k="38" />
+<hkern g1="x" 	g2="W" 	k="26" />
+<hkern g1="x" 	g2="V" 	k="26" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="77" />
+<hkern g1="x" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="34" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..fd73c5ef7dcb26db58b02386f334f8a98f4c9b22
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.woff
new file mode 100755
index 0000000000000000000000000000000000000000..b5516ee8a1f7150273b83361eeded66b96dbffe6
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-BoldIt.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.eot
new file mode 100755
index 0000000000000000000000000000000000000000..83a4639391649b2d822ce23ea3c04fa069b5f806
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.otf
new file mode 100755
index 0000000000000000000000000000000000000000..39ae2545df850546bea1b399638b6e8dc665c582
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.svg
new file mode 100755
index 0000000000000000000000000000000000000000..5b5a45904da4e6a840ecd17f711e9708b031a74e
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.svg
@@ -0,0 +1,555 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_nova_ltlight" horiz-adv-x="571" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="259" />
+<glyph unicode="&#xfb01;" horiz-adv-x="478" d="M18 437v46h80v44q0 71 35 110.5t96 39.5q39 0 65 -15l-16 -41q-19 11 -44 11q-84 0 -84 -105v-44h98v-46h-98v-437h-52v437h-80zM332 599q0 16 12 27.5t28 11.5q17 0 28.5 -11.5t11.5 -27.5q0 -17 -12 -28.5t-28 -11.5t-28 12t-12 28zM346 0v483h52v-483h-52z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="478" d="M18 437v46h80v44q0 71 35 110.5t96 39.5q39 0 65 -15l-16 -41q-19 11 -44 11q-84 0 -84 -105v-44h98v-46h-98v-437h-52v437h-80zM346 0v667h52v-667h-52z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="743" d="M18 437v46h80v44q0 70 35 110t96 40q53 0 92 -34l-25 -36q-27 25 -62 25q-84 0 -84 -105v-44h98v-46h-98v-437h-52v437h-80zM283 437v46h80v44q0 71 35 110.5t96 39.5q39 0 65 -15l-16 -41q-19 11 -44 11q-84 0 -84 -105v-44h98v-46h-98v-437h-52v437h-80zM597 599 q0 16 12 27.5t28 11.5q17 0 28.5 -11.5t11.5 -27.5q0 -17 -11.5 -28.5t-28.5 -11.5q-16 0 -28 12t-12 28zM611 0v483h52v-483h-52z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="743" d="M18 437v46h80v44q0 70 35 110t96 40q53 0 92 -34l-25 -36q-27 25 -62 25q-84 0 -84 -105v-44h98v-46h-98v-437h-52v437h-80zM283 437v46h80v44q0 71 35 110.5t96 39.5q39 0 65 -15l-16 -41q-19 11 -44 11q-84 0 -84 -105v-44h98v-46h-98v-437h-52v437h-80zM611 0v667h52 v-667h-52z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="259" />
+<glyph unicode="&#x09;" horiz-adv-x="259" />
+<glyph unicode="&#xa0;" horiz-adv-x="259" />
+<glyph unicode="!" horiz-adv-x="219" d="M66 35q0 17 12.5 30t30.5 13t31.5 -13t13.5 -30q0 -18 -13.5 -31t-31.5 -13t-30.5 13t-12.5 31zM76 667h67l-13 -493h-41z" />
+<glyph unicode="&#x22;" horiz-adv-x="317" d="M58 641q0 15 10 25.5t26 10.5q15 0 25.5 -10.5t10.5 -25.5l-21 -214h-30q-21 201 -21 214zM187 641q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5l-21 -214h-30q-21 201 -21 214z" />
+<glyph unicode="#" horiz-adv-x="579" d="M24 186l13 41h112l71 213h-113l12 41h115l61 186h47l-61 -186h117l61 186h48l-63 -186h111l-11 -41h-113l-72 -213h115l-12 -41h-116l-62 -186h-48l64 186h-118l-63 -186h-47l62 186h-110zM196 227h116l72 213h-117z" />
+<glyph unicode="$" horiz-adv-x="584" d="M48 94l37 43q75 -88 188 -96v280q-49 14 -76.5 24.5t-61.5 31t-50 51t-16 72.5q0 76 58 124.5t146 52.5v91h46v-91q120 -10 195 -93l-38 -42q-59 71 -157 82v-252q47 -13 77.5 -25.5t64.5 -34.5t51 -55.5t17 -79.5q0 -71 -50.5 -126t-159.5 -62v-89h-46v89 q-145 7 -225 105zM129 503q0 -48 37 -73t107 -45v240q-63 -3 -103.5 -37t-40.5 -85zM319 41q79 6 114.5 45t35.5 87q0 55 -38.5 84t-111.5 51v-267z" />
+<glyph unicode="%" horiz-adv-x="720" d="M34 512q0 71 44 118t112 47q69 0 113 -47t44 -118q0 -70 -44 -116t-113 -46t-112.5 46t-43.5 116zM80 512q0 -51 31 -87.5t79 -36.5t79.5 36.5t31.5 87.5q0 53 -31 89.5t-80 36.5q-48 0 -79 -36.5t-31 -89.5zM128 0l426 667h46l-427 -667h-45zM373 151q0 71 44 118 t113 47t113 -47t44 -118q0 -70 -44 -116.5t-113 -46.5t-113 46.5t-44 116.5zM419 151q0 -52 31 -88t80 -36t79.5 36t30.5 88q0 53 -30.5 89.5t-79.5 36.5t-80 -36.5t-31 -89.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="639" d="M42 170q0 72 39 117.5t110 84.5q-55 87 -55 153q0 65 46 108.5t113 43.5q63 0 101.5 -33.5t38.5 -92.5q0 -29 -11 -54.5t-23.5 -41.5t-41.5 -36.5t-44.5 -29t-52.5 -28.5q29 -40 86 -105q63 -71 89 -98q49 73 76 162l48 -20q-47 -118 -88 -178q48 -50 129 -122h-78 q-38 33 -85 80q-82 -92 -196 -92q-87 0 -144 48t-57 134zM100 173q0 -65 43 -102t104 -37q87 0 158 81q-74 76 -100 107q-59 69 -89 112q-55 -32 -85.5 -69t-30.5 -92zM192 524q0 -54 46 -127q37 19 56 31t43.5 31t35 41t10.5 49q0 40 -24.5 62t-62.5 22q-43 0 -73.5 -31 t-30.5 -78z" />
+<glyph unicode="'" horiz-adv-x="187" d="M58 641q0 15 10 25.5t26 10.5q15 0 25.5 -10.5t10.5 -25.5l-21 -214h-30q-21 201 -21 214z" />
+<glyph unicode="(" horiz-adv-x="227" d="M46 243q0 241 133 442l31 -22q-53 -109 -79.5 -204t-26.5 -216t26.5 -216t79.5 -203l-31 -23q-133 201 -133 442z" />
+<glyph unicode=")" horiz-adv-x="227" d="M17 -176q53 107 79.5 202.5t26.5 216.5q0 122 -26.5 217t-79.5 203l31 22q134 -203 134 -442t-134 -442z" />
+<glyph unicode="*" horiz-adv-x="335" d="M37 485l104 53l-104 53l19 33l98 -64l-5 117h37l-6 -117l99 64l18 -33l-103 -53l103 -53l-18 -33l-99 64l6 -117h-37l5 117l-98 -64z" />
+<glyph unicode="+" horiz-adv-x="496" d="M29 316v42h197v211h45v-211h196v-42h-196v-217h-45v217h-197z" />
+<glyph unicode="," horiz-adv-x="219" d="M58 -98q24 16 40 42.5t18 49.5q-7 -1 -10 -1q-18 0 -29.5 12t-11.5 30q0 17 12.5 30t30.5 13q21 0 36 -17t15 -47q0 -40 -20.5 -77.5t-51.5 -59.5z" />
+<glyph unicode="-" horiz-adv-x="300" d="M30 218v48h240v-48h-240z" />
+<glyph unicode="." horiz-adv-x="219" d="M65 35q0 17 13 30t31 13t31.5 -13t13.5 -30q0 -18 -13.5 -31.5t-31.5 -13.5t-31 13.5t-13 31.5z" />
+<glyph unicode="/" horiz-adv-x="282" d="M0 -20l237 707h45l-237 -707h-45z" />
+<glyph unicode="0" horiz-adv-x="608" d="M58 333q0 63 14 121.5t41.5 109.5t77 82t114.5 31q64 0 113 -31t77 -82t42 -109.5t14 -121.5q0 -62 -14 -121t-42 -110.5t-77 -82.5t-113 -31t-114 31t-77.5 82.5t-41.5 110t-14 121.5zM118 333q0 -55 10 -104.5t30.5 -93t58 -69.5t88.5 -26q50 0 87.5 26t58 69.5t30 93 t9.5 104.5t-9.5 104.5t-30 93t-58 69t-87.5 25.5q-51 0 -88.5 -25.5t-58 -69t-30.5 -93t-10 -104.5z" />
+<glyph unicode="1" horiz-adv-x="308" d="M26 512l147 155h52v-667h-57v589l-107 -114z" />
+<glyph unicode="2" horiz-adv-x="582" d="M56 0v47q80 65 128 105t102 91t82.5 88.5t47.5 78.5t19 79q0 67 -45.5 101.5t-106.5 34.5q-60 0 -107.5 -23.5t-75.5 -63.5l-39 36q36 48 94 75.5t128 27.5q83 0 146.5 -48t63.5 -140q0 -53 -25 -106t-79 -111.5t-105.5 -104t-138.5 -115.5h351v-52h-440z" />
+<glyph unicode="3" horiz-adv-x="544" d="M32 99l39 34q65 -93 187 -93q77 0 122.5 38t45.5 104q0 68 -49.5 101.5t-129.5 33.5q-52 0 -62 -1v54q10 -1 62 -1q72 0 120.5 32t48.5 95q0 60 -46 94.5t-114 34.5q-103 0 -179 -85l-36 36q83 101 218 101q91 0 153 -47t62 -129q0 -47 -25 -83t-55 -51.5t-63 -21.5 q54 -6 103.5 -49t49.5 -117q0 -84 -60.5 -137.5t-164.5 -53.5q-78 0 -137 31.5t-90 79.5z" />
+<glyph unicode="4" horiz-adv-x="541" d="M35 182v51l296 434h77v-433h98v-52h-98v-182h-57v182h-316zM94 234h257v376z" />
+<glyph unicode="5" horiz-adv-x="582" d="M74 97l38 38q67 -95 187 -95q72 0 119.5 46t47.5 115q0 75 -46.5 119t-119.5 44q-91 0 -162 -65l-43 18v350h385v-52h-328v-261q64 62 159 62q89 0 151 -56.5t62 -156.5q0 -97 -65 -156t-160 -59q-149 0 -225 109z" />
+<glyph unicode="6" horiz-adv-x="584" d="M58 333q0 53 8.5 101.5t28.5 93.5t48.5 77.5t72.5 52t97 19.5q112 0 180 -85l-34 -42q-55 75 -146 75q-52 0 -91.5 -25.5t-61.5 -68.5t-33 -93t-11 -106q0 -21 1 -31q25 41 79 76t116 35q95 0 155 -54.5t60 -156.5q0 -87 -61 -150t-163 -63q-52 0 -94 19t-70 51 t-46.5 76.5t-26.5 93.5t-8 105zM120 247q4 -51 22 -95t59 -78t100 -34q79 0 123.5 49.5t44.5 110.5q0 79 -46 120t-121 41q-54 0 -103.5 -31.5t-78.5 -82.5z" />
+<glyph unicode="7" horiz-adv-x="502" d="M33 615v52h437v-40l-285 -627h-63l280 615h-369z" />
+<glyph unicode="8" d="M59 167q0 65 48 111.5t118 65.5q-66 18 -110.5 58.5t-44.5 102.5q0 83 64 127.5t152 44.5q86 0 151 -44.5t65 -127.5q0 -62 -44.5 -102.5t-110.5 -58.5q70 -19 117.5 -65t47.5 -112q0 -80 -64.5 -129.5t-161.5 -49.5q-98 0 -162.5 49.5t-64.5 129.5zM117 171 q0 -59 49.5 -95t119.5 -36q68 0 118.5 36.5t50.5 94.5q0 36 -20 65t-50 45.5t-55 25.5t-44 11q-19 -2 -44.5 -11t-55 -25.5t-49.5 -45.5t-20 -65zM128 499q0 -32 18 -57.5t47 -40.5t50 -22t43 -11q22 4 43 11.5t50 22t47 40t18 57.5q0 58 -45 92t-113 34t-113 -34t-45 -92z " />
+<glyph unicode="9" horiz-adv-x="584" d="M57 465q0 87 61 150t163 63q52 0 94 -19t70 -51t46.5 -76.5t26.5 -93.5t8 -105q0 -53 -8.5 -101.5t-28.5 -93.5t-48.5 -77.5t-72.5 -52t-97 -19.5q-113 0 -179 85l33 41q55 -74 146 -74q53 0 92.5 25.5t61.5 69t32.5 93t10.5 105.5v31q-26 -41 -80.5 -76.5t-115.5 -35.5 q-95 0 -155 55t-60 157zM115 466q0 -79 46 -120t121 -41q54 0 103.5 31.5t78.5 82.5q-4 51 -22 95t-59 78t-100 34q-79 0 -123.5 -49.5t-44.5 -110.5z" />
+<glyph unicode=":" horiz-adv-x="219" d="M65 35q0 17 13 30t31 13t31.5 -13t13.5 -30q0 -18 -13.5 -31.5t-31.5 -13.5t-31 13.5t-13 31.5zM65 446q0 18 13 31t31 13t31.5 -13t13.5 -31q0 -17 -13.5 -30t-31.5 -13t-31 13t-13 30z" />
+<glyph unicode=";" horiz-adv-x="219" d="M58 -97q24 16 40 42.5t18 49.5q-7 -1 -10 -1q-18 0 -29.5 12t-11.5 30q0 17 12.5 30t30.5 13q21 0 36 -17.5t15 -47.5q0 -40 -20.5 -77t-51.5 -59zM65 446q0 18 13 31t31 13t31.5 -13t13.5 -31q0 -17 -13.5 -30t-31.5 -13t-31 13t-13 30z" />
+<glyph unicode="&#x3c;" horiz-adv-x="496" d="M29 316v37l438 227v-49l-386 -197l386 -195v-49z" />
+<glyph unicode="=" horiz-adv-x="496" d="M29 216v41h438v-41h-438zM29 411v42h438v-42h-438z" />
+<glyph unicode="&#x3e;" horiz-adv-x="496" d="M29 90v49l386 195l-386 197v49l438 -227v-37z" />
+<glyph unicode="?" horiz-adv-x="464" d="M22 572q77 105 215 105q87 0 139 -44.5t52 -109.5q0 -42 -21 -76t-51 -56t-60 -41.5t-51 -44t-21 -53.5t30 -51l-40 -25q-41 34 -41 79q0 36 20 65t48.5 49t57.5 39.5t49 47t20 61.5q0 46 -35.5 77t-98.5 31q-109 0 -176 -90zM179 35q0 17 13 30t31 13t31 -13t13 -30 q0 -18 -13 -31.5t-31 -13.5t-31 13.5t-13 31.5z" />
+<glyph unicode="@" horiz-adv-x="783" d="M35 244q0 106 55.5 197.5t147 144t194.5 52.5q139 0 227 -92.5t88 -229.5q0 -108 -48 -169.5t-114 -61.5q-39 0 -63 25t-25 60l-1 6q-28 -39 -72 -65t-92 -26q-69 0 -111 43.5t-42 116.5q0 104 73.5 179t165.5 75q47 0 81 -23t49 -59l13 65h49l-59 -282q-2 -12 -2 -19 q0 -25 14.5 -40t35.5 -15q40 0 78 46.5t38 144.5q0 125 -80 207t-206 82q-145 0 -253.5 -109.5t-108.5 -251.5q0 -121 82 -202.5t207 -81.5q99 0 187 57l17 -25q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM231 248q0 -54 29.5 -88t81.5 -34q95 0 164 101l32 148 q-11 32 -40 57.5t-74 25.5q-79 0 -136 -64.5t-57 -145.5z" />
+<glyph unicode="A" horiz-adv-x="647" d="M15 0l273 667h71l273 -667h-66l-66 164h-353l-66 -164h-66zM166 216h315l-158 390z" />
+<glyph unicode="B" horiz-adv-x="614" d="M83 0v667h274q84 0 134 -46t50 -124q0 -60 -34.5 -101.5t-82.5 -51.5q53 -8 91.5 -56.5t38.5 -107.5q0 -83 -51 -131.5t-140 -48.5h-280zM140 52h214q66 0 103 35.5t37 96.5q0 55 -37 93.5t-103 38.5h-214v-264zM140 368h210q62 0 96.5 34.5t34.5 88.5q0 53 -34.5 88.5 t-96.5 35.5h-210v-247z" />
+<glyph unicode="C" horiz-adv-x="672" d="M58 333q0 152 97 248.5t241 96.5q148 0 243 -118l-48 -31q-32 44 -84 70.5t-111 26.5q-119 0 -198.5 -82t-79.5 -211q0 -128 79.5 -210.5t198.5 -82.5q59 0 111 26.5t84 70.5l48 -30q-96 -119 -243 -119q-144 0 -241 96.5t-97 248.5z" />
+<glyph unicode="D" horiz-adv-x="692" d="M83 0v667h213q151 0 244 -96.5t93 -237.5q0 -142 -92.5 -237.5t-244.5 -95.5h-213zM140 52h156q128 0 202.5 80t74.5 201t-74 201.5t-203 80.5h-156v-563z" />
+<glyph unicode="E" horiz-adv-x="564" d="M83 0v667h423v-52h-366v-247h359v-52h-359v-264h366v-52h-423z" />
+<glyph unicode="F" horiz-adv-x="542" d="M83 0v667h423v-52h-366v-247h359v-52h-359v-316h-57z" />
+<glyph unicode="G" horiz-adv-x="711" d="M58 333q0 152 97.5 248.5t240.5 96.5q152 0 251 -114l-43 -31q-36 43 -90.5 68t-117.5 25q-119 0 -198.5 -82t-79.5 -211q0 -128 79.5 -211t198.5 -83q61 0 112 24t84 57v160h-252v51h309v-233q-99 -111 -253 -111q-143 0 -240.5 97t-97.5 249z" />
+<glyph unicode="H" horiz-adv-x="703" d="M83 0v667h57v-298h423v298h58v-667h-58v317h-423v-317h-57z" />
+<glyph unicode="I" horiz-adv-x="223" d="M83 0v667h57v-667h-57z" />
+<glyph unicode="J" horiz-adv-x="470" d="M14 70l35 43q56 -73 133 -73q67 0 107 42.5t40 110.5v474h58v-474q0 -100 -57 -152.5t-145 -52.5q-108 0 -171 82z" />
+<glyph unicode="K" horiz-adv-x="586" d="M83 0v667h57v-365l322 365h73l-284 -318l311 -349h-73l-275 314l-74 -81v-233h-57z" />
+<glyph unicode="L" horiz-adv-x="504" d="M83 0v667h57v-615h323v-52h-380z" />
+<glyph unicode="M" horiz-adv-x="790" d="M83 0v667h85l227 -550l226 550h86v-667h-58v589l-243 -589h-22l-244 589v-589h-57z" />
+<glyph unicode="N" horiz-adv-x="699" d="M83 0v667h58l418 -565v565h57v-667h-56l-420 573v-573h-57z" />
+<glyph unicode="O" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q144 0 234 -98t90 -247t-90 -247t-234 -98q-145 0 -234.5 98t-89.5 247zM118 333q0 -128 72 -210.5t192 -82.5q118 0 191 82.5t73 210.5q0 129 -72.5 211t-191.5 82q-120 0 -192 -82t-72 -211z" />
+<glyph unicode="P" d="M83 0v667h250q93 0 147 -56.5t54 -138.5t-54.5 -138.5t-146.5 -56.5h-193v-277h-57zM140 329h187q66 0 106.5 40t40.5 103t-40.5 103t-106.5 40h-187v-286z" />
+<glyph unicode="Q" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q144 0 234 -98t90 -247q0 -153 -95 -251l70 -73l-39 -36l-71 73q-80 -58 -189 -58q-145 0 -234.5 98t-89.5 247zM118 333q0 -128 72 -210.5t192 -82.5q86 0 151 46l-103 107l40 37l103 -108q73 84 73 211q0 129 -72.5 211t-191.5 82 q-120 0 -192 -82t-72 -211z" />
+<glyph unicode="R" horiz-adv-x="594" d="M83 0v667h249q88 0 145.5 -53t57.5 -142q0 -87 -53.5 -138t-131.5 -54l193 -280h-69l-187 276h-147v-276h-57zM140 328h187q66 0 107 40.5t41 103.5t-41 103t-107 40h-187v-287z" />
+<glyph unicode="S" horiz-adv-x="581" d="M46 94l37 43q83 -97 208 -97q93 0 134.5 40.5t41.5 92.5q0 40 -22 67.5t-57.5 42.5t-78 27t-85 25.5t-78 32t-57.5 52t-22 80.5q0 80 63 129t156 49q143 0 226 -94l-38 -42q-70 84 -191 84q-67 0 -111.5 -34.5t-44.5 -88.5q0 -34 22 -58.5t57.5 -38t78 -25t85 -26 t78 -34.5t57.5 -56.5t22 -87.5q0 -76 -57 -132.5t-180 -56.5q-157 0 -244 106z" />
+<glyph unicode="T" horiz-adv-x="564" d="M35 615v52h494v-52h-218v-615h-58v615h-218z" />
+<glyph unicode="U" horiz-adv-x="686" d="M83 256v411h58v-410q0 -102 52.5 -159.5t149.5 -57.5q98 0 150 57t52 160v410h58v-411q0 -126 -66.5 -197t-193.5 -71q-126 0 -193 71.5t-67 196.5z" />
+<glyph unicode="V" horiz-adv-x="647" d="M15 667h66l242 -603l243 603h66l-273 -667h-71z" />
+<glyph unicode="W" horiz-adv-x="867" d="M19 667h64l161 -587l164 587h52l163 -587l161 587h64l-190 -667h-64l-160 573l-160 -573h-64z" />
+<glyph unicode="X" horiz-adv-x="645" d="M18 0l269 342l-254 325h73l216 -283l217 283h72l-253 -324l268 -343h-71l-233 301l-232 -301h-72z" />
+<glyph unicode="Y" horiz-adv-x="618" d="M15 667h69l225 -328l225 328h69l-265 -382v-285h-58v285z" />
+<glyph unicode="Z" horiz-adv-x="581" d="M50 0v50l402 565h-402v52h474v-49l-402 -566h409v-52h-481z" />
+<glyph unicode="[" horiz-adv-x="228" d="M37 -190v868h174v-43h-130v-782h130v-43h-174z" />
+<glyph unicode="\" horiz-adv-x="282" d="M0 687h45l237 -707h-45z" />
+<glyph unicode="]" horiz-adv-x="228" d="M17 -147h130v782h-130v43h174v-868h-174v43z" />
+<glyph unicode="^" horiz-adv-x="428" d="M19 333l174 334h42l174 -334h-48l-147 293l-147 -293h-48z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-3 -40h570v-43h-570v43z" />
+<glyph unicode="`" horiz-adv-x="216" d="M0 700h62l154 -144h-44z" />
+<glyph unicode="a" horiz-adv-x="521" d="M55 149q0 75 50.5 117.5t118.5 42.5q102 0 164 -69v98q0 52 -37 81.5t-93 29.5q-89 0 -151 -71l-29 36q75 81 186 81q78 0 127 -39t49 -116v-340h-52v57q-63 -69 -164 -69q-67 0 -118 43.5t-51 117.5zM110 148q0 -52 36.5 -85.5t95.5 -33.5q95 0 146 66v106 q-52 67 -146 67q-59 0 -95.5 -34t-36.5 -86z" />
+<glyph unicode="b" d="M81 0v667h52v-262q64 90 168 90q97 0 156.5 -69.5t59.5 -184.5t-59.5 -184t-156.5 -69q-52 0 -96.5 25t-71.5 64v-77h-52zM133 121q22 -36 66 -61t93 -25q79 0 124 58t45 148q0 91 -45 149t-124 58q-48 0 -92.5 -26t-66.5 -62v-239z" />
+<glyph unicode="c" horiz-adv-x="494" d="M53 242q0 108 65 180.5t170 72.5q106 0 171 -82l-36 -32q-49 67 -132 67t-132.5 -58.5t-49.5 -147.5t49.5 -148t132.5 -59q82 0 132 68l36 -32q-65 -83 -171 -83q-105 0 -170 73t-65 181z" />
+<glyph unicode="d" d="M53 241q0 114 60 184t156 70q104 0 168 -90v262h53v-667h-53v77q-27 -39 -71.5 -64t-96.5 -25q-97 0 -156.5 69t-59.5 184zM109 241q0 -90 45.5 -148t123.5 -58q49 0 93 25t66 61v239q-22 37 -66 62.5t-93 25.5q-78 0 -123.5 -58.5t-45.5 -148.5z" />
+<glyph unicode="e" horiz-adv-x="567" d="M53 242q0 106 66.5 179.5t166.5 73.5q106 0 167 -73.5t61 -182.5v-14h-404q4 -82 55 -137t134 -55q96 0 158 67l27 -34q-75 -78 -189 -78q-106 0 -174 71t-68 183zM110 266h351q-1 70 -46.5 127t-129.5 57q-79 0 -125.5 -56.5t-49.5 -127.5z" />
+<glyph unicode="f" horiz-adv-x="265" d="M18 437v46h80v44q0 70 35 110t96 40q53 0 92 -34l-25 -36q-27 25 -62 25q-84 0 -84 -105v-44h98v-46h-98v-437h-52v437h-80z" />
+<glyph unicode="g" horiz-adv-x="570" d="M53 242q0 114 60 183.5t156 69.5q104 0 168 -90v78h53v-478q0 -104 -60.5 -152.5t-157.5 -48.5q-63 0 -106 15.5t-84 57.5l30 40q31 -37 68 -52.5t92 -15.5q72 0 118.5 38.5t46.5 116.5v76q-27 -39 -71.5 -64.5t-96.5 -25.5q-97 0 -156.5 68.5t-59.5 183.5zM109 242 q0 -90 45.5 -147.5t123.5 -57.5q49 0 93 25.5t66 62.5v235q-22 37 -66 62.5t-93 25.5q-78 0 -123.5 -58t-45.5 -148z" />
+<glyph unicode="h" horiz-adv-x="540" d="M81 0v667h52v-257q29 34 77 59.5t97 25.5q152 0 152 -155v-340h-52v329q0 66 -30 92.5t-87 26.5q-45 0 -89 -24t-68 -59v-365h-52z" />
+<glyph unicode="i" horiz-adv-x="214" d="M67 599q0 16 12 27.5t28 11.5q17 0 28.5 -11.5t11.5 -27.5q0 -17 -11.5 -28.5t-28.5 -11.5q-16 0 -28 12t-12 28zM81 0v483h52v-483h-52z" />
+<glyph unicode="j" horiz-adv-x="214" d="M-97 -159l23 41q31 -33 71 -33q38 0 61 22t23 67v545h52v-545q0 -66 -34 -100t-97 -34q-56 0 -99 37zM67 599q0 16 12 27.5t28 11.5q17 0 28.5 -11.5t11.5 -27.5q0 -17 -11.5 -28.5t-28.5 -11.5q-16 0 -28 12t-12 28z" />
+<glyph unicode="k" horiz-adv-x="505" d="M81 0v667h52v-460l285 276h69l-225 -218l224 -265h-70l-193 230l-90 -85v-145h-52z" />
+<glyph unicode="l" horiz-adv-x="214" d="M81 0v667h52v-667h-52z" />
+<glyph unicode="m" horiz-adv-x="789" d="M81 0v483h52v-73q18 29 63.5 57t92.5 28q53 0 85 -26t42 -65q22 36 67 63.5t93 27.5q132 0 132 -147v-348h-52v338q0 110 -97 110q-38 0 -77.5 -24t-60.5 -58v-366h-53v338q0 110 -97 110q-37 0 -76 -24.5t-62 -58.5v-365h-52z" />
+<glyph unicode="n" horiz-adv-x="540" d="M81 0v483h52v-73q29 34 77 59.5t97 25.5q152 0 152 -157v-338h-52v327q0 66 -30 93.5t-87 27.5q-45 0 -89 -24t-68 -59v-365h-52z" />
+<glyph unicode="o" d="M53 242q0 108 64 180.5t168 72.5q105 0 169 -72.5t64 -180.5t-64 -181t-169 -73q-104 0 -168 73t-64 181zM109 242q0 -85 47.5 -146t128.5 -61q82 0 129.5 60.5t47.5 146.5q0 85 -47.5 145.5t-129.5 60.5q-81 0 -128.5 -60.5t-47.5 -145.5z" />
+<glyph unicode="p" horiz-adv-x="567" d="M81 -184v667h52v-76q27 39 71.5 63.5t96.5 24.5q97 0 156.5 -68.5t59.5 -184.5q0 -115 -59.5 -184.5t-156.5 -69.5q-104 0 -168 90v-262h-52zM133 123q22 -36 66.5 -62t92.5 -26q79 0 124 58t45 149q0 90 -45 148t-124 58q-49 0 -93 -25t-66 -61v-239z" />
+<glyph unicode="q" horiz-adv-x="567" d="M50 242q0 115 59 184t156 69q53 0 97.5 -24.5t71.5 -63.5v76h52v-667h-52v262q-64 -90 -169 -90q-96 0 -155.5 69.5t-59.5 184.5zM106 242q0 -91 45 -149t124 -58q48 0 92.5 26t66.5 62v239q-22 36 -66 61t-93 25q-79 0 -124 -58t-45 -148z" />
+<glyph unicode="r" horiz-adv-x="317" d="M81 0v483h52v-83q71 93 163 93v-57q-9 2 -26 2q-36 0 -78 -27t-59 -59v-352h-52z" />
+<glyph unicode="s" horiz-adv-x="459" d="M39 64l31 39q25 -31 66 -51t90 -20q59 0 94 27.5t35 70.5q0 36 -31.5 57.5t-76 32t-89.5 23t-76.5 41.5t-31.5 77q0 57 46.5 95.5t125.5 38.5q109 0 173 -71l-29 -37q-47 64 -144 64q-55 0 -88 -25t-33 -63q0 -33 31.5 -52t76 -29.5t89.5 -23.5t76.5 -45t31.5 -83 q0 -62 -47 -102t-134 -40q-117 0 -186 76z" />
+<glyph unicode="t" horiz-adv-x="275" d="M11 437v46h80v132h53v-132h98v-46h-98v-336q0 -66 50 -66q33 0 54 23l20 -40q-32 -30 -82 -30q-95 0 -95 105v344h-80z" />
+<glyph unicode="u" horiz-adv-x="540" d="M81 143v340h52v-328q0 -67 30 -93.5t87 -26.5q45 0 88.5 23t68.5 57v368h52v-483h-52v71q-33 -36 -79 -59.5t-95 -23.5q-76 0 -114 37.5t-38 117.5z" />
+<glyph unicode="v" horiz-adv-x="481" d="M7 483h58l176 -422l174 422h59l-204 -483h-59z" />
+<glyph unicode="w" horiz-adv-x="719" d="M17 483h56l128 -410l136 410h45l136 -410l128 410h56l-157 -483h-50l-135 413l-136 -413h-50z" />
+<glyph unicode="x" horiz-adv-x="479" d="M17 0l191 248l-180 235h62l150 -199l149 199h62l-180 -235l191 -248h-62l-160 213l-161 -213h-62z" />
+<glyph unicode="y" horiz-adv-x="481" d="M7 483h58l176 -422l174 422h59l-250 -589q-38 -90 -124 -90q-28 0 -51 7l9 48q18 -8 42 -8q49 0 73 59l38 86z" />
+<glyph unicode="z" horiz-adv-x="469" d="M56 0v43l286 394h-286v46h353v-42l-289 -395h293v-46h-357z" />
+<glyph unicode="{" horiz-adv-x="249" d="M6 224v40q25 0 38.5 20.5t13.5 50.5v219q0 54 34 89t78 35h62v-43h-62q-28 0 -47.5 -23t-19.5 -58v-222q0 -68 -46 -88q46 -20 46 -88v-222q0 -35 19.5 -58t47.5 -23h62v-43h-62q-44 0 -78 34.5t-34 88.5v220q0 30 -13.5 50.5t-38.5 20.5z" />
+<glyph unicode="|" horiz-adv-x="208" d="M83 -20v707h43v-707h-43z" />
+<glyph unicode="}" horiz-adv-x="249" d="M17 -147h62q28 0 47.5 23t19.5 58v222q0 68 46 88q-46 20 -46 88v222q0 35 -19.5 58t-47.5 23h-62v43h62q44 0 78 -35t34 -89v-219q0 -30 13.5 -50.5t38.5 -20.5v-40q-25 0 -38.5 -20.5t-13.5 -50.5v-220q0 -54 -34 -88.5t-78 -34.5h-62v43z" />
+<glyph unicode="~" horiz-adv-x="499" d="M27 433q11 106 41 169t93 63q34 0 57 -20.5t34.5 -49.5t21.5 -57.5t25.5 -49t38.5 -20.5q72 0 91 199l43 -5q-5 -50 -13 -88t-23 -73.5t-39.5 -54t-58.5 -18.5t-57 20t-34.5 49t-21.5 58t-25.5 49t-38.5 20q-72 0 -90 -197z" />
+<glyph unicode="&#xa1;" horiz-adv-x="219" d="M66 449q0 17 12.5 30t30.5 13t31.5 -13t13.5 -30q0 -18 -13.5 -31t-31.5 -13t-30.5 13t-12.5 31zM76 -184l13 493h41l14 -493h-68z" />
+<glyph unicode="&#xa2;" horiz-adv-x="494" d="M53 242q0 99 56 169.5t148 81.5v72h45v-70q95 -5 157 -82l-36 -32q-47 62 -121 67v-413q73 3 121 68l36 -32q-61 -78 -157 -83v-88h-45v90q-92 11 -148 81.5t-56 170.5zM109 242q0 -79 39.5 -135.5t108.5 -68.5v407q-69 -13 -108.5 -68.5t-39.5 -134.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="505" d="M18 267v42h125q-3 4 -20.5 22.5t-22.5 25t-18 24.5t-18 31t-9.5 32.5t-4.5 40.5q0 79 62 135.5t154 56.5q62 0 112.5 -29t75.5 -79l-46 -29q-15 35 -53 61t-85 26q-67 0 -113 -38.5t-46 -104.5q0 -29 10.5 -56.5t22 -42.5t32.5 -39.5t30 -36.5h151v-42h-126 q10 -27 10 -53q0 -81 -81 -140q25 9 54 9q34 0 79.5 -22t74.5 -22q32 0 60 13t40 28l27 -47q-49 -47 -129 -47q-47 0 -93 23.5t-86 23.5q-42 0 -118 -40l-22 48q69 29 105.5 72.5t36.5 92.5q0 29 -16 61h-155z" />
+<glyph unicode="&#xa4;" horiz-adv-x="588" d="M29 565l34 33l80 -80q61 51 150 51t151 -51l79 79l34 -33l-80 -80q48 -63 48 -151t-48 -150l80 -79l-34 -33l-78 77q-61 -52 -152 -52q-88 0 -151 53l-78 -78l-34 33l79 79q-47 64 -47 150q0 88 48 150zM116 333q0 -78 48 -133t129 -55q82 0 129.5 55t47.5 133 q0 77 -47.5 132t-129.5 55q-81 0 -129 -55t-48 -132z" />
+<glyph unicode="&#xa5;" horiz-adv-x="618" d="M15 667h69l225 -328l225 328h69l-236 -340h230v-42h-259v-118h259v-41h-259v-126h-58v126h-258v41h258v118h-258v42h229z" />
+<glyph unicode="&#xa6;" horiz-adv-x="208" d="M83 -20v316h43v-316h-43zM83 371v316h43v-316h-43z" />
+<glyph unicode="&#xa7;" horiz-adv-x="461" d="M39 -4l31 36q58 -72 155 -72q57 0 93.5 27t36.5 73q0 37 -31.5 59t-76 32.5t-89.5 23.5t-76.5 42t-31.5 77q0 51 34 83.5t89 45.5q-60 18 -91.5 46t-31.5 76q0 55 46 93.5t126 38.5q112 0 172 -72l-28 -33q-49 64 -143 64q-54 0 -88 -25.5t-34 -66.5q0 -34 31.5 -53 t76 -29t89.5 -22.5t76.5 -44.5t31.5 -84q0 -87 -96 -128q96 -36 96 -121q0 -67 -49.5 -105t-131.5 -38q-113 0 -186 77zM101 297q0 -22 11.5 -38t33.5 -26t45.5 -17t55.5 -15q3 0 5 -0.5t4.5 -1t4.5 -1.5q93 40 93 109q0 23 -10.5 40t-31 28.5t-38.5 18t-45 13.5 q-71 -19 -99.5 -45.5t-28.5 -64.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="262" d="M-8 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM196 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M44 334q0 143 101 244t244 101t244 -101t101 -244t-101 -244t-244 -101t-244 101.5t-101 243.5zM72 334q0 -130 93 -223.5t224 -93.5t224 93t93 224t-93 224t-224 93t-224 -93t-93 -224zM182 336q0 91 60.5 152t147.5 61q90 0 145 -65l-23 -22q-19 26 -52.5 41.5 t-69.5 15.5q-71 0 -123 -51.5t-52 -132.5q0 -79 52 -132t123 -53q36 0 70 16t53 42l22 -22q-57 -66 -145 -66q-87 0 -147.5 62.5t-60.5 153.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="375" d="M46 423q0 48 33.5 75.5t78.5 27.5q68 0 110 -44v61q0 33 -25 51.5t-60 18.5q-62 0 -100 -48l-22 28q51 55 127 55q54 0 88 -26t34 -79v-217h-42v37q-42 -45 -110 -45q-45 0 -78.5 28.5t-33.5 76.5zM89 423q0 -33 24 -54t61 -21q61 0 94 42v65q-32 41 -94 41 q-37 0 -61 -20.5t-24 -52.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="402" d="M30 243l160 177h57l-160 -177l160 -180h-57zM155 243l160 177h57l-160 -177l160 -180h-57z" />
+<glyph unicode="&#xac;" horiz-adv-x="499" d="M29 411v42h438v-237h-43v195h-395z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M30 218v48h240v-48h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M35 465q0 88 62 150t150 62q89 0 150.5 -61.5t61.5 -150.5q0 -88 -62 -150t-150 -62t-150 62t-62 150zM62 465q0 -76 54.5 -130.5t130.5 -54.5t130.5 54.5t54.5 130.5q0 77 -54 131t-131 54t-131 -54t-54 -131zM167 343v243h99q32 0 53.5 -20.5t21.5 -53.5 q0 -35 -22.5 -53.5t-39.5 -18.5l65 -97h-38l-63 96h-46v-96h-30zM197 468h69q16 0 30 13t14 31q0 19 -13.5 32.5t-30.5 13.5h-69v-90z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M0 577v37h363v-37h-363z" />
+<glyph unicode="&#xb0;" horiz-adv-x="282" d="M25 560q0 48 33.5 82.5t81.5 34.5q49 0 83 -34.5t34 -82.5t-34 -81.5t-83 -33.5q-48 0 -81.5 33.5t-33.5 81.5zM64 560q0 -32 22 -54t54 -22t55 22.5t23 53.5q0 32 -23 55t-55 23q-31 0 -53.5 -23t-22.5 -55z" />
+<glyph unicode="&#xb1;" horiz-adv-x="496" d="M29 0v41h438v-41h-438zM29 323v41h197v212h45v-212h196v-41h-196v-218h-45v218h-197z" />
+<glyph unicode="&#xb2;" horiz-adv-x="384" d="M52 421v35q122 87 178.5 144.5t56.5 109.5q0 40 -27 59.5t-66 19.5q-75 0 -113 -52l-27 28q48 62 141 62q55 0 95.5 -29t40.5 -86q0 -60 -54.5 -119t-158.5 -134h215v-38h-281z" />
+<glyph unicode="&#xb3;" horiz-adv-x="384" d="M46 479l26 28q42 -55 117 -55q47 0 73.5 20.5t26.5 57.5q0 40 -30.5 59t-79.5 19q-32 0 -38 -1v39q7 -1 38 -1q46 0 75 17.5t29 54.5q0 34 -27.5 53t-68.5 19q-65 0 -111 -50l-25 27q52 61 139 61q60 0 98.5 -28.5t38.5 -77.5q0 -41 -27.5 -64.5t-61.5 -28.5 q34 -3 65 -28.5t31 -70.5q0 -51 -39 -83t-105 -32q-49 0 -87 18t-57 47z" />
+<glyph unicode="&#xb4;" horiz-adv-x="216" d="M0 556l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xb5;" horiz-adv-x="554" d="M81 -184v667h52v-328q0 -122 118 -122q44 0 87.5 24t68.5 58v368h52v-384q0 -64 49 -64q12 0 20 2l4 -46q-12 -3 -31 -3q-81 0 -93 86q-29 -37 -72.5 -61.5t-88.5 -24.5q-84 0 -114 56v-228h-52z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M27 495q0 71 50.5 121.5t121.5 50.5h169v-767h-38v730h-93v-730h-38v423q-71 0 -121.5 50.5t-50.5 121.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="219" d="M65 245q0 17 13 30t31 13t31.5 -13t13.5 -30q0 -18 -13.5 -31t-31.5 -13t-31 13t-13 31z" />
+<glyph unicode="&#xb8;" horiz-adv-x="198" d="M0 -160l16 32q35 -28 80 -28q28 0 46.5 12t18.5 33q0 39 -41 39q-25 0 -40 -17l-28 16l31 84h38l-26 -68q15 12 37 12q29 0 47.5 -18t18.5 -48q0 -35 -29 -56.5t-72 -21.5q-63 0 -97 29z" />
+<glyph unicode="&#xb9;" horiz-adv-x="214" d="M17 722l97 99h40v-400h-46v341l-64 -69z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M44 483q0 70 44 117.5t114 47.5q71 0 115 -47t44 -118q0 -70 -44 -117.5t-115 -47.5q-70 0 -114 47.5t-44 117.5zM89 483q0 -55 30.5 -91.5t82.5 -36.5q53 0 84 36.5t31 91.5q0 54 -31 90.5t-84 36.5q-52 0 -82.5 -36t-30.5 -91z" />
+<glyph unicode="&#xbb;" horiz-adv-x="402" d="M30 63l160 180l-160 177h57l160 -177l-160 -180h-57zM155 63l160 180l-160 177h57l160 -177l-160 -180h-57z" />
+<glyph unicode="&#xbc;" horiz-adv-x="742" d="M17 568l97 99h40v-400h-46v341l-64 -69zM96 0l426 667h46l-427 -667h-45zM401 107v35l179 258h61v-256h60v-37h-60v-107h-44v107h-196zM447 144h150v215z" />
+<glyph unicode="&#xbd;" horiz-adv-x="781" d="M17 568l97 99h40v-400h-46v341l-64 -69zM96 0l426 667h46l-427 -667h-45zM449 0v35q122 87 178.5 144.5t56.5 109.5q0 40 -27 59.5t-66 19.5q-75 0 -113 -52l-27 28q48 62 141 62q55 0 95.5 -29t40.5 -86q0 -60 -54.5 -119t-158.5 -134h215v-38h-281z" />
+<glyph unicode="&#xbe;" horiz-adv-x="859" d="M46 325l26 28q42 -55 117 -55q47 0 73.5 20.5t26.5 57.5q0 40 -30.5 59t-79.5 19q-32 0 -38 -1v39q7 -1 38 -1q46 0 75 17.5t29 54.5q0 34 -27.5 53t-68.5 19q-65 0 -111 -50l-25 27q52 61 139 61q60 0 98.5 -28.5t38.5 -77.5q0 -41 -27.5 -64.5t-61.5 -28.5 q34 -3 65 -28.5t31 -70.5q0 -51 -39 -83t-105 -32q-49 0 -87 18t-57 47zM213 0l426 667h46l-427 -667h-45zM518 107v35l179 258h61v-256h60v-37h-60v-107h-44v107h-196zM564 144h150v215z" />
+<glyph unicode="&#xbf;" horiz-adv-x="393" d="M36 -43q0 42 21 76t51 56t60 42t51 44.5t21 53.5t-30 50l40 25q42 -34 42 -79q0 -36 -20 -65t-49 -49t-58 -39.5t-49 -47t-20 -61.5q0 -46 36 -77t99 -31q61 0 101.5 23t73.5 67l36 -37q-77 -105 -215 -105q-87 0 -139 44.5t-52 109.5zM197 448q0 18 13 31t31 13 t31.5 -13t13.5 -31q0 -17 -13.5 -30t-31.5 -13t-31 13t-13 30z" />
+<glyph unicode="&#xc0;" horiz-adv-x="647" d="M15 0l273 667h71l273 -667h-66l-66 164h-353l-66 -164h-66zM162 867h62l154 -144h-44zM166 216h315l-158 390z" />
+<glyph unicode="&#xc1;" horiz-adv-x="647" d="M15 0l273 667h71l273 -667h-66l-66 164h-353l-66 -164h-66zM166 216h315l-158 390zM270 723l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xc2;" horiz-adv-x="647" d="M15 0l273 667h71l273 -667h-66l-66 164h-353l-66 -164h-66zM166 216h315l-158 390zM200 723l97 144h54l99 -144h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#xc3;" horiz-adv-x="647" d="M15 0l273 667h71l273 -667h-66l-66 164h-353l-66 -164h-66zM166 216h315l-158 390zM170 727q0 58 24.5 96t68.5 38q25 0 43.5 -16t27 -35t23 -35t31.5 -16q24 0 38.5 24t14.5 72h36q0 -59 -24 -96.5t-68 -37.5q-25 0 -43.5 16t-27.5 35.5t-23.5 35.5t-31.5 16 q-24 0 -39 -24t-15 -73h-35z" />
+<glyph unicode="&#xc4;" horiz-adv-x="647" d="M15 0l273 667h71l273 -667h-66l-66 164h-353l-66 -164h-66zM166 216h315l-158 390zM185 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM389 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xc5;" horiz-adv-x="647" d="M15 0l273 667h71l273 -667h-66l-66 164h-353l-66 -164h-66zM166 216h315l-158 390zM229 787q0 39 28 67.5t68 28.5q39 0 66.5 -28.5t27.5 -67.5q0 -40 -27.5 -68t-66.5 -28q-40 0 -68 28t-28 68zM261 787q0 -26 19 -45t45 -19t44.5 19t18.5 45t-18.5 45t-44.5 19t-45 -19 t-19 -45z" />
+<glyph unicode="&#xc6;" horiz-adv-x="939" d="M14 0l421 667h444v-52h-365v-247h358v-52h-358v-264h365v-52h-423v164h-274l-102 -164h-66zM211 216h245v390z" />
+<glyph unicode="&#xc7;" horiz-adv-x="672" d="M58 333q0 152 97 248.5t241 96.5q148 0 243 -118l-48 -31q-32 44 -84 70.5t-111 26.5q-119 0 -198.5 -82t-79.5 -211q0 -128 79.5 -210.5t198.5 -82.5q59 0 111 26.5t84 70.5l48 -30q-94 -116 -236 -119l-15 -41q15 12 37 12q29 0 47.5 -18t18.5 -48q0 -35 -29 -56.5 t-72 -21.5q-63 0 -97 29l16 32q35 -28 80 -28q28 0 46.5 12t18.5 33q0 39 -41 39q-25 0 -40 -17l-28 16l21 58q-133 11 -220.5 106t-87.5 238z" />
+<glyph unicode="&#xc8;" horiz-adv-x="564" d="M83 0v667h423v-52h-366v-247h359v-52h-359v-264h366v-52h-423zM133 867h62l154 -144h-44z" />
+<glyph unicode="&#xc9;" horiz-adv-x="564" d="M83 0v667h423v-52h-366v-247h359v-52h-359v-264h366v-52h-423zM240 723l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xca;" horiz-adv-x="564" d="M83 0v667h423v-52h-366v-247h359v-52h-359v-264h366v-52h-423zM168 723l97 144h54l99 -144h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#xcb;" horiz-adv-x="564" d="M83 0v667h423v-52h-366v-247h359v-52h-359v-264h366v-52h-423zM154 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM358 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xcc;" horiz-adv-x="223" d="M-50 867h62l154 -144h-44zM83 0v667h57v-667h-57z" />
+<glyph unicode="&#xcd;" horiz-adv-x="223" d="M58 723l154 144h62l-172 -144h-44zM83 0v667h57v-667h-57z" />
+<glyph unicode="&#xce;" horiz-adv-x="223" d="M-12 723l97 144h54l99 -144h-40l-86 113l-85 -113h-39zM83 0v667h57v-667h-57z" />
+<glyph unicode="&#xcf;" horiz-adv-x="223" d="M-27 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM83 0v667h57v-667h-57zM177 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xd0;" horiz-adv-x="721" d="M11 309v44h102v314h213q151 0 244 -96.5t93 -237.5q0 -142 -92.5 -237.5t-244.5 -95.5h-213v309h-102zM170 52h156q128 0 202.5 80t74.5 201t-74 201.5t-203 80.5h-156v-262h179v-44h-179v-257z" />
+<glyph unicode="&#xd1;" horiz-adv-x="699" d="M83 0v667h58l418 -565v565h57v-667h-56l-420 573v-573h-57zM195 727q0 58 24.5 96t68.5 38q25 0 43.5 -16t27 -35t23 -35t31.5 -16q24 0 38.5 24t14.5 72h36q0 -59 -24 -96.5t-68 -37.5q-25 0 -43.5 16t-27.5 35.5t-23.5 35.5t-31.5 16q-24 0 -39 -24t-15 -73h-35z" />
+<glyph unicode="&#xd2;" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q144 0 234 -98t90 -247t-90 -247t-234 -98q-145 0 -234.5 98t-89.5 247zM118 333q0 -128 72 -210.5t192 -82.5q118 0 191 82.5t73 210.5q0 129 -72.5 211t-191.5 82q-120 0 -192 -82t-72 -211zM221 867h62l154 -144h-44z" />
+<glyph unicode="&#xd3;" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q144 0 234 -98t90 -247t-90 -247t-234 -98q-145 0 -234.5 98t-89.5 247zM118 333q0 -128 72 -210.5t192 -82.5q118 0 191 82.5t73 210.5q0 129 -72.5 211t-191.5 82q-120 0 -192 -82t-72 -211zM328 723l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xd4;" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q144 0 234 -98t90 -247t-90 -247t-234 -98q-145 0 -234.5 98t-89.5 247zM118 333q0 -128 72 -210.5t192 -82.5q118 0 191 82.5t73 210.5q0 129 -72.5 211t-191.5 82q-120 0 -192 -82t-72 -211zM259 723l97 144h54l99 -144h-40l-86 113 l-85 -113h-39z" />
+<glyph unicode="&#xd5;" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q144 0 234 -98t90 -247t-90 -247t-234 -98q-145 0 -234.5 98t-89.5 247zM118 333q0 -128 72 -210.5t192 -82.5q118 0 191 82.5t73 210.5q0 129 -72.5 211t-191.5 82q-120 0 -192 -82t-72 -211zM229 727q0 58 24.5 96t68.5 38 q25 0 43.5 -16t27 -35t23 -35t31.5 -16q24 0 38.5 24t14.5 72h36q0 -59 -24 -96.5t-68 -37.5q-25 0 -43.5 16t-27.5 35.5t-23.5 35.5t-31.5 16q-24 0 -39 -24t-15 -73h-35z" />
+<glyph unicode="&#xd6;" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q144 0 234 -98t90 -247t-90 -247t-234 -98q-145 0 -234.5 98t-89.5 247zM118 333q0 -128 72 -210.5t192 -82.5q118 0 191 82.5t73 210.5q0 129 -72.5 211t-191.5 82q-120 0 -192 -82t-72 -211zM242 768q0 15 11 26t26 11t26 -11t11 -26 t-11 -26t-26 -11t-26 11t-11 26zM446 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xd7;" horiz-adv-x="496" d="M67 182l152 152l-152 152l30 29l151 -152l152 152l29 -29l-152 -152l152 -152l-29 -29l-152 152l-151 -152z" />
+<glyph unicode="&#xd8;" horiz-adv-x="764" d="M58 333q0 149 89.5 247t234.5 98q89 0 164 -43l20 32h52l-36 -56q59 -47 91.5 -119.5t32.5 -158.5q0 -149 -90 -247t-234 -98q-93 0 -168 44l-20 -32h-51l36 56q-58 47 -89.5 119t-31.5 158zM118 333q0 -147 91 -230l308 487q-59 36 -135 36q-120 0 -192 -82t-72 -211z M243 77q60 -37 139 -37q118 0 191 82.5t73 210.5q0 149 -93 231z" />
+<glyph unicode="&#xd9;" horiz-adv-x="686" d="M83 256v411h58v-410q0 -102 52.5 -159.5t149.5 -57.5q98 0 150 57t52 160v410h58v-411q0 -126 -66.5 -197t-193.5 -71q-126 0 -193 71.5t-67 196.5zM182 867h62l154 -144h-44z" />
+<glyph unicode="&#xda;" horiz-adv-x="686" d="M83 256v411h58v-410q0 -102 52.5 -159.5t149.5 -57.5q98 0 150 57t52 160v410h58v-411q0 -126 -66.5 -197t-193.5 -71q-126 0 -193 71.5t-67 196.5zM289 723l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xdb;" horiz-adv-x="686" d="M83 256v411h58v-410q0 -102 52.5 -159.5t149.5 -57.5q98 0 150 57t52 160v410h58v-411q0 -126 -66.5 -197t-193.5 -71q-126 0 -193 71.5t-67 196.5zM221 723l97 144h54l99 -144h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#xdc;" horiz-adv-x="686" d="M83 256v411h58v-410q0 -102 52.5 -159.5t149.5 -57.5q98 0 150 57t52 160v410h58v-411q0 -126 -66.5 -197t-193.5 -71q-126 0 -193 71.5t-67 196.5zM205 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM409 768q0 15 11 26t26 11t26 -11t11 -26 t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xdd;" horiz-adv-x="618" d="M15 667h69l225 -328l225 328h69l-265 -382v-285h-58v285zM255 723l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xde;" d="M83 0v667h57v-124h193q93 0 147 -57t54 -139t-54.5 -138t-146.5 -56h-193v-153h-57zM140 205h187q66 0 106.5 39.5t40.5 102.5t-41 103.5t-106 40.5h-187v-286z" />
+<glyph unicode="&#xdf;" horiz-adv-x="578" d="M81 0v509q0 72 48 120t126 48q66 0 113.5 -32.5t47.5 -85.5q0 -30 -16.5 -53t-39.5 -38t-46 -29t-39.5 -33.5t-16.5 -44.5q0 -33 31 -51.5t75 -28.5t87.5 -22.5t74.5 -44.5t31 -83q0 -60 -46 -101.5t-134 -41.5q-65 0 -105.5 20t-75.5 57l31 38q54 -71 150 -71 q62 0 95.5 28.5t33.5 69.5q0 36 -31 57.5t-75 32.5t-87.5 23.5t-74.5 41.5t-31 77q0 37 24.5 66t53.5 44t53.5 37t24.5 46q0 34 -33.5 54.5t-74.5 20.5q-51 0 -86.5 -33t-35.5 -88v-509h-52z" />
+<glyph unicode="&#xe0;" horiz-adv-x="521" d="M55 149q0 75 50.5 117.5t118.5 42.5q102 0 164 -69v98q0 52 -37 81.5t-93 29.5q-89 0 -151 -71l-29 36q75 81 186 81q78 0 127 -39t49 -116v-340h-52v57q-63 -69 -164 -69q-67 0 -118 43.5t-51 117.5zM102 700h62l154 -144h-44zM110 148q0 -52 36.5 -85.5t95.5 -33.5 q95 0 146 66v106q-52 67 -146 67q-59 0 -95.5 -34t-36.5 -86z" />
+<glyph unicode="&#xe1;" horiz-adv-x="521" d="M55 149q0 75 50.5 117.5t118.5 42.5q102 0 164 -69v98q0 52 -37 81.5t-93 29.5q-89 0 -151 -71l-29 36q75 81 186 81q78 0 127 -39t49 -116v-340h-52v57q-63 -69 -164 -69q-67 0 -118 43.5t-51 117.5zM110 148q0 -52 36.5 -85.5t95.5 -33.5q95 0 146 66v106 q-52 67 -146 67q-59 0 -95.5 -34t-36.5 -86zM210 556l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xe2;" horiz-adv-x="521" d="M55 149q0 75 50.5 117.5t118.5 42.5q102 0 164 -69v98q0 52 -37 81.5t-93 29.5q-89 0 -151 -71l-29 36q75 81 186 81q78 0 127 -39t49 -116v-340h-52v57q-63 -69 -164 -69q-67 0 -118 43.5t-51 117.5zM110 148q0 -52 36.5 -85.5t95.5 -33.5q95 0 146 66v106 q-52 67 -146 67q-59 0 -95.5 -34t-36.5 -86zM140 556l97 144h54l99 -144h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#xe3;" horiz-adv-x="521" d="M55 149q0 75 50.5 117.5t118.5 42.5q102 0 164 -69v98q0 52 -37 81.5t-93 29.5q-89 0 -151 -71l-29 36q75 81 186 81q78 0 127 -39t49 -116v-340h-52v57q-63 -69 -164 -69q-67 0 -118 43.5t-51 117.5zM110 148q0 -52 36.5 -85.5t95.5 -33.5q95 0 146 66v106 q-52 67 -146 67q-59 0 -95.5 -34t-36.5 -86zM110 560q0 58 24.5 96t68.5 38q25 0 43.5 -16t27 -35t23 -35t31.5 -16q24 0 38.5 24t14.5 72h36q0 -59 -24 -96.5t-68 -37.5q-25 0 -43.5 16t-27.5 35.5t-23.5 35.5t-31.5 16q-24 0 -39 -24t-15 -73h-35z" />
+<glyph unicode="&#xe4;" horiz-adv-x="521" d="M55 149q0 75 50.5 117.5t118.5 42.5q102 0 164 -69v98q0 52 -37 81.5t-93 29.5q-89 0 -151 -71l-29 36q75 81 186 81q78 0 127 -39t49 -116v-340h-52v57q-63 -69 -164 -69q-67 0 -118 43.5t-51 117.5zM110 148q0 -52 36.5 -85.5t95.5 -33.5q95 0 146 66v106 q-52 67 -146 67q-59 0 -95.5 -34t-36.5 -86zM123 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM327 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xe5;" horiz-adv-x="521" d="M55 149q0 75 50.5 117.5t118.5 42.5q102 0 164 -69v98q0 52 -37 81.5t-93 29.5q-89 0 -151 -71l-29 36q75 81 186 81q78 0 127 -39t49 -116v-340h-52v57q-63 -69 -164 -69q-67 0 -118 43.5t-51 117.5zM110 148q0 -52 36.5 -85.5t95.5 -33.5q95 0 146 66v106 q-52 67 -146 67q-59 0 -95.5 -34t-36.5 -86zM167 644q0 39 28 67.5t68 28.5q39 0 66.5 -28.5t27.5 -67.5q0 -40 -27.5 -68t-66.5 -28q-40 0 -68 28t-28 68zM199 644q0 -26 19 -45t45 -19t44.5 19t18.5 45t-18.5 45t-44.5 19t-45 -19t-19 -45z" />
+<glyph unicode="&#xe6;" horiz-adv-x="897" d="M55 149q0 75 52 117.5t127 42.5q111 0 179 -67v96q0 53 -38.5 82t-102.5 29q-97 0 -165 -71l-29 36q75 81 202 81q63 0 111.5 -27.5t58.5 -87.5q26 51 72.5 83t107.5 32q101 0 157.5 -73t56.5 -183v-14h-379q4 -82 51 -137t123 -55q89 0 148 67l27 -34q-72 -78 -175 -78 q-67 0 -118 33t-78 96q-23 -59 -75.5 -94t-119.5 -35q-84 0 -138.5 43t-54.5 118zM110 151q0 -52 39.5 -85t104.5 -33q69 0 114 45.5t45 105.5v16q-57 68 -159 68q-65 0 -104.5 -33t-39.5 -84zM465 266h326q0 71 -42 127.5t-121 56.5q-73 0 -116.5 -57t-46.5 -127z" />
+<glyph unicode="&#xe7;" horiz-adv-x="494" d="M53 242q0 108 65 180.5t170 72.5q106 0 171 -82l-36 -32q-49 67 -132 67t-132.5 -58.5t-49.5 -147.5t49.5 -148t132.5 -59q82 0 132 68l36 -32q-61 -77 -156 -82l-16 -44q15 12 37 12q29 0 47.5 -18t18.5 -48q0 -35 -29 -56.5t-72 -21.5q-63 0 -97 29l16 32 q35 -28 80 -28q28 0 46.5 12t18.5 33q0 39 -41 39q-25 0 -40 -17l-28 16l22 60q-96 8 -154.5 79.5t-58.5 173.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="567" d="M53 242q0 106 66.5 179.5t166.5 73.5q106 0 167 -73.5t61 -182.5v-14h-404q4 -82 55 -137t134 -55q96 0 158 67l27 -34q-75 -78 -189 -78q-106 0 -174 71t-68 183zM110 266h351q-1 70 -46.5 127t-129.5 57q-79 0 -125.5 -56.5t-49.5 -127.5zM125 700h62l154 -144h-44z " />
+<glyph unicode="&#xe9;" horiz-adv-x="567" d="M53 242q0 106 66.5 179.5t166.5 73.5q106 0 167 -73.5t61 -182.5v-14h-404q4 -82 55 -137t134 -55q96 0 158 67l27 -34q-75 -78 -189 -78q-106 0 -174 71t-68 183zM110 266h351q-1 70 -46.5 127t-129.5 57q-79 0 -125.5 -56.5t-49.5 -127.5zM232 556l154 144h62 l-172 -144h-44z" />
+<glyph unicode="&#xea;" horiz-adv-x="567" d="M53 242q0 106 66.5 179.5t166.5 73.5q106 0 167 -73.5t61 -182.5v-14h-404q4 -82 55 -137t134 -55q96 0 158 67l27 -34q-75 -78 -189 -78q-106 0 -174 71t-68 183zM110 266h351q-1 70 -46.5 127t-129.5 57q-79 0 -125.5 -56.5t-49.5 -127.5zM163 556l97 144h54l99 -144 h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#xeb;" horiz-adv-x="567" d="M53 242q0 106 66.5 179.5t166.5 73.5q106 0 167 -73.5t61 -182.5v-14h-404q4 -82 55 -137t134 -55q96 0 158 67l27 -34q-75 -78 -189 -78q-106 0 -174 71t-68 183zM110 266h351q-1 70 -46.5 127t-129.5 57q-79 0 -125.5 -56.5t-49.5 -127.5zM148 601q0 15 11 26t26 11 t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM352 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xec;" horiz-adv-x="214" d="M-55 700h62l154 -144h-44zM81 0v483h52v-483h-52z" />
+<glyph unicode="&#xed;" horiz-adv-x="214" d="M53 556l154 144h62l-172 -144h-44zM81 0v483h52v-483h-52z" />
+<glyph unicode="&#xee;" horiz-adv-x="214" d="M-18 556l97 144h54l99 -144h-40l-86 113l-85 -113h-39zM81 0v483h52v-483h-52z" />
+<glyph unicode="&#xef;" horiz-adv-x="214" d="M-32 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM81 0v483h52v-483h-52zM172 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xf0;" d="M53 238q0 107 62 178t161 71q96 0 157 -87q-58 95 -161 173l-142 -63l-14 34l121 53q-19 13 -81 53l30 44q62 -38 108 -72l109 48l14 -33l-91 -40q192 -162 192 -353q0 -111 -64 -183.5t-169 -72.5q-103 0 -167.5 71t-64.5 179zM109 238q0 -84 47.5 -143.5t128.5 -59.5 q82 0 129.5 59.5t47.5 143.5q0 83 -47.5 142.5t-129.5 59.5q-81 0 -128.5 -59.5t-47.5 -142.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="540" d="M81 0v483h52v-73q29 34 77 59.5t97 25.5q152 0 152 -157v-338h-52v327q0 66 -30 93.5t-87 27.5q-45 0 -89 -24t-68 -59v-365h-52zM117 560q0 58 24.5 96t68.5 38q25 0 43.5 -16t27 -35t23 -35t31.5 -16q24 0 38.5 24t14.5 72h36q0 -59 -24 -96.5t-68 -37.5 q-25 0 -43.5 16t-27.5 35.5t-23.5 35.5t-31.5 16q-24 0 -39 -24t-15 -73h-35z" />
+<glyph unicode="&#xf2;" d="M53 242q0 108 64 180.5t168 72.5q105 0 169 -72.5t64 -180.5t-64 -181t-169 -73q-104 0 -168 73t-64 181zM109 242q0 -85 47.5 -146t128.5 -61q82 0 129.5 60.5t47.5 146.5q0 85 -47.5 145.5t-129.5 60.5q-81 0 -128.5 -60.5t-47.5 -145.5zM124 700h62l154 -144h-44z" />
+<glyph unicode="&#xf3;" d="M53 242q0 108 64 180.5t168 72.5q105 0 169 -72.5t64 -180.5t-64 -181t-169 -73q-104 0 -168 73t-64 181zM109 242q0 -85 47.5 -146t128.5 -61q82 0 129.5 60.5t47.5 146.5q0 85 -47.5 145.5t-129.5 60.5q-81 0 -128.5 -60.5t-47.5 -145.5zM232 556l154 144h62l-172 -144 h-44z" />
+<glyph unicode="&#xf4;" d="M53 242q0 108 64 180.5t168 72.5q105 0 169 -72.5t64 -180.5t-64 -181t-169 -73q-104 0 -168 73t-64 181zM109 242q0 -85 47.5 -146t128.5 -61q82 0 129.5 60.5t47.5 146.5q0 85 -47.5 145.5t-129.5 60.5q-81 0 -128.5 -60.5t-47.5 -145.5zM162 556l97 144h54l99 -144 h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#xf5;" d="M53 242q0 108 64 180.5t168 72.5q105 0 169 -72.5t64 -180.5t-64 -181t-169 -73q-104 0 -168 73t-64 181zM109 242q0 -85 47.5 -146t128.5 -61q82 0 129.5 60.5t47.5 146.5q0 85 -47.5 145.5t-129.5 60.5q-81 0 -128.5 -60.5t-47.5 -145.5zM132 560q0 58 24.5 96t68.5 38 q25 0 43.5 -16t27 -35t23 -35t31.5 -16q24 0 38.5 24t14.5 72h36q0 -59 -24 -96.5t-68 -37.5q-25 0 -43.5 16t-27.5 35.5t-23.5 35.5t-31.5 16q-24 0 -39 -24t-15 -73h-35z" />
+<glyph unicode="&#xf6;" d="M53 242q0 108 64 180.5t168 72.5q105 0 169 -72.5t64 -180.5t-64 -181t-169 -73q-104 0 -168 73t-64 181zM109 242q0 -85 47.5 -146t128.5 -61q82 0 129.5 60.5t47.5 146.5q0 85 -47.5 145.5t-129.5 60.5q-81 0 -128.5 -60.5t-47.5 -145.5zM147 601q0 15 11 26t26 11 t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM351 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M29 316v42h453v-42h-453zM216 138q0 16 12 28t28 12t27.5 -12t11.5 -28t-11.5 -27.5t-27.5 -11.5t-28 11.5t-12 27.5zM216 531q0 16 11.5 27.5t28.5 11.5q16 0 27.5 -11.5t11.5 -27.5t-11.5 -28t-27.5 -12t-28 12t-12 28z" />
+<glyph unicode="&#xf8;" d="M53 242q0 108 64 180.5t168 72.5q78 0 135 -43l24 31h44l-41 -53q71 -73 71 -188q0 -108 -64 -181t-169 -73q-81 0 -141 47l-26 -35h-44l45 59q-66 72 -66 183zM109 242q0 -82 43 -140l237 310q-44 36 -104 36q-81 0 -128.5 -60.5t-47.5 -145.5zM176 76q44 -41 109 -41 q82 0 129.5 60.5t47.5 146.5q0 85 -48 145z" />
+<glyph unicode="&#xf9;" horiz-adv-x="540" d="M81 143v340h52v-328q0 -67 30 -93.5t87 -26.5q45 0 88.5 23t68.5 57v368h52v-483h-52v71q-33 -36 -79 -59.5t-95 -23.5q-76 0 -114 37.5t-38 117.5zM108 700h62l154 -144h-44z" />
+<glyph unicode="&#xfa;" horiz-adv-x="540" d="M81 143v340h52v-328q0 -67 30 -93.5t87 -26.5q45 0 88.5 23t68.5 57v368h52v-483h-52v71q-33 -36 -79 -59.5t-95 -23.5q-76 0 -114 37.5t-38 117.5zM216 556l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xfb;" horiz-adv-x="540" d="M81 143v340h52v-328q0 -67 30 -93.5t87 -26.5q45 0 88.5 23t68.5 57v368h52v-483h-52v71q-33 -36 -79 -59.5t-95 -23.5q-76 0 -114 37.5t-38 117.5zM145 556l97 144h54l99 -144h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#xfc;" horiz-adv-x="540" d="M81 143v340h52v-328q0 -67 30 -93.5t87 -26.5q45 0 88.5 23t68.5 57v368h52v-483h-52v71q-33 -36 -79 -59.5t-95 -23.5q-76 0 -114 37.5t-38 117.5zM133 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM337 601q0 15 11 26t26 11t26 -11t11 -26 t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#xfd;" horiz-adv-x="481" d="M7 483h58l176 -422l174 422h59l-250 -589q-38 -90 -124 -90q-28 0 -51 7l9 48q18 -8 42 -8q49 0 73 59l38 86zM187 556l154 144h62l-172 -144h-44z" />
+<glyph unicode="&#xfe;" horiz-adv-x="567" d="M81 -184v851h52v-260q27 39 71.5 63.5t96.5 24.5q97 0 156.5 -68.5t59.5 -184.5q0 -115 -59.5 -184.5t-156.5 -69.5q-104 0 -168 90v-262h-52zM133 123q22 -36 66.5 -62t92.5 -26q79 0 124 58t45 149q0 90 -45 148t-124 58q-49 0 -93 -25t-66 -61v-239z" />
+<glyph unicode="&#xff;" horiz-adv-x="481" d="M7 483h58l176 -422l174 422h59l-250 -589q-38 -90 -124 -90q-28 0 -51 7l9 48q18 -8 42 -8q49 0 73 59l38 86zM102 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM306 601q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#x152;" horiz-adv-x="1115" d="M58 333q0 149 89 246.5t232 97.5q79 0 147.5 -39t105.5 -110v139h423v-52h-365v-247h358v-52h-358v-264h365v-52h-423v139q-37 -73 -105.5 -112t-147.5 -39q-143 0 -232 98t-89 247zM118 333q0 -129 72.5 -211t192.5 -82q86 0 151.5 46.5t97.5 134.5v225 q-31 88 -96.5 133.5t-152.5 45.5q-121 0 -193 -81.5t-72 -210.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="975" d="M53 242q0 108 64 180.5t168 72.5q46 0 83.5 -15.5t61.5 -40.5t38 -48t22 -47q19 55 70.5 103t133.5 48q106 0 167 -73.5t61 -182.5v-14h-403q3 -82 54 -137t134 -55q95 0 159 67l27 -34q-76 -78 -189 -78q-89 0 -142 46.5t-72 104.5q-10 -25 -23.5 -47.5t-37.5 -48 t-61.5 -40.5t-82.5 -15q-104 0 -168 73t-64 181zM109 242q0 -86 48 -147t128 -61q81 0 129 60.5t48 147.5q0 86 -48 146t-129 60q-80 0 -128 -60t-48 -146zM518 266h351q-1 70 -46.5 127t-129.5 57q-79 0 -125.5 -56.5t-49.5 -127.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="618" d="M15 667h69l225 -328l225 328h69l-265 -382v-285h-58v285zM173 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26zM377 768q0 15 11 26t26 11t26 -11t11 -26t-11 -26t-26 -11t-26 11t-11 26z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="250" d="M0 556l97 144h54l99 -144h-40l-86 113l-85 -113h-39z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="307" d="M0 560q0 58 24.5 96t68.5 38q25 0 43.5 -16t27 -35t23 -35t31.5 -16q24 0 38.5 24t14.5 72h36q0 -59 -24 -96.5t-68 -37.5q-25 0 -43.5 16t-27.5 35.5t-23.5 35.5t-31.5 16q-24 0 -39 -24t-15 -73h-35z" />
+<glyph unicode="&#x2000;" horiz-adv-x="441" />
+<glyph unicode="&#x2001;" horiz-adv-x="883" />
+<glyph unicode="&#x2002;" horiz-adv-x="441" />
+<glyph unicode="&#x2003;" horiz-adv-x="883" />
+<glyph unicode="&#x2004;" horiz-adv-x="294" />
+<glyph unicode="&#x2005;" horiz-adv-x="220" />
+<glyph unicode="&#x2006;" horiz-adv-x="147" />
+<glyph unicode="&#x2007;" horiz-adv-x="147" />
+<glyph unicode="&#x2008;" horiz-adv-x="110" />
+<glyph unicode="&#x2009;" horiz-adv-x="176" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M30 218v48h240v-48h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M30 218v48h240v-48h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M30 218v48h240v-48h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M30 218v48h533v-48h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M30 218v48h773v-48h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="219" d="M51 541q0 40 20.5 77t51.5 59l29 -24q-24 -16 -40 -42.5t-18 -50.5q0 2 10 2q18 0 29.5 -12t11.5 -30q0 -17 -12.5 -30t-30.5 -13q-21 0 -36 17t-15 47z" />
+<glyph unicode="&#x2019;" horiz-adv-x="219" d="M58 501q24 16 40 42.5t18 50.5q0 -2 -10 -2q-18 0 -29.5 12t-11.5 30q0 17 12.5 30t30.5 13q21 0 36 -17t15 -47q0 -40 -20.5 -77.5t-51.5 -58.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="219" d="M58 -98q24 16 40 42.5t18 49.5q-7 -1 -10 -1q-18 0 -29.5 12t-11.5 30q0 17 12.5 30t30.5 13q21 0 36 -17t15 -47q0 -40 -20.5 -77.5t-51.5 -59.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="360" d="M60 541q0 40 20 77t51 59l30 -24q-24 -17 -41 -43t-18 -50q2 2 11 2q17 0 28.5 -12.5t11.5 -29.5q0 -18 -12.5 -30.5t-30.5 -12.5q-21 0 -35.5 17t-14.5 47zM202 541q0 40 20 77t51 59l30 -24q-24 -17 -41 -43t-18 -50q2 2 11 2q17 0 28.5 -12.5t11.5 -29.5 q0 -18 -12.5 -30.5t-30.5 -12.5q-21 0 -35.5 17t-14.5 47z" />
+<glyph unicode="&#x201d;" horiz-adv-x="360" d="M58 501q24 16 40 42.5t18 50.5q0 -2 -10 -2q-18 0 -29.5 12t-11.5 30q0 17 12.5 30t30.5 13q21 0 36 -17t15 -47q0 -40 -20.5 -77.5t-51.5 -58.5zM199 501q24 17 41 43t18 50q-2 -2 -11 -2q-17 0 -28.5 12t-11.5 30t12.5 30.5t30.5 12.5q21 0 35.5 -17t14.5 -47 q0 -41 -20 -78t-51 -58z" />
+<glyph unicode="&#x201e;" horiz-adv-x="361" d="M58 -98q24 16 40 42.5t18 49.5q-7 -1 -10 -1q-18 0 -29.5 12t-11.5 30q0 17 12.5 30t30.5 13q21 0 36 -17t15 -47q0 -40 -20.5 -77.5t-51.5 -59.5zM199 -98q24 16 40.5 42.5t18.5 49.5h-4q-5 -1 -7 -1q-17 0 -28.5 12t-11.5 30t12.5 30.5t30.5 12.5q21 0 35.5 -17 t14.5 -47q0 -40 -20 -77.5t-51 -59.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M77 242q0 43 30 73t73 30t73 -30t30 -73q0 -42 -30 -72t-73 -30t-73 30t-30 72z" />
+<glyph unicode="&#x2026;" horiz-adv-x="657" d="M65 35q0 17 13 30t31 13t31 -13t13 -30q0 -18 -13 -31t-31 -13t-31 13t-13 31zM284 35q0 17 13 30t31 13t31 -13t13 -30q0 -18 -13 -31t-31 -13t-31 13t-13 31zM504 35q0 17 12.5 30t30.5 13t31 -13t13 -30q0 -18 -13 -31t-31 -13t-30.5 13t-12.5 31z" />
+<glyph unicode="&#x202f;" horiz-adv-x="176" />
+<glyph unicode="&#x2039;" horiz-adv-x="277" d="M30 243l160 177h57l-160 -177l160 -180h-57z" />
+<glyph unicode="&#x203a;" horiz-adv-x="277" d="M30 63l160 180l-160 177h57l160 -177l-160 -180h-57z" />
+<glyph unicode="&#x205f;" horiz-adv-x="220" />
+<glyph unicode="&#x20ac;" horiz-adv-x="690" d="M35 242v41h47q-3 24 -3 50q0 27 3 52h-47v41h55q28 114 117.5 183t209.5 69q148 0 243 -118l-48 -31q-32 44 -84 70.5t-111 26.5q-95 0 -167.5 -54.5t-98.5 -145.5h326v-41h-335q-3 -25 -3 -52q0 -26 3 -50h335v-41h-326q26 -92 98 -147t168 -55q59 0 111 26.5t84 70.5 l48 -30q-96 -119 -243 -119q-121 0 -210.5 69t-117.5 185h-54z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M17 641v26h152v-26h-62v-194h-28v194h-62zM205 447v220h43l64 -160l64 160h43v-220h-28v182l-75 -182h-8l-75 182v-182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="19" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="12" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="2" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="2" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="1" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="13" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="13" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="29" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="39" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="19" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="29" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="55" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="33" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="3" />
+<hkern g1="G" 	g2="question" 	k="3" />
+<hkern g1="G" 	g2="T" 	k="2" />
+<hkern g1="G" 	g2="W" 	k="2" />
+<hkern g1="G" 	g2="V" 	k="3" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="5" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="2" />
+<hkern g1="G" 	g2="X" 	k="2" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="57" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="26" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="35" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="19" />
+<hkern g1="K" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
+<hkern g1="K" 	g2="x" 	k="23" />
+<hkern g1="L" 	g2="question" 	k="117" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="116" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="37" />
+<hkern g1="L" 	g2="asterisk" 	k="177" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="29" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="63" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="122" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="17" />
+<hkern g1="L" 	g2="t" 	k="32" />
+<hkern g1="L" 	g2="w" 	k="39" />
+<hkern g1="L" 	g2="v" 	k="59" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="59" />
+<hkern g1="L" 	g2="ampersand" 	k="9" />
+<hkern g1="L" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="17" />
+<hkern g1="L" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="26" />
+<hkern g1="P" 	g2="J" 	k="105" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="1" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="79" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="97" />
+<hkern g1="P" 	g2="X" 	k="5" />
+<hkern g1="P" 	g2="ampersand" 	k="23" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="37" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="P" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="2" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="15" />
+<hkern g1="R" 	g2="ampersand" 	k="1" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="3" />
+<hkern g1="S" 	g2="T" 	k="3" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="19" />
+<hkern g1="S" 	g2="w" 	k="2" />
+<hkern g1="S" 	g2="v" 	k="3" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="3" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="x" 	k="12" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
+<hkern g1="T" 	g2="J" 	k="82" />
+<hkern g1="T" 	g2="S" 	k="2" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="36" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="93" />
+<hkern g1="T" 	g2="w" 	k="68" />
+<hkern g1="T" 	g2="v" 	k="68" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="68" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="69" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="92" />
+<hkern g1="T" 	g2="ampersand" 	k="59" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="103" />
+<hkern g1="T" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="123" />
+<hkern g1="T" 	g2="x" 	k="78" />
+<hkern g1="T" 	g2="s" 	k="96" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="93" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="23" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V" 	g2="J" 	k="92" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="22" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="36" />
+<hkern g1="V" 	g2="t" 	k="12" />
+<hkern g1="V" 	g2="w" 	k="3" />
+<hkern g1="V" 	g2="v" 	k="12" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="3" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="57" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="25" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="52" />
+<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="62" />
+<hkern g1="V" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="22" />
+<hkern g1="V" 	g2="s" 	k="35" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="36" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="W" 	g2="J" 	k="29" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="12" />
+<hkern g1="W" 	g2="v" 	k="2" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="2" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="49" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="69" />
+<hkern g1="W" 	g2="ampersand" 	k="20" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="32" />
+<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="40" />
+<hkern g1="W" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="22" />
+<hkern g1="W" 	g2="s" 	k="15" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="112" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="23" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="62" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="126" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="72" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="19" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="question" 	k="33" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="3" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="T" 	k="114" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="W" 	k="42" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="V" 	k="63" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="T" 	k="77" />
+<hkern g1="ampersand" 	g2="W" 	k="54" />
+<hkern g1="ampersand" 	g2="V" 	k="50" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="96" />
+<hkern g1="asterisk" 	g2="J" 	k="113" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="106" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="43" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="123" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="127" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="9" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="39" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="22" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="2" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="86" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="22" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="33" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="62" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="55" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="33" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="19" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="106" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="52" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="9" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="9" />
+<hkern g1="f" 	g2="question" 	k="-59" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-69" />
+<hkern g1="f" 	g2="asterisk" 	k="-69" />
+<hkern g1="f" 	g2="S" 	k="-22" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-62" />
+<hkern g1="f" 	g2="V" 	k="-62" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-53" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="42" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="2" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-77" />
+<hkern g1="g,j,q" 	g2="question" 	k="22" />
+<hkern g1="g,j,q" 	g2="T" 	k="93" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="36" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-43" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="32" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="52" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="105" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="42" />
+<hkern g1="k" 	g2="T" 	k="80" />
+<hkern g1="k" 	g2="W" 	k="22" />
+<hkern g1="k" 	g2="V" 	k="22" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="63" />
+<hkern g1="k" 	g2="bullet" 	k="29" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="29" />
+<hkern g1="k" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="1" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="73" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="92" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="69" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="89" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="22" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="22" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="47" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="69" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="59" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="9" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="63" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="69" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="36" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="2" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="86" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="107" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="73" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="54" />
+<hkern g1="r" 	g2="W" 	k="3" />
+<hkern g1="r" 	g2="V" 	k="22" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="82" />
+<hkern g1="r" 	g2="X" 	k="5" />
+<hkern g1="s" 	g2="question" 	k="42" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="94" />
+<hkern g1="s" 	g2="W" 	k="35" />
+<hkern g1="s" 	g2="V" 	k="42" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="92" />
+<hkern g1="s" 	g2="X" 	k="2" />
+<hkern g1="t" 	g2="T" 	k="61" />
+<hkern g1="t" 	g2="W" 	k="12" />
+<hkern g1="t" 	g2="V" 	k="23" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="32" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="22" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="93" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="V" 	k="36" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="68" />
+<hkern g1="v" 	g2="W" 	k="2" />
+<hkern g1="v" 	g2="V" 	k="12" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="69" />
+<hkern g1="v" 	g2="X" 	k="39" />
+<hkern g1="w" 	g2="T" 	k="68" />
+<hkern g1="w" 	g2="V" 	k="3" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="19" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="47" />
+<hkern g1="w" 	g2="X" 	k="47" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="2" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="68" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="2" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="3" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="59" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="39" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="47" />
+<hkern g1="X" 	g2="v" 	k="39" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="39" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="42" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="36" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="99" />
+<hkern g1="x" 	g2="T" 	k="78" />
+<hkern g1="x" 	g2="W" 	k="22" />
+<hkern g1="x" 	g2="V" 	k="22" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="72" />
+<hkern g1="x" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="39" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..256e6f26df421d1f79c6b8ff1f18a0cea8cb2919
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.woff
new file mode 100755
index 0000000000000000000000000000000000000000..f8a9403380105de8d0eb7d16bdbd1b7e54acaec5
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Light.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.eot
new file mode 100755
index 0000000000000000000000000000000000000000..44f161a1731c616db743a4d8214521668bbb7cc5
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..600ab92657083186d902b3937d6b69932301f2a8
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.svg
new file mode 100755
index 0000000000000000000000000000000000000000..b8e035ac8ebcc03b7ad4b74e95325966bc7bce57
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.svg
@@ -0,0 +1,578 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_novalight_italic" horiz-adv-x="571" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="259" />
+<glyph unicode="&#xfb01;" horiz-adv-x="478" d="M44 0l97 437h-80l10 46h80l9 44q33 150 150 150q44 0 76 -21l-22 -38q-19 14 -53 14q-40 0 -63 -26.5t-35 -78.5l-10 -44h98l-10 -46h-98l-97 -437h-52zM292 0l107 483h52l-107 -483h-52zM409 594q0 19 14 31.5t31 12.5q16 0 26 -10t10 -25q0 -19 -14 -31.5t-31 -12.5 q-15 0 -25.5 10.5t-10.5 24.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="478" d="M44 0l97 437h-80l10 46h80l9 44q33 150 150 150q44 0 76 -21l-22 -38q-19 14 -53 14q-40 0 -63 -26.5t-35 -78.5l-10 -44h98l-10 -46h-98l-97 -437h-52zM292 0l147 667h52l-147 -667h-52z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="743" d="M44 0l97 437h-80l10 46h80l9 44q35 150 151 150q58 0 95 -37l-30 -33q-23 25 -65 25q-40 0 -63 -26t-35 -79l-10 -44h99l-11 -46h-98l-96 -437h-53zM309 0l97 437h-80l10 46h80l9 44q33 150 150 150q45 0 76 -21l-22 -38q-19 14 -53 14q-40 0 -63 -26.5t-35 -78.5 l-10 -44h98l-10 -46h-98l-97 -437h-52zM557 0l107 483h52l-107 -483h-52zM674 594q0 19 14 31.5t31 12.5q15 0 25.5 -10t10.5 -25q0 -19 -14 -31.5t-31 -12.5q-15 0 -25.5 10.5t-10.5 24.5z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="743" d="M44 0l97 437h-80l10 46h80l9 44q35 150 151 150q58 0 95 -37l-30 -33q-23 25 -65 25q-40 0 -63 -26t-35 -79l-10 -44h99l-11 -46h-98l-96 -437h-53zM309 0l97 437h-80l10 46h80l9 44q33 150 150 150q45 0 76 -21l-22 -38q-19 14 -53 14q-40 0 -63 -26.5t-35 -78.5 l-10 -44h98l-10 -46h-98l-97 -437h-52zM557 0l147 667h52l-147 -667h-52z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="259" />
+<glyph unicode="&#x09;" horiz-adv-x="259" />
+<glyph unicode="&#xa0;" horiz-adv-x="259" />
+<glyph unicode="!" horiz-adv-x="219" d="M19 31q0 20 14 33.5t34 13.5q17 0 28.5 -12t11.5 -29q0 -19 -14 -33t-34 -14q-17 0 -28.5 12t-11.5 29zM73 174l96 493h67l-122 -493h-41z" />
+<glyph unicode="&#x22;" horiz-adv-x="317" d="M118 427q23 192 25 206q2 20 13 32t29 12q13 0 22.5 -9.5t9.5 -23.5l-5 -20l-65 -197h-29zM249 427q23 192 25 206q2 20 13 32t29 12q14 0 23 -9.5t9 -23.5q0 -10 -5 -20l-65 -197h-29z" />
+<glyph unicode="#" horiz-adv-x="579" d="M11 186l21 41h112l119 213h-112l20 41h115l102 186h47l-102 -186h117l102 186h48l-104 -186h111l-20 -41h-113l-120 -213h116l-21 -41h-116l-103 -186h-48l104 186h-118l-103 -186h-47l104 186h-111zM191 227h116l120 213h-117z" />
+<glyph unicode="$" horiz-adv-x="584" d="M26 105l42 41q57 -81 160 -101l62 277q-31 13 -50.5 22.5t-44.5 25.5t-39.5 32t-24.5 39.5t-10 50.5q0 76 65.5 131t159.5 55q15 0 23 -1l20 91h46l-22 -97q112 -22 163 -97l-43 -40q-45 65 -131 85l-56 -252q39 -16 64 -29.5t52.5 -34.5t41 -49t13.5 -62 q0 -81 -63 -142.5t-173 -61.5q-13 0 -20 1l-19 -89h-46l21 94q-65 10 -115.5 40t-75.5 71zM183 498q0 -37 30.5 -62t90.5 -51l53 240q-5 1 -16 1q-65 0 -111.5 -39t-46.5 -89zM273 40h13q82 0 125 44.5t43 100.5q0 41 -31 67.5t-91 52.5z" />
+<glyph unicode="%" horiz-adv-x="720" d="M74 0l573 667h46l-574 -667h-45zM90 483q0 85 52 139.5t123 54.5q61 0 102.5 -37.5t41.5 -95.5q0 -85 -52 -139.5t-123 -54.5q-61 0 -102.5 37t-41.5 96zM136 487q0 -43 28.5 -71t71.5 -28q51 0 89 44t38 107q0 43 -28.5 71t-71.5 28q-51 0 -89 -43.5t-38 -107.5z M349 122q0 84 52 139t123 55q62 0 103.5 -37.5t41.5 -96.5q0 -84 -52 -139t-123 -55q-62 0 -103.5 37.5t-41.5 96.5zM396 126q0 -43 28 -71t71 -28q51 0 89 43.5t38 107.5q0 42 -28 70.5t-71 28.5q-51 0 -89 -44t-38 -107z" />
+<glyph unicode="&#x26;" horiz-adv-x="639" d="M21 151q0 47 15.5 84t46 63.5t61.5 44t75 36.5q-25 64 -25 119q0 73 53 126t123 53q60 0 98.5 -29.5t38.5 -83.5q0 -24 -7.5 -46t-16 -37.5t-29 -32t-33.5 -25.5t-42.5 -23t-42.5 -19.5t-47 -19.5q24 -51 58 -105q24 -43 70 -113q70 75 113 157l43 -25 q-69 -111 -128 -172q34 -46 81 -103h-72q-12 15 -50 65q-90 -77 -189 -77q-84 0 -139 43t-55 120zM81 158q0 -59 40 -91.5t99 -32.5q74 0 156 70q-54 78 -76 118q-42 71 -64 117q-74 -34 -114.5 -74.5t-40.5 -106.5zM250 499q0 -44 22 -99q45 17 70 29t54.5 31.5t43 43.5 t13.5 55q0 35 -23.5 54.5t-58.5 19.5q-45 0 -83 -36.5t-38 -97.5z" />
+<glyph unicode="'" horiz-adv-x="187" d="M118 427q23 192 25 206q2 20 13 32t29 12q13 0 22.5 -9.5t9.5 -23.5l-5 -20l-65 -197h-29z" />
+<glyph unicode="(" horiz-adv-x="227" d="M25 84q0 316 251 601l26 -26q-221 -298 -221 -599q0 -104 36 -239l-36 -20q-56 132 -56 283z" />
+<glyph unicode=")" horiz-adv-x="227" d="M-76 -173q221 297 221 599q0 104 -36 239l35 20q57 -130 57 -283q0 -316 -251 -601z" />
+<glyph unicode="*" horiz-adv-x="335" d="M91 500l115 41l-91 63l25 30l84 -73l20 116h38l-32 -118l112 51l11 -34l-115 -41l91 -63l-26 -30l-83 73l-20 -116h-39l33 119l-112 -52z" />
+<glyph unicode="+" horiz-adv-x="496" d="M45 316l9 42h197l46 211h45l-46 -211h197l-10 -42h-197l-48 -217h-44l48 217h-197z" />
+<glyph unicode="," horiz-adv-x="219" d="M-18 -90q28 14 49.5 37.5t28.5 46.5h-7q-14 0 -24 10.5t-10 25.5q0 20 14 34t33 14t31 -12.5t12 -35.5q0 -41 -30.5 -83t-72.5 -64z" />
+<glyph unicode="-" horiz-adv-x="300" d="M24 218l10 48h240l-10 -48h-240z" />
+<glyph unicode="." horiz-adv-x="219" d="M19 31q0 20 14 33.5t34 13.5q17 0 28.5 -12t11.5 -29q0 -19 -14 -33t-34 -14q-17 0 -28.5 12t-11.5 29z" />
+<glyph unicode="/" horiz-adv-x="282" d="M-59 -20l393 707h47l-394 -707h-46z" />
+<glyph unicode="0" horiz-adv-x="608" d="M65 244q0 101 35.5 198.5t108 166t164.5 68.5q101 0 154.5 -68.5t53.5 -186.5q0 -101 -35 -198.5t-107 -166.5t-164 -69q-101 0 -155.5 69t-54.5 187zM125 240q0 -91 37.5 -145.5t117.5 -54.5q54 0 101 36.5t77 94t47 124.5t17 131q0 91 -37.5 145t-117.5 54 q-54 0 -101 -36.5t-77 -93.5t-47 -124t-17 -131z" />
+<glyph unicode="1" horiz-adv-x="308" d="M85 512l181 155h52l-147 -667h-57l129 589l-131 -114z" />
+<glyph unicode="2" horiz-adv-x="582" d="M2 0l14 60q94 60 152 98.5t126.5 90.5t106.5 91t64 84t26 85q0 54 -42 85t-111 31q-106 0 -173 -67l-31 40q36 36 91 57.5t115 21.5q89 0 151 -42.5t62 -123.5q0 -46 -26 -95.5t-64.5 -92t-103.5 -93.5t-120 -88.5t-137 -89.5h351l-11 -52h-440z" />
+<glyph unicode="3" horiz-adv-x="544" d="M1 127l46 30q22 -54 75 -85.5t118 -31.5q80 0 128 45t48 115q0 53 -43.5 85t-115.5 32q-46 0 -57 -1l13 54q9 -1 89 -1q72 0 122.5 35.5t50.5 101.5q0 51 -44.5 85t-117.5 34q-95 0 -171 -70l-28 40q38 38 92 60t110 22q96 0 156.5 -44t60.5 -122q0 -74 -55.5 -121 t-125.5 -52q52 -12 86.5 -49t34.5 -92q0 -87 -65 -148t-168 -61q-81 0 -148.5 39t-90.5 100z" />
+<glyph unicode="4" horiz-adv-x="541" d="M21 182l13 55l386 430h81l-96 -433h98l-11 -52h-98l-40 -182h-57l40 182h-316zM91 234h257l83 376z" />
+<glyph unicode="5" horiz-adv-x="582" d="M42 123l46 33q51 -116 188 -116q76 0 130 52.5t54 129.5q0 67 -45 104.5t-116 37.5q-77 0 -146 -51l-38 23l73 331h385l-11 -52h-328l-55 -247q60 46 143 46t140.5 -49.5t57.5 -137.5q0 -98 -70.5 -168.5t-178.5 -70.5q-166 0 -229 135z" />
+<glyph unicode="6" horiz-adv-x="584" d="M61 228q0 55 11 114t36.5 119.5t61 108t89.5 77.5t118 30q138 0 192 -104l-43 -37q-40 89 -152 89q-51 0 -94 -25.5t-71.5 -69t-47.5 -90.5t-31 -102q-1 -3 -5 -19q32 35 87 64t113 29q89 0 144 -46.5t55 -126.5q0 -102 -72 -176.5t-177 -74.5q-103 0 -158.5 62.5 t-55.5 177.5zM116 213q0 -78 42 -125.5t119 -47.5q79 0 133 57.5t54 133.5q0 60 -43 95.5t-114 35.5q-103 0 -189 -96q-2 -18 -2 -53z" />
+<glyph unicode="7" horiz-adv-x="502" d="M67 0l414 615h-366l11 52h437l-9 -40l-421 -627h-66z" />
+<glyph unicode="8" d="M37 155q0 76 57.5 127.5t151.5 68.5q-51 19 -86.5 56t-35.5 87q0 87 68.5 135t156.5 48q89 0 152 -43.5t63 -117.5q0 -73 -54 -119.5t-142 -58.5q52 -22 91.5 -62t39.5 -98q0 -82 -68 -136t-165 -54q-101 0 -165 44t-64 123zM97 164q0 -59 49 -91.5t121 -32.5 q68 0 121 39t53 103q0 50 -44 86.5t-95 50.5q-89 -6 -147 -48.5t-58 -106.5zM182 491q0 -43 41.5 -77.5t89.5 -45.5q86 7 138 43.5t52 98.5q0 48 -45.5 81t-110.5 33q-68 0 -116.5 -36t-48.5 -97z" />
+<glyph unicode="9" horiz-adv-x="584" d="M54 93l42 37q40 -89 153 -89q51 0 93.5 25.5t71 69t47.5 90.5t32 102q1 3 2 7.5t1.5 7t0.5 3.5q-32 -35 -87 -63.5t-113 -28.5q-89 0 -144 46.5t-55 126.5q0 102 72 176.5t177 74.5q103 0 158.5 -62.5t55.5 -177.5q0 -55 -11 -114.5t-36 -119.5t-61 -107.5t-90 -77.5 t-118 -30q-138 0 -191 104zM158 435q0 -60 43 -95.5t114 -35.5q105 0 189 96q2 18 2 53q0 78 -42 125.5t-119 47.5q-79 0 -133 -57.5t-54 -133.5z" />
+<glyph unicode=":" horiz-adv-x="219" d="M19 31q0 20 14 33.5t34 13.5q17 0 28.5 -12t11.5 -29q0 -19 -14 -33t-34 -14q-17 0 -28.5 12t-11.5 29zM110 443q0 19 14 33t34 14q17 0 28.5 -11.5t11.5 -28.5q0 -20 -14 -33.5t-34 -13.5q-17 0 -28.5 11.5t-11.5 28.5z" />
+<glyph unicode=";" horiz-adv-x="219" d="M-18 -90q28 14 49.5 37.5t28.5 46.5h-7q-14 0 -24 10.5t-10 25.5q0 20 14 34t33 14t31 -12.5t12 -35.5q0 -41 -30.5 -83t-72.5 -64zM110 443q0 19 14 33t34 14q17 0 28.5 -11.5t11.5 -28.5q0 -20 -14 -33.5t-34 -13.5q-17 0 -28.5 11.5t-11.5 28.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="496" d="M44 316l9 37l488 227l-12 -52l-429 -197l342 -194l-10 -47z" />
+<glyph unicode="=" horiz-adv-x="496" d="M22 216l10 41h438l-9 -41h-439zM66 411l9 42h438l-9 -42h-438z" />
+<glyph unicode="&#x3e;" horiz-adv-x="496" d="M-6 90l12 52l430 194l-343 197l10 47l388 -227l-8 -37z" />
+<glyph unicode="?" horiz-adv-x="464" d="M94 592q86 85 200 85q88 0 142.5 -40.5t54.5 -105.5q0 -49 -27.5 -86t-66.5 -59t-78 -41t-66.5 -44t-27.5 -56q0 -25 19 -44l-45 -25q-26 33 -26 72q0 40 26.5 69.5t63.5 49t74.5 38.5t64 49t26.5 70q0 46 -37 73.5t-101 27.5q-98 0 -168 -72zM132 31q0 19 14 33t34 14 q17 0 28.5 -12t11.5 -29q0 -20 -14 -33.5t-34 -13.5q-17 0 -28.5 12t-11.5 29z" />
+<glyph unicode="@" horiz-adv-x="783" d="M55 244q0 106 55.5 197.5t147 144t194.5 52.5q139 0 227 -92.5t88 -229.5q0 -108 -48 -169.5t-114 -61.5q-39 0 -63 25t-25 60l-1 6q-28 -39 -72 -65t-92 -26q-69 0 -111 43.5t-42 116.5q0 104 73.5 179t165.5 75q47 0 81 -23t49 -59l13 65h49l-59 -282q-2 -12 -2 -19 q0 -25 14.5 -40t35.5 -15q40 0 78 46.5t38 144.5q0 125 -80 207t-206 82q-145 0 -253.5 -109.5t-108.5 -251.5q0 -121 82 -202.5t207 -81.5q99 0 187 57l17 -25q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM251 248q0 -54 29.5 -88t81.5 -34q95 0 164 101l32 148 q-11 32 -40 57.5t-74 25.5q-79 0 -136 -64.5t-57 -145.5z" />
+<glyph unicode="A" horiz-adv-x="647" d="M-39 0l420 667h71l126 -667h-63l-31 164h-352l-102 -164h-69zM162 216h316l-72 390z" />
+<glyph unicode="B" horiz-adv-x="614" d="M29 0l147 667h257q69 0 117 -42t48 -109q0 -70 -45.5 -121t-109.5 -59q42 -10 69.5 -50t27.5 -88q0 -82 -58.5 -140t-167.5 -58h-285zM97 52h220q76 0 120 44.5t44 104.5q0 50 -33 82.5t-89 32.5h-203zM168 368h218q77 0 113 42t36 100q0 45 -33.5 75t-81.5 30h-198z" />
+<glyph unicode="C" horiz-adv-x="672" d="M67 277q0 88 31.5 164.5t83.5 127.5t118.5 80t136.5 29q88 0 156 -37t106 -106l-55 -25q-64 116 -211 116q-120 0 -212 -97t-92 -250q0 -108 65.5 -173.5t175.5 -65.5q102 0 188 76l41 -34q-98 -94 -232 -94q-132 0 -216 79.5t-84 209.5z" />
+<glyph unicode="D" horiz-adv-x="692" d="M29 0l147 667h208q113 0 192 -81t79 -203q0 -56 -16 -110.5t-50 -104t-81.5 -87t-116.5 -59.5t-150 -22h-212zM97 52h154q154 0 249 96t95 233q0 101 -63.5 167.5t-158.5 66.5h-151z" />
+<glyph unicode="E" horiz-adv-x="564" d="M29 0l147 667h423l-11 -52h-366l-54 -247h358l-12 -52h-358l-59 -264h365l-10 -52h-423z" />
+<glyph unicode="F" horiz-adv-x="542" d="M29 0l147 667h423l-11 -52h-366l-54 -247h358l-12 -52h-358l-70 -316h-57z" />
+<glyph unicode="G" horiz-adv-x="711" d="M67 277q0 172 109.5 286.5t263.5 114.5q87 0 153 -36.5t104 -100.5l-51 -26q-30 54 -86.5 82.5t-126.5 28.5q-121 0 -212.5 -99.5t-91.5 -247.5q0 -109 65.5 -174t175.5 -65q108 0 194 80l35 160h-252l11 51h310l-53 -238q-108 -105 -248 -105q-135 0 -217.5 81 t-82.5 208z" />
+<glyph unicode="H" horiz-adv-x="703" d="M29 0l147 667h57l-65 -298h422l66 298h58l-147 -667h-58l70 317h-423l-70 -317h-57z" />
+<glyph unicode="I" horiz-adv-x="223" d="M29 0l147 667h57l-147 -667h-57z" />
+<glyph unicode="J" horiz-adv-x="470" d="M-19 76l38 40q41 -76 134 -76q66 0 107.5 41t57.5 112l104 474h58l-104 -474q-46 -205 -220 -205q-58 0 -104.5 22.5t-70.5 65.5z" />
+<glyph unicode="K" horiz-adv-x="586" d="M29 0l147 667h57l-79 -358l396 358h78l-354 -318l234 -349h-68l-208 318l-94 -85l-52 -233h-57z" />
+<glyph unicode="L" horiz-adv-x="517" d="M29 0l147 667h57l-136 -615h323l-11 -52h-380z" />
+<glyph unicode="M" horiz-adv-x="790" d="M29 0l147 667h82l104 -556l350 556h88l-147 -667h-58l131 595l-374 -595h-22l-112 595l-132 -595h-57z" />
+<glyph unicode="N" horiz-adv-x="699" d="M29 0l147 667h58l290 -573l128 573h57l-147 -667h-56l-291 582l-129 -582h-57z" />
+<glyph unicode="O" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q129 0 214 -77t85 -212q0 -169 -108 -285t-261 -116q-129 0 -214.5 77t-85.5 212zM129 279q0 -113 68.5 -176t172.5 -63q124 0 214 99.5t90 247.5q0 113 -69 176t-173 63q-124 0 -213.5 -99t-89.5 -248z" />
+<glyph unicode="P" d="M29 0l147 667h234q77 0 126 -49t49 -118q0 -40 -14 -78.5t-42.5 -71.5t-78 -53t-112.5 -20h-190l-62 -277h-57zM159 329h186q85 0 132 48.5t47 118.5q0 48 -35.5 83.5t-87.5 35.5h-179z" />
+<glyph unicode="Q" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q129 0 214 -77t85 -212q0 -101 -41.5 -186.5t-112.5 -140.5l45 -60l-46 -29l-44 59q-80 -44 -170 -44q-129 0 -214.5 77t-85.5 212zM129 279q0 -113 68.5 -176t172.5 -63q70 0 134 36l-86 117l46 29l85 -116q58 48 91.5 120.5t33.5 160.5 q0 113 -69 176t-173 63q-124 0 -213.5 -99t-89.5 -248z" />
+<glyph unicode="R" horiz-adv-x="594" d="M29 0l147 667h229q72 0 126.5 -46t54.5 -122q0 -94 -62.5 -155.5t-165.5 -65.5l131 -278h-65l-126 276h-151l-61 -276h-57zM159 328h186q84 0 131.5 48.5t47.5 119.5q0 51 -38 85t-88 34h-176z" />
+<glyph unicode="S" horiz-adv-x="581" d="M24 105l42 41q75 -106 218 -106q82 0 125 44.5t43 100.5q0 40 -34.5 69.5t-83 49.5t-97.5 41.5t-83.5 58.5t-34.5 88q0 76 65.5 131t159.5 55q75 0 137 -28.5t93 -75.5l-43 -40q-30 45 -81.5 68.5t-110.5 23.5q-65 0 -111.5 -39t-46.5 -89q0 -37 34.5 -64.5t83.5 -47.5 t98 -42t83.5 -60.5t34.5 -91.5q0 -81 -63 -142.5t-173 -61.5q-84 0 -153.5 33t-101.5 84z" />
+<glyph unicode="T" horiz-adv-x="564" d="M117 615l11 52h494l-11 -52h-218l-136 -615h-58l136 615h-218z" />
+<glyph unicode="U" horiz-adv-x="686" d="M81 205q0 29 5 51l90 411h58l-90 -410q-6 -24 -6 -45q0 -77 50.5 -124.5t138.5 -47.5q95 0 146 55t75 162l90 410h58l-90 -411q-30 -132 -93.5 -200t-185.5 -68q-114 0 -180 58.5t-66 158.5z" />
+<glyph unicode="V" horiz-adv-x="647" d="M108 667h63l109 -603l376 603h69l-420 -667h-71z" />
+<glyph unicode="W" horiz-adv-x="867" d="M112 667h63l30 -587l294 587h52l34 -587l290 587h66l-337 -667h-64l-34 573l-286 -573h-64z" />
+<glyph unicode="X" horiz-adv-x="645" d="M-36 0l343 346l-181 321h67l157 -283l276 283h78l-323 -328l191 -339h-65l-170 302l-295 -302h-78z" />
+<glyph unicode="Y" horiz-adv-x="618" d="M108 667h64l153 -328l297 328h74l-349 -382l-63 -285h-58l63 285z" />
+<glyph unicode="Z" horiz-adv-x="581" d="M-4 0l11 50l522 565h-396l10 52h474l-10 -49l-523 -566h404l-11 -52h-481z" />
+<glyph unicode="[" horiz-adv-x="228" d="M-59 -190l192 868h174l-10 -43h-130l-173 -782h129l-9 -43h-173z" />
+<glyph unicode="\" horiz-adv-x="282" d="M98 687h45l80 -707h-45z" />
+<glyph unicode="]" horiz-adv-x="228" d="M-79 -190l10 43h128l174 782h-130l10 43h174l-193 -868h-173z" />
+<glyph unicode="^" horiz-adv-x="428" d="M38 333l248 334h42l100 -334h-45l-83 293l-212 -293h-50z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-75 -83l10 43h569l-10 -43h-569z" />
+<glyph unicode="`" horiz-adv-x="216" d="M101 700h62l122 -144h-44z" />
+<glyph unicode="a" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-107 -483h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z " />
+<glyph unicode="b" d="M27 0l147 667h52l-56 -257q65 85 166 85q84 0 136 -53.5t52 -145.5q0 -125 -71 -216.5t-182 -91.5q-58 0 -103 25.5t-71 68.5l-18 -82h-52zM106 123q19 -38 61.5 -63t98.5 -25q88 0 144.5 76t56.5 176q0 74 -40 117.5t-106 43.5q-49 0 -93 -26.5t-71 -66.5z" />
+<glyph unicode="c" horiz-adv-x="494" d="M46 202q0 120 78 206.5t190 86.5q121 0 173 -88l-40 -30q-41 71 -131 71q-96 0 -155.5 -73.5t-59.5 -173.5q0 -80 46 -123t119 -43q79 0 131 62l30 -36q-70 -73 -166 -73t-155.5 57t-59.5 157z" />
+<glyph unicode="d" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l58 266h53l-148 -667h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z " />
+<glyph unicode="e" horiz-adv-x="567" d="M46 201q0 121 78 207.5t190 86.5q94 0 149.5 -59t55.5 -150q0 -29 -8 -61h-408q-2 -12 -2 -28q0 -71 46 -117.5t131 -46.5q84 0 146 52l20 -38q-77 -59 -168 -59q-107 0 -168.5 58.5t-61.5 154.5zM108 266h360q1 5 1 22q0 72 -42.5 117t-118.5 45q-72 0 -129.5 -54.5 t-70.5 -129.5z" />
+<glyph unicode="f" horiz-adv-x="265" d="M44 0l97 437h-80l10 46h80l9 44q35 150 151 150q58 0 95 -37l-30 -33q-23 25 -65 25q-40 0 -63 -26t-35 -79l-10 -44h99l-11 -46h-98l-96 -437h-53z" />
+<glyph unicode="g" horiz-adv-x="570" d="M4 -114l37 37q48 -74 170 -74q138 0 173 156l15 72q-66 -85 -171 -85q-81 0 -132 51.5t-51 149.5q0 122 69.5 212t181.5 90q51 0 99.5 -26.5t75.5 -67.5l19 82h53l-107 -478q-43 -201 -224 -201q-72 0 -122.5 18t-85.5 64zM100 200q0 -75 40 -118.5t107 -43.5 q44 0 88.5 25t74.5 62l53 234q-22 40 -67.5 64.5t-97.5 24.5q-87 0 -142.5 -76t-55.5 -172z" />
+<glyph unicode="h" horiz-adv-x="540" d="M27 0l147 667h52l-56 -257q87 85 174 85q64 0 102.5 -30.5t38.5 -87.5q0 -19 -6 -41l-74 -336h-52l72 328q6 27 6 35q0 43 -29.5 64t-78.5 21q-81 0 -164 -85l-80 -363h-52z" />
+<glyph unicode="i" horiz-adv-x="214" d="M27 0l107 483h52l-107 -483h-52zM144 594q0 19 14 31.5t31 12.5q15 0 25.5 -10t10.5 -25q0 -19 -14 -31.5t-31 -12.5q-15 0 -25.5 10.5t-10.5 24.5z" />
+<glyph unicode="j" horiz-adv-x="214" d="M-181 -154l28 38q26 -35 72 -35q73 0 94 89l121 545h52l-121 -545q-15 -68 -48.5 -101t-90.5 -33q-72 0 -107 42zM144 594q0 19 14 31.5t31 12.5q15 0 25.5 -10t10.5 -25q0 -19 -14 -31.5t-31 -12.5q-15 0 -25.5 10.5t-10.5 24.5z" />
+<glyph unicode="k" horiz-adv-x="505" d="M27 0l147 667h52l-101 -456l342 272h73l-274 -218l166 -265h-64l-145 233l-112 -88l-32 -145h-52z" />
+<glyph unicode="l" horiz-adv-x="214" d="M27 0l147 667h52l-147 -667h-52z" />
+<glyph unicode="m" horiz-adv-x="789" d="M27 0l107 483h52l-16 -73q74 85 154 85q55 0 88 -31t33 -62v-2q75 95 167 95q51 0 86.5 -31.5t35.5 -86.5q0 -13 -6 -41l-74 -336h-52l74 336q4 16 4 29q0 38 -25.5 60.5t-62.5 22.5q-36 0 -75.5 -24t-69.5 -60l-80 -364h-53l75 336q4 30 4 35q-1 34 -24.5 55.5 t-65.5 21.5q-70 0 -144 -84l-80 -364h-52z" />
+<glyph unicode="n" horiz-adv-x="540" d="M27 0l107 483h52l-16 -73q87 85 174 85q64 0 102.5 -30.5t38.5 -87.5q0 -19 -6 -41l-74 -336h-52l72 328q6 27 6 35q0 43 -29 64t-76 21q-85 0 -167 -84l-80 -364h-52z" />
+<glyph unicode="o" d="M45 200q0 118 77 206.5t189 88.5q97 0 155 -58t58 -154q0 -118 -77 -206.5t-189 -88.5q-97 0 -155 58t-58 154zM102 202q0 -77 41.5 -122t115.5 -45q88 0 148 74.5t60 171.5q0 77 -41.5 122t-115.5 45q-88 0 -148 -74.5t-60 -171.5z" />
+<glyph unicode="p" horiz-adv-x="567" d="M-14 -184l148 667h52l-16 -73q65 85 166 85q84 0 136 -53.5t52 -145.5q0 -125 -71 -216.5t-182 -91.5q-58 0 -103 25.5t-71 68.5l-59 -266h-52zM106 123q19 -38 61.5 -63t98.5 -25q88 0 144.5 76t56.5 176q0 74 -40 117.5t-106 43.5q-49 0 -93 -26.5t-71 -66.5z" />
+<glyph unicode="q" horiz-adv-x="567" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-148 -667h-53l58 257q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z " />
+<glyph unicode="r" horiz-adv-x="317" d="M27 0l107 483h52l-18 -78q40 46 80.5 67t102.5 21l-12 -56q-18 3 -35 3q-42 0 -81.5 -26t-65.5 -62l-78 -352h-52z" />
+<glyph unicode="s" horiz-adv-x="459" d="M8 73l37 36q20 -32 62.5 -54.5t95.5 -22.5q58 0 93 29.5t35 70.5q0 28 -26.5 49.5t-64.5 36t-76 30t-64.5 42t-26.5 62.5q0 61 47.5 102t128.5 41q59 0 107 -23t69 -56l-34 -34q-16 29 -57.5 49t-88.5 20q-54 0 -86.5 -24.5t-32.5 -62.5q0 -27 26.5 -47t64.5 -34t76 -30 t64.5 -44t26.5 -66q0 -64 -49 -109.5t-133 -45.5q-133 0 -194 85z" />
+<glyph unicode="t" horiz-adv-x="275" d="M54 437l10 46h80l29 132h53l-29 -132h98l-11 -46h-98l-74 -335q-2 -10 -2 -21q0 -46 49 -46q27 0 51 18l10 -42q-30 -23 -69 -23q-96 0 -96 81q0 11 3 26l76 342h-80z" />
+<glyph unicode="u" horiz-adv-x="540" d="M54 106q0 19 6 41l74 336h52l-72 -327q-6 -30 -6 -36q0 -43 29 -64t78 -21q83 0 164 85l81 363h52l-107 -483h-52l16 73q-87 -85 -174 -85q-64 0 -102.5 30.5t-38.5 87.5z" />
+<glyph unicode="v" horiz-adv-x="481" d="M60 483h56l81 -422l269 422h61l-311 -483h-59z" />
+<glyph unicode="w" horiz-adv-x="719" d="M70 483h53l37 -410l228 410h44l45 -410l220 410h58l-264 -483h-50l-44 413l-227 -413h-50z" />
+<glyph unicode="x" horiz-adv-x="479" d="M-37 0l245 248l-127 235h59l105 -199l193 199h66l-233 -235l137 -248h-59l-113 213l-207 -213h-66z" />
+<glyph unicode="y" horiz-adv-x="481" d="M-46 -186l20 50q18 -9 47 -9q39 0 76 55l57 87l-94 486h56l81 -422l269 422h61l-381 -589q-57 -90 -135 -90q-32 0 -57 10z" />
+<glyph unicode="z" horiz-adv-x="469" d="M2 0l8 43l371 394h-282l10 46h353l-9 -42l-373 -395h288l-9 -46h-357z" />
+<glyph unicode="{" horiz-adv-x="249" d="M-15 -93q0 15 3 26l50 220q2 12 2 17q0 23 -10.5 38.5t-28.5 15.5l9 40q53 0 68 71l49 219q14 61 50.5 92.5t88.5 31.5h62l-10 -43h-62q-33 0 -55 -21t-30 -60l-51 -227q-15 -69 -64 -87q29 -15 29 -54q0 -18 -4 -34l-48 -218q-2 -12 -2 -22q0 -25 16.5 -42t41.5 -17h56 l-10 -43h-49q-40 0 -70.5 27t-30.5 70z" />
+<glyph unicode="|" horiz-adv-x="208" d="M103 -20v707h43v-707h-43z" />
+<glyph unicode="}" horiz-adv-x="249" d="M-80 -190l10 43h61q68 0 86 80l51 228q15 69 64 88q-29 14 -29 53q0 18 4 34l48 218q2 12 2 21q0 26 -16.5 43t-41.5 17h-56l10 43h49q40 0 70 -27t30 -70q0 -18 -3 -27l-49 -219q-2 -12 -2 -18q0 -22 10.5 -37.5t28.5 -15.5l-10 -40q-52 0 -67 -71l-49 -219 q-14 -61 -50 -92.5t-89 -31.5h-62z" />
+<glyph unicode="~" horiz-adv-x="499" d="M69 433q24 103 66.5 167.5t106.5 64.5q37 0 58 -20.5t27 -49.5t10.5 -57.5t17 -49t38.5 -20.5q39 0 72.5 52.5t56.5 146.5l42 -5q-54 -234 -174 -234q-45 0 -66.5 30.5t-24 67.5t-15.5 67.5t-44 30.5q-39 0 -73 -52t-56 -145z" />
+<glyph unicode="&#xa1;" horiz-adv-x="219" d="M-20 -184l123 493h41l-96 -493h-68zM110 445q0 20 14 34t34 14q17 0 28.5 -12t11.5 -29q0 -19 -14 -33t-34 -14q-17 0 -28.5 11.5t-11.5 28.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="494" d="M46 202q0 120 77 206t189 87l16 70h44l-17 -73q90 -13 132 -85l-40 -30q-33 58 -102 69l-91 -411h12q79 0 131 62l30 -36q-70 -73 -166 -73q-12 0 -17 1l-20 -89h-44l21 95q-71 15 -113 69t-42 138zM101 201q0 -64 30 -105t81 -55l90 406q-90 -6 -145.5 -78t-55.5 -168z " />
+<glyph unicode="&#xa3;" horiz-adv-x="505" d="M1 41q77 30 129.5 86t52.5 113q0 14 -3 27h-157l9 42h132q-5 10 -26 41.5t-30.5 56.5t-9.5 55q0 84 69 149.5t166 65.5q67 0 122.5 -32t70.5 -81l-53 -24q-10 38 -48.5 62.5t-89.5 24.5q-72 0 -123.5 -46t-51.5 -121q0 -30 10 -55t28.5 -53.5t25.5 -42.5h147l-9 -42h-126 q2 -14 2 -20q0 -50 -36 -97t-81 -75q27 8 48 8q34 0 86 -22t81 -22q53 0 96 41l16 -47q-56 -47 -114 -47q-46 0 -103.5 23.5t-101.5 23.5q-46 0 -116 -40z" />
+<glyph unicode="&#xa4;" horiz-adv-x="588" d="M7 112l100 81q-28 45 -28 107q0 116 81 194l-57 74l38 31l57 -74q63 41 140 41q97 0 157 -57l102 84l31 -38l-103 -84q29 -47 29 -107q0 -115 -80 -193l56 -71l-39 -30l-55 70q-62 -42 -139 -42q-97 0 -158 57l-102 -82zM136 305q0 -74 45.5 -116t118.5 -42 q84 0 141.5 64t57.5 147q0 67 -43 113t-122 46q-86 0 -142 -64t-56 -148z" />
+<glyph unicode="&#xa5;" horiz-adv-x="618" d="M-5 126l9 41h262l26 118h-261l8 42h233l-161 340h64l153 -328l297 328h74l-311 -340h227l-9 -42h-256l-26 -118h255l-9 -41h-255l-28 -126h-58l28 126h-262z" />
+<glyph unicode="&#xa6;" horiz-adv-x="208" d="M103 -20v316h43v-316h-43zM103 371v316h43v-316h-43z" />
+<glyph unicode="&#xa7;" horiz-adv-x="461" d="M-16 -1l38 33q23 -34 67.5 -53t97.5 -19q56 0 91.5 30t35.5 75q0 30 -26.5 51t-63.5 35t-74.5 29.5t-64 43.5t-26.5 67q0 50 40 87.5t113 46.5q-99 38 -99 112q0 55 46.5 97.5t125.5 42.5q127 0 189 -75l-36 -30q-47 64 -150 64q-53 0 -88 -26.5t-35 -64.5 q0 -30 26.5 -51t64.5 -34.5t76 -28.5t64.5 -44t26.5 -70q0 -47 -32 -85.5t-96 -55.5q73 -38 73 -105q0 -61 -49 -106.5t-131 -45.5q-137 0 -204 80zM112 299q0 -37 31.5 -57.5t105.5 -46.5q62 18 91 48t29 64q0 36 -27 57t-78 39q-76 -9 -114 -37.5t-38 -66.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="262" d="M70 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM274 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M64 334q0 143 100.5 244t243.5 101t244.5 -101t101.5 -244t-101.5 -244t-244.5 -101q-142 0 -243 101t-101 244zM92 334q0 -131 93 -224t223 -93q131 0 224.5 93t93.5 224t-93.5 224t-224.5 93t-223.5 -93t-92.5 -224zM197 307q0 101 72 171.5t164 70.5q108 0 155 -80 l-27 -20q-37 70 -128 70q-77 0 -140 -61.5t-63 -150.5q0 -66 44.5 -111.5t114.5 -45.5q67 0 116 47l17 -25q-62 -52 -133 -52q-88 0 -140 53.5t-52 133.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="409" d="M91 453q0 78 49 136.5t121 58.5q80 0 117 -57l11 49h43l-70 -314h-43l11 50q-47 -58 -113 -58q-53 0 -89.5 35t-36.5 100zM136 456q0 -49 26 -76t68 -27q59 0 108 57l34 152q-13 23 -41.5 37t-63.5 14q-55 0 -93 -46.5t-38 -110.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="402" d="M29 243l200 177h61l-204 -182l116 -175h-53zM154 243l200 177h61l-204 -182l116 -175h-53z" />
+<glyph unicode="&#xac;" horiz-adv-x="499" d="M66 411l9 42h438l-52 -237h-44l44 195h-395z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M24 218l10 48h240l-10 -48h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M84 465q0 88 62 150t150 62t150 -61.5t62 -150.5q0 -88 -62.5 -150t-150.5 -62t-149.5 62t-61.5 150zM111 465q0 -76 54 -130.5t130 -54.5t131 54.5t55 130.5q0 77 -54.5 131t-131.5 54t-130.5 -54t-53.5 -131zM189 343l53 243h91q28 0 48.5 -17t20.5 -47 q0 -35 -25 -58.5t-55 -23.5l44 -97h-36l-42 96h-48l-21 -96h-30zM246 468h69q23 0 39 14.5t16 35.5q0 19 -12 29.5t-30 10.5h-62z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M74 577l8 37h362l-8 -37h-362z" />
+<glyph unicode="&#xb0;" horiz-adv-x="282" d="M94 560q0 48 34 82.5t82 34.5t82.5 -34.5t34.5 -82.5t-34.5 -81.5t-82.5 -33.5t-82 33.5t-34 81.5zM134 560q0 -32 22 -54t53 -22q32 0 55.5 22.5t23.5 53.5q0 32 -23 55t-55 23q-31 0 -53.5 -23t-22.5 -55z" />
+<glyph unicode="&#xb1;" horiz-adv-x="496" d="M-25 0l8 41h439l-9 -41h-438zM46 323l9 41h197l47 212h44l-46 -212h197l-10 -41h-196l-49 -218h-44l48 218h-197z" />
+<glyph unicode="&#xb2;" horiz-adv-x="384" d="M91 421l9 39q63 38 96 59t76.5 51.5t65 52t37 47.5t15.5 50q0 34 -27 51.5t-64 17.5q-71 0 -113 -47l-23 30q53 55 136 55q55 0 96 -26t41 -79q0 -28 -16 -57t-37.5 -52.5t-62 -53t-71 -49.5t-82.5 -51h213l-8 -38h-281z" />
+<glyph unicode="&#xb3;" horiz-adv-x="384" d="M104 486l32 25q38 -59 119 -59q45 0 71.5 25.5t26.5 64.5q0 29 -29 47.5t-75 18.5q-22 0 -28 -1l8 39q30 -2 59 -2q45 0 72.5 20.5t27.5 56.5q0 31 -28.5 49.5t-69.5 18.5q-59 0 -109 -44l-20 29q59 53 131 53q60 0 100.5 -26t40.5 -74q0 -45 -31.5 -73t-80.5 -32 q31 -6 54.5 -29.5t23.5 -56.5q0 -48 -39.5 -85t-103.5 -37q-110 0 -152 72z" />
+<glyph unicode="&#xb4;" horiz-adv-x="216" d="M67 556l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xb5;" horiz-adv-x="553" d="M-16 -184l151 667h53l-74 -327q-14 -61 12.5 -92t77.5 -31q44 0 93 24t81 58l81 368h53l-85 -384q-15 -64 34 -64q13 0 21 2l-6 -46q-12 -3 -32 -3q-83 0 -73 86q-90 -86 -182 -86q-75 0 -101 56l-51 -228h-53z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M79 479q0 73 56.5 130.5t137.5 57.5h188l-170 -767h-38l162 730h-93l-162 -730h-38l94 423q-57 0 -97 44.5t-40 111.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="219" d="M65 241q0 20 14.5 33.5t34.5 13.5q17 0 28.5 -11.5t11.5 -28.5q0 -19 -14 -33t-34 -14q-17 0 -29 11.5t-12 28.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="198" d="M-89 -152l23 30q33 -34 83 -34q32 0 49 14.5t17 36.5q0 33 -40 33q-23 0 -37 -17l-24 16l49 84h38l-41 -68q15 12 34 12q26 0 42 -15t16 -42q0 -38 -29 -62.5t-76 -24.5q-65 0 -104 37z" />
+<glyph unicode="&#xb9;" horiz-adv-x="214" d="M122 722l119 99h40l-88 -400h-46l74 337l-77 -66z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M92 459q0 77 52 133t127 56q66 0 105.5 -39t39.5 -102q0 -77 -52 -133t-127 -56q-66 0 -105.5 39t-39.5 102zM137 459q0 -46 27.5 -75t72.5 -29q59 0 97 45.5t38 106.5q0 45 -28.5 74t-73.5 29q-59 0 -96 -44.5t-37 -106.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="402" d="M-11 63l204 182l-116 175h53l120 -180l-200 -177h-61zM114 63l204 182l-116 175h53l120 -180l-200 -177h-61z" />
+<glyph unicode="&#xbc;" horiz-adv-x="742" d="M42 0l573 667h46l-574 -667h-45zM88 568l119 99h40l-88 -400h-46l74 337l-77 -66zM370 107l7 35l237 258h61l-57 -256h60l-7 -37h-60l-24 -107h-44l23 107h-196zM425 144h149l47 211z" />
+<glyph unicode="&#xbd;" horiz-adv-x="781" d="M42 0l573 667h46l-574 -667h-45zM88 568l119 99h40l-88 -400h-46l74 337l-77 -66zM395 0l9 39q63 38 96 59t76.5 51.5t65 52t37 47.5t15.5 50q0 34 -27 51.5t-64 17.5q-71 0 -113 -47l-23 30q53 55 136 55q55 0 96 -26t41 -79q0 -28 -16 -57t-37.5 -52.5t-62 -53 t-71 -49.5t-82.5 -51h213l-8 -38h-281z" />
+<glyph unicode="&#xbe;" horiz-adv-x="859" d="M70 332l32 25q38 -59 119 -59q45 0 71.5 25.5t26.5 64.5q0 29 -29 47.5t-75 18.5q-22 0 -28 -1l8 39q30 -2 59 -2q45 0 72.5 20.5t27.5 56.5q0 31 -28.5 49.5t-69.5 18.5q-59 0 -109 -44l-20 29q59 53 131 53q60 0 100.5 -26t40.5 -74q0 -45 -31.5 -73t-80.5 -32 q31 -6 54.5 -29.5t23.5 -56.5q0 -48 -39.5 -85t-103.5 -37q-110 0 -152 72zM159 0l573 667h46l-574 -667h-45zM487 107l7 35l237 258h61l-57 -256h60l-7 -37h-60l-24 -107h-44l23 107h-196zM542 144h149l47 211z" />
+<glyph unicode="&#xbf;" horiz-adv-x="393" d="M-29 -49q0 50 27.5 87t67 59t78.5 41t66.5 43.5t27.5 55.5q0 25 -20 45l46 24q26 -32 26 -71q0 -40 -26.5 -69.5t-64 -49l-75 -39t-64 -49.5t-26.5 -70q0 -45 37 -72.5t102 -27.5q98 0 167 71l28 -38q-85 -85 -200 -85q-88 0 -142.5 40t-54.5 105zM242 445q0 20 14 33.5 t34 13.5q17 0 28.5 -11.5t11.5 -28.5q0 -20 -14 -33.5t-34 -13.5q-16 0 -28 11.5t-12 28.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="647" d="M-39 0l420 667h71l126 -667h-63l-31 164h-352l-102 -164h-69zM162 216h316l-72 390zM299 867h62l122 -144h-44z" />
+<glyph unicode="&#xc1;" horiz-adv-x="647" d="M-39 0l420 667h71l126 -667h-63l-31 164h-352l-102 -164h-69zM162 216h316l-72 390zM372 723l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xc2;" horiz-adv-x="647" d="M-39 0l420 667h71l126 -667h-63l-31 164h-352l-102 -164h-69zM162 216h316l-72 390zM305 723l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xc3;" horiz-adv-x="647" d="M-39 0l420 667h71l126 -667h-63l-31 164h-352l-102 -164h-69zM162 216h316l-72 390zM277 727q12 60 40.5 97t71.5 37q25 0 41.5 -16t23.5 -35t20 -35t32 -16q46 0 69 96h37q-13 -60 -41.5 -97t-71.5 -37q-25 0 -41.5 16t-23 35.5t-19.5 35.5t-33 16q-46 0 -69 -97h-36z " />
+<glyph unicode="&#xc4;" horiz-adv-x="647" d="M-39 0l420 667h71l126 -667h-63l-31 164h-352l-102 -164h-69zM162 216h316l-72 390zM299 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM503 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5 q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="647" d="M-39 0l420 667h71l126 -667h-63l-31 164h-352l-102 -164h-69zM162 216h316l-72 390zM347 778q0 42 31.5 73.5t73.5 31.5q38 0 62.5 -24.5t24.5 -62.5q0 -43 -31 -74t-74 -31q-38 0 -62.5 24.5t-24.5 62.5zM380 781q0 -26 15 -42t40 -16q29 0 50.5 20.5t21.5 49.5 q0 26 -15.5 42t-40.5 16q-29 0 -50 -21t-21 -49z" />
+<glyph unicode="&#xc6;" horiz-adv-x="939" d="M-40 0l568 667h444l-11 -52h-365l-55 -247h358l-12 -52h-358l-58 -264h365l-11 -52h-423l36 164h-271l-138 -164h-69zM208 216h242l85 385z" />
+<glyph unicode="&#xc7;" horiz-adv-x="672" d="M67 277q0 88 31.5 164.5t83.5 127.5t118.5 80t136.5 29q88 0 156 -37t106 -106l-55 -25q-64 116 -211 116q-120 0 -212 -97t-92 -250q0 -108 65.5 -173.5t175.5 -65.5q102 0 188 76l41 -34q-98 -94 -232 -94q-13 0 -19 1l-27 -46q15 12 34 12q26 0 42 -15t16 -42 q0 -38 -29 -62.5t-76 -24.5q-65 0 -104 37l23 30q33 -34 83 -34q32 0 49 14.5t17 36.5q0 33 -40 33q-23 0 -37 -17l-24 16l38 65q-111 16 -178.5 92.5t-67.5 192.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="564" d="M29 0l147 667h423l-11 -52h-366l-54 -247h358l-12 -52h-358l-59 -264h365l-10 -52h-423zM271 867h62l122 -144h-44z" />
+<glyph unicode="&#xc9;" horiz-adv-x="564" d="M29 0l147 667h423l-11 -52h-366l-54 -247h358l-12 -52h-358l-59 -264h365l-10 -52h-423zM343 723l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xca;" horiz-adv-x="564" d="M29 0l147 667h423l-11 -52h-366l-54 -247h358l-12 -52h-358l-59 -264h365l-10 -52h-423zM274 723l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xcb;" horiz-adv-x="564" d="M29 0l147 667h423l-11 -52h-366l-54 -247h358l-12 -52h-358l-59 -264h365l-10 -52h-423zM270 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM474 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5 t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="223" d="M29 0l147 667h57l-147 -667h-57zM88 867h62l122 -144h-44z" />
+<glyph unicode="&#xcd;" horiz-adv-x="223" d="M29 0l147 667h57l-147 -667h-57zM162 723l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xce;" horiz-adv-x="223" d="M29 0l147 667h57l-147 -667h-57zM93 723l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xcf;" horiz-adv-x="223" d="M29 0l147 667h57l-147 -667h-57zM88 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM292 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5 z" />
+<glyph unicode="&#xd0;" horiz-adv-x="721" d="M25 309l11 50h102l68 308h208q113 0 192 -81t79 -203q0 -56 -16 -110.5t-50 -104t-81.5 -87t-116.5 -59.5t-150 -22h-212l68 309h-102zM127 52h154q154 0 249 96t95 233q0 101 -63.5 167.5t-158.5 66.5h-151l-57 -256h178l-11 -50h-178z" />
+<glyph unicode="&#xd1;" horiz-adv-x="699" d="M29 0l147 667h58l290 -573l128 573h57l-147 -667h-56l-291 582l-129 -582h-57zM302 727q12 60 40.5 97t71.5 37q25 0 41.5 -16t23.5 -35t20 -35t32 -16q46 0 69 96h37q-13 -60 -41.5 -97t-71.5 -37q-25 0 -41.5 16t-23 35.5t-19.5 35.5t-33 16q-46 0 -69 -97h-36z" />
+<glyph unicode="&#xd2;" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q129 0 214 -77t85 -212q0 -169 -108 -285t-261 -116q-129 0 -214.5 77t-85.5 212zM129 279q0 -113 68.5 -176t172.5 -63q124 0 214 99.5t90 247.5q0 113 -69 176t-173 63q-124 0 -213.5 -99t-89.5 -248zM359 867h62l122 -144h-44z" />
+<glyph unicode="&#xd3;" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q129 0 214 -77t85 -212q0 -169 -108 -285t-261 -116q-129 0 -214.5 77t-85.5 212zM129 279q0 -113 68.5 -176t172.5 -63q124 0 214 99.5t90 247.5q0 113 -69 176t-173 63q-124 0 -213.5 -99t-89.5 -248zM431 723l186 144h64l-204 -144h-46z " />
+<glyph unicode="&#xd4;" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q129 0 214 -77t85 -212q0 -169 -108 -285t-261 -116q-129 0 -214.5 77t-85.5 212zM129 279q0 -113 68.5 -176t172.5 -63q124 0 214 99.5t90 247.5q0 113 -69 176t-173 63q-124 0 -213.5 -99t-89.5 -248zM364 723l129 144h54l67 -144h-38 l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xd5;" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q129 0 214 -77t85 -212q0 -169 -108 -285t-261 -116q-129 0 -214.5 77t-85.5 212zM129 279q0 -113 68.5 -176t172.5 -63q124 0 214 99.5t90 247.5q0 113 -69 176t-173 63q-124 0 -213.5 -99t-89.5 -248zM336 727q12 60 40.5 97t71.5 37 q25 0 41.5 -16t23.5 -35t20 -35t32 -16q46 0 69 96h37q-13 -60 -41.5 -97t-71.5 -37q-25 0 -41.5 16t-23 35.5t-20 35.5t-32.5 16q-46 0 -69 -97h-36z" />
+<glyph unicode="&#xd6;" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q129 0 214 -77t85 -212q0 -169 -108 -285t-261 -116q-129 0 -214.5 77t-85.5 212zM129 279q0 -113 68.5 -176t172.5 -63q124 0 214 99.5t90 247.5q0 113 -69 176t-173 63q-124 0 -213.5 -99t-89.5 -248zM359 764q0 16 12.5 28.5t29.5 12.5 q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM563 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="496" d="M52 183l187 154l-117 150l33 27l116 -151l188 153l25 -32l-187 -153l116 -150l-32 -26l-117 150l-186 -153z" />
+<glyph unicode="&#xd8;" horiz-adv-x="764" d="M67 277q0 169 108 285t262 116q106 0 185 -54l37 43h52l-58 -68q83 -80 83 -210q0 -169 -108 -285t-261 -116q-112 0 -189 56l-38 -44h-51l59 69q-81 79 -81 208zM129 279q0 -102 57 -165l398 466q-64 46 -152 46q-124 0 -213.5 -99t-89.5 -248zM215 88q63 -48 155 -48 q124 0 214 99.5t90 247.5q0 101 -60 166z" />
+<glyph unicode="&#xd9;" horiz-adv-x="686" d="M81 205q0 29 5 51l90 411h58l-90 -410q-6 -24 -6 -45q0 -77 50.5 -124.5t138.5 -47.5q95 0 146 55t75 162l90 410h58l-90 -411q-30 -132 -93.5 -200t-185.5 -68q-114 0 -180 58.5t-66 158.5zM319 867h62l122 -144h-44z" />
+<glyph unicode="&#xda;" horiz-adv-x="686" d="M81 205q0 29 5 51l90 411h58l-90 -410q-6 -24 -6 -45q0 -77 50.5 -124.5t138.5 -47.5q95 0 146 55t75 162l90 410h58l-90 -411q-30 -132 -93.5 -200t-185.5 -68q-114 0 -180 58.5t-66 158.5zM394 723l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xdb;" horiz-adv-x="686" d="M81 205q0 29 5 51l90 411h58l-90 -410q-6 -24 -6 -45q0 -77 50.5 -124.5t138.5 -47.5q95 0 146 55t75 162l90 410h58l-90 -411q-30 -132 -93.5 -200t-185.5 -68q-114 0 -180 58.5t-66 158.5zM324 723l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xdc;" horiz-adv-x="686" d="M81 205q0 29 5 51l90 411h58l-90 -410q-6 -24 -6 -45q0 -77 50.5 -124.5t138.5 -47.5q95 0 146 55t75 162l90 410h58l-90 -411q-30 -132 -93.5 -200t-185.5 -68q-114 0 -180 58.5t-66 158.5zM320 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29 t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM524 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="618" d="M108 667h64l153 -328l297 328h74l-349 -382l-63 -285h-58l63 285zM358 723l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xde;" d="M29 0l147 667h57l-27 -124h181q71 0 120.5 -48.5t49.5 -118.5q0 -88 -62.5 -155.5t-184.5 -67.5h-190l-34 -153h-57zM132 205h184q87 0 133.5 49t46.5 118q0 50 -36 84.5t-87 34.5h-178z" />
+<glyph unicode="&#xdf;" horiz-adv-x="578" d="M27 0l112 509q17 74 67 121t125 47q63 0 111 -31.5t48 -81.5q0 -36 -21 -61.5t-51 -40t-60 -28t-51 -33.5t-21 -48q0 -26 26 -45t63 -32t73.5 -28t62.5 -42t26 -65q0 -61 -47.5 -107t-132.5 -46q-68 0 -114 21t-85 69l37 33q60 -79 163 -79q59 0 92.5 31t33.5 71 q0 28 -26 48t-63 33t-73.5 27t-62.5 40.5t-26 63.5t21 64.5t50.5 43t59.5 29t51 31.5t21 42q0 33 -33 53.5t-72 20.5q-50 0 -88 -32.5t-51 -88.5l-113 -509h-52z" />
+<glyph unicode="&#xe0;" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-107 -483h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z M218 700h62l122 -144h-44z" />
+<glyph unicode="&#xe1;" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-107 -483h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z M290 556l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xe2;" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-107 -483h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z M222 556l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xe3;" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-107 -483h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z M195 560q12 60 40.5 97t71.5 37q25 0 41.5 -16t23.5 -35t20 -35t32 -16q46 0 69 96h37q-13 -60 -41.5 -97t-71.5 -37q-25 0 -41.5 16t-23 35.5t-19.5 35.5t-33 16q-46 0 -69 -97h-36z" />
+<glyph unicode="&#xe4;" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-107 -483h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z M218 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM422 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xe5;" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-107 -483h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5z M269 630q0 42 31.5 73.5t73.5 31.5q38 0 62.5 -24.5t24.5 -62.5q0 -43 -31 -74t-74 -31q-38 0 -62.5 24.5t-24.5 62.5zM302 633q0 -26 15 -42t40 -16q29 0 50.5 20.5t21.5 49.5q0 26 -15.5 42t-40.5 16q-29 0 -50 -21t-21 -49z" />
+<glyph unicode="&#xe6;" horiz-adv-x="948" d="M45 186q0 126 71 217.5t183 91.5q57 0 102.5 -25.5t71.5 -68.5l17 82h53l-20 -92q30 43 79.5 73.5t107.5 30.5q91 0 140.5 -57.5t49.5 -149.5q0 -35 -7 -63h-404q-2 -12 -2 -28q0 -70 46.5 -117t130.5 -47q77 0 141 53l21 -39q-79 -59 -161 -59q-81 0 -133 40t-66 107 l-30 -135h-53l17 73q-67 -85 -166 -85q-85 0 -137 53t-52 145zM102 195q0 -74 40 -117t106 -43q49 0 93.5 26.5t70.5 66.5l51 232q-19 38 -61.5 63t-98.5 25q-88 0 -144.5 -76.5t-56.5 -176.5zM494 266h355q1 5 1 22q0 73 -40 117.5t-116 44.5q-72 0 -129.5 -54.5 t-70.5 -129.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="494" d="M46 202q0 120 78 206.5t190 86.5q121 0 173 -88l-40 -30q-41 71 -131 71q-96 0 -155.5 -73.5t-59.5 -173.5q0 -80 46 -123t119 -43q79 0 131 62l30 -36q-70 -73 -166 -73h-14l-27 -45q15 12 34 12q26 0 42 -15t16 -42q0 -38 -29 -62.5t-76 -24.5q-65 0 -104 37l23 30 q33 -34 83 -34q32 0 49 14.5t17 36.5q0 33 -40 33q-23 0 -37 -17l-24 16l38 65q-76 14 -121 68.5t-45 141.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="567" d="M46 201q0 121 78 207.5t190 86.5q94 0 149.5 -59t55.5 -150q0 -29 -8 -61h-408q-2 -12 -2 -28q0 -71 46 -117.5t131 -46.5q84 0 146 52l20 -38q-77 -59 -168 -59q-107 0 -168.5 58.5t-61.5 154.5zM108 266h360q1 5 1 22q0 72 -42.5 117t-118.5 45q-72 0 -129.5 -54.5 t-70.5 -129.5zM225 700h62l122 -144h-44z" />
+<glyph unicode="&#xe9;" horiz-adv-x="567" d="M46 201q0 121 78 207.5t190 86.5q94 0 149.5 -59t55.5 -150q0 -29 -8 -61h-408q-2 -12 -2 -28q0 -71 46 -117.5t131 -46.5q84 0 146 52l20 -38q-77 -59 -168 -59q-107 0 -168.5 58.5t-61.5 154.5zM108 266h360q1 5 1 22q0 72 -42.5 117t-118.5 45q-72 0 -129.5 -54.5 t-70.5 -129.5zM298 556l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xea;" horiz-adv-x="567" d="M46 201q0 121 78 207.5t190 86.5q94 0 149.5 -59t55.5 -150q0 -29 -8 -61h-408q-2 -12 -2 -28q0 -71 46 -117.5t131 -46.5q84 0 146 52l20 -38q-77 -59 -168 -59q-107 0 -168.5 58.5t-61.5 154.5zM108 266h360q1 5 1 22q0 72 -42.5 117t-118.5 45q-72 0 -129.5 -54.5 t-70.5 -129.5zM229 556l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xeb;" horiz-adv-x="567" d="M46 201q0 121 78 207.5t190 86.5q94 0 149.5 -59t55.5 -150q0 -29 -8 -61h-408q-2 -12 -2 -28q0 -71 46 -117.5t131 -46.5q84 0 146 52l20 -38q-77 -59 -168 -59q-107 0 -168.5 58.5t-61.5 154.5zM108 266h360q1 5 1 22q0 72 -42.5 117t-118.5 45q-72 0 -129.5 -54.5 t-70.5 -129.5zM224 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM428 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="214" d="M27 0l107 483h52l-107 -483h-52zM47 700h62l122 -144h-44z" />
+<glyph unicode="&#xed;" horiz-adv-x="214" d="M27 0l107 483h52l-107 -483h-52zM120 556l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xee;" horiz-adv-x="214" d="M27 0l107 483h52l-107 -483h-52zM51 556l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xef;" horiz-adv-x="214" d="M27 0l107 483h52l-107 -483h-52zM46 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM250 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5 z" />
+<glyph unicode="&#xf0;" d="M46 193q0 122 74.5 208t178.5 86q51 0 97.5 -25.5t70.5 -79.5q-38 102 -122 187l-156 -46l-9 32l137 41q-32 29 -70 58l39 40q55 -42 92 -80l117 35l9 -32l-100 -30q120 -138 120 -286q0 -131 -75 -222t-188 -91q-95 0 -155 58t-60 147zM102 200q0 -73 42.5 -119 t117.5 -46q83 0 143 72.5t60 172.5q0 64 -41 112t-120 48q-83 0 -142.5 -70t-59.5 -170z" />
+<glyph unicode="&#xf1;" horiz-adv-x="540" d="M27 0l107 483h52l-16 -73q87 85 174 85q64 0 102.5 -30.5t38.5 -87.5q0 -19 -6 -41l-74 -336h-52l72 328q6 27 6 35q0 43 -29 64t-76 21q-85 0 -167 -84l-80 -364h-52zM188 560q12 60 40.5 97t71.5 37q25 0 41.5 -16t23.5 -35t20 -35t32 -16q46 0 69 96h37 q-13 -60 -41.5 -97t-71.5 -37q-25 0 -41.5 16t-23 35.5t-20 35.5t-32.5 16q-46 0 -69 -97h-36z" />
+<glyph unicode="&#xf2;" d="M45 200q0 118 77 206.5t189 88.5q97 0 155 -58t58 -154q0 -118 -77 -206.5t-189 -88.5q-97 0 -155 58t-58 154zM102 202q0 -77 41.5 -122t115.5 -45q88 0 148 74.5t60 171.5q0 77 -41.5 122t-115.5 45q-88 0 -148 -74.5t-60 -171.5zM227 700h62l122 -144h-44z" />
+<glyph unicode="&#xf3;" d="M45 200q0 118 77 206.5t189 88.5q97 0 155 -58t58 -154q0 -118 -77 -206.5t-189 -88.5q-97 0 -155 58t-58 154zM102 202q0 -77 41.5 -122t115.5 -45q88 0 148 74.5t60 171.5q0 77 -41.5 122t-115.5 45q-88 0 -148 -74.5t-60 -171.5zM298 556l186 144h64l-204 -144h-46z " />
+<glyph unicode="&#xf4;" d="M45 200q0 118 77 206.5t189 88.5q97 0 155 -58t58 -154q0 -118 -77 -206.5t-189 -88.5q-97 0 -155 58t-58 154zM102 202q0 -77 41.5 -122t115.5 -45q88 0 148 74.5t60 171.5q0 77 -41.5 122t-115.5 45q-88 0 -148 -74.5t-60 -171.5zM230 556l129 144h54l67 -144h-38 l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xf5;" d="M45 200q0 118 77 206.5t189 88.5q97 0 155 -58t58 -154q0 -118 -77 -206.5t-189 -88.5q-97 0 -155 58t-58 154zM102 202q0 -77 41.5 -122t115.5 -45q88 0 148 74.5t60 171.5q0 77 -41.5 122t-115.5 45q-88 0 -148 -74.5t-60 -171.5zM203 560q12 60 40.5 97t71.5 37 q25 0 41.5 -16t23.5 -35t20 -35t32 -16q46 0 69 96h37q-13 -60 -41.5 -97t-71.5 -37q-25 0 -41.5 16t-23 35.5t-19.5 35.5t-33 16q-46 0 -69 -97h-36z" />
+<glyph unicode="&#xf6;" d="M45 200q0 118 77 206.5t189 88.5q97 0 155 -58t58 -154q0 -118 -77 -206.5t-189 -88.5q-97 0 -155 58t-58 154zM102 202q0 -77 41.5 -122t115.5 -45q88 0 148 74.5t60 171.5q0 77 -41.5 122t-115.5 45q-88 0 -148 -74.5t-60 -171.5zM226 597q0 16 12.5 28.5t29.5 12.5 q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM430 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M45 316l9 42h453l-9 -42h-453zM193 136q0 17 12.5 29.5t30.5 12.5q15 0 25.5 -10.5t10.5 -25.5q0 -18 -13 -30t-31 -12q-15 0 -25 10.5t-10 25.5zM279 528q0 17 13 29.5t30 12.5q15 0 25.5 -10.5t10.5 -25.5q0 -18 -12.5 -30t-30.5 -12q-15 0 -25.5 10.5t-10.5 25.5z" />
+<glyph unicode="&#xf8;" d="M19 0l66 66q-40 54 -40 134q0 118 77 206.5t189 88.5q90 0 147 -51l38 39h46l-61 -62q43 -55 43 -138q0 -118 -77 -206.5t-189 -88.5q-95 0 -152 54l-41 -42h-46zM102 202q0 -58 22 -96l297 301q-43 41 -111 41q-88 0 -148 -74.5t-60 -171.5zM144 80q42 -45 115 -45 q88 0 148 74.5t60 171.5q0 59 -26 100z" />
+<glyph unicode="&#xf9;" horiz-adv-x="540" d="M54 106q0 19 6 41l74 336h52l-72 -327q-6 -30 -6 -36q0 -43 29 -64t78 -21q83 0 164 85l81 363h52l-107 -483h-52l16 73q-87 -85 -174 -85q-64 0 -102.5 30.5t-38.5 87.5zM210 700h62l122 -144h-44z" />
+<glyph unicode="&#xfa;" horiz-adv-x="540" d="M54 106q0 19 6 41l74 336h52l-72 -327q-6 -30 -6 -36q0 -43 29 -64t78 -21q83 0 164 85l81 363h52l-107 -483h-52l16 73q-87 -85 -174 -85q-64 0 -102.5 30.5t-38.5 87.5zM282 556l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xfb;" horiz-adv-x="540" d="M54 106q0 19 6 41l74 336h52l-72 -327q-6 -30 -6 -36q0 -43 29 -64t78 -21q83 0 164 85l81 363h52l-107 -483h-52l16 73q-87 -85 -174 -85q-64 0 -102.5 30.5t-38.5 87.5zM214 556l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#xfc;" horiz-adv-x="540" d="M54 106q0 19 6 41l74 336h52l-72 -327q-6 -30 -6 -36q0 -43 29 -64t78 -21q83 0 164 85l81 363h52l-107 -483h-52l16 73q-87 -85 -174 -85q-64 0 -102.5 30.5t-38.5 87.5zM209 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12 q-14 0 -23.5 9.5t-9.5 23.5zM413 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="481" d="M-46 -186l20 50q18 -9 47 -9q39 0 76 55l57 87l-94 486h56l81 -422l269 422h61l-381 -589q-57 -90 -135 -90q-32 0 -57 10zM250 556l186 144h64l-204 -144h-46z" />
+<glyph unicode="&#xfe;" horiz-adv-x="567" d="M-14 -184l188 851h52l-56 -257q65 85 166 85q84 0 136 -53.5t52 -145.5q0 -125 -71 -216.5t-182 -91.5q-58 0 -103 25.5t-71 68.5l-59 -266h-52zM106 123q19 -38 61.5 -63t98.5 -25q88 0 144.5 76t56.5 176q0 74 -40 117.5t-106 43.5q-49 0 -93 -26.5t-71 -66.5z" />
+<glyph unicode="&#xff;" horiz-adv-x="481" d="M-46 -186l20 50q18 -9 47 -9q39 0 76 55l57 87l-94 486h56l81 -422l269 422h61l-381 -589q-57 -90 -135 -90q-32 0 -57 10zM177 597q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM381 597q0 16 12.5 28.5 t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="1115" d="M67 277q0 173 110.5 286.5t264.5 113.5q88 0 154 -41t94 -131l35 162h423l-11 -52h-365l-55 -247h358l-12 -52h-358l-58 -264h365l-11 -52h-423l25 114q-92 -126 -255 -126q-125 0 -203 81t-78 208zM129 279q0 -109 65 -174t170 -65q77 0 146 41t111 113l51 231 q-13 95 -75.5 147.5t-157.5 52.5q-128 0 -219 -99.5t-91 -246.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="975" d="M45 200q0 118 76 206.5t188 88.5q86 0 136.5 -50t56.5 -101q85 151 223 151q90 0 146.5 -56.5t56.5 -152.5q0 -29 -8 -61h-404q-2 -10 -2 -28q0 -70 46 -117t129 -47q82 0 144 52l21 -38q-74 -59 -167 -59q-90 0 -147 49t-63 102q-14 -23 -23.5 -37.5t-31 -38.5 t-43 -38.5t-54 -25.5t-69.5 -11q-95 0 -153 57t-58 155zM102 202q0 -76 41 -121.5t114 -45.5q87 0 146.5 73t59.5 173q0 83 -44.5 125t-110.5 42q-86 0 -146 -73t-60 -173zM521 266h356q2 12 2 22q0 71 -42 116.5t-117 45.5q-76 0 -133 -58.5t-66 -125.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="618" d="M108 667h64l153 -328l297 328h74l-349 -382l-63 -285h-58l63 285zM286 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5zM490 764q0 16 12.5 28.5t29.5 12.5q14 0 23.5 -9.5t9.5 -23.5q0 -17 -12.5 -29 t-29.5 -12q-14 0 -23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="250" d="M69 556l129 144h54l67 -144h-38l-62 113l-109 -113h-41z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="307" d="M70 560q12 60 40.5 97t71.5 37q25 0 41.5 -16t23.5 -35t20 -35t32 -16q46 0 69 96h37q-13 -60 -41.5 -97t-71.5 -37q-25 0 -41.5 16t-23 35.5t-20 35.5t-32.5 16q-46 0 -69 -97h-36z" />
+<glyph unicode="&#x2000;" horiz-adv-x="441" />
+<glyph unicode="&#x2001;" horiz-adv-x="883" />
+<glyph unicode="&#x2002;" horiz-adv-x="441" />
+<glyph unicode="&#x2003;" horiz-adv-x="883" />
+<glyph unicode="&#x2004;" horiz-adv-x="294" />
+<glyph unicode="&#x2005;" horiz-adv-x="220" />
+<glyph unicode="&#x2006;" horiz-adv-x="147" />
+<glyph unicode="&#x2007;" horiz-adv-x="147" />
+<glyph unicode="&#x2008;" horiz-adv-x="110" />
+<glyph unicode="&#x2009;" horiz-adv-x="176" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M24 218l10 48h240l-10 -48h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M24 218l10 48h240l-10 -48h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M24 218l10 48h240l-10 -48h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M24 218l10 48h533l-10 -48h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M24 218l10 48h773l-10 -48h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="219" d="M116 531q0 41 30.5 82.5t72.5 63.5l24 -26q-28 -14 -49.5 -37.5t-28.5 -46.5h7q14 0 24 -10.5t10 -26.5q0 -19 -14 -33t-33 -14t-31 12.5t-12 35.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="219" d="M115 509q28 14 49.5 37.5t28.5 46.5h-7q-14 0 -24 10.5t-10 25.5q0 20 14 34t33 14t31 -12.5t12 -35.5q0 -41 -30.5 -82.5t-72.5 -63.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="219" d="M-18 -90q28 14 49.5 37.5t28.5 46.5h-7q-14 0 -24 10.5t-10 25.5q0 20 14 34t33 14t31 -12.5t12 -35.5q0 -41 -30.5 -83t-72.5 -64z" />
+<glyph unicode="&#x201c;" horiz-adv-x="360" d="M126 531q0 41 30 82.5t72 63.5l25 -26q-28 -14 -49.5 -37.5t-28.5 -46.5h7q14 0 24 -10.5t10 -26.5q0 -19 -14.5 -33t-33.5 -14q-18 0 -30 12.5t-12 35.5zM267 531q0 41 30 82.5t72 63.5l24 -26q-28 -15 -49.5 -38t-28.5 -46h7q14 0 24.5 -10.5t10.5 -26.5 q0 -19 -14.5 -33t-33.5 -14t-30.5 12.5t-11.5 35.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="360" d="M115 509q28 14 49.5 37.5t28.5 46.5h-7q-14 0 -24 10.5t-10 25.5q0 20 14 34t33 14t31 -12.5t12 -35.5q0 -41 -30.5 -82.5t-72.5 -63.5zM256 509q28 14 49.5 37.5t28.5 46.5h-7q-14 0 -24 10.5t-10 25.5q0 20 14 34t33 14t30.5 -12.5t11.5 -35.5q0 -41 -30 -82.5 t-72 -63.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="360" d="M-18 -90q28 14 49.5 37.5t28.5 46.5h-7q-14 0 -24 10.5t-10 25.5q0 20 14 34t33 14t31 -12.5t12 -35.5q0 -41 -30.5 -83t-72.5 -64zM123 -90q28 15 49.5 38t28.5 46h-7q-14 0 -24.5 10.5t-10.5 25.5q0 20 14.5 34t33.5 14t30.5 -12.5t11.5 -35.5q0 -41 -30.5 -83 t-71.5 -64z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M75 232q0 46 34.5 79.5t80.5 33.5q40 0 66.5 -26.5t26.5 -66.5q0 -45 -35 -78.5t-81 -33.5q-39 0 -65.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="657" d="M19 31q0 20 14 33.5t34 13.5q17 0 28.5 -12t11.5 -29q0 -19 -14 -33t-34 -14q-17 0 -28.5 12t-11.5 29zM238 31q0 19 14 33t34 14q17 0 28.5 -12t11.5 -29q0 -19 -14 -33t-34 -14q-17 0 -28.5 12t-11.5 29zM457 31q0 19 14 33t34 14q17 0 28.5 -12t11.5 -29 q0 -19 -14 -33t-34 -14q-17 0 -28.5 12t-11.5 29z" />
+<glyph unicode="&#x202f;" horiz-adv-x="176" />
+<glyph unicode="&#x2039;" horiz-adv-x="277" d="M29 243l200 177h61l-204 -182l116 -175h-53z" />
+<glyph unicode="&#x203a;" horiz-adv-x="277" d="M-11 63l204 182l-116 175h53l120 -180l-200 -177h-61z" />
+<glyph unicode="&#x205f;" horiz-adv-x="220" />
+<glyph unicode="&#x20ac;" horiz-adv-x="690" d="M34 242l9 41h47q0 50 13 102h-37l9 41h40q42 115 138 183.5t207 68.5q88 0 156 -37t106 -106l-55 -25q-64 116 -211 116q-86 0 -162.5 -54t-114.5 -146h338l-10 -41h-342q-13 -52 -13 -102h333l-9 -41h-322q11 -93 75 -147.5t164 -54.5q102 0 188 76l41 -34 q-98 -94 -232 -94q-123 0 -205 69.5t-93 184.5h-58z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M105 641l5 26h152l-5 -26h-62l-43 -194h-28l43 194h-62zM250 447l48 220h43l29 -160l99 160h43l-48 -220h-28l40 182l-115 -182h-8l-35 182l-40 -182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern u1="K" u2="a" k="19" />
+<hkern u1="L" u2="a" k="17" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="T" u2="a" k="103" />
+<hkern u1="V" u2="a" k="62" />
+<hkern u1="W" u2="a" k="40" />
+<hkern u1="Y" u2="a" k="126" />
+<hkern u1="a" u2="&#x2122;" k="3" />
+<hkern u1="a" u2="&#x201d;" k="3" />
+<hkern u1="a" u2="&#x201c;" k="3" />
+<hkern u1="a" u2="&#x2019;" k="3" />
+<hkern u1="a" u2="&#x2018;" k="3" />
+<hkern u1="a" u2="&#x178;" k="110" />
+<hkern u1="a" u2="&#xdd;" k="110" />
+<hkern u1="a" u2="&#xae;" k="3" />
+<hkern u1="a" u2="Y" k="110" />
+<hkern u1="a" u2="W" k="42" />
+<hkern u1="a" u2="V" k="63" />
+<hkern u1="a" u2="T" k="114" />
+<hkern u1="a" u2="&#x3f;" k="33" />
+<hkern u1="a" u2="&#x27;" k="3" />
+<hkern u1="a" u2="&#x22;" k="3" />
+<hkern u1="&#xdd;" u2="a" k="126" />
+<hkern u1="&#x178;" u2="a" k="126" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="19" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="12" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="2" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-2" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="-2" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="2" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="11" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="23" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="2" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="13" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="39" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="31" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="32" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="53" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="19" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="29" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="55" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="33" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="3" />
+<hkern g1="G" 	g2="question" 	k="3" />
+<hkern g1="G" 	g2="T" 	k="20" />
+<hkern g1="G" 	g2="W" 	k="7" />
+<hkern g1="G" 	g2="V" 	k="22" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="25" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="2" />
+<hkern g1="G" 	g2="X" 	k="2" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="57" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="26" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="35" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="37" />
+<hkern g1="K" 	g2="x" 	k="23" />
+<hkern g1="L" 	g2="question" 	k="117" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="116" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="37" />
+<hkern g1="L" 	g2="asterisk" 	k="177" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="29" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="63" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="122" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="17" />
+<hkern g1="L" 	g2="t" 	k="32" />
+<hkern g1="L" 	g2="w" 	k="39" />
+<hkern g1="L" 	g2="v" 	k="59" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="59" />
+<hkern g1="L" 	g2="ampersand" 	k="9" />
+<hkern g1="L" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="26" />
+<hkern g1="P" 	g2="J" 	k="105" />
+<hkern g1="P" 	g2="W" 	k="2" />
+<hkern g1="P" 	g2="V" 	k="2" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="79" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="97" />
+<hkern g1="P" 	g2="X" 	k="5" />
+<hkern g1="P" 	g2="ampersand" 	k="23" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="37" />
+<hkern g1="P" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="12" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="2" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="16" />
+<hkern g1="R" 	g2="ampersand" 	k="1" />
+<hkern g1="R" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="3" />
+<hkern g1="S" 	g2="T" 	k="13" />
+<hkern g1="S" 	g2="W" 	k="10" />
+<hkern g1="S" 	g2="V" 	k="11" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="27" />
+<hkern g1="S" 	g2="t" 	k="19" />
+<hkern g1="S" 	g2="w" 	k="2" />
+<hkern g1="S" 	g2="v" 	k="3" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="3" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="9" />
+<hkern g1="S" 	g2="x" 	k="12" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="18" />
+<hkern g1="T" 	g2="J" 	k="82" />
+<hkern g1="T" 	g2="S" 	k="-9" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="36" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="93" />
+<hkern g1="T" 	g2="w" 	k="68" />
+<hkern g1="T" 	g2="v" 	k="68" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="68" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="59" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="92" />
+<hkern g1="T" 	g2="ampersand" 	k="40" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="123" />
+<hkern g1="T" 	g2="x" 	k="78" />
+<hkern g1="T" 	g2="s" 	k="96" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="93" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="6" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="13" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="9" />
+<hkern g1="V" 	g2="J" 	k="92" />
+<hkern g1="V" 	g2="S" 	k="-11" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="22" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="36" />
+<hkern g1="V" 	g2="t" 	k="12" />
+<hkern g1="V" 	g2="w" 	k="3" />
+<hkern g1="V" 	g2="v" 	k="12" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="3" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="47" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="6" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="52" />
+<hkern g1="V" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="22" />
+<hkern g1="V" 	g2="s" 	k="35" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="36" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="9" />
+<hkern g1="W" 	g2="J" 	k="29" />
+<hkern g1="W" 	g2="S" 	k="-10" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="12" />
+<hkern g1="W" 	g2="v" 	k="2" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="2" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="39" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="69" />
+<hkern g1="W" 	g2="ampersand" 	k="10" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="32" />
+<hkern g1="W" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="22" />
+<hkern g1="W" 	g2="s" 	k="15" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="112" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="6" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="45" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="23" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="52" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="41" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="129" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="72" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="19" />
+<hkern g1="ampersand" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="26" />
+<hkern g1="ampersand" 	g2="T" 	k="96" />
+<hkern g1="ampersand" 	g2="W" 	k="64" />
+<hkern g1="ampersand" 	g2="V" 	k="69" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="115" />
+<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="asterisk" 	g2="J" 	k="113" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="106" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="43" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="123" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="127" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="9" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="39" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="22" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="2" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="86" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="22" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="33" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="62" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="55" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="33" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="2" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="19" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="106" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="52" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="9" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="9" />
+<hkern g1="f" 	g2="question" 	k="-59" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-69" />
+<hkern g1="f" 	g2="asterisk" 	k="-69" />
+<hkern g1="f" 	g2="S" 	k="-22" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-62" />
+<hkern g1="f" 	g2="V" 	k="-62" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-53" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="42" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="2" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-77" />
+<hkern g1="g,j,q" 	g2="question" 	k="22" />
+<hkern g1="g,j,q" 	g2="T" 	k="93" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="36" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-43" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="32" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="52" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="105" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="42" />
+<hkern g1="k" 	g2="T" 	k="80" />
+<hkern g1="k" 	g2="W" 	k="22" />
+<hkern g1="k" 	g2="V" 	k="22" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="63" />
+<hkern g1="k" 	g2="bullet" 	k="29" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="29" />
+<hkern g1="k" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="1" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="73" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="92" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="69" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="89" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="22" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="22" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="47" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="69" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="59" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="9" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="63" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="69" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="36" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="2" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="86" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="107" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="73" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="ampersand" 	k="-9" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="54" />
+<hkern g1="r" 	g2="W" 	k="3" />
+<hkern g1="r" 	g2="V" 	k="22" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="82" />
+<hkern g1="r" 	g2="X" 	k="5" />
+<hkern g1="s" 	g2="question" 	k="42" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="94" />
+<hkern g1="s" 	g2="W" 	k="35" />
+<hkern g1="s" 	g2="V" 	k="42" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="92" />
+<hkern g1="s" 	g2="X" 	k="2" />
+<hkern g1="t" 	g2="T" 	k="61" />
+<hkern g1="t" 	g2="W" 	k="12" />
+<hkern g1="t" 	g2="V" 	k="23" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="32" />
+<hkern g1="a,u,z,uni00B5" 	g2="question" 	k="22" />
+<hkern g1="a,u,z,uni00B5" 	g2="T" 	k="93" />
+<hkern g1="a,u,z,uni00B5" 	g2="W" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="V" 	k="36" />
+<hkern g1="a,u,z,uni00B5" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="68" />
+<hkern g1="v" 	g2="W" 	k="2" />
+<hkern g1="v" 	g2="V" 	k="12" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="69" />
+<hkern g1="v" 	g2="X" 	k="39" />
+<hkern g1="w" 	g2="T" 	k="68" />
+<hkern g1="w" 	g2="V" 	k="3" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="19" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="47" />
+<hkern g1="w" 	g2="X" 	k="47" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="2" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="68" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="2" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="3" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="59" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="39" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="47" />
+<hkern g1="X" 	g2="v" 	k="39" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="39" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="42" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="36" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="99" />
+<hkern g1="x" 	g2="T" 	k="78" />
+<hkern g1="x" 	g2="W" 	k="22" />
+<hkern g1="x" 	g2="V" 	k="22" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="72" />
+<hkern g1="x" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="39" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..7307eb72e75fc79aa6af45a4213f81a47d34d0ee
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.woff
new file mode 100755
index 0000000000000000000000000000000000000000..2f81f546a1040cbca463866d4ba08da4db7b6192
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-LightIt.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.eot
new file mode 100755
index 0000000000000000000000000000000000000000..5a54a039e630b78f1d05efcc5b41f10fbcab77ef
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.otf
new file mode 100755
index 0000000000000000000000000000000000000000..018b6f831e5a74082faccf1a4652bbbbed9cf051
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.svg
new file mode 100755
index 0000000000000000000000000000000000000000..d18435650afe3984083b772fc90280f405069d53
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.svg
@@ -0,0 +1,555 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_nova_rgregular" horiz-adv-x="572" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="258" />
+<glyph unicode="&#xfb01;" horiz-adv-x="509" d="M16 417v66h80v37q0 74 38 115.5t102 41.5q46 0 73 -17l-19 -57q-19 12 -43 12q-37 0 -56.5 -24.5t-19.5 -70.5v-37h98v-66h-98v-417h-75v417h-80zM345 602q0 21 15 36t35 15q21 0 36 -15t15 -36t-15 -35.5t-36 -14.5q-20 0 -35 14.5t-15 35.5zM358 0v483h75v-483h-75z " />
+<glyph unicode="&#xfb02;" horiz-adv-x="509" d="M16 417v66h80v37q0 74 38 115.5t102 41.5q46 0 73 -17l-19 -57q-19 12 -43 12q-37 0 -56.5 -24.5t-19.5 -70.5v-37h98v-66h-98v-417h-75v417h-80zM358 0v667h75v-667h-75z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="792" d="M16 417v66h80v37q0 74 37.5 115.5t102.5 41.5q62 0 102 -37l-31 -49q-27 24 -60 24q-37 0 -56.5 -24.5t-19.5 -70.5v-37h98v-66h-98v-417h-75v417h-80zM299 417v66h80v37q0 74 38 115.5t102 41.5q46 0 73 -17l-19 -57q-19 12 -43 12q-37 0 -56.5 -24.5t-19.5 -70.5v-37 h98v-66h-98v-417h-75v417h-80zM629 602q0 21 15 36t35 15q21 0 36 -15t15 -36t-15 -35.5t-36 -14.5q-20 0 -35 14.5t-15 35.5zM642 0v483h75v-483h-75z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="792" d="M16 417v66h80v37q0 74 37.5 115.5t102.5 41.5q62 0 102 -37l-31 -49q-27 24 -60 24q-37 0 -56.5 -24.5t-19.5 -70.5v-37h98v-66h-98v-417h-75v417h-80zM299 417v66h80v37q0 74 38 115.5t102 41.5q46 0 73 -17l-19 -57q-19 12 -43 12q-37 0 -56.5 -24.5t-19.5 -70.5v-37 h98v-66h-98v-417h-75v417h-80zM642 0v667h75v-667h-75z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="258" />
+<glyph unicode="&#x09;" horiz-adv-x="258" />
+<glyph unicode="&#xa0;" horiz-adv-x="258" />
+<glyph unicode="!" horiz-adv-x="230" d="M60 45q0 23 16 39t39 16t39 -16t16 -39q0 -22 -16.5 -38.5t-38.5 -16.5t-38.5 16.5t-16.5 38.5zM68 667h94l-16 -480h-62z" />
+<glyph unicode="&#x22;" horiz-adv-x="343" d="M54 631q0 19 13 32.5t32 13.5t32.5 -13.5t13.5 -32.5l-27 -219h-37q-27 205 -27 219zM199 631q0 19 13.5 32.5t32.5 13.5t32 -13.5t13 -32.5l-27 -219h-37q-27 205 -27 219z" />
+<glyph unicode="#" horiz-adv-x="590" d="M22 181l17 53h107l66 199h-108l16 52h110l60 182h62l-60 -182h110l60 182h61l-61 -182h107l-15 -52h-109l-67 -199h111l-16 -53h-113l-60 -181h-61l61 181h-111l-60 -181h-62l61 181h-106zM207 234h110l66 199h-110z" />
+<glyph unicode="$" horiz-adv-x="593" d="M42 94l49 63q73 -82 180 -94v244q-38 10 -61.5 18t-54.5 23.5t-49 33.5t-30.5 46t-12.5 64q0 77 58 128t150 56v92h61v-93q121 -12 197 -91l-50 -61q-59 63 -147 76v-217q47 -13 78 -25.5t65.5 -35t51.5 -57t17 -80.5q0 -76 -52 -131.5t-160 -63.5v-89h-61v89 q-144 8 -229 105zM149 497q0 -38 31 -59.5t91 -39.5v204q-54 -4 -88 -32.5t-34 -72.5zM332 63q65 7 95.5 40t30.5 74q0 45 -32.5 70t-93.5 43v-227z" />
+<glyph unicode="%" horiz-adv-x="731" d="M31 511q0 71 45 118.5t115 47.5q71 0 116.5 -47.5t45.5 -118.5q0 -70 -45.5 -116.5t-116.5 -46.5t-115.5 46.5t-44.5 116.5zM91 511q0 -48 28 -80.5t72 -32.5t73 32.5t29 80.5q0 50 -28.5 82.5t-73.5 32.5q-44 0 -72 -32.5t-28 -82.5zM128 0l426 667h55l-427 -667h-54z M379 151q0 71 45 118.5t115 47.5q71 0 116 -47.5t45 -118.5q0 -70 -45 -116.5t-116 -46.5t-115.5 46.5t-44.5 116.5zM438 151q0 -48 28.5 -80.5t72.5 -32.5t73 32.5t29 80.5q0 50 -28.5 82.5t-73.5 32.5t-73 -32.5t-28 -82.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="641" d="M36 174q0 71 39 116t108 82q-51 87 -51 150q0 66 48.5 110.5t119.5 44.5q67 0 109 -34.5t42 -96.5q0 -36 -13 -64.5t-42 -52t-50.5 -36.5t-64.5 -35q32 -44 77 -95q36 -43 79 -89q44 65 72 152l65 -28q-49 -114 -91 -172q50 -52 130 -126h-104q-30 26 -73 70 q-82 -82 -192 -82q-91 0 -149.5 48.5t-58.5 137.5zM117 179q0 -60 39.5 -94.5t94.5 -34.5q74 0 140 66q-66 69 -92 101q-46 53 -84 106q-47 -29 -72.5 -62.5t-25.5 -81.5zM210 521q0 -47 40 -115q65 32 98.5 62t33.5 75q0 36 -22 55.5t-57 19.5q-39 0 -66 -27.5t-27 -69.5z " />
+<glyph unicode="'" horiz-adv-x="199" d="M54 631q0 19 13 32.5t32 13.5t32.5 -13.5t13.5 -32.5l-27 -219h-37q-27 205 -27 219z" />
+<glyph unicode="(" horiz-adv-x="248" d="M44 243q0 248 141 442l45 -34q-53 -105 -78.5 -198t-25.5 -210t25.5 -210.5t78.5 -196.5l-45 -35q-141 193 -141 442z" />
+<glyph unicode=")" horiz-adv-x="248" d="M17 -164q53 103 79 196.5t26 210.5q0 118 -26 211t-79 197l45 34q142 -193 142 -442q0 -250 -142 -442z" />
+<glyph unicode="*" horiz-adv-x="340" d="M34 481l102 52l-102 52l22 39l96 -62l-5 115h46l-6 -115l96 62l23 -39l-102 -52l102 -52l-23 -40l-96 63l6 -115h-46l5 115l-96 -63z" />
+<glyph unicode="+" horiz-adv-x="499" d="M29 311v52h192v207h57v-207h192v-52h-192v-213h-57v213h-192z" />
+<glyph unicode="," horiz-adv-x="230" d="M57 -96q25 16 43.5 42.5t21.5 50.5q-4 -2 -14 -2q-21 0 -34.5 14.5t-13.5 36.5t15.5 38t37.5 16q26 0 44.5 -20.5t18.5 -55.5q0 -44 -23 -84.5t-59 -66.5z" />
+<glyph unicode="-" horiz-adv-x="300" d="M30 209v66h240v-66h-240z" />
+<glyph unicode="." horiz-adv-x="230" d="M60 45q0 23 16 39t39 16t39 -16t16 -39t-16 -39t-39 -16t-39 16t-16 39z" />
+<glyph unicode="/" horiz-adv-x="296" d="M0 -20l237 707h59l-237 -707h-59z" />
+<glyph unicode="0" horiz-adv-x="612" d="M51 333q0 64 14.5 123t44 109.5t80 81t116.5 30.5q65 0 116 -30.5t80.5 -81t44 -109.5t14.5 -123t-14.5 -123t-44 -110t-80.5 -81.5t-116 -30.5q-66 0 -116.5 30.5t-80 81.5t-44 110t-14.5 123zM136 333q0 -72 15 -130t55 -99.5t100 -41.5t100 41.5t55 99.5t15 130 t-15 130t-55 99t-100 41t-100 -41t-55 -99t-15 -130z" />
+<glyph unicode="1" horiz-adv-x="339" d="M21 495l167 172h73v-667h-83v557l-107 -113z" />
+<glyph unicode="2" horiz-adv-x="588" d="M53 572q38 50 99.5 77.5t132.5 27.5q91 0 157.5 -51t66.5 -145q0 -93 -80 -185.5t-244 -221.5h327v-74h-458v66q104 82 161.5 130.5t111 103t75.5 97t22 84.5q0 60 -41 91t-98 31q-115 0 -181 -84z" />
+<glyph unicode="3" horiz-adv-x="557" d="M29 98l49 52q30 -40 79 -64t107 -24q73 0 114.5 33.5t41.5 91.5q0 60 -44.5 89t-121.5 29q-59 0 -69 -1v76q11 -1 69 -1q68 0 111.5 27.5t43.5 82.5q0 53 -42.5 83.5t-106.5 30.5q-101 0 -176 -81l-46 52q85 103 228 103q99 0 162.5 -47.5t63.5 -130.5q0 -66 -44 -105.5 t-100 -49.5q55 -5 104.5 -48t49.5 -116q0 -85 -64 -138.5t-172 -53.5q-80 0 -142 31t-95 79z" />
+<glyph unicode="4" horiz-adv-x="558" d="M32 169v69l286 429h114v-425h94v-73h-94v-169h-83v169h-317zM115 242h234v348z" />
+<glyph unicode="5" horiz-adv-x="590" d="M66 95l51 55q69 -88 184 -88q68 0 111 41t43 102q0 65 -42.5 104.5t-110.5 39.5q-90 0 -154 -63l-61 21v360h408v-74h-325v-232q60 60 156 60q88 0 150 -57.5t62 -155.5q0 -100 -67 -160t-170 -60q-154 0 -235 107z" />
+<glyph unicode="6" horiz-adv-x="591" d="M51 332q0 94 28 170t90.5 125.5t152.5 49.5q115 0 185 -80l-42 -62q-58 68 -143 68q-62 0 -105.5 -39t-63 -96.5t-19.5 -126.5q0 -17 1 -26q25 40 77.5 72t111.5 32q95 0 156.5 -55.5t61.5 -157.5q0 -91 -64 -154.5t-170 -63.5q-67 0 -118 28t-80.5 76.5t-44 109 t-14.5 130.5zM137 247q7 -74 48 -129.5t120 -55.5q72 0 112.5 43.5t40.5 97.5q0 70 -43 107t-111 37q-49 0 -94 -27.5t-73 -72.5z" />
+<glyph unicode="7" horiz-adv-x="515" d="M31 593v74h455v-57l-273 -610h-92l269 593h-359z" />
+<glyph unicode="8" horiz-adv-x="581" d="M52 169q0 63 45.5 109t113.5 66q-64 18 -106 58.5t-42 101.5q0 84 68 128.5t160 44.5t160.5 -44.5t68.5 -128.5q0 -61 -42 -101.5t-107 -58.5q68 -20 113.5 -66t45.5 -109q0 -82 -68.5 -131.5t-170.5 -49.5t-170.5 49t-68.5 132zM135 178q0 -52 45.5 -84t110.5 -32 q64 0 109.5 32t45.5 84q0 40 -31.5 70.5t-64 43t-59.5 15.5q-27 -3 -59.5 -15.5t-64.5 -43t-32 -70.5zM146 493q0 -28 16 -50.5t42 -35t46.5 -19t40.5 -10.5q20 3 40.5 10t46.5 19.5t42 35t16 50.5q0 50 -41.5 80t-103.5 30q-63 0 -104 -30t-41 -80z" />
+<glyph unicode="9" horiz-adv-x="591" d="M49 460q0 90 64 154t169 64q68 0 119 -28t80.5 -77t44 -109t14.5 -131q0 -94 -28 -169.5t-90.5 -125t-152.5 -49.5q-115 0 -185 80l42 62q58 -68 143 -68q64 0 108 40t62 97t18 124q0 18 -1 27q-25 -40 -77 -72t-111 -32q-95 0 -157 55.5t-62 157.5zM133 463 q0 -70 43 -107t111 -37q49 0 94.5 27t71.5 72q-6 74 -47 130t-120 56q-71 0 -112 -44t-41 -97z" />
+<glyph unicode=":" horiz-adv-x="230" d="M60 45q0 23 16 39t39 16t39 -16t16 -39t-16 -39t-39 -16t-39 16t-16 39zM60 435q0 23 16 39t39 16t39 -16t16 -39t-16 -39t-39 -16t-39 16t-16 39z" />
+<glyph unicode=";" horiz-adv-x="230" d="M57 -95q24 16 43 43t22 51q-6 -3 -14 -3q-21 0 -34.5 14.5t-13.5 36.5q0 23 15.5 39t37.5 16q26 0 44.5 -20.5t18.5 -55.5q0 -45 -23 -85.5t-59 -65.5zM60 435q0 23 16 39t39 16t39 -16t16 -39q0 -22 -16.5 -38.5t-38.5 -16.5t-38.5 16.5t-16.5 38.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="499" d="M29 308v53l441 219v-63l-377 -183l377 -182v-62z" />
+<glyph unicode="=" horiz-adv-x="499" d="M29 211v52h441v-52h-441zM29 404v53h441v-53h-441z" />
+<glyph unicode="&#x3e;" horiz-adv-x="499" d="M29 90v62l376 182l-376 183v63l441 -219v-53z" />
+<glyph unicode="?" horiz-adv-x="462" d="M18 575q79 102 217 102q89 0 142.5 -44.5t53.5 -110.5q0 -51 -30.5 -90.5t-66.5 -60.5t-66.5 -50t-30.5 -61q0 -28 27 -49l-61 -26q-39 33 -39 81q0 30 13.5 55t33.5 41t43.5 33.5t43.5 32.5t33.5 36t13.5 46q0 40 -30.5 66.5t-87.5 26.5q-97 0 -159 -82zM169 45 q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39t-16.5 -39t-38.5 -16t-38.5 16t-16.5 39z" />
+<glyph unicode="@" horiz-adv-x="783" d="M35 244q0 160 119.5 277t277.5 117q139 0 227 -91.5t88 -225.5q0 -111 -52 -173.5t-121 -62.5q-40 0 -64.5 23.5t-26.5 57.5l-1 6q-27 -38 -69.5 -62.5t-88.5 -24.5q-69 0 -111 45t-42 118q0 102 72 176.5t163 74.5q46 0 79.5 -22t48.5 -56l13 62h68l-57 -271 q-2 -12 -2 -21q0 -25 13.5 -38.5t33.5 -13.5q38 0 73 45t35 137q0 124 -78.5 203.5t-204.5 79.5q-144 0 -251.5 -108.5t-107.5 -249.5q0 -121 81.5 -202t205.5 -81q97 0 186 56l18 -26q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM242 252q0 -49 27.5 -80t74.5 -31 q87 0 149 90l29 138q-10 29 -36.5 51.5t-66.5 22.5q-73 0 -125 -58.5t-52 -132.5z" />
+<glyph unicode="A" horiz-adv-x="658" d="M9 0l268 667h103l269 -667h-95l-59 148h-332l-59 -148h-95zM187 222h283l-141 359z" />
+<glyph unicode="B" horiz-adv-x="629" d="M78 0v667h297q86 0 136.5 -47t50.5 -123q0 -60 -34 -101.5t-83 -51.5q53 -8 91.5 -56t38.5 -108q0 -81 -51.5 -130.5t-141.5 -49.5h-304zM161 74h204q58 0 91 31t33 84q0 49 -32.5 82t-91.5 33h-204v-230zM161 378h200q55 0 85 30t30 77t-30.5 77.5t-84.5 30.5h-200v-215 z" />
+<glyph unicode="C" horiz-adv-x="676" d="M51 333q0 152 98.5 248.5t244.5 96.5q160 0 253 -132l-70 -39q-29 43 -78 70t-105 27q-110 0 -183.5 -76.5t-73.5 -194.5t73.5 -194.5t183.5 -76.5q56 0 105 26.5t78 70.5l71 -39q-97 -132 -254 -132q-146 0 -244.5 96.5t-98.5 248.5z" />
+<glyph unicode="D" horiz-adv-x="700" d="M78 0v667h228q153 0 247.5 -95t94.5 -239q0 -145 -94.5 -239t-247.5 -94h-228zM161 74h145q118 0 187 74t69 185q0 112 -68 186t-188 74h-145v-519z" />
+<glyph unicode="E" horiz-adv-x="569" d="M78 0v667h437v-74h-354v-215h347v-74h-347v-230h354v-74h-437z" />
+<glyph unicode="F" horiz-adv-x="550" d="M78 0v667h437v-74h-354v-215h347v-74h-347v-304h-83z" />
+<glyph unicode="G" horiz-adv-x="713" d="M51 333q0 153 99 249t244 96q158 0 259 -125l-66 -41q-32 42 -83.5 67t-109.5 25q-110 0 -183.5 -76.5t-73.5 -194.5t73.5 -195t183.5 -77q55 0 102.5 21.5t76.5 50.5v136h-229v74h312v-241q-103 -115 -262 -115q-145 0 -244 96.5t-99 249.5z" />
+<glyph unicode="H" horiz-adv-x="712" d="M78 0v667h83v-287h390v287h83v-667h-83v306h-390v-306h-83z" />
+<glyph unicode="I" horiz-adv-x="239" d="M78 0v667h83v-667h-83z" />
+<glyph unicode="J" horiz-adv-x="475" d="M11 65l43 63q55 -66 126 -66q61 0 97.5 38.5t36.5 101.5v465h83v-466q0 -104 -59 -158.5t-153 -54.5q-108 0 -174 77z" />
+<glyph unicode="K" horiz-adv-x="601" d="M78 0v667h83v-345l295 345h104l-278 -317l302 -350h-103l-253 300l-67 -76v-224h-83z" />
+<glyph unicode="L" horiz-adv-x="510" d="M78 0v667h83v-593h310v-74h-393z" />
+<glyph unicode="M" horiz-adv-x="809" d="M78 0v667h119l207 -502l208 502h119v-667h-83v549l-227 -549h-34l-226 549v-549h-83z" />
+<glyph unicode="N" horiz-adv-x="708" d="M78 0v667h85l384 -521v521h83v-667h-80l-389 532v-532h-83z" />
+<glyph unicode="O" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q146 0 238.5 -98t92.5 -247t-92.5 -247t-238.5 -98q-147 0 -239 98t-92 247zM137 333q0 -118 67 -194.5t178 -76.5q110 0 177.5 76.5t67.5 194.5q0 119 -67.5 195t-177.5 76q-111 0 -178 -76t-67 -195z" />
+<glyph unicode="P" horiz-adv-x="587" d="M78 0v667h268q97 0 153 -58t56 -143t-56.5 -143t-152.5 -58h-185v-265h-83zM161 339h175q59 0 96 35.5t37 91.5t-37 91.5t-96 35.5h-175v-254z" />
+<glyph unicode="Q" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q146 0 238.5 -98t92.5 -247t-92 -246l64 -68l-58 -50l-65 69q-78 -50 -180 -50q-147 0 -239 98t-92 247zM137 333q0 -118 67 -194.5t178 -76.5q71 0 127 34l-95 103l58 49l94 -102q61 75 61 187q0 119 -67.5 195t-177.5 76q-111 0 -178 -76 t-67 -195z" />
+<glyph unicode="R" horiz-adv-x="608" d="M78 0v667h268q93 0 151 -55t58 -146q0 -86 -50 -137t-123 -57l180 -272h-98l-170 265h-133v-265h-83zM161 338h175q59 0 96 36t37 92t-37 91.5t-96 35.5h-175v-255z" />
+<glyph unicode="S" horiz-adv-x="586" d="M38 94l49 63q85 -95 210 -95q81 0 119 34.5t38 80.5q0 35 -22 59t-56.5 37.5t-77 24.5t-84.5 24.5t-76.5 32.5t-56.5 54t-22 83q0 82 65 133.5t164 51.5q149 0 237 -93l-50 -61q-73 80 -193 80q-60 0 -98.5 -29.5t-38.5 -76.5q0 -35 29.5 -58t73 -34t95 -27.5t95 -35 t73 -59.5t29.5 -99q0 -82 -60.5 -139t-185.5 -57q-162 0 -256 106z" />
+<glyph unicode="T" horiz-adv-x="570" d="M32 593v74h506v-74h-212v-593h-83v593h-211z" />
+<glyph unicode="U" horiz-adv-x="700" d="M78 259v408h83v-406q0 -93 49 -146t140 -53t140 53t49 146v406h83v-407q0 -127 -69.5 -199.5t-202.5 -72.5t-202.5 72.5t-69.5 198.5z" />
+<glyph unicode="V" horiz-adv-x="658" d="M9 667h95l225 -576l225 576h95l-269 -667h-103z" />
+<glyph unicode="W" horiz-adv-x="883" d="M14 667h92l148 -556l153 556h69l153 -556l147 556h92l-190 -667h-90l-147 538l-147 -538h-90z" />
+<glyph unicode="X" horiz-adv-x="652" d="M12 0l260 342l-245 325h101l198 -267l197 267h101l-244 -324l259 -343h-100l-213 284l-213 -284h-101z" />
+<glyph unicode="Y" horiz-adv-x="626" d="M9 667h97l207 -310l207 310h97l-262 -385v-282h-83v282z" />
+<glyph unicode="Z" horiz-adv-x="585" d="M48 0v69l375 524h-375v74h481v-69l-375 -524h382v-74h-488z" />
+<glyph unicode="[" horiz-adv-x="243" d="M40 -190v868h186v-55h-128v-758h128v-55h-186z" />
+<glyph unicode="\" horiz-adv-x="296" d="M0 687h59l237 -707h-59z" />
+<glyph unicode="]" horiz-adv-x="243" d="M17 -135h128v758h-128v55h186v-868h-186v55z" />
+<glyph unicode="^" horiz-adv-x="432" d="M19 333l169 334h57l168 -334h-62l-135 279l-135 -279h-62z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-3 -40h570v-55h-570v55z" />
+<glyph unicode="`" horiz-adv-x="226" d="M0 700h78l148 -144h-57z" />
+<glyph unicode="a" horiz-adv-x="527" d="M48 148q0 76 50.5 117.5t118.5 41.5q103 0 160 -66v87q0 48 -34 75t-88 27q-85 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332h-75v55q-61 -67 -160 -67q-67 0 -118 43t-51 117zM125 147q0 -46 33.5 -75.5t85.5 -29.5q90 0 133 60v91q-43 60 -133 60 q-52 0 -85.5 -29.5t-33.5 -76.5z" />
+<glyph unicode="b" horiz-adv-x="575" d="M75 0v667h75v-257q63 85 163 85q95 0 155 -69.5t60 -184.5q0 -116 -59.5 -184.5t-155.5 -68.5q-101 0 -163 84v-72h-75zM150 131q20 -32 60.5 -54t83.5 -22q72 0 114 52t42 134t-42 134.5t-114 52.5q-43 0 -83.5 -22.5t-60.5 -55.5v-219z" />
+<glyph unicode="c" horiz-adv-x="495" d="M47 242q0 109 67 181t174 72q112 0 177 -84l-50 -46q-46 63 -123 63q-76 0 -121.5 -52t-45.5 -134t45.5 -134.5t121.5 -52.5t123 63l50 -46q-65 -84 -177 -84q-107 0 -174 72.5t-67 181.5z" />
+<glyph unicode="d" horiz-adv-x="575" d="M47 241q0 115 59.5 184.5t155.5 69.5q100 0 163 -85v257h75v-667h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5zM125 241q0 -82 42 -134t113 -52q44 0 84 22t61 54v219q-21 33 -61.5 55.5t-83.5 22.5q-71 0 -113 -52.5t-42 -134.5z" />
+<glyph unicode="e" horiz-adv-x="563" d="M47 242q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-391q5 -71 52 -119t122 -48q90 0 149 61l36 -49q-74 -74 -192 -74q-108 0 -177 70.5t-69 183.5zM126 272h317q-1 62 -42 111.5t-117 49.5q-72 0 -113.5 -49t-44.5 -112z" />
+<glyph unicode="f" horiz-adv-x="283" d="M16 417v66h80v37q0 74 37.5 115.5t102.5 41.5q62 0 102 -37l-31 -49q-27 24 -60 24q-37 0 -56.5 -24.5t-19.5 -70.5v-37h98v-66h-98v-417h-75v417h-80z" />
+<glyph unicode="g" horiz-adv-x="574" d="M47 244q0 115 59.5 183t155.5 68q99 0 162 -85v73h75v-469q0 -111 -65 -160.5t-165 -49.5q-64 0 -109 15.5t-86 56.5l38 56q55 -66 157 -66q67 0 111 35.5t44 109.5v69q-27 -38 -70 -62t-92 -24q-96 0 -155.5 67.5t-59.5 182.5zM125 244q0 -81 42 -132.5t113 -51.5 q43 0 83.5 23t60.5 56v211q-20 33 -60 55.5t-84 22.5q-72 0 -113.5 -51t-41.5 -133z" />
+<glyph unicode="h" horiz-adv-x="552" d="M75 0v667h75v-254q28 33 75 57.5t98 24.5q154 0 154 -154v-341h-75v318q0 60 -28 85t-81 25q-41 0 -80.5 -22t-62.5 -53v-353h-75z" />
+<glyph unicode="i" horiz-adv-x="225" d="M62 602q0 21 15 36t35 15q21 0 36 -15t15 -36t-15 -35.5t-36 -14.5q-20 0 -35 14.5t-15 35.5zM75 0v483h75v-483h-75z" />
+<glyph unicode="j" horiz-adv-x="225" d="M-99 -160l27 57q31 -31 69 -31q36 0 57 21.5t21 65.5v530h75v-530q0 -71 -37 -110t-106 -39q-59 0 -106 36zM62 602q0 21 15 36t35 15q21 0 36 -15t15 -36t-15 -35.5t-36 -14.5q-20 0 -35 14.5t-15 35.5z" />
+<glyph unicode="k" horiz-adv-x="514" d="M75 0v667h75v-441l254 257h95l-214 -219l215 -264h-96l-174 217l-80 -79v-138h-75z" />
+<glyph unicode="l" horiz-adv-x="225" d="M75 0v667h75v-667h-75z" />
+<glyph unicode="m" horiz-adv-x="808" d="M75 0v483h75v-70q18 28 63 55t93 27q53 0 86 -25t44 -65q22 36 67 63t95 27q135 0 135 -146v-349h-75v328q0 100 -89 100q-36 0 -72 -22t-56 -52v-354h-75v328q0 100 -89 100q-35 0 -70.5 -22t-56.5 -53v-353h-75z" />
+<glyph unicode="n" horiz-adv-x="551" d="M75 0v483h75v-70q28 33 75 57.5t97 24.5q154 0 154 -156v-339h-75v316q0 61 -28 86.5t-80 25.5q-42 0 -81.5 -22t-61.5 -53v-353h-75z" />
+<glyph unicode="o" d="M47 242q0 108 65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73t-173.5 73t-65.5 181zM125 242q0 -78 43.5 -132.5t117.5 -54.5t117 54.5t43 132.5t-43 132t-117 54t-117.5 -54.5t-43.5 -131.5z" />
+<glyph unicode="p" d="M75 -184v667h75v-72q27 38 70 61t93 23q96 0 155.5 -68.5t59.5 -184.5t-59.5 -185t-155.5 -69q-102 0 -163 85v-257h-75zM150 133q20 -33 60.5 -55.5t83.5 -22.5q71 0 113 52.5t42 134.5t-42 134t-113 52q-43 0 -83.5 -22.5t-60.5 -54.5v-218z" />
+<glyph unicode="q" d="M44 242q0 116 59.5 184.5t155.5 68.5q50 0 93 -23t69 -61v72h75v-667h-75v257q-61 -85 -162 -85q-96 0 -155.5 69t-59.5 185zM123 242q0 -82 41.5 -134.5t112.5 -52.5q44 0 84.5 22.5t59.5 55.5v218q-19 32 -59.5 54.5t-84.5 22.5q-71 0 -112.5 -52t-41.5 -134z" />
+<glyph unicode="r" horiz-adv-x="330" d="M75 0v483h75v-78q67 88 161 88v-77q-14 3 -30 3q-34 0 -74 -24t-57 -53v-342h-75z" />
+<glyph unicode="s" horiz-adv-x="465" d="M33 64l39 54q25 -29 68.5 -49t90.5 -20q54 0 84 23t30 60q0 32 -31 50.5t-74.5 28t-87.5 22t-75 43t-31 80.5q0 59 48.5 99t131.5 40q109 0 179 -70l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -29 31 -45.5t74.5 -26t87.5 -22.5t75 -45.5t31 -84.5 q0 -64 -50 -105t-140 -41q-123 0 -195 76z" />
+<glyph unicode="t" horiz-adv-x="294" d="M10 417v66h80v132h75v-132h98v-66h-98v-300q0 -28 12.5 -45t36.5 -17q33 0 51 20l22 -56q-33 -31 -90 -31q-53 0 -80 29t-27 84v316h-80z" />
+<glyph unicode="u" horiz-adv-x="551" d="M75 142v341h75v-318q0 -60 27.5 -85t80.5 -25q42 0 81.5 21t61.5 52v355h75v-483h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154z" />
+<glyph unicode="v" horiz-adv-x="490" d="M3 483h81l161 -396l160 396h82l-201 -483h-82z" />
+<glyph unicode="w" horiz-adv-x="734" d="M12 483h78l118 -385l127 385h64l127 -385l118 385h78l-154 -483h-75l-126 388l-126 -388h-75z" />
+<glyph unicode="x" horiz-adv-x="486" d="M12 0l185 248l-175 235h87l134 -184l134 184h87l-175 -235l186 -248h-87l-145 198l-145 -198h-86z" />
+<glyph unicode="y" horiz-adv-x="490" d="M3 483h81l161 -396l160 396h82l-242 -581q-40 -96 -142 -98q-30 0 -55 7l12 68q18 -8 41 -8q26 0 43 11t29 40l32 73z" />
+<glyph unicode="z" horiz-adv-x="472" d="M52 0v58l266 359h-266v66h364v-57l-268 -361h272v-65h-368z" />
+<glyph unicode="{" horiz-adv-x="260" d="M5 219v50q25 0 38.5 19.5t13.5 49.5v205q0 60 37.5 97.5t87.5 37.5h61v-55h-61q-27 0 -46.5 -22.5t-19.5 -57.5v-211q0 -68 -46 -88q46 -20 46 -88v-211q0 -34 19.5 -57t46.5 -23h61v-55h-61q-50 0 -87.5 37.5t-37.5 96.5v206q0 30 -13.5 49.5t-38.5 19.5z" />
+<glyph unicode="|" horiz-adv-x="211" d="M78 -20v707h55v-707h-55z" />
+<glyph unicode="}" horiz-adv-x="260" d="M17 -135h61q27 0 46.5 23t19.5 57v211q0 68 46 88q-46 20 -46 88v211q0 35 -19.5 57.5t-46.5 22.5h-61v55h61q50 0 87.5 -37.5t37.5 -97.5v-205q0 -30 13.5 -49.5t38.5 -19.5v-50q-25 0 -38.5 -19.5t-13.5 -49.5v-206q0 -59 -37.5 -96.5t-87.5 -37.5h-61v55z" />
+<glyph unicode="~" horiz-adv-x="503" d="M27 429q5 50 13 88.5t23 74.5t41 55t61 19t58.5 -19.5t35 -48t20.5 -56.5t23 -47.5t35 -19.5q65 0 82 192l56 -7q-5 -51 -12.5 -89t-22.5 -74t-41 -55t-62 -19q-35 0 -58 19.5t-34.5 47.5t-21 56t-23.5 47.5t-35 19.5q-63 0 -82 -191z" />
+<glyph unicode="&#xa1;" horiz-adv-x="230" d="M60 438q0 22 16.5 38.5t38.5 16.5t38.5 -16.5t16.5 -38.5t-16 -38.5t-39 -16.5t-39 16.5t-16 38.5zM69 -184l15 480h62l16 -480h-93z" />
+<glyph unicode="&#xa2;" horiz-adv-x="495" d="M47 242q0 98 56.5 167.5t148.5 82.5v73h59v-71q94 -8 154 -83l-50 -46q-40 54 -104 62v-371q63 6 104 62l50 -46q-58 -75 -154 -83v-89h-59v91q-92 12 -148.5 81.5t-56.5 169.5zM125 242q0 -70 34 -120t93 -63v364q-59 -13 -93 -62.5t-34 -118.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="518" d="M19 268v54h106q-28 32 -38.5 45.5t-24.5 46t-14 66.5q0 82 66 139.5t158 57.5q68 0 121 -29.5t81 -82.5l-67 -40q-14 34 -48.5 58t-78.5 24q-59 0 -101 -35t-42 -93q0 -26 9 -50t17.5 -37t28.5 -37.5t26 -32.5h150v-54h-122q7 -23 7 -43q0 -78 -76 -132q25 9 52 9 q33 0 76.5 -20.5t71.5 -20.5q31 0 57 12.5t38 27.5l36 -67q-49 -47 -135 -47q-47 0 -95 23t-84 23q-42 0 -118 -40l-30 62q64 29 98.5 68.5t34.5 84.5q0 30 -15 60h-145z" />
+<glyph unicode="&#xa4;" horiz-adv-x="598" d="M27 559l47 46l78 -79q62 46 147 46q86 0 146 -46l78 78l46 -46l-78 -78q47 -63 47 -147q0 -83 -46 -148l77 -76l-46 -45l-77 75q-62 -46 -147 -46q-86 0 -149 47l-75 -76l-47 45l77 77q-45 64 -45 147q0 86 46 147zM137 333q0 -71 43.5 -121.5t118.5 -50.5t118.5 50.5 t43.5 121.5t-43.5 120.5t-118.5 49.5t-118.5 -50t-43.5 -120z" />
+<glyph unicode="&#xa5;" horiz-adv-x="626" d="M9 667h97l207 -310l207 310h97l-227 -333h215v-52h-250v-107h250v-53h-250v-122h-83v122h-250v53h250v107h-250v52h214z" />
+<glyph unicode="&#xa6;" horiz-adv-x="211" d="M78 -20v316h55v-316h-55zM78 371v316h55v-316h-55z" />
+<glyph unicode="&#xa7;" horiz-adv-x="468" d="M34 -3l38 49q60 -72 156 -72q53 0 85 23t32 64q0 34 -31 53.5t-74.5 30t-87.5 23t-75 43t-31 79.5q0 50 32.5 82.5t82.5 45.5q-115 36 -115 123q0 58 48.5 97t131.5 39q117 0 178 -71l-34 -45q-50 60 -142 60q-48 0 -78.5 -22t-30.5 -58q0 -31 31 -48.5t74.5 -26.5 t87.5 -22t75 -45t31 -84q0 -87 -92 -128q92 -35 92 -121q0 -69 -52 -108t-138 -39q-114 0 -194 78zM119 298q0 -26 21.5 -44.5t42 -25.5t67.5 -18q7 -2 11 -3q83 36 83 98q0 39 -30.5 59t-82.5 33q-62 -16 -87 -40t-25 -59z" />
+<glyph unicode="&#xa8;" horiz-adv-x="272" d="M-14 604q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14t-33 13.5t-14 33.5zM192 604q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M44 334q0 143 101 244t244 101t244 -101t101 -244t-101 -244t-244 -101t-244 101.5t-101 243.5zM75 334q0 -130 92 -222t222 -92t222 92t92 222t-92 222t-222 92t-222 -92t-92 -222zM183 335q0 91 60.5 152t147.5 61q90 0 146 -66l-25 -24q-19 26 -52.5 41.5t-68.5 15.5 q-70 0 -120.5 -50.5t-50.5 -129.5q0 -77 51 -129t120 -52q36 0 68.5 16t52.5 42l26 -25q-57 -66 -147 -66q-87 0 -147.5 61.5t-60.5 152.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="378" d="M41 422q0 49 33.5 76t78.5 27q67 0 107 -42v55q0 30 -23 47.5t-56 17.5q-59 0 -99 -46l-25 37q52 54 131 54q57 0 93 -27t36 -84v-211h-57v35q-40 -43 -107 -43q-44 0 -78 28t-34 76zM99 422q0 -30 21.5 -48t54.5 -18q56 0 85 38v56q-29 38 -85 38q-33 0 -54.5 -18.5 t-21.5 -47.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="439" d="M30 243l160 177h75l-160 -177l160 -180h-75zM174 243l160 177h75l-160 -177l160 -180h-75z" />
+<glyph unicode="&#xac;" horiz-adv-x="504" d="M29 404v53h441v-246h-55v193h-386z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M30 209v66h240v-66h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M35 465q0 88 62 150t150 62q89 0 150.5 -61.5t61.5 -150.5q0 -88 -62 -150t-150 -62t-150 62t-62 150zM63 465q0 -76 54 -130t130 -54t129.5 54t53.5 130t-53.5 129.5t-129.5 53.5q-77 0 -130.5 -53.5t-53.5 -129.5zM166 343v243h99q32 0 54.5 -20.5t22.5 -53.5 q0 -35 -22.5 -53.5t-39.5 -18.5l65 -97h-40l-63 96h-44v-96h-32zM198 468h67q16 0 30 13t14 31q0 19 -13.5 32.5t-30.5 13.5h-67v-90z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M0 572v48h363v-48h-363z" />
+<glyph unicode="&#xb0;" horiz-adv-x="290" d="M23 555q0 50 35.5 86t85.5 36q51 0 87 -36t36 -86q0 -51 -36 -86.5t-87 -35.5q-50 0 -85.5 35.5t-35.5 86.5zM72 555q0 -31 21 -52.5t51 -21.5q31 0 53 21.5t22 52.5q0 30 -22 52t-53 22q-30 0 -51 -22t-21 -52z" />
+<glyph unicode="&#xb1;" horiz-adv-x="499" d="M29 0v52h441v-52h-441zM29 324v52h192v207h57v-207h192v-52h-192v-214h-57v214h-192z" />
+<glyph unicode="&#xb2;" horiz-adv-x="388" d="M49 764q50 63 147 63q60 0 101.5 -30.5t41.5 -87.5q0 -56 -50 -111.5t-151 -127.5h203v-49h-291v45q124 88 176.5 140.5t52.5 98.5q0 36 -25 54.5t-60 18.5q-73 0 -112 -52z" />
+<glyph unicode="&#xb3;" horiz-adv-x="388" d="M42 479l32 38q44 -54 116 -54q43 0 68 19t25 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 39 -1q98 0 98 64q0 30 -25.5 47t-63.5 17q-64 0 -109 -49l-31 36q55 62 145 62q64 0 104 -29t40 -78q0 -40 -27 -63.5t-62 -29.5q34 -3 65 -28t31 -69q0 -52 -41 -84t-110 -32 q-103 0 -150 65z" />
+<glyph unicode="&#xb4;" horiz-adv-x="226" d="M0 556l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xb5;" horiz-adv-x="565" d="M75 -184v667h75v-318q0 -112 110 -112q41 0 80 22t61 53v355h75v-370q0 -58 47 -58q11 0 19 2l6 -65q-22 -4 -40 -4q-88 0 -104 86q-27 -37 -68 -61.5t-85 -24.5q-75 0 -101 48v-220h-75z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M27 495q0 71 50.5 121.5t121.5 50.5h179v-767h-45v722h-89v-722h-45v423q-71 0 -121.5 50.5t-50.5 121.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="230" d="M60 244q0 22 16 38.5t39 16.5t39 -16.5t16 -38.5t-16.5 -38t-38.5 -16t-38.5 16t-16.5 38z" />
+<glyph unicode="&#xb8;" horiz-adv-x="205" d="M0 -161l19 38q35 -29 80 -29q25 0 43 11.5t18 30.5q0 35 -37 35q-23 0 -38 -17l-33 19l31 84h45l-26 -66q16 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -30 -58t-74 -22q-63 0 -101 30z" />
+<glyph unicode="&#xb9;" horiz-adv-x="235" d="M14 711l108 110h53v-400h-60v322l-66 -69z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M40 483q0 70 44.5 117.5t117.5 47.5q74 0 118.5 -47.5t44.5 -117.5t-44.5 -117.5t-118.5 -47.5q-73 0 -117.5 47.5t-44.5 117.5zM100 483q0 -51 27.5 -84t74.5 -33q48 0 76 33t28 84q0 50 -28 82.5t-76 32.5q-47 0 -74.5 -32.5t-27.5 -82.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="439" d="M30 63l160 180l-160 177h75l160 -177l-160 -180h-75zM174 63l160 180l-160 177h75l160 -177l-160 -180h-75z" />
+<glyph unicode="&#xbc;" horiz-adv-x="770" d="M14 557l108 110h53v-400h-60v322l-66 -69zM108 0l426 667h56l-427 -667h-55zM420 100v44l172 256h83v-251h58v-49h-58v-100h-59v100h-196zM480 149h136v198z" />
+<glyph unicode="&#xbd;" horiz-adv-x="807" d="M14 557l108 110h53v-400h-60v322l-66 -69zM108 0l426 667h56l-427 -667h-55zM467 343q49 63 147 63q60 0 101.5 -30.5t41.5 -87.5q0 -56 -50 -111.5t-151 -127.5h203v-49h-291v45q124 88 176.5 140.5t52.5 98.5q0 36 -25 54.5t-60 18.5q-73 0 -112 -52z" />
+<glyph unicode="&#xbe;" horiz-adv-x="878" d="M42 325l32 38q44 -54 116 -54q43 0 68 19t25 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 39 -1q98 0 98 64q0 30 -25.5 47t-63.5 17q-64 0 -109 -49l-31 36q55 62 145 62q64 0 104 -29t40 -78q0 -40 -27 -63.5t-62 -29.5q34 -3 65 -28t31 -69q0 -52 -41 -84t-110 -32 q-103 0 -150 65zM216 0l426 667h56l-427 -667h-55zM529 100v44l172 256h83v-251h58v-49h-58v-100h-59v100h-196zM589 149h136v198z" />
+<glyph unicode="&#xbf;" horiz-adv-x="394" d="M31 -41q0 42 20 75.5t48 54.5t56.5 40t48.5 42t20 50q0 28 -26 48l60 27q39 -35 39 -82q0 -35 -18.5 -63t-45 -47.5t-53 -37.5t-45 -42.5t-18.5 -53.5q0 -39 30.5 -65.5t86.5 -26.5q99 0 160 81l49 -53q-78 -102 -216 -102q-89 0 -142.5 44.5t-53.5 110.5zM183 437 q0 23 16.5 39.5t38.5 16.5t38.5 -16.5t16.5 -39.5q0 -22 -16.5 -38t-38.5 -16t-38.5 16t-16.5 38z" />
+<glyph unicode="&#xc0;" horiz-adv-x="658" d="M9 0l268 667h103l269 -667h-95l-59 148h-332l-59 -148h-95zM160 867h78l148 -144h-57zM187 222h283l-141 359z" />
+<glyph unicode="&#xc1;" horiz-adv-x="658" d="M9 0l268 667h103l269 -667h-95l-59 148h-332l-59 -148h-95zM187 222h283l-141 359zM272 723l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xc2;" horiz-adv-x="658" d="M9 0l268 667h103l269 -667h-95l-59 148h-332l-59 -148h-95zM187 222h283l-141 359zM198 723l95 144h72l98 -144h-51l-83 106l-80 -106h-51z" />
+<glyph unicode="&#xc3;" horiz-adv-x="658" d="M9 0l268 667h103l269 -667h-95l-59 148h-332l-59 -148h-95zM173 727q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37q-25 0 -43.5 14.5t-27.5 31.5t-22.5 31.5t-29.5 14.5 q-21 0 -34.5 -21.5t-13.5 -64.5h-45zM187 222h283l-141 359z" />
+<glyph unicode="&#xc4;" horiz-adv-x="658" d="M9 0l268 667h103l269 -667h-95l-59 148h-332l-59 -148h-95zM180 771q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14t-33 14t-14 33zM187 222h283l-141 359zM386 771q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xc5;" horiz-adv-x="658" d="M9 0l268 667h103l269 -667h-95l-59 148h-332l-59 -148h-95zM187 222h283l-141 359zM231 788q0 41 29 70t69 29t69 -29t29 -70q0 -40 -28.5 -69t-69.5 -29t-69.5 29t-28.5 69zM271 788q0 -24 17 -41.5t41 -17.5t41 17.5t17 41.5q0 25 -16.5 42t-41.5 17q-24 0 -41 -17 t-17 -42z" />
+<glyph unicode="&#xc6;" horiz-adv-x="947" d="M7 0l416 667h470v-74h-354v-215h347v-74h-347v-230h354v-74h-437v148h-263l-91 -148h-95zM234 222h222v359z" />
+<glyph unicode="&#xc7;" horiz-adv-x="676" d="M51 333q0 152 98.5 248.5t244.5 96.5q160 0 253 -132l-70 -39q-29 43 -78 70t-105 27q-110 0 -183.5 -76.5t-73.5 -194.5t73.5 -194.5t183.5 -76.5q56 0 105 26.5t78 70.5l71 -39q-95 -128 -244 -132l-15 -39q16 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -30 -58 t-74 -22q-64 0 -101 30l19 38q35 -29 80 -29q25 0 43 11.5t18 30.5q0 35 -37 35q-23 0 -38 -17l-33 19l21 59q-134 11 -221.5 105.5t-87.5 237.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="569" d="M78 0v667h437v-74h-354v-215h347v-74h-347v-230h354v-74h-437zM127 867h78l148 -144h-57z" />
+<glyph unicode="&#xc9;" horiz-adv-x="569" d="M78 0v667h437v-74h-354v-215h347v-74h-347v-230h354v-74h-437zM239 723l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xca;" horiz-adv-x="569" d="M78 0v667h437v-74h-354v-215h347v-74h-347v-230h354v-74h-437zM163 723l95 144h72l98 -144h-51l-83 106l-80 -106h-51z" />
+<glyph unicode="&#xcb;" horiz-adv-x="569" d="M78 0v667h437v-74h-354v-215h347v-74h-347v-230h354v-74h-437zM146 771q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14t-33 14t-14 33zM352 771q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xcc;" horiz-adv-x="239" d="M-50 867h78l148 -144h-57zM78 0v667h83v-667h-83z" />
+<glyph unicode="&#xcd;" horiz-adv-x="239" d="M63 723l148 144h78l-169 -144h-57zM78 0v667h83v-667h-83z" />
+<glyph unicode="&#xce;" horiz-adv-x="239" d="M-12 723l95 144h72l98 -144h-51l-83 106l-80 -106h-51zM78 0v667h83v-667h-83z" />
+<glyph unicode="&#xcf;" horiz-adv-x="239" d="M-30 771q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14t-33 14t-14 33zM78 0v667h83v-667h-83zM176 771q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xd0;" horiz-adv-x="728" d="M10 299v61h96v307h228q153 0 247.5 -95t94.5 -239q0 -145 -94.5 -239t-247.5 -94h-228v299h-96zM189 74h145q118 0 187 74t69 185q0 112 -68 186t-188 74h-145v-233h169v-61h-169v-225z" />
+<glyph unicode="&#xd1;" horiz-adv-x="708" d="M78 0v667h85l384 -521v521h83v-667h-80l-389 532v-532h-83zM196 727q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37q-25 0 -43.5 14.5t-27.5 31.5t-22.5 31.5t-29.5 14.5 q-21 0 -34.5 -21.5t-13.5 -64.5h-45z" />
+<glyph unicode="&#xd2;" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q146 0 238.5 -98t92.5 -247t-92.5 -247t-238.5 -98q-147 0 -239 98t-92 247zM137 333q0 -118 67 -194.5t178 -76.5q110 0 177.5 76.5t67.5 194.5q0 119 -67.5 195t-177.5 76q-111 0 -178 -76t-67 -195zM214 867h78l148 -144h-57z" />
+<glyph unicode="&#xd3;" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q146 0 238.5 -98t92.5 -247t-92.5 -247t-238.5 -98q-147 0 -239 98t-92 247zM137 333q0 -118 67 -194.5t178 -76.5q110 0 177.5 76.5t67.5 194.5q0 119 -67.5 195t-177.5 76q-111 0 -178 -76t-67 -195zM326 723l148 144h78l-169 -144h-57z " />
+<glyph unicode="&#xd4;" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q146 0 238.5 -98t92.5 -247t-92.5 -247t-238.5 -98q-147 0 -239 98t-92 247zM137 333q0 -118 67 -194.5t178 -76.5q110 0 177.5 76.5t67.5 194.5q0 119 -67.5 195t-177.5 76q-111 0 -178 -76t-67 -195zM252 723l95 144h72l98 -144h-51 l-83 106l-80 -106h-51z" />
+<glyph unicode="&#xd5;" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q146 0 238.5 -98t92.5 -247t-92.5 -247t-238.5 -98q-147 0 -239 98t-92 247zM137 333q0 -118 67 -194.5t178 -76.5q110 0 177.5 76.5t67.5 194.5q0 119 -67.5 195t-177.5 76q-111 0 -178 -76t-67 -195zM226 727q0 60 25.5 97t71.5 37 q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37q-25 0 -43.5 14.5t-27.5 31.5t-22.5 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45z" />
+<glyph unicode="&#xd6;" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q146 0 238.5 -98t92.5 -247t-92.5 -247t-238.5 -98q-147 0 -239 98t-92 247zM137 333q0 -118 67 -194.5t178 -76.5q110 0 177.5 76.5t67.5 194.5q0 119 -67.5 195t-177.5 76q-111 0 -178 -76t-67 -195zM232 771q0 19 14 32.5t33 13.5 t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14t-33 14t-14 33zM438 771q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xd7;" horiz-adv-x="499" d="M64 185l148 149l-148 148l37 38l148 -149l149 149l37 -38l-148 -148l148 -149l-37 -37l-149 149l-148 -149z" />
+<glyph unicode="&#xd8;" horiz-adv-x="765" d="M51 333q0 149 92 247t239 98q92 0 167 -42l21 31h66l-42 -62q57 -47 88 -117.5t31 -154.5q0 -149 -92.5 -247t-238.5 -98q-97 0 -173 45l-22 -33h-66l44 65q-114 98 -114 268zM137 333q0 -126 73 -201l296 440q-56 32 -124 32q-111 0 -178 -76t-67 -195zM252 97 q55 -35 130 -35q110 0 177.5 76.5t67.5 194.5q0 130 -78 205z" />
+<glyph unicode="&#xd9;" horiz-adv-x="700" d="M78 259v408h83v-406q0 -93 49 -146t140 -53t140 53t49 146v406h83v-407q0 -127 -69.5 -199.5t-202.5 -72.5t-202.5 72.5t-69.5 198.5zM181 867h78l148 -144h-57z" />
+<glyph unicode="&#xda;" horiz-adv-x="700" d="M78 259v408h83v-406q0 -93 49 -146t140 -53t140 53t49 146v406h83v-407q0 -127 -69.5 -199.5t-202.5 -72.5t-202.5 72.5t-69.5 198.5zM293 723l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xdb;" horiz-adv-x="700" d="M78 259v408h83v-406q0 -93 49 -146t140 -53t140 53t49 146v406h83v-407q0 -127 -69.5 -199.5t-202.5 -72.5t-202.5 72.5t-69.5 198.5zM220 723l95 144h72l98 -144h-51l-83 106l-80 -106h-51z" />
+<glyph unicode="&#xdc;" horiz-adv-x="700" d="M78 259v408h83v-406q0 -93 49 -146t140 -53t140 53t49 146v406h83v-407q0 -127 -69.5 -199.5t-202.5 -72.5t-202.5 72.5t-69.5 198.5zM201 771q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14q-20 0 -33.5 14t-13.5 33zM407 771q0 19 14 32.5t33 13.5 t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xdd;" horiz-adv-x="626" d="M9 667h97l207 -310l207 310h97l-262 -385v-282h-83v282zM256 723l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xde;" horiz-adv-x="587" d="M78 0v667h83v-119h185q97 0 153 -58t56 -144q0 -85 -56.5 -142.5t-152.5 -57.5h-185v-146h-83zM161 220h175q59 0 96 35t37 91t-37 92t-96 36h-175v-254z" />
+<glyph unicode="&#xdf;" horiz-adv-x="597" d="M75 0v499q0 75 52.5 126.5t138.5 51.5q72 0 123.5 -34.5t51.5 -91.5q0 -37 -23.5 -65t-51.5 -42.5t-51.5 -37t-23.5 -49.5q0 -28 29.5 -44.5t71.5 -25.5t84.5 -22t72 -45.5t29.5 -84.5q0 -62 -48.5 -104.5t-137.5 -42.5q-66 0 -107.5 20t-78.5 58l38 52 q23 -30 61.5 -49.5t86.5 -19.5q54 0 83.5 24.5t29.5 59.5q0 32 -29.5 50.5t-71.5 28.5t-84.5 22.5t-72 43t-29.5 78.5q0 37 23 66t50 44t50 35t23 41q0 32 -30 50t-69 18q-49 0 -82 -30.5t-33 -80.5v-499h-75z" />
+<glyph unicode="&#xe0;" horiz-adv-x="527" d="M48 148q0 76 50.5 117.5t118.5 41.5q103 0 160 -66v87q0 48 -34 75t-88 27q-85 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332h-75v55q-61 -67 -160 -67q-67 0 -118 43t-51 117zM96 700h78l148 -144h-57zM125 147q0 -46 33.5 -75.5t85.5 -29.5q90 0 133 60 v91q-43 60 -133 60q-52 0 -85.5 -29.5t-33.5 -76.5z" />
+<glyph unicode="&#xe1;" horiz-adv-x="527" d="M48 148q0 76 50.5 117.5t118.5 41.5q103 0 160 -66v87q0 48 -34 75t-88 27q-85 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332h-75v55q-61 -67 -160 -67q-67 0 -118 43t-51 117zM125 147q0 -46 33.5 -75.5t85.5 -29.5q90 0 133 60v91q-43 60 -133 60 q-52 0 -85.5 -29.5t-33.5 -76.5zM208 556l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xe2;" horiz-adv-x="527" d="M48 148q0 76 50.5 117.5t118.5 41.5q103 0 160 -66v87q0 48 -34 75t-88 27q-85 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332h-75v55q-61 -67 -160 -67q-67 0 -118 43t-51 117zM125 147q0 -46 33.5 -75.5t85.5 -29.5q90 0 133 60v91q-43 60 -133 60 q-52 0 -85.5 -29.5t-33.5 -76.5zM133 556l95 144h72l98 -144h-51l-83 106l-80 -106h-51z" />
+<glyph unicode="&#xe3;" horiz-adv-x="527" d="M48 148q0 76 50.5 117.5t118.5 41.5q103 0 160 -66v87q0 48 -34 75t-88 27q-85 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332h-75v55q-61 -67 -160 -67q-67 0 -118 43t-51 117zM109 560q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5 t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37q-25 0 -43.5 14.5t-27.5 31.5t-22.5 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45zM125 147q0 -46 33.5 -75.5t85.5 -29.5q90 0 133 60v91q-43 60 -133 60q-52 0 -85.5 -29.5t-33.5 -76.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="527" d="M48 148q0 76 50.5 117.5t118.5 41.5q103 0 160 -66v87q0 48 -34 75t-88 27q-85 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332h-75v55q-61 -67 -160 -67q-67 0 -118 43t-51 117zM115 604q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14 q-20 0 -33.5 13.5t-13.5 33.5zM125 147q0 -46 33.5 -75.5t85.5 -29.5q90 0 133 60v91q-43 60 -133 60q-52 0 -85.5 -29.5t-33.5 -76.5zM321 604q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xe5;" horiz-adv-x="527" d="M48 148q0 76 50.5 117.5t118.5 41.5q103 0 160 -66v87q0 48 -34 75t-88 27q-85 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332h-75v55q-61 -67 -160 -67q-67 0 -118 43t-51 117zM125 147q0 -46 33.5 -75.5t85.5 -29.5q90 0 133 60v91q-43 60 -133 60 q-52 0 -85.5 -29.5t-33.5 -76.5zM167 641q0 41 29 70t69 29t69 -29t29 -70t-28.5 -69.5t-69.5 -28.5t-69.5 28.5t-28.5 69.5zM207 641q0 -24 17 -41.5t41 -17.5t41 17.5t17 41.5q0 25 -16.5 42t-41.5 17q-24 0 -41 -17t-17 -42z" />
+<glyph unicode="&#xe6;" horiz-adv-x="889" d="M48 148q0 75 51.5 117t126.5 42q112 0 175 -64v86q0 47 -36.5 74t-96.5 27q-94 0 -161 -67l-35 52q79 80 205 80q64 0 111 -26t60 -79q60 105 179 105q101 0 158.5 -73t57.5 -186v-19h-367q5 -71 48 -118t113 -47q84 0 139 61l36 -51q-72 -74 -178 -74q-136 0 -193 116 q-26 -52 -79.5 -84t-119.5 -32q-82 0 -138 42.5t-56 117.5zM125 152q0 -45 36 -72.5t95 -27.5q62 0 103.5 39t41.5 89v12q-52 61 -145 61q-59 0 -95 -27.5t-36 -73.5zM476 272h293q-1 63 -38 112t-109 49q-66 0 -104.5 -49.5t-41.5 -111.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="495" d="M47 242q0 109 67 181t174 72q112 0 177 -84l-50 -46q-46 63 -123 63q-76 0 -121.5 -52t-45.5 -134t45.5 -134.5t121.5 -52.5t123 63l50 -46q-60 -77 -159 -83l-16 -42q16 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -30 -58t-74 -22q-63 0 -101 30l19 38q35 -29 80 -29 q25 0 43 11.5t18 30.5q0 35 -37 35q-23 0 -38 -17l-33 19l22 61q-96 9 -155.5 79t-59.5 173z" />
+<glyph unicode="&#xe8;" horiz-adv-x="563" d="M47 242q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-391q5 -71 52 -119t122 -48q90 0 149 61l36 -49q-74 -74 -192 -74q-108 0 -177 70.5t-69 183.5zM116 700h78l148 -144h-57zM126 272h317q-1 62 -42 111.5t-117 49.5q-72 0 -113.5 -49t-44.5 -112z " />
+<glyph unicode="&#xe9;" horiz-adv-x="563" d="M47 242q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-391q5 -71 52 -119t122 -48q90 0 149 61l36 -49q-74 -74 -192 -74q-108 0 -177 70.5t-69 183.5zM126 272h317q-1 62 -42 111.5t-117 49.5q-72 0 -113.5 -49t-44.5 -112zM228 556l148 144h78 l-169 -144h-57z" />
+<glyph unicode="&#xea;" horiz-adv-x="563" d="M47 242q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-391q5 -71 52 -119t122 -48q90 0 149 61l36 -49q-74 -74 -192 -74q-108 0 -177 70.5t-69 183.5zM126 272h317q-1 62 -42 111.5t-117 49.5q-72 0 -113.5 -49t-44.5 -112zM154 556l95 144h72l98 -144 h-51l-83 106l-80 -106h-51z" />
+<glyph unicode="&#xeb;" horiz-adv-x="563" d="M47 242q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-391q5 -71 52 -119t122 -48q90 0 149 61l36 -49q-74 -74 -192 -74q-108 0 -177 70.5t-69 183.5zM126 272h317q-1 62 -42 111.5t-117 49.5q-72 0 -113.5 -49t-44.5 -112zM136 604q0 19 14 32.5 t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14t-33 13.5t-14 33.5zM342 604q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xec;" horiz-adv-x="225" d="M-57 700h78l148 -144h-57zM75 0v483h75v-483h-75z" />
+<glyph unicode="&#xed;" horiz-adv-x="225" d="M56 556l148 144h78l-169 -144h-57zM75 0v483h75v-483h-75z" />
+<glyph unicode="&#xee;" horiz-adv-x="225" d="M-20 556l95 144h72l98 -144h-51l-83 106l-80 -106h-51zM75 0v483h75v-483h-75z" />
+<glyph unicode="&#xef;" horiz-adv-x="225" d="M-37 604q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14q-20 0 -33.5 13.5t-13.5 33.5zM75 0v483h75v-483h-75zM169 604q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xf0;" d="M47 234q0 106 62 175.5t158 69.5t158 -89q-49 88 -160 170l-143 -63l-18 42l118 52q-11 7 -23.5 15t-28 18t-23.5 15l41 62q67 -41 112 -76l108 48l17 -41l-86 -38q186 -158 186 -347q0 -114 -65 -186.5t-174 -72.5q-107 0 -173 70t-66 176zM125 234q0 -75 43.5 -127 t117.5 -52t117 52t43 127q0 74 -43 126t-117 52t-117.5 -52t-43.5 -126z" />
+<glyph unicode="&#xf1;" horiz-adv-x="551" d="M75 0v483h75v-70q28 33 75 57.5t97 24.5q154 0 154 -156v-339h-75v316q0 61 -28 86.5t-80 25.5q-42 0 -81.5 -22t-61.5 -53v-353h-75zM120 560q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97 t-71.5 -37q-25 0 -43.5 14.5t-27.5 31.5t-22.5 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45z" />
+<glyph unicode="&#xf2;" d="M47 242q0 108 65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73t-173.5 73t-65.5 181zM117 700h78l148 -144h-57zM125 242q0 -78 43.5 -132.5t117.5 -54.5t117 54.5t43 132.5t-43 132t-117 54t-117.5 -54.5t-43.5 -131.5z" />
+<glyph unicode="&#xf3;" d="M47 242q0 108 65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73t-173.5 73t-65.5 181zM125 242q0 -78 43.5 -132.5t117.5 -54.5t117 54.5t43 132.5t-43 132t-117 54t-117.5 -54.5t-43.5 -131.5zM229 556l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xf4;" d="M47 242q0 108 65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73t-173.5 73t-65.5 181zM125 242q0 -78 43.5 -132.5t117.5 -54.5t117 54.5t43 132.5t-43 132t-117 54t-117.5 -54.5t-43.5 -131.5zM154 556l95 144h72l98 -144h-51l-83 106l-80 -106 h-51z" />
+<glyph unicode="&#xf5;" d="M47 242q0 108 65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73t-173.5 73t-65.5 181zM125 242q0 -78 43.5 -132.5t117.5 -54.5t117 54.5t43 132.5t-43 132t-117 54t-117.5 -54.5t-43.5 -131.5zM130 560q0 60 25.5 97t71.5 37q24 0 42.5 -14.5 t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37q-25 0 -43.5 14.5t-27.5 31.5t-22.5 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45z" />
+<glyph unicode="&#xf6;" d="M47 242q0 108 65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73t-173.5 73t-65.5 181zM125 242q0 -78 43.5 -132.5t117.5 -54.5t117 54.5t43 132.5t-43 132t-117 54t-117.5 -54.5t-43.5 -131.5zM136 604q0 19 14 32.5t33 13.5t32.5 -13.5 t13.5 -32.5t-13.5 -33t-32.5 -14t-33 13.5t-14 33.5zM342 604q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M29 311v52h453v-52h-453zM210 144q0 19 13 32.5t32 13.5t33 -13.5t14 -32.5t-14 -32.5t-33 -13.5t-32 13.5t-13 32.5zM210 526q0 19 13 32.5t32 13.5q20 0 33.5 -13.5t13.5 -32.5t-14 -32.5t-33 -13.5t-32 13.5t-13 32.5z" />
+<glyph unicode="&#xf8;" d="M47 242q0 108 65.5 180.5t173.5 72.5q79 0 137 -41l23 29h54l-45 -57q70 -72 70 -184q0 -108 -65.5 -181t-173.5 -73q-83 0 -142 45l-26 -33h-54l48 61q-65 71 -65 181zM125 242q0 -70 34 -121l219 277q-38 30 -92 30q-74 0 -117.5 -54.5t-43.5 -131.5zM188 89 q42 -34 98 -34q74 0 117 54.5t43 132.5q0 73 -38 125z" />
+<glyph unicode="&#xf9;" horiz-adv-x="551" d="M75 142v341h75v-318q0 -60 27.5 -85t80.5 -25q42 0 81.5 21t61.5 52v355h75v-483h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154zM106 700h78l148 -144h-57z" />
+<glyph unicode="&#xfa;" horiz-adv-x="551" d="M75 142v341h75v-318q0 -60 27.5 -85t80.5 -25q42 0 81.5 21t61.5 52v355h75v-483h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154zM218 556l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xfb;" horiz-adv-x="551" d="M75 142v341h75v-318q0 -60 27.5 -85t80.5 -25q42 0 81.5 21t61.5 52v355h75v-483h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154zM143 556l95 144h72l98 -144h-51l-83 106l-80 -106h-51z" />
+<glyph unicode="&#xfc;" horiz-adv-x="551" d="M75 142v341h75v-318q0 -60 27.5 -85t80.5 -25q42 0 81.5 21t61.5 52v355h75v-483h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154zM127 604q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14q-20 0 -33.5 13.5t-13.5 33.5zM333 604q0 19 14 32.5 t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#xfd;" horiz-adv-x="490" d="M3 483h81l161 -396l160 396h82l-242 -581q-40 -96 -142 -98q-30 0 -55 7l12 68q18 -8 41 -8q26 0 43 11t29 40l32 73zM188 556l148 144h78l-169 -144h-57z" />
+<glyph unicode="&#xfe;" d="M75 -184v851h75v-256q27 38 70 61t93 23q96 0 155.5 -68.5t59.5 -184.5t-59.5 -185t-155.5 -69q-102 0 -163 85v-257h-75zM150 133q20 -33 60.5 -55.5t83.5 -22.5q71 0 113 52.5t42 134.5t-42 134t-113 52q-43 0 -83.5 -22.5t-60.5 -54.5v-218z" />
+<glyph unicode="&#xff;" horiz-adv-x="490" d="M3 483h81l161 -396l160 396h82l-242 -581q-40 -96 -142 -98q-30 0 -55 7l12 68q18 -8 41 -8q26 0 43 11t29 40l32 73zM95 604q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14q-20 0 -33.5 13.5t-13.5 33.5zM301 604q0 19 14 32.5t33 13.5t33 -13.5 t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#x152;" horiz-adv-x="1105" d="M51 333q0 149 90 246.5t234 97.5q73 0 137.5 -34t100.5 -97v121h438v-74h-355v-215h348v-74h-348v-230h355v-74h-438v120q-36 -63 -100.5 -97.5t-137.5 -34.5q-144 0 -234 98t-90 247zM137 333q0 -119 67.5 -195t179.5 -76q79 0 139.5 41.5t89.5 119.5v220 q-29 78 -89.5 119t-139.5 41q-112 0 -179.5 -75.5t-67.5 -194.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="962" d="M47 242q0 108 65.5 180.5t173.5 72.5q42 0 78 -14t59.5 -36.5t38 -43.5t24.5 -44q22 52 71.5 95t126.5 43q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q89 0 150 61l36 -49q-76 -74 -192 -74q-83 0 -133 41.5t-75 96.5q-62 -138 -199 -138 q-108 0 -173.5 73t-65.5 181zM125 242q0 -79 44 -133.5t117 -54.5t116.5 54t43.5 134q0 79 -43.5 132.5t-116.5 53.5t-117 -53.5t-44 -132.5zM525 272h318q-2 62 -43 111.5t-117 49.5q-72 0 -113.5 -49t-44.5 -112z" />
+<glyph unicode="&#x178;" horiz-adv-x="626" d="M9 667h97l207 -310l207 310h97l-262 -385v-282h-83v282zM165 771q0 19 14 32.5t33 13.5t32.5 -13.5t13.5 -32.5t-13.5 -33t-32.5 -14q-20 0 -33.5 14t-13.5 33zM371 771q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5t-14 -33t-33 -14t-33 14t-14 33z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="265" d="M0 556l95 144h72l98 -144h-51l-83 106l-80 -106h-51z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="313" d="M0 560q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37q-25 0 -43.5 14.5t-27.5 31.5t-22.5 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45z" />
+<glyph unicode="&#x2000;" horiz-adv-x="443" />
+<glyph unicode="&#x2001;" horiz-adv-x="887" />
+<glyph unicode="&#x2002;" horiz-adv-x="443" />
+<glyph unicode="&#x2003;" horiz-adv-x="887" />
+<glyph unicode="&#x2004;" horiz-adv-x="295" />
+<glyph unicode="&#x2005;" horiz-adv-x="221" />
+<glyph unicode="&#x2006;" horiz-adv-x="147" />
+<glyph unicode="&#x2007;" horiz-adv-x="147" />
+<glyph unicode="&#x2008;" horiz-adv-x="110" />
+<glyph unicode="&#x2009;" horiz-adv-x="177" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M30 209v66h240v-66h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M30 209v66h240v-66h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M30 209v66h240v-66h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M30 209v66h533v-66h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M30 209v66h773v-66h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="230" d="M47 527q0 44 22.5 84t58.5 66l37 -30q-24 -16 -42.5 -42.5t-21.5 -50.5q1 0 6 0.5t7 0.5q21 0 35 -14.5t14 -36.5t-15.5 -37.5t-37.5 -15.5q-26 0 -44.5 20.5t-18.5 55.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="230" d="M57 481q24 16 43 42.5t22 50.5q-4 -2 -14 -2q-21 0 -34.5 14.5t-13.5 36.5t15.5 38t37.5 16q26 0 44.5 -20.5t18.5 -55.5q0 -44 -23 -84.5t-59 -66.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="230" d="M57 -96q25 16 43.5 42.5t21.5 50.5q-4 -2 -14 -2q-21 0 -34.5 14.5t-13.5 36.5t15.5 38t37.5 16q26 0 44.5 -20.5t18.5 -55.5q0 -44 -23 -84.5t-59 -66.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="390" d="M54 527q0 44 22.5 84t58.5 66l37 -30q-24 -16 -43 -42.5t-21 -50.5h5q5 1 8 1q21 0 34.5 -14.5t13.5 -36.5t-15.5 -37.5t-37.5 -15.5q-26 0 -44 20.5t-18 55.5zM214 527q0 44 22.5 84t58.5 66l37 -30q-24 -16 -42.5 -42.5t-21.5 -50.5h5q5 1 8 1q21 0 35 -14.5t14 -36.5 t-16 -37.5t-38 -15.5q-26 0 -44 20.5t-18 55.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="390" d="M57 481q24 16 43 42.5t22 50.5q-4 -2 -14 -2q-21 0 -34.5 14.5t-13.5 36.5t15.5 38t37.5 16q26 0 44.5 -20.5t18.5 -55.5q0 -44 -23 -84.5t-59 -66.5zM218 481q24 16 42.5 42.5t21.5 50.5q-4 -2 -13 -2q-21 0 -35 14.5t-14 36.5t15.5 38t37.5 16q26 0 44.5 -20.5 t18.5 -55.5q0 -44 -23 -84.5t-58 -66.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="390" d="M57 -96q25 16 43.5 42.5t21.5 50.5q-4 -2 -14 -2q-21 0 -34.5 14.5t-13.5 36.5t15.5 38t37.5 16q26 0 44.5 -20.5t18.5 -55.5q0 -44 -23 -84.5t-59 -66.5zM218 -96q24 16 42.5 42.5t21.5 50.5q-4 -2 -13 -2q-21 0 -35 14.5t-14 36.5t15.5 38t37.5 16q26 0 44.5 -20.5 t18.5 -55.5q0 -44 -23 -84.5t-58 -66.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M72 242q0 44 32 76t76 32t76 -32t32 -76t-32 -75.5t-76 -31.5t-76 31.5t-32 75.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="690" d="M60 45q0 23 16 39t38 16t38.5 -16t16.5 -39q0 -22 -16.5 -38.5t-38.5 -16.5t-38 16.5t-16 38.5zM290 45q0 23 16 39t38 16q23 0 39.5 -16.5t16.5 -38.5t-17 -38.5t-39 -16.5t-38 16.5t-16 38.5zM520 45q0 23 16 39t39 16t39 -16t16 -39q0 -22 -16.5 -38.5t-38.5 -16.5 t-38.5 16.5t-16.5 38.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="177" />
+<glyph unicode="&#x2039;" horiz-adv-x="295" d="M30 243l160 177h75l-160 -177l160 -180h-75z" />
+<glyph unicode="&#x203a;" horiz-adv-x="295" d="M30 63l160 180l-160 177h75l160 -177l-160 -180h-75z" />
+<glyph unicode="&#x205f;" horiz-adv-x="221" />
+<glyph unicode="&#x20ac;" horiz-adv-x="695" d="M31 237v52h43q-2 28 -2 44t2 46h-43v52h53q30 112 120.5 179.5t210.5 67.5q160 0 253 -132l-70 -39q-29 43 -78 70t-105 27q-85 0 -150 -47t-92 -126h303v-52h-315q-3 -23 -3 -46t3 -44h315v-52h-303q26 -80 91.5 -127.5t150.5 -47.5q56 0 105 26.5t78 70.5l71 -39 q-97 -132 -254 -132q-121 0 -211.5 67.5t-119.5 181.5h-53z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M17 641v26h152v-26h-62v-194h-28v194h-62zM205 447v220h43l64 -160l64 160h43v-220h-28v182l-75 -182h-8l-75 182v-182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="17" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="13" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="3" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="3" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="2" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="16" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="3" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="37" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="17" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="59" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="36" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="6" />
+<hkern g1="G" 	g2="question" 	k="6" />
+<hkern g1="G" 	g2="T" 	k="3" />
+<hkern g1="G" 	g2="W" 	k="3" />
+<hkern g1="G" 	g2="V" 	k="6" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="9" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="3" />
+<hkern g1="G" 	g2="X" 	k="3" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="54" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="21" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="26" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="39" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="17" />
+<hkern g1="K" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="34" />
+<hkern g1="K" 	g2="x" 	k="26" />
+<hkern g1="L" 	g2="question" 	k="114" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="122" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="34" />
+<hkern g1="L" 	g2="asterisk" 	k="174" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="66" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="123" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
+<hkern g1="L" 	g2="t" 	k="33" />
+<hkern g1="L" 	g2="w" 	k="37" />
+<hkern g1="L" 	g2="v" 	k="57" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="57" />
+<hkern g1="L" 	g2="ampersand" 	k="7" />
+<hkern g1="L" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
+<hkern g1="L" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="21" />
+<hkern g1="P" 	g2="J" 	k="109" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="3" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="77" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="94" />
+<hkern g1="P" 	g2="X" 	k="9" />
+<hkern g1="P" 	g2="ampersand" 	k="26" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="34" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="P" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="13" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="3" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="16" />
+<hkern g1="R" 	g2="ampersand" 	k="3" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="6" />
+<hkern g1="S" 	g2="T" 	k="6" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="17" />
+<hkern g1="S" 	g2="w" 	k="3" />
+<hkern g1="S" 	g2="v" 	k="6" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="6" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="x" 	k="13" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
+<hkern g1="T" 	g2="J" 	k="83" />
+<hkern g1="T" 	g2="S" 	k="3" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="31" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="85" />
+<hkern g1="T" 	g2="w" 	k="56" />
+<hkern g1="T" 	g2="v" 	k="56" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="56" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="67" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="93" />
+<hkern g1="T" 	g2="ampersand" 	k="57" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="95" />
+<hkern g1="T" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="115" />
+<hkern g1="T" 	g2="x" 	k="66" />
+<hkern g1="T" 	g2="s" 	k="91" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="85" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="12" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="26" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V" 	g2="J" 	k="93" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="42" />
+<hkern g1="V" 	g2="t" 	k="13" />
+<hkern g1="V" 	g2="w" 	k="6" />
+<hkern g1="V" 	g2="v" 	k="13" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="6" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="54" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="29" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="53" />
+<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="63" />
+<hkern g1="V" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="23" />
+<hkern g1="V" 	g2="s" 	k="39" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="42" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="W" 	g2="J" 	k="38" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="13" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="13" />
+<hkern g1="W" 	g2="v" 	k="3" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="3" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="47" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="67" />
+<hkern g1="W" 	g2="ampersand" 	k="20" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="33" />
+<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="40" />
+<hkern g1="W" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="23" />
+<hkern g1="W" 	g2="s" 	k="19" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="26" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="63" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="116" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="121" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="127" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="73" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="17" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="question" 	k="36" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="6" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="T" 	k="108" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="W" 	k="43" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="V" 	k="66" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="T" 	k="74" />
+<hkern g1="ampersand" 	g2="W" 	k="48" />
+<hkern g1="ampersand" 	g2="V" 	k="50" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="91" />
+<hkern g1="asterisk" 	g2="J" 	k="116" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="101" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="46" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="115" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="124" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="7" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="37" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="23" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="3" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="81" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="23" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="36" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="63" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="36" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="3" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="17" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="101" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="7" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="7" />
+<hkern g1="f" 	g2="question" 	k="-57" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-67" />
+<hkern g1="f" 	g2="asterisk" 	k="-67" />
+<hkern g1="f" 	g2="S" 	k="-23" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-63" />
+<hkern g1="f" 	g2="V" 	k="-63" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-56" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="43" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="3" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-74" />
+<hkern g1="g,j,q" 	g2="question" 	k="23" />
+<hkern g1="g,j,q" 	g2="T" 	k="85" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="42" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-46" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="33" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="53" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="43" />
+<hkern g1="k" 	g2="T" 	k="69" />
+<hkern g1="k" 	g2="W" 	k="23" />
+<hkern g1="k" 	g2="V" 	k="23" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="66" />
+<hkern g1="k" 	g2="bullet" 	k="27" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="27" />
+<hkern g1="k" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="3" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="76" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="93" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="67" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="87" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="23" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="44" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="67" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="57" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="7" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="66" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="78" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="31" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="3" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="92" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="104" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="76" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="48" />
+<hkern g1="r" 	g2="W" 	k="6" />
+<hkern g1="r" 	g2="V" 	k="23" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="83" />
+<hkern g1="r" 	g2="X" 	k="9" />
+<hkern g1="s" 	g2="question" 	k="43" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="88" />
+<hkern g1="s" 	g2="W" 	k="39" />
+<hkern g1="s" 	g2="V" 	k="43" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="93" />
+<hkern g1="s" 	g2="X" 	k="3" />
+<hkern g1="t" 	g2="T" 	k="52" />
+<hkern g1="t" 	g2="W" 	k="13" />
+<hkern g1="t" 	g2="V" 	k="26" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="33" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="23" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="85" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="V" 	k="42" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="56" />
+<hkern g1="v" 	g2="W" 	k="3" />
+<hkern g1="v" 	g2="V" 	k="13" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="67" />
+<hkern g1="v" 	g2="X" 	k="37" />
+<hkern g1="w" 	g2="T" 	k="56" />
+<hkern g1="w" 	g2="V" 	k="6" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="17" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="44" />
+<hkern g1="w" 	g2="X" 	k="44" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="3" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="56" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="3" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="6" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="57" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="37" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="44" />
+<hkern g1="X" 	g2="v" 	k="37" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="37" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="43" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="31" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="97" />
+<hkern g1="x" 	g2="T" 	k="66" />
+<hkern g1="x" 	g2="W" 	k="23" />
+<hkern g1="x" 	g2="V" 	k="23" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="73" />
+<hkern g1="x" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..8e185069b401058da28144993fd059d38084755d
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.woff
new file mode 100755
index 0000000000000000000000000000000000000000..b3f8f815b2d2abdae9b495d4f44f4b58f11bdb25
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Reg.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.eot
new file mode 100755
index 0000000000000000000000000000000000000000..3aab20b2c8c721fff2e0d899887d83a4445903f4
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..5bf9c6bac0892ae03a96073b613ee4d29cfaf0dd
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.svg
new file mode 100755
index 0000000000000000000000000000000000000000..28e81f4a5a251260f676c8d48eb43cb5ba874c2c
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.svg
@@ -0,0 +1,578 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_novaregular_italic" horiz-adv-x="572" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="258" />
+<glyph unicode="&#xfb01;" horiz-adv-x="509" d="M42 0l92 417h-80l15 66h80l8 37q35 157 158 157q50 0 87 -23l-29 -54q-19 15 -52 15q-69 0 -89 -95l-8 -37h98l-15 -66h-98l-92 -417h-75zM304 0l107 483h75l-107 -483h-75zM423 596q0 25 18 41t39 16q19 0 32.5 -13t13.5 -31q0 -25 -18 -41t-39 -16q-20 0 -33 12.5 t-13 31.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="509" d="M42 0l92 417h-80l15 66h80l8 37q35 157 158 157q50 0 87 -23l-29 -54q-19 15 -52 15q-69 0 -89 -95l-8 -37h98l-15 -66h-98l-92 -417h-75zM304 0l147 667h75l-147 -667h-75z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="792" d="M42 0l92 418h-80l15 65h80l8 37q35 157 161 157q64 0 105 -41l-40 -45q-24 24 -62 24q-69 0 -89 -95l-8 -37h98l-15 -65h-98l-92 -418h-75zM325 0l92 417h-80l15 66h80l8 37q35 157 158 157q50 0 87 -23l-29 -54q-19 15 -52 15q-69 0 -89 -95l-8 -37h98l-15 -66h-98 l-92 -417h-75zM588 0l107 483h75l-107 -483h-75zM707 596q0 25 18 41t39 16q19 0 32.5 -13t13.5 -31q0 -25 -18 -41t-39 -16q-20 0 -33 12.5t-13 31.5z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="792" d="M42 0l92 418h-80l15 65h80l8 37q35 157 161 157q64 0 105 -41l-40 -45q-24 24 -62 24q-69 0 -89 -95l-8 -37h98l-15 -65h-98l-92 -418h-75zM325 0l92 417h-80l15 66h80l8 37q35 157 158 157q50 0 87 -23l-29 -54q-19 15 -52 15q-69 0 -89 -95l-8 -37h98l-15 -66h-98 l-92 -417h-75zM588 0l147 667h75l-147 -667h-75z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="258" />
+<glyph unicode="&#x09;" horiz-adv-x="258" />
+<glyph unicode="&#xa0;" horiz-adv-x="258" />
+<glyph unicode="!" horiz-adv-x="230" d="M15 40q0 25 18 42.5t43 17.5q21 0 35.5 -15t14.5 -36q0 -24 -18 -41.5t-42 -17.5q-22 0 -36.5 14.5t-14.5 35.5zM70 187l91 480h94l-122 -480h-63z" />
+<glyph unicode="&#x22;" horiz-adv-x="343" d="M116 412q19 194 20 210q2 24 17 39.5t37 15.5q17 0 28.5 -12t11.5 -30q0 -3 -5 -23l-72 -200h-37zM263 412q19 194 20 210q2 24 16.5 39.5t36.5 15.5q17 0 29 -12t12 -30q0 -11 -6 -23l-71 -200h-37z" />
+<glyph unicode="#" horiz-adv-x="590" d="M7 181l29 53h107l111 199h-108l27 52h110l100 182h62l-101 -182h111l100 182h61l-101 -182h107l-26 -52h-109l-112 -199h111l-28 -53h-112l-100 -181h-61l101 181h-111l-100 -181h-62l101 181h-107zM204 234h110l111 199h-110z" />
+<glyph unicode="$" horiz-adv-x="593" d="M20 107l57 60q55 -77 154 -98l54 241q-31 12 -51.5 21.5t-45.5 25.5t-39.5 32.5t-25 41t-10.5 52.5q0 79 67.5 136.5t168.5 57.5q11 0 17 -1l21 92h61l-22 -99q111 -24 164 -97l-57 -58q-44 60 -124 81l-49 -219q39 -16 64 -29.5t53 -34.5t42 -49.5t14 -63.5 q0 -85 -65.5 -148t-177.5 -63q-2 0 -8 0.5t-8 0.5l-19 -89h-61l21 95q-65 12 -116.5 41.5t-78.5 70.5zM202 494q0 -31 25.5 -52t76.5 -43l46 205h-10q-57 0 -97.5 -33t-40.5 -77zM291 62h6q72 0 109.5 38t37.5 86q0 33 -26.5 56t-76.5 45z" />
+<glyph unicode="%" horiz-adv-x="731" d="M74 0l573 667h55l-574 -667h-54zM87 483q0 85 52.5 139.5t125.5 54.5q63 0 106 -37.5t43 -97.5q0 -85 -52.5 -139.5t-125.5 -54.5q-63 0 -106 37.5t-43 97.5zM147 488q0 -38 25.5 -64t65.5 -26q47 0 82 40t35 99q0 38 -26 63.5t-66 25.5q-47 0 -81.5 -39.5t-34.5 -98.5z M355 123q0 85 53 139.5t125 54.5q63 0 106.5 -37.5t43.5 -97.5q0 -85 -53 -139.5t-125 -54.5q-63 0 -106.5 37.5t-43.5 97.5zM415 128q0 -38 25.5 -64t65.5 -26q47 0 82 40t35 99q0 38 -26 63.5t-66 25.5q-47 0 -81.5 -39.5t-34.5 -98.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="641" d="M16 155q0 46 15.5 83t45.5 63.5t61 43.5t74 35q-23 66 -23 116q0 75 54.5 128t129.5 53q64 0 106 -31.5t42 -88.5q0 -24 -7 -46t-16 -37.5t-28.5 -31.5t-33 -25.5t-41.5 -22.5t-42 -18.5t-46 -18.5q43 -89 114 -197q63 68 106 146l58 -34q-68 -103 -128 -165 q32 -46 81 -107h-95q-25 31 -43 56q-90 -68 -183 -68q-88 0 -144.5 43.5t-56.5 123.5zM100 165q0 -55 36 -85t90 -30q66 0 138 57q-48 67 -71 110q-37 62 -59 111q-64 -29 -99 -66.5t-35 -96.5zM267 496q0 -37 18 -88q81 30 122.5 60.5t41.5 81.5q0 32 -20.5 50t-52.5 18 q-41 0 -75 -33t-34 -89z" />
+<glyph unicode="'" horiz-adv-x="199" d="M116 412q19 194 20 210q2 24 17 39.5t37 15.5q17 0 28.5 -12t11.5 -30q0 -3 -5 -23l-72 -200h-37z" />
+<glyph unicode="(" horiz-adv-x="248" d="M25 91q0 155 66.5 309t190.5 285l39 -38q-217 -283 -217 -584q0 -105 37 -232l-53 -30q-63 124 -63 290z" />
+<glyph unicode=")" horiz-adv-x="248" d="M-74 -161q217 283 217 583q0 106 -37 233l53 30q63 -124 63 -290q0 -155 -67 -308.5t-191 -285.5z" />
+<glyph unicode="*" horiz-adv-x="340" d="M86 496l113 41l-89 62l31 36l82 -71l19 113h47l-33 -117l111 51l13 -41l-112 -41l89 -62l-32 -36l-82 71l-19 -113h-46l32 117l-111 -50z" />
+<glyph unicode="+" horiz-adv-x="499" d="M44 311l11 52h192l45 207h58l-46 -207h192l-12 -52h-191l-48 -213h-57l47 213h-191z" />
+<glyph unicode="," horiz-adv-x="230" d="M-18 -88q67 34 84 84h-8q-18 0 -30.5 12t-12.5 32q0 24 18 42t42 18q23 0 38 -15.5t15 -43.5q0 -45 -33.5 -91t-81.5 -71z" />
+<glyph unicode="-" horiz-adv-x="300" d="M22 209l14 66h240l-14 -66h-240z" />
+<glyph unicode="." horiz-adv-x="230" d="M15 40q0 25 18 42.5t43 17.5q21 0 35.5 -15t14.5 -36q0 -24 -18 -41.5t-42 -17.5q-22 0 -36.5 14.5t-14.5 35.5z" />
+<glyph unicode="/" horiz-adv-x="296" d="M-60 -20l393 707h63l-394 -707h-62z" />
+<glyph unicode="0" horiz-adv-x="612" d="M59 248q0 76 22 151.5t61.5 137.5t100 101t130.5 39q104 0 161 -69t57 -190q0 -103 -36.5 -200t-110 -163.5t-166.5 -66.5q-105 0 -162 69.5t-57 190.5zM143 243q0 -82 35 -131.5t107 -49.5q66 0 118 58.5t77.5 140t25.5 162.5q0 83 -34 131.5t-107 48.5 q-65 0 -117.5 -58.5t-78.5 -139.5t-26 -162z" />
+<glyph unicode="1" horiz-adv-x="339" d="M76 495l205 172h73l-147 -667h-83l123 557l-132 -113z" />
+<glyph unicode="2" horiz-adv-x="588" d="M0 0l18 81q94 58 152.5 95.5t124 85.5t101 84t59.5 75.5t24 76.5q0 49 -40 77t-104 28q-101 0 -171 -65l-39 59q38 36 95.5 58t119.5 22q95 0 161 -45.5t66 -129.5q0 -54 -32.5 -110t-95.5 -111.5t-130 -102t-162 -104.5h326l-15 -74h-458z" />
+<glyph unicode="3" horiz-adv-x="557" d="M-3 127l60 47q25 -52 78.5 -82t115.5 -30q73 0 116 39.5t43 100.5q0 46 -39 74.5t-109 28.5q-53 0 -64 -1l17 76q11 -1 91 -1q68 0 114 30t46 88q0 46 -41.5 76t-110.5 30q-96 0 -169 -66l-35 57q85 83 210 83q103 0 166.5 -44.5t63.5 -123.5q0 -71 -55 -118t-125 -53 q53 -12 87.5 -49t34.5 -94q0 -87 -68 -147t-172 -60q-86 0 -157 38.5t-98 100.5z" />
+<glyph unicode="4" horiz-adv-x="558" d="M15 169l17 75l374 423h119l-95 -425h94l-15 -73h-94l-37 -169h-83l37 169h-317zM114 242h233l78 348z" />
+<glyph unicode="5" horiz-adv-x="590" d="M35 121l63 50q50 -109 184 -109q70 0 118.5 46t48.5 114q0 60 -42 93.5t-109 33.5q-74 0 -138 -48l-55 27l75 339h408l-16 -74h-325l-49 -220q56 45 140 45t141 -50t57 -138q0 -100 -73 -171t-185 -71q-174 0 -243 133z" />
+<glyph unicode="6" horiz-adv-x="591" d="M55 234q0 73 20.5 148.5t58.5 142.5t103.5 109.5t145.5 42.5q138 0 201 -100l-56 -56q-43 82 -150 82q-88 0 -144.5 -73.5t-82.5 -177.5q-5 -15 -5 -20q30 33 83 59t109 26q89 0 145.5 -47.5t56.5 -127.5q0 -104 -74.5 -179t-182.5 -75q-109 0 -168.5 64.5t-59.5 181.5z M135 218q0 -70 39.5 -113t109.5 -43q72 0 120.5 50.5t48.5 118.5q0 54 -40.5 85.5t-107.5 31.5q-94 0 -168 -82q-2 -18 -2 -48z" />
+<glyph unicode="7" horiz-adv-x="515" d="M65 0l397 593h-355l17 74h455l-13 -57l-405 -610h-96z" />
+<glyph unicode="8" horiz-adv-x="581" d="M30 158q0 73 54.5 124.5t147.5 70.5q-48 19 -82 55.5t-34 85.5q0 88 72 135.5t165 47.5t160.5 -44t67.5 -120q0 -71 -52 -117.5t-137 -59.5q52 -24 88.5 -63.5t36.5 -94.5q0 -83 -72 -136.5t-174 -53.5q-104 0 -172.5 44.5t-68.5 125.5zM118 173q0 -53 44.5 -82 t111.5 -29q63 0 111 34t48 90q0 44 -40 76t-88 45q-81 -5 -134 -41.5t-53 -92.5zM199 486q0 -38 38.5 -68t82.5 -40q77 5 124.5 37t47.5 85q0 43 -42 72.5t-102 29.5q-62 0 -105.5 -31.5t-43.5 -84.5z" />
+<glyph unicode="9" horiz-adv-x="591" d="M45 89l56 56q43 -82 150 -82q47 0 86 22t66 59.5t45 79t30 89.5q4 13 6 21q-31 -33 -84 -59.5t-108 -26.5q-89 0 -146 48t-57 128q0 103 75 178.5t183 75.5q109 0 168.5 -64.5t59.5 -181.5q0 -73 -20.5 -148.5t-59 -142.5t-104 -109.5t-145.5 -42.5q-138 0 -201 100z M175 435q0 -54 41.5 -86t107.5 -32q92 0 169 82q1 9 1 48q0 70 -39.5 113.5t-109.5 43.5q-72 0 -121 -50.5t-49 -118.5z" />
+<glyph unicode=":" horiz-adv-x="230" d="M15 40q0 25 18 42.5t43 17.5q21 0 35.5 -15t14.5 -36q0 -24 -18 -41.5t-42 -17.5q-22 0 -36.5 14.5t-14.5 35.5zM102 431q0 25 17.5 42t42.5 17q21 0 35.5 -15t14.5 -35q0 -25 -17.5 -42.5t-42.5 -17.5q-21 0 -35.5 15t-14.5 36z" />
+<glyph unicode=";" horiz-adv-x="230" d="M-18 -88q67 34 84 84h-8q-18 0 -30.5 12t-12.5 32q0 24 18 42t42 18q23 0 38 -15.5t15 -43.5q0 -45 -33.5 -91t-81.5 -71zM102 431q0 25 17.5 42t42.5 17q21 0 35.5 -15t14.5 -35q0 -25 -17.5 -42.5t-42.5 -17.5q-21 0 -35.5 15t-14.5 36z" />
+<glyph unicode="&#x3c;" horiz-adv-x="499" d="M42 308l13 53l489 219l-15 -66l-417 -183l336 -181l-13 -60z" />
+<glyph unicode="=" horiz-adv-x="499" d="M21 211l12 52h441l-12 -52h-441zM64 404l12 53h441l-12 -53h-441z" />
+<glyph unicode="&#x3e;" horiz-adv-x="499" d="M-6 90l15 66l417 181l-336 183l13 60l392 -219l-12 -53z" />
+<glyph unicode="?" horiz-adv-x="462" d="M91 595q88 82 201 82q88 0 144.5 -40.5t56.5 -105.5q0 -50 -26 -86.5t-63.5 -58t-75 -40t-63.5 -42t-26 -53.5q0 -23 18 -40l-67 -26q-24 32 -24 71q0 40 24.5 70t59.5 48.5t70 36.5t59.5 44.5t24.5 60.5q0 40 -32 63.5t-90 23.5q-89 0 -153 -64zM124 40q0 25 18 42.5 t42 17.5q22 0 36.5 -15t14.5 -36q0 -25 -18 -42t-43 -17q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="@" horiz-adv-x="783" d="M55 244q0 160 119.5 277t277.5 117q139 0 227 -91.5t88 -225.5q0 -111 -52 -173.5t-121 -62.5q-40 0 -64.5 23.5t-26.5 57.5l-1 6q-27 -38 -69.5 -62.5t-88.5 -24.5q-69 0 -111 45t-42 118q0 102 72 176.5t163 74.5q46 0 79.5 -22t48.5 -56l13 62h68l-57 -271 q-2 -12 -2 -21q0 -25 13.5 -38.5t33.5 -13.5q38 0 73 45t35 137q0 124 -78.5 203.5t-204.5 79.5q-144 0 -251.5 -108.5t-107.5 -249.5q0 -121 81.5 -202t205.5 -81q97 0 186 56l18 -26q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM262 252q0 -49 27.5 -80t74.5 -31 q87 0 149 90l29 138q-10 29 -36.5 51.5t-66.5 22.5q-73 0 -125 -58.5t-52 -132.5z" />
+<glyph unicode="A" horiz-adv-x="658" d="M-45 0l415 667h103l122 -667h-91l-26 148h-333l-91 -148h-99zM187 222h283l-63 359z" />
+<glyph unicode="B" horiz-adv-x="629" d="M24 0l147 667h277q74 0 122 -43t48 -110q0 -70 -45.5 -121t-109.5 -58q43 -11 70.5 -50.5t27.5 -86.5q0 -81 -59 -139.5t-169 -58.5h-309zM122 74h209q68 0 106.5 38t38.5 92q0 44 -29 72t-78 28h-196zM190 378h207q68 0 99.5 36.5t31.5 87.5q0 39 -29.5 65t-71.5 26 h-189z" />
+<glyph unicode="C" horiz-adv-x="676" d="M60 280q0 88 31.5 163.5t83.5 126.5t120 79.5t140 28.5q97 0 167 -42t105 -115l-79 -31q-58 114 -198 114q-112 0 -197 -90t-85 -230q0 -99 61 -160.5t164 -61.5q98 0 179 76l61 -46q-97 -104 -245 -104q-134 0 -221 80.5t-87 211.5z" />
+<glyph unicode="D" horiz-adv-x="700" d="M24 0l147 667h223q114 0 195.5 -81t81.5 -204q0 -70 -25.5 -136.5t-75 -122t-132.5 -89.5t-187 -34h-227zM122 74h143q143 0 231 88.5t88 215.5q0 92 -59 153.5t-147 61.5h-140z" />
+<glyph unicode="E" horiz-adv-x="569" d="M24 0l147 667h437l-16 -74h-354l-48 -215h347l-16 -74h-348l-51 -230h355l-16 -74h-437z" />
+<glyph unicode="F" horiz-adv-x="550" d="M24 0l147 667h437l-16 -74h-354l-48 -215h347l-16 -74h-348l-66 -304h-83z" />
+<glyph unicode="G" horiz-adv-x="713" d="M60 280q0 171 111 284.5t270 113.5q91 0 158.5 -40t104.5 -106l-75 -35q-26 51 -79.5 79t-119.5 28q-113 0 -197.5 -92t-84.5 -228q0 -100 61.5 -161t163.5 -61q96 0 175 71l31 136h-230l16 74h313l-54 -245q-108 -110 -256 -110q-137 0 -222.5 81t-85.5 211z" />
+<glyph unicode="H" horiz-adv-x="712" d="M24 0l147 667h83l-63 -287h390l63 287h83l-147 -667h-83l67 306h-390l-67 -306h-83z" />
+<glyph unicode="I" horiz-adv-x="239" d="M24 0l147 667h83l-147 -667h-83z" />
+<glyph unicode="J" horiz-adv-x="475" d="M-22 72l50 60q39 -70 126 -70q60 0 98 37.5t52 102.5l103 465h83l-103 -466q-47 -213 -229 -213q-58 0 -106 21.5t-74 62.5z" />
+<glyph unicode="K" horiz-adv-x="601" d="M24 0l147 667h83l-75 -337l365 337h109l-348 -317l225 -350h-97l-190 304l-87 -80l-49 -224h-83z" />
+<glyph unicode="L" horiz-adv-x="517" d="M24 0l147 667h83l-132 -593h311l-16 -74h-393z" />
+<glyph unicode="M" horiz-adv-x="809" d="M24 0l147 667h115l94 -514l321 514h123l-147 -667h-83l124 561l-351 -561h-34l-103 561l-123 -561h-83z" />
+<glyph unicode="N" horiz-adv-x="708" d="M24 0l147 667h85l266 -534l118 534h83l-147 -667h-80l-269 544l-120 -544h-83z" />
+<glyph unicode="O" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q133 0 220.5 -78.5t87.5 -212.5q0 -168 -109.5 -283.5t-265.5 -115.5q-133 0 -220.5 78.5t-87.5 213.5zM148 284q0 -104 64 -163t161 -59q115 0 198.5 92t83.5 228q0 103 -64 162.5t-161 59.5q-117 0 -199.5 -91.5t-82.5 -228.5z " />
+<glyph unicode="P" horiz-adv-x="587" d="M24 0l147 667h248q84 0 134.5 -50.5t50.5 -122.5q0 -40 -14 -78.5t-42.5 -73.5t-80 -56t-118.5 -21h-184l-58 -265h-83zM181 339h175q76 0 118.5 43t42.5 106q0 44 -31.5 74.5t-79.5 30.5h-168z" />
+<glyph unicode="Q" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q133 0 220.5 -78.5t87.5 -212.5q0 -99 -41 -183.5t-112 -139.5l42 -59l-67 -36l-39 55q-75 -36 -158 -36q-133 0 -220.5 78.5t-87.5 213.5zM148 284q0 -104 64 -163t161 -59q56 0 109 25l-78 112l66 36l75 -107q51 44 80.5 110 t29.5 144q0 103 -64 162.5t-161 59.5q-117 0 -199.5 -91.5t-82.5 -228.5z" />
+<glyph unicode="R" horiz-adv-x="608" d="M24 0l147 667h245q76 0 132.5 -48t56.5 -126q0 -93 -60 -155t-157 -69l120 -269h-92l-112 265h-140l-57 -265h-83zM181 338h176q75 0 117.5 42.5t42.5 105.5q0 46 -34.5 76.5t-78.5 30.5h-166z" />
+<glyph unicode="S" horiz-adv-x="586" d="M16 107l57 60q35 -49 93 -77t127 -28q72 0 109.5 38t37.5 86q0 36 -34 62.5t-83 45t-97.5 40t-82.5 59t-34 90.5q0 79 67.5 136.5t168.5 57.5q77 0 141.5 -28t99.5 -77l-57 -58q-32 44 -84 67t-109 23t-97.5 -33t-40.5 -77q0 -33 34 -57.5t82.5 -43.5t97.5 -41t83 -61 t34 -92q0 -85 -65.5 -148t-177.5 -63q-88 0 -161.5 33.5t-108.5 85.5z" />
+<glyph unicode="T" horiz-adv-x="570" d="M109 593l16 74h506l-16 -74h-212l-131 -593h-83l131 593h-211z" />
+<glyph unicode="U" horiz-adv-x="700" d="M76 210q0 19 5 49l90 408h83l-89 -406q-5 -20 -5 -42q0 -70 46.5 -113.5t129.5 -43.5q88 0 136.5 50.5t69.5 148.5l90 406h83l-89 -407q-30 -133 -97 -202.5t-193 -69.5q-123 0 -191.5 60t-68.5 162z" />
+<glyph unicode="V" horiz-adv-x="658" d="M102 667h90l98 -576l353 576h99l-416 -667h-103z" />
+<glyph unicode="W" horiz-adv-x="883" d="M107 667h90l24 -556l276 556h70l29 -556l271 556h94l-337 -667h-90l-28 538l-266 -538h-90z" />
+<glyph unicode="X" horiz-adv-x="652" d="M-42 0l336 347l-174 320h95l142 -265l252 265h108l-317 -330l185 -337h-94l-154 282l-272 -282h-107z" />
+<glyph unicode="Y" horiz-adv-x="626" d="M102 667h91l139 -310l275 310h103l-347 -385l-62 -282h-83l62 282z" />
+<glyph unicode="Z" horiz-adv-x="585" d="M-6 0l15 69l485 524h-369l16 74h481l-14 -69l-487 -524h378l-17 -74h-488z" />
+<glyph unicode="[" horiz-adv-x="243" d="M-57 -190l193 868h186l-12 -55h-128l-168 -758h128l-13 -55h-186z" />
+<glyph unicode="\" horiz-adv-x="296" d="M98 687h59l80 -707h-59z" />
+<glyph unicode="]" horiz-adv-x="243" d="M-79 -190l12 55h127l169 758h-128l12 55h186l-193 -868h-185z" />
+<glyph unicode="^" horiz-adv-x="432" d="M38 333l243 334h57l94 -334h-59l-73 279l-197 -279h-65z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-78 -95l13 55h569l-13 -55h-569z" />
+<glyph unicode="`" horiz-adv-x="226" d="M101 700h78l116 -144h-57z" />
+<glyph unicode="a" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-107 -483h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159z" />
+<glyph unicode="b" horiz-adv-x="575" d="M21 0l147 667h75l-56 -253q66 81 160 81q84 0 135.5 -53t51.5 -146q0 -123 -70.5 -215.5t-182.5 -92.5q-56 0 -99.5 23.5t-68.5 64.5l-17 -76h-75zM125 133q19 -35 57.5 -56.5t88.5 -21.5q80 0 132 68t52 159q0 67 -37 106.5t-98 39.5q-44 0 -83 -23.5t-65 -59.5z" />
+<glyph unicode="c" horiz-adv-x="495" d="M40 204q0 120 79 205.5t193 85.5q127 0 181 -90l-57 -43q-37 66 -122 66q-88 0 -142 -66t-54 -157q0 -72 42.5 -111t108.5 -39q72 0 122 57l43 -50q-72 -74 -172 -74q-99 0 -160.5 58t-61.5 158z" />
+<glyph unicode="d" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l58 260h75l-148 -667h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159z" />
+<glyph unicode="e" horiz-adv-x="563" d="M40 202q0 121 79 207t193 86q94 0 151 -59t57 -152q0 -30 -8 -67h-394q0 -2 -0.5 -10.5t-0.5 -12.5q0 -60 43 -102t121 -42q80 0 139 47l25 -52q-72 -57 -169 -57q-109 0 -172.5 58t-63.5 156zM126 272h324q2 8 2 19q0 62 -38.5 102t-108.5 40q-65 0 -116 -47.5 t-63 -113.5z" />
+<glyph unicode="f" horiz-adv-x="283" d="M42 0l92 418h-80l15 65h80l8 37q35 157 161 157q64 0 105 -41l-40 -45q-24 24 -62 24q-69 0 -89 -95l-8 -37h98l-15 -65h-98l-92 -418h-75z" />
+<glyph unicode="g" horiz-adv-x="574" d="M-4 -114l48 51q49 -71 167 -71q129 0 162 148l14 63q-65 -82 -164 -82q-81 0 -132.5 51t-51.5 149q0 120 70 210t182 90q48 0 95 -24.5t74 -63.5l17 76h75l-104 -469q-46 -210 -236 -210q-148 0 -216 82zM118 207q0 -67 36.5 -106t98.5 -39q40 0 80 22t68 55l46 209 q-20 37 -61 58.5t-89 21.5q-79 0 -129 -66.5t-50 -154.5z" />
+<glyph unicode="h" horiz-adv-x="552" d="M21 0l147 667h75l-56 -254q86 82 171 82q65 0 104.5 -31.5t39.5 -88.5q0 -20 -6 -40l-73 -335h-75l69 317q6 27 6 33q0 78 -100 78q-76 0 -149 -77l-78 -351h-75z" />
+<glyph unicode="i" horiz-adv-x="225" d="M21 0l107 483h75l-107 -483h-75zM140 596q0 25 18 41t39 16q19 0 32.5 -13t13.5 -31q0 -25 -18 -41t-39 -16q-20 0 -33 12.5t-13 31.5z" />
+<glyph unicode="j" horiz-adv-x="225" d="M-183 -154l36 54q25 -34 69 -34q68 0 88 87l118 530h75l-118 -530q-33 -149 -153 -149q-79 0 -115 42zM140 596q0 25 18 41t39 16q19 0 32.5 -13t13.5 -31q0 -25 -18 -41t-39 -16q-20 0 -33 12.5t-13 31.5z" />
+<glyph unicode="k" horiz-adv-x="514" d="M21 0l147 667h75l-96 -437l306 253h99l-263 -219l157 -264h-91l-128 220l-101 -82l-30 -138h-75z" />
+<glyph unicode="l" horiz-adv-x="225" d="M21 0l147 667h75l-147 -667h-75z" />
+<glyph unicode="m" horiz-adv-x="808" d="M21 0l107 483h75l-16 -70q71 82 152 82q58 0 91 -31t33 -59v-2q75 92 168 92q53 0 90 -32t37 -88q0 -10 -5 -40l-74 -335h-75l71 324q4 20 4 29q0 35 -23.5 55t-58.5 20q-67 0 -132 -76l-78 -352h-75l72 324q4 26 4 35q-1 30 -22.5 49.5t-61.5 19.5q-64 0 -130 -76 l-78 -352h-75z" />
+<glyph unicode="n" horiz-adv-x="551" d="M21 0l107 483h75l-16 -70q86 82 171 82q65 0 104.5 -31.5t39.5 -88.5q0 -20 -6 -40l-74 -335h-75l70 317q6 27 6 33q0 40 -26.5 59t-68.5 19q-82 0 -154 -76l-78 -352h-75z" />
+<glyph unicode="o" d="M40 202q0 117 77.5 205t191.5 88q102 0 161.5 -59t59.5 -156q0 -117 -77.5 -204.5t-191.5 -87.5q-102 0 -161.5 58.5t-59.5 155.5zM119 205q0 -69 38 -109.5t106 -40.5q80 0 134 67.5t54 155.5q0 69 -38 109.5t-106 40.5q-80 0 -134 -67.5t-54 -155.5z" />
+<glyph unicode="p" d="M-20 -184l148 667h75l-16 -69q66 81 160 81q84 0 135.5 -53t51.5 -146q0 -123 -70.5 -215.5t-182.5 -92.5q-56 0 -99.5 23.5t-68.5 64.5l-58 -260h-75zM125 133q19 -35 57.5 -56.5t88.5 -21.5q80 0 132 68t52 159q0 67 -37 106.5t-98 39.5q-44 0 -83 -23.5t-65 -59.5z " />
+<glyph unicode="q" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-148 -667h-75l56 253q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159z" />
+<glyph unicode="r" horiz-adv-x="330" d="M21 0l107 483h75l-17 -74q38 43 79 63.5t101 20.5l-17 -77q-12 4 -38 4q-40 0 -77.5 -23t-62.5 -56l-75 -341h-75z" />
+<glyph unicode="s" horiz-adv-x="465" d="M3 73l48 52q21 -31 65 -53.5t95 -22.5q50 0 80.5 25t30.5 60q0 25 -26 44t-63.5 32.5t-75 28.5t-63.5 42.5t-26 64.5q0 63 49 106t134 43q60 0 109.5 -22.5t74.5 -56.5l-43 -49q-17 27 -58.5 47t-86.5 20q-47 0 -75.5 -21t-28.5 -53q0 -24 26 -41.5t63.5 -31t75 -29 t63.5 -44t26 -67.5q0 -66 -51.5 -112.5t-138.5 -46.5q-136 0 -204 85z" />
+<glyph unicode="t" horiz-adv-x="294" d="M49 418l15 65h80l29 132h75l-29 -132h98l-15 -65h-98l-66 -298q-2 -12 -2 -20q0 -45 48 -45q28 0 46 16l9 -60q-30 -23 -73 -23q-52 0 -81 22t-29 66q0 13 3 28l70 314h-80z" />
+<glyph unicode="u" horiz-adv-x="551" d="M49 108q0 15 5 40l74 335h75l-70 -316q-5 -25 -5 -34q0 -78 100 -78q73 0 149 76l77 352h75l-107 -483h-75l16 70q-86 -82 -170 -82q-66 0 -105 31.5t-39 88.5z" />
+<glyph unicode="v" horiz-adv-x="490" d="M56 483h79l72 -396l249 396h84l-308 -483h-82z" />
+<glyph unicode="w" horiz-adv-x="734" d="M65 483h75l32 -385l212 385h66l41 -385l202 385h82l-261 -483h-75l-40 388l-212 -388h-75z" />
+<glyph unicode="x" horiz-adv-x="486" d="M-42 0l239 248l-122 235h83l93 -184l176 184h90l-228 -235l132 -248h-83l-102 198l-189 -198h-89z" />
+<glyph unicode="y" horiz-adv-x="490" d="M-46 -185l26 67q18 -8 47 -8q40 0 72 48l49 75l-92 486h79l72 -396l249 396h84l-372 -581q-63 -98 -151 -98q-36 0 -63 11z" />
+<glyph unicode="z" horiz-adv-x="472" d="M-2 0l12 58l342 359h-262l15 66h364l-13 -57l-344 -361h268l-14 -65h-368z" />
+<glyph unicode="{" horiz-adv-x="260" d="M-13 -83q0 15 3 27l46 206q2 12 2 17q0 22 -10.5 37t-28.5 15l12 50q52 0 67 69l45 205q15 67 55.5 101t99.5 34h61l-12 -55h-61q-66 0 -84 -80l-49 -217q-15 -70 -64 -88q29 -15 29 -54q0 -18 -4 -34l-45 -205q-2 -12 -2 -21q0 -26 16 -42.5t41 -16.5h55l-13 -55h-47 q-45 0 -78.5 30t-33.5 77z" />
+<glyph unicode="|" horiz-adv-x="211" d="M98 -20v707h55v-707h-55z" />
+<glyph unicode="}" horiz-adv-x="260" d="M-80 -190l12 55h62q66 0 83 79l49 218q15 70 65 88q-29 15 -29 54q0 18 4 34l45 205q2 12 2 21q0 25 -16.5 42t-41.5 17h-55l13 55h48q45 0 78 -30t33 -77q0 -16 -3 -28l-46 -205q-2 -12 -2 -17q0 -23 10.5 -37.5t28.5 -14.5l-11 -50q-53 0 -68 -69l-45 -205 q-15 -67 -55.5 -101t-99.5 -34h-61z" />
+<glyph unicode="~" horiz-adv-x="503" d="M68 429q52 237 178 237q38 0 59.5 -19.5t27.5 -48t10 -56.5t15 -47.5t34 -19.5q37 0 69 52.5t51 139.5l56 -7q-55 -237 -179 -237q-46 0 -68.5 29.5t-25 65.5t-14.5 65.5t-39 29.5q-36 0 -67.5 -52t-52.5 -139z" />
+<glyph unicode="&#xa1;" horiz-adv-x="230" d="M-27 -184l122 480h62l-90 -480h-94zM102 434q0 25 17.5 42t42.5 17q21 0 35.5 -14.5t14.5 -36.5q0 -24 -17.5 -41.5t-42.5 -17.5q-21 0 -35.5 15t-14.5 36z" />
+<glyph unicode="&#xa2;" horiz-adv-x="495" d="M40 204q0 119 77 204t190 87l16 70h59l-17 -75q86 -16 128 -85l-57 -43q-27 47 -86 62l-82 -369h1q72 0 122 57l43 -50q-72 -74 -172 -74h-8l-20 -88h-59l21 96q-72 17 -114 71.5t-42 136.5zM118 205q0 -55 25 -91t68 -50l81 362q-79 -9 -126.5 -72.5t-47.5 -148.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="518" d="M4 55q72 29 121 82t49 108q0 7 -2 23h-148l12 54h115q-4 7 -17.5 30t-19.5 34.5t-12 33t-6 42.5q0 86 71 150.5t172 64.5q73 0 131.5 -33t74.5 -87l-76 -32q-8 36 -44 59t-83 23q-64 0 -110 -42t-46 -110q0 -26 8 -48t23.5 -47.5t20.5 -37.5h147l-12 -54h-121v-8 q0 -49 -33.5 -95t-75.5 -71q26 8 46 8q33 0 82.5 -20.5t77.5 -20.5q53 0 91 40l21 -67q-54 -47 -117 -47q-46 0 -108 23t-101 23q-48 0 -115 -40z" />
+<glyph unicode="&#xa4;" horiz-adv-x="598" d="M5 117l98 79q-26 44 -26 104q0 114 78 192l-57 74l52 41l57 -74q63 37 134 37q94 0 156 -52l99 81l41 -50l-99 -81q27 -49 27 -105q0 -112 -78 -190l56 -70l-52 -42l-56 71q-62 -37 -135 -37q-92 0 -154 51l-99 -81zM155 307q0 -66 41.5 -104.5t109.5 -38.5q77 0 129 58 t52 134q0 62 -39 103.5t-112 41.5q-78 0 -129.5 -59t-51.5 -135z" />
+<glyph unicode="&#xa5;" horiz-adv-x="626" d="M-6 122l12 53h253l24 107h-253l12 52h217l-154 333h91l139 -310l275 310h103l-300 -333h211l-11 -52h-247l-24 -107h247l-12 -53h-246l-27 -122h-83l27 122h-254z" />
+<glyph unicode="&#xa6;" horiz-adv-x="211" d="M98 -20v316h55v-316h-55zM98 371v316h55v-316h-55z" />
+<glyph unicode="&#xa7;" horiz-adv-x="468" d="M-21 0l48 46q25 -33 69.5 -52.5t95.5 -19.5q49 0 81 26.5t32 64.5q0 27 -26 46.5t-63 33t-73.5 29t-62.5 43.5t-26 68q0 50 37.5 87.5t107.5 49.5q-91 35 -91 110q0 59 49.5 102t131.5 43q131 0 195 -75l-45 -41q-46 60 -147 60q-48 0 -78.5 -23t-30.5 -57q0 -27 26 -46 t63.5 -32t74.5 -28t63 -43.5t26 -69.5q0 -48 -32 -87t-92 -57q69 -37 69 -103q0 -64 -51.5 -110t-135.5 -46q-142 0 -215 81zM129 298q0 -34 28.5 -53t93.5 -41q56 15 82 43t26 59q0 32 -25 52t-69 36q-68 -9 -102 -35t-34 -61z" />
+<glyph unicode="&#xa8;" horiz-adv-x="272" d="M65 599q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM272 599q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M64 334q0 143 100.5 244t243.5 101t244.5 -101t101.5 -244t-101.5 -244t-244.5 -101q-142 0 -243 101t-101 244zM95 334q0 -130 91.5 -222t221.5 -92t222.5 92t92.5 222t-92.5 222t-222.5 92t-221.5 -92t-91.5 -222zM198 307q0 100 72 170.5t164 70.5q107 0 156 -80 l-31 -22q-37 69 -127 69q-75 0 -136 -60t-61 -147q0 -65 43 -109.5t112 -44.5q68 0 115 47l19 -28q-62 -52 -134 -52q-88 0 -140 53t-52 133z" />
+<glyph unicode="&#xaa;" horiz-adv-x="410" d="M87 452q0 80 48.5 138t120.5 58q77 0 114 -54l9 46h58l-70 -314h-58l11 46q-46 -54 -108 -54q-53 0 -89 35t-36 99zM147 458q0 -45 23.5 -69t63.5 -24q53 0 96 49l32 143q-28 44 -95 44q-50 0 -85 -42.5t-35 -100.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="439" d="M29 243l200 177h79l-204 -182l116 -175h-71zM173 243l200 177h79l-204 -182l116 -175h-71z" />
+<glyph unicode="&#xac;" horiz-adv-x="504" d="M64 404l12 53h441l-55 -246h-55l43 193h-386z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M22 209l14 66h240l-14 -66h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M84 465q0 88 62 150t150 62t150 -61.5t62 -150.5q0 -88 -62.5 -150t-150.5 -62t-149.5 62t-61.5 150zM112 465q0 -76 53.5 -130t129.5 -54t130 54t54 130t-54 129.5t-130 53.5q-77 0 -130 -53t-53 -130zM188 343l53 243h92q29 0 49.5 -17.5t20.5 -46.5q0 -35 -25 -58.5 t-55 -23.5l44 -97h-38l-42 96h-46l-21 -96h-32zM247 468h67q23 0 39 14.5t16 36.5q0 18 -11.5 28.5t-29.5 10.5h-61z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M73 572l10 48h362l-10 -48h-362z" />
+<glyph unicode="&#xb0;" horiz-adv-x="290" d="M92 555q0 50 35.5 86t85.5 36q51 0 86.5 -36t35.5 -86q0 -51 -35.5 -86.5t-86.5 -35.5q-50 0 -85.5 35.5t-35.5 86.5zM140 555q0 -31 21 -52.5t51 -21.5t52.5 22t22.5 52t-22 52t-52 22t-51.5 -22t-21.5 -52z" />
+<glyph unicode="&#xb1;" horiz-adv-x="499" d="M-25 0l11 52h441l-11 -52h-441zM46 324l12 52h192l45 207h58l-46 -207h192l-12 -52h-192l-47 -214h-57l47 214h-192z" />
+<glyph unicode="&#xb2;" horiz-adv-x="388" d="M89 421l11 49q155 92 218.5 143t63.5 101q0 31 -25 47.5t-60 16.5q-68 0 -112 -47l-28 40q54 56 142 56q59 0 101.5 -27.5t42.5 -81.5q0 -60 -63.5 -116t-189.5 -132h201l-11 -49h-291z" />
+<glyph unicode="&#xb3;" horiz-adv-x="388" d="M100 487l40 34q40 -58 118 -58q41 0 64.5 22.5t23.5 56.5q0 27 -27 43.5t-72 16.5q-23 0 -30 -1l11 50q28 -2 61 -2q42 0 66.5 18t24.5 50q0 28 -27 44.5t-65 16.5q-58 0 -108 -43l-23 39q58 53 135 53q65 0 107 -26.5t42 -75.5q0 -44 -31 -72t-80 -32q32 -6 54.5 -29 t22.5 -57q0 -47 -40.5 -84t-106.5 -37q-117 0 -160 73z" />
+<glyph unicode="&#xb4;" horiz-adv-x="226" d="M67 556l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xb5;" horiz-adv-x="564" d="M-22 -184l151 667h75l-71 -317q-13 -56 11.5 -84.5t72.5 -28.5q40 0 84 22t73 53l79 355h75l-82 -370q-13 -58 34 -58q10 0 20 2l-9 -65q-22 -4 -41 -4q-89 0 -84 86q-84 -86 -173 -86q-69 0 -90 48l-50 -220h-75z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M79 479q0 73 56.5 130.5t137.5 57.5h198l-170 -767h-45l160 722h-89l-160 -722h-45l94 423q-57 0 -97 44.5t-40 111.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="230" d="M60 240q0 25 17.5 42.5t42.5 17.5q21 0 35.5 -15t14.5 -36q0 -25 -17.5 -42t-42.5 -17q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="205" d="M-89 -153l27 36q33 -35 83 -35q29 0 45 13t16 34q0 30 -37 30q-20 0 -35 -17l-29 19l50 84h45l-41 -66q15 11 34 11q26 0 42 -15.5t16 -43.5q0 -39 -30 -63.5t-78 -24.5q-68 0 -108 38z" />
+<glyph unicode="&#xb9;" horiz-adv-x="235" d="M116 711l133 110h53l-88 -400h-60l69 318l-78 -66z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M86 460q0 78 53.5 133t129.5 55q68 0 109 -39.5t41 -103.5q0 -77 -53.5 -132t-129.5 -55q-68 0 -109 39.5t-41 102.5zM146 459q0 -42 25 -67.5t67 -25.5q54 0 87.5 41.5t33.5 98.5q0 41 -25 66.5t-66 25.5q-54 0 -88 -41.5t-34 -97.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="439" d="M-11 63l204 182l-116 175h71l120 -180l-200 -177h-79zM133 63l204 182l-116 175h71l120 -180l-200 -177h-79z" />
+<glyph unicode="&#xbc;" horiz-adv-x="770" d="M54 0l573 667h56l-574 -667h-55zM82 557l133 110h53l-88 -400h-60l69 318l-78 -66zM388 100l9 44l229 256h83l-55 -251h57l-10 -49h-58l-22 -100h-59l22 100h-196zM459 149h135l43 194z" />
+<glyph unicode="&#xbd;" horiz-adv-x="807" d="M54 0l573 667h56l-574 -667h-55zM82 557l133 110h53l-88 -400h-60l69 318l-78 -66zM414 0l11 49q155 92 218.5 143t63.5 101q0 31 -25 47.5t-60 16.5q-68 0 -112 -47l-28 40q54 56 142 56q59 0 101.5 -27.5t42.5 -81.5q0 -60 -63.5 -116t-189.5 -132h201l-11 -49h-291z " />
+<glyph unicode="&#xbe;" horiz-adv-x="878" d="M66 333l40 34q40 -58 118 -58q41 0 64.5 22.5t23.5 56.5q0 27 -27 43.5t-72 16.5q-23 0 -30 -1l11 50q28 -2 61 -2q42 0 66.5 18t24.5 50q0 28 -27 44.5t-65 16.5q-58 0 -108 -43l-23 39q58 53 135 53q65 0 107 -26.5t42 -75.5q0 -44 -31 -72t-80 -32q32 -6 54.5 -29 t22.5 -57q0 -47 -40.5 -84t-106.5 -37q-117 0 -160 73zM162 0l573 667h56l-574 -667h-55zM497 100l9 44l229 256h83l-55 -251h57l-10 -49h-58l-22 -100h-59l22 100h-196zM568 149h135l43 194z" />
+<glyph unicode="&#xbf;" horiz-adv-x="394" d="M-33 -48q0 42 18.5 75t47 52t61 38t61 33t47 35t18.5 47q0 22 -16 39l66 27q23 -32 23 -71q0 -40 -24.5 -70t-59 -49t-69.5 -37t-59.5 -44t-24.5 -61q0 -40 32 -63.5t90 -23.5q87 0 154 65l37 -57q-88 -82 -201 -82q-88 0 -144.5 40.5t-56.5 106.5zM225 434q0 24 18 41.5 t42 17.5q22 0 36.5 -15t14.5 -36q0 -25 -18 -42t-43 -17q-21 0 -35.5 14.5t-14.5 36.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="658" d="M-45 0l415 667h103l122 -667h-91l-26 148h-333l-91 -148h-99zM187 222h283l-63 359zM297 867h78l116 -144h-57z" />
+<glyph unicode="&#xc1;" horiz-adv-x="658" d="M-45 0l415 667h103l122 -667h-91l-26 148h-333l-91 -148h-99zM187 222h283l-63 359zM375 723l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xc2;" horiz-adv-x="658" d="M-45 0l415 667h103l122 -667h-91l-26 148h-333l-91 -148h-99zM187 222h283l-63 359zM302 723l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xc3;" horiz-adv-x="658" d="M-45 0l415 667h103l122 -667h-91l-26 148h-333l-91 -148h-99zM187 222h283l-63 359zM279 727q27 134 114 134q25 0 42 -14.5t24.5 -31.5t21 -31.5t31.5 -14.5q40 0 62 86h46q-29 -134 -115 -134q-25 0 -42 14.5t-24.5 31.5t-21 31.5t-31.5 14.5q-42 0 -61 -86h-46z" />
+<glyph unicode="&#xc4;" horiz-adv-x="658" d="M-45 0l415 667h103l122 -667h-91l-26 148h-333l-91 -148h-99zM187 222h283l-63 359zM295 766q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM502 766q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36 t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="658" d="M-45 0l415 667h103l122 -667h-91l-26 148h-333l-91 -148h-99zM187 222h283l-63 359zM350 779q0 43 32 75.5t76 32.5q39 0 64 -25t25 -64q0 -44 -32 -76t-76 -32q-39 0 -64 25t-25 64zM390 783q0 -23 14.5 -38t37.5 -15q26 0 45.5 19t19.5 45q0 24 -14 38.5t-38 14.5 q-26 0 -45.5 -19t-19.5 -45z" />
+<glyph unicode="&#xc6;" horiz-adv-x="947" d="M-47 0l563 667h470l-16 -74h-354l-48 -215h347l-16 -74h-348l-51 -230h355l-16 -74h-437l32 148h-259l-124 -148h-98zM232 222h219l77 354z" />
+<glyph unicode="&#xc7;" horiz-adv-x="676" d="M60 280q0 88 31.5 163.5t83.5 126.5t120 79.5t140 28.5q97 0 167 -42t105 -115l-79 -31q-58 114 -198 114q-112 0 -197 -90t-85 -230q0 -99 61 -160.5t164 -61.5q98 0 179 76l61 -46q-97 -104 -245 -104q-13 0 -19 1l-27 -44q15 11 34 11q26 0 42 -15.5t16 -43.5 q0 -39 -30 -63.5t-78 -24.5q-68 0 -108 38l27 36q33 -35 83 -35q29 0 45 13t16 34q0 30 -37 30q-20 0 -35 -17l-29 19l39 66q-111 18 -179 95t-68 192z" />
+<glyph unicode="&#xc8;" horiz-adv-x="569" d="M24 0l147 667h437l-16 -74h-354l-48 -215h347l-16 -74h-348l-51 -230h355l-16 -74h-437zM266 867h78l116 -144h-57z" />
+<glyph unicode="&#xc9;" horiz-adv-x="569" d="M24 0l147 667h437l-16 -74h-354l-48 -215h347l-16 -74h-348l-51 -230h355l-16 -74h-437zM343 723l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xca;" horiz-adv-x="569" d="M24 0l147 667h437l-16 -74h-354l-48 -215h347l-16 -74h-348l-51 -230h355l-16 -74h-437zM269 723l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xcb;" horiz-adv-x="569" d="M24 0l147 667h437l-16 -74h-354l-48 -215h347l-16 -74h-348l-51 -230h355l-16 -74h-437zM262 766q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM469 766q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36 t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="239" d="M24 0l147 667h83l-147 -667h-83zM88 867h78l116 -144h-57z" />
+<glyph unicode="&#xcd;" horiz-adv-x="239" d="M24 0l147 667h83l-147 -667h-83zM166 723l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xce;" horiz-adv-x="239" d="M24 0l147 667h83l-147 -667h-83zM93 723l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xcf;" horiz-adv-x="239" d="M24 0l147 667h83l-147 -667h-83zM85 766q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM292 766q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="728" d="M22 299l15 69h96l66 299h223q114 0 195.5 -81t81.5 -204q0 -70 -25.5 -136.5t-75 -122t-132.5 -89.5t-187 -34h-227l66 299h-96zM150 74h143q143 0 231 88.5t88 215.5q0 92 -59 153.5t-147 61.5h-140l-50 -225h169l-15 -69h-170z" />
+<glyph unicode="&#xd1;" horiz-adv-x="708" d="M24 0l147 667h85l266 -534l118 534h83l-147 -667h-80l-269 544l-120 -544h-83zM304 727q27 134 114 134q25 0 42 -14.5t24.5 -31.5t21 -31.5t31.5 -14.5q41 0 62 86h46q-29 -134 -115 -134q-25 0 -42 14.5t-24.5 31.5t-21 31.5t-31.5 14.5q-42 0 -61 -86h-46z" />
+<glyph unicode="&#xd2;" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q133 0 220.5 -78.5t87.5 -212.5q0 -168 -109.5 -283.5t-265.5 -115.5q-133 0 -220.5 78.5t-87.5 213.5zM148 284q0 -104 64 -163t161 -59q115 0 198.5 92t83.5 228q0 103 -64 162.5t-161 59.5q-117 0 -199.5 -91.5t-82.5 -228.5z M352 867h78l116 -144h-57z" />
+<glyph unicode="&#xd3;" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q133 0 220.5 -78.5t87.5 -212.5q0 -168 -109.5 -283.5t-265.5 -115.5q-133 0 -220.5 78.5t-87.5 213.5zM148 284q0 -104 64 -163t161 -59q115 0 198.5 92t83.5 228q0 103 -64 162.5t-161 59.5q-117 0 -199.5 -91.5t-82.5 -228.5z M429 723l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xd4;" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q133 0 220.5 -78.5t87.5 -212.5q0 -168 -109.5 -283.5t-265.5 -115.5q-133 0 -220.5 78.5t-87.5 213.5zM148 284q0 -104 64 -163t161 -59q115 0 198.5 92t83.5 228q0 103 -64 162.5t-161 59.5q-117 0 -199.5 -91.5t-82.5 -228.5z M357 723l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xd5;" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q133 0 220.5 -78.5t87.5 -212.5q0 -168 -109.5 -283.5t-265.5 -115.5q-133 0 -220.5 78.5t-87.5 213.5zM148 284q0 -104 64 -163t161 -59q115 0 198.5 92t83.5 228q0 103 -64 162.5t-161 59.5q-117 0 -199.5 -91.5t-82.5 -228.5z M333 727q27 134 114 134q25 0 42 -14.5t24.5 -31.5t21 -31.5t31.5 -14.5q40 0 62 86h46q-29 -134 -115 -134q-25 0 -42 14.5t-24.5 31.5t-21 31.5t-31.5 14.5q-42 0 -61 -86h-46z" />
+<glyph unicode="&#xd6;" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q133 0 220.5 -78.5t87.5 -212.5q0 -168 -109.5 -283.5t-265.5 -115.5q-133 0 -220.5 78.5t-87.5 213.5zM148 284q0 -104 64 -163t161 -59q115 0 198.5 92t83.5 228q0 103 -64 162.5t-161 59.5q-117 0 -199.5 -91.5t-82.5 -228.5z M349 766q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM556 766q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="499" d="M48 187l185 150l-115 147l42 34l113 -147l184 150l32 -40l-183 -151l114 -147l-41 -33l-115 147l-183 -150z" />
+<glyph unicode="&#xd8;" horiz-adv-x="765" d="M60 280q0 167 109.5 282.5t265.5 115.5q109 0 189 -54l39 43h66l-67 -74q81 -81 81 -206q0 -168 -109.5 -283.5t-265.5 -115.5q-112 0 -194 57l-41 -45h-66l69 78q-76 79 -76 202zM148 284q0 -87 45 -143l376 421q-57 42 -139 42q-117 0 -199.5 -91.5t-82.5 -228.5z M228 107q58 -45 145 -45q115 0 198.5 92t83.5 228q0 87 -50 147z" />
+<glyph unicode="&#xd9;" horiz-adv-x="700" d="M76 210q0 19 5 49l90 408h83l-89 -406q-5 -20 -5 -42q0 -70 46.5 -113.5t129.5 -43.5q88 0 136.5 50.5t69.5 148.5l90 406h83l-89 -407q-30 -133 -97 -202.5t-193 -69.5q-123 0 -191.5 60t-68.5 162zM319 867h78l116 -144h-57z" />
+<glyph unicode="&#xda;" horiz-adv-x="700" d="M76 210q0 19 5 49l90 408h83l-89 -406q-5 -20 -5 -42q0 -70 46.5 -113.5t129.5 -43.5q88 0 136.5 50.5t69.5 148.5l90 406h83l-89 -407q-30 -133 -97 -202.5t-193 -69.5q-123 0 -191.5 60t-68.5 162zM397 723l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xdb;" horiz-adv-x="700" d="M76 210q0 19 5 49l90 408h83l-89 -406q-5 -20 -5 -42q0 -70 46.5 -113.5t129.5 -43.5q88 0 136.5 50.5t69.5 148.5l90 406h83l-89 -407q-30 -133 -97 -202.5t-193 -69.5q-123 0 -191.5 60t-68.5 162zM323 723l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xdc;" horiz-adv-x="700" d="M76 210q0 19 5 49l90 408h83l-89 -406q-5 -20 -5 -42q0 -70 46.5 -113.5t129.5 -43.5q88 0 136.5 50.5t69.5 148.5l90 406h83l-89 -407q-30 -133 -97 -202.5t-193 -69.5q-123 0 -191.5 60t-68.5 162zM316 766q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36 t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM523 766q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="626" d="M102 667h91l139 -310l275 310h103l-347 -385l-62 -282h-83l62 282zM359 723l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xde;" horiz-adv-x="587" d="M24 0l147 667h83l-26 -119h175q74 0 124.5 -50.5t50.5 -122.5q0 -41 -15 -80.5t-44 -73.5t-80 -54.5t-116 -20.5h-184l-32 -146h-83zM155 220h174q77 0 119.5 43.5t42.5 104.5q0 45 -33 75.5t-78 30.5h-169z" />
+<glyph unicode="&#xdf;" horiz-adv-x="597" d="M21 0l110 499q18 79 71.5 128.5t135.5 49.5q68 0 121 -34t53 -87q0 -36 -20 -62.5t-49 -41.5t-57.5 -28.5t-48.5 -32t-20 -43.5q0 -23 25 -40t60.5 -29t71 -26.5t60.5 -42t25 -65.5q0 -63 -50.5 -110t-137.5 -47q-68 0 -115.5 21t-87.5 68l47 48q59 -76 159 -76 q50 0 80 26t30 61q0 25 -25 42.5t-60 29.5t-70.5 26t-60.5 40t-25 63q0 38 19.5 66t48 44t56.5 29t47.5 29.5t19.5 37.5q0 30 -30 48.5t-68 18.5q-48 0 -83 -30t-47 -81l-110 -499h-75z" />
+<glyph unicode="&#xe0;" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-107 -483h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159zM214 700h78 l116 -144h-57z" />
+<glyph unicode="&#xe1;" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-107 -483h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159zM290 556 l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xe2;" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-107 -483h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159zM218 556 l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xe3;" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-107 -483h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159zM196 560 q27 134 114 134q25 0 42 -14.5t24.5 -31.5t21 -31.5t31.5 -14.5q41 0 62 86h46q-29 -134 -115 -134q-25 0 -42 14.5t-24.5 31.5t-21 31.5t-31.5 14.5q-42 0 -61 -86h-46z" />
+<glyph unicode="&#xe4;" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-107 -483h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159zM211 599 q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM418 599q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="575" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-107 -483h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159zM270 629 q0 43 32 75.5t76 32.5q39 0 64 -25t25 -64q0 -44 -32 -76t-76 -32q-39 0 -64 25t-25 64zM310 633q0 -23 14.5 -38t37.5 -15q26 0 45.5 19t19.5 45q0 24 -14 38.5t-38 14.5q-26 0 -45.5 -19t-19.5 -45z" />
+<glyph unicode="&#xe6;" horiz-adv-x="938" d="M40 187q0 124 70.5 216t182.5 92q55 0 99.5 -23.5t68.5 -64.5l17 76h75l-18 -82q30 39 76 66.5t99 27.5q90 0 138.5 -56t48.5 -151q0 -40 -9 -71h-390q-1 -4 -1 -23q0 -60 42.5 -101t120.5 -41q77 0 135 47l26 -54q-76 -57 -158 -57q-77 0 -125.5 35.5t-65.5 94.5 l-26 -118h-75l15 69q-65 -81 -159 -81q-85 0 -136 53t-51 146zM119 201q0 -67 37 -106.5t98 -39.5q43 0 83 23.5t64 58.5l48 213q-19 34 -57.5 56t-88.5 22q-80 0 -132 -68t-52 -159zM505 272h320q2 8 2 19q0 63 -36.5 102.5t-105.5 39.5q-65 0 -116.5 -47.5t-63.5 -113.5z " />
+<glyph unicode="&#xe7;" horiz-adv-x="495" d="M40 204q0 120 79 205.5t193 85.5q127 0 181 -90l-57 -43q-37 66 -122 66q-88 0 -142 -66t-54 -157q0 -72 42.5 -111t108.5 -39q72 0 122 57l43 -50q-72 -74 -172 -74h-12l-27 -43q15 11 34 11q26 0 42 -15.5t16 -43.5q0 -39 -30 -63.5t-78 -24.5q-68 0 -108 38l27 36 q33 -35 83 -35q29 0 45 13t16 34q0 30 -37 30q-20 0 -35 -17l-29 19l39 66q-77 15 -122.5 70t-45.5 141z" />
+<glyph unicode="&#xe8;" horiz-adv-x="563" d="M40 202q0 121 79 207t193 86q94 0 151 -59t57 -152q0 -30 -8 -67h-394q0 -2 -0.5 -10.5t-0.5 -12.5q0 -60 43 -102t121 -42q80 0 139 47l25 -52q-72 -57 -169 -57q-109 0 -172.5 58t-63.5 156zM126 272h324q2 8 2 19q0 62 -38.5 102t-108.5 40q-65 0 -116 -47.5 t-63 -113.5zM217 700h78l116 -144h-57z" />
+<glyph unicode="&#xe9;" horiz-adv-x="563" d="M40 202q0 121 79 207t193 86q94 0 151 -59t57 -152q0 -30 -8 -67h-394q0 -2 -0.5 -10.5t-0.5 -12.5q0 -60 43 -102t121 -42q80 0 139 47l25 -52q-72 -57 -169 -57q-109 0 -172.5 58t-63.5 156zM126 272h324q2 8 2 19q0 62 -38.5 102t-108.5 40q-65 0 -116 -47.5 t-63 -113.5zM295 556l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xea;" horiz-adv-x="563" d="M40 202q0 121 79 207t193 86q94 0 151 -59t57 -152q0 -30 -8 -67h-394q0 -2 -0.5 -10.5t-0.5 -12.5q0 -60 43 -102t121 -42q80 0 139 47l25 -52q-72 -57 -169 -57q-109 0 -172.5 58t-63.5 156zM126 272h324q2 8 2 19q0 62 -38.5 102t-108.5 40q-65 0 -116 -47.5 t-63 -113.5zM220 556l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xeb;" horiz-adv-x="563" d="M40 202q0 121 79 207t193 86q94 0 151 -59t57 -152q0 -30 -8 -67h-394q0 -2 -0.5 -10.5t-0.5 -12.5q0 -60 43 -102t121 -42q80 0 139 47l25 -52q-72 -57 -169 -57q-109 0 -172.5 58t-63.5 156zM126 272h324q2 8 2 19q0 62 -38.5 102t-108.5 40q-65 0 -116 -47.5 t-63 -113.5zM214 599q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM421 599q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="225" d="M21 0l107 483h75l-107 -483h-75zM45 700h78l116 -144h-57z" />
+<glyph unicode="&#xed;" horiz-adv-x="225" d="M21 0l107 483h75l-107 -483h-75zM123 556l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xee;" horiz-adv-x="225" d="M21 0l107 483h75l-107 -483h-75zM49 556l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xef;" horiz-adv-x="225" d="M21 0l107 483h75l-107 -483h-75zM42 599q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM249 599q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xf0;" d="M39 194q0 119 73.5 202t176.5 83q53 0 98.5 -26.5t68.5 -80.5q-31 96 -120 186l-158 -47l-11 40l134 40q-33 28 -65 53l53 57q54 -40 97 -85l114 34l11 -40l-94 -28q115 -137 115 -280q0 -132 -75.5 -223t-192.5 -91q-100 0 -162.5 58t-62.5 148zM118 201 q0 -65 39 -105.5t107 -40.5q76 0 130 63t54 152q0 57 -38 99.5t-110 42.5q-75 0 -128.5 -61t-53.5 -150z" />
+<glyph unicode="&#xf1;" horiz-adv-x="551" d="M21 0l107 483h75l-16 -70q86 82 171 82q65 0 104.5 -31.5t39.5 -88.5q0 -20 -6 -40l-74 -335h-75l70 317q6 27 6 33q0 40 -26.5 59t-68.5 19q-82 0 -154 -76l-78 -352h-75zM189 560q27 134 114 134q25 0 42 -14.5t24.5 -31.5t21 -31.5t31.5 -14.5q40 0 62 86h46 q-29 -134 -115 -134q-25 0 -42 14.5t-24.5 31.5t-21 31.5t-31.5 14.5q-42 0 -61 -86h-46z" />
+<glyph unicode="&#xf2;" d="M40 202q0 117 77.5 205t191.5 88q102 0 161.5 -59t59.5 -156q0 -117 -77.5 -204.5t-191.5 -87.5q-102 0 -161.5 58.5t-59.5 155.5zM119 205q0 -69 38 -109.5t106 -40.5q80 0 134 67.5t54 155.5q0 69 -38 109.5t-106 40.5q-80 0 -134 -67.5t-54 -155.5zM219 700h78 l116 -144h-57z" />
+<glyph unicode="&#xf3;" d="M40 202q0 117 77.5 205t191.5 88q102 0 161.5 -59t59.5 -156q0 -117 -77.5 -204.5t-191.5 -87.5q-102 0 -161.5 58.5t-59.5 155.5zM119 205q0 -69 38 -109.5t106 -40.5q80 0 134 67.5t54 155.5q0 69 -38 109.5t-106 40.5q-80 0 -134 -67.5t-54 -155.5zM295 556l180 144 h80l-201 -144h-59z" />
+<glyph unicode="&#xf4;" d="M40 202q0 117 77.5 205t191.5 88q102 0 161.5 -59t59.5 -156q0 -117 -77.5 -204.5t-191.5 -87.5q-102 0 -161.5 58.5t-59.5 155.5zM119 205q0 -69 38 -109.5t106 -40.5q80 0 134 67.5t54 155.5q0 69 -38 109.5t-106 40.5q-80 0 -134 -67.5t-54 -155.5zM222 556l127 144 h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xf5;" d="M40 202q0 117 77.5 205t191.5 88q102 0 161.5 -59t59.5 -156q0 -117 -77.5 -204.5t-191.5 -87.5q-102 0 -161.5 58.5t-59.5 155.5zM119 205q0 -69 38 -109.5t106 -40.5q80 0 134 67.5t54 155.5q0 69 -38 109.5t-106 40.5q-80 0 -134 -67.5t-54 -155.5zM201 560 q27 134 114 134q25 0 42 -14.5t24.5 -31.5t21 -31.5t31.5 -14.5q40 0 62 86h46q-29 -134 -115 -134q-25 0 -42 14.5t-24.5 31.5t-21 31.5t-31.5 14.5q-42 0 -61 -86h-46z" />
+<glyph unicode="&#xf6;" d="M40 202q0 117 77.5 205t191.5 88q102 0 161.5 -59t59.5 -156q0 -117 -77.5 -204.5t-191.5 -87.5q-102 0 -161.5 58.5t-59.5 155.5zM119 205q0 -69 38 -109.5t106 -40.5q80 0 134 67.5t54 155.5q0 69 -38 109.5t-106 40.5q-80 0 -134 -67.5t-54 -155.5zM216 599 q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM423 599q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M44 311l11 52h453l-11 -52h-453zM187 141q0 20 15 34.5t35 14.5q18 0 30 -12.5t12 -29.5q0 -21 -14.5 -35t-35.5 -14q-17 0 -29.5 12.5t-12.5 29.5zM271 522q0 20 15 35t36 15q17 0 29 -12.5t12 -29.5q0 -21 -14.5 -35.5t-35.5 -14.5q-17 0 -29.5 12.5t-12.5 29.5z" />
+<glyph unicode="&#xf8;" d="M8 0l71 70q-39 52 -39 132q0 117 77.5 205t191.5 88q92 0 150 -49l38 37h58l-68 -67q43 -55 43 -136q0 -117 -77.5 -204.5t-191.5 -87.5q-95 0 -155 52l-40 -40h-58zM119 205q0 -45 17 -79l270 267q-38 35 -99 35q-80 0 -134 -67.5t-54 -155.5zM160 92q37 -37 103 -37 q80 0 134 67.5t54 155.5q0 48 -20 83z" />
+<glyph unicode="&#xf9;" horiz-adv-x="551" d="M49 108q0 15 5 40l74 335h75l-70 -316q-5 -25 -5 -34q0 -78 100 -78q73 0 149 76l77 352h75l-107 -483h-75l16 70q-86 -82 -170 -82q-66 0 -105 31.5t-39 88.5zM208 700h78l116 -144h-57z" />
+<glyph unicode="&#xfa;" horiz-adv-x="551" d="M49 108q0 15 5 40l74 335h75l-70 -316q-5 -25 -5 -34q0 -78 100 -78q73 0 149 76l77 352h75l-107 -483h-75l16 70q-86 -82 -170 -82q-66 0 -105 31.5t-39 88.5zM285 556l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xfb;" horiz-adv-x="551" d="M49 108q0 15 5 40l74 335h75l-70 -316q-5 -25 -5 -34q0 -78 100 -78q73 0 149 76l77 352h75l-107 -483h-75l16 70q-86 -82 -170 -82q-66 0 -105 31.5t-39 88.5zM212 556l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#xfc;" horiz-adv-x="551" d="M49 108q0 15 5 40l74 335h75l-70 -316q-5 -25 -5 -34q0 -78 100 -78q73 0 149 76l77 352h75l-107 -483h-75l16 70q-86 -82 -170 -82q-66 0 -105 31.5t-39 88.5zM206 599q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5z M413 599q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="490" d="M-46 -185l26 67q18 -8 47 -8q40 0 72 48l49 75l-92 486h79l72 -396l249 396h84l-372 -581q-63 -98 -151 -98q-36 0 -63 11zM252 556l180 144h80l-201 -144h-59z" />
+<glyph unicode="&#xfe;" d="M-20 -184l188 851h75l-56 -253q66 81 160 81q84 0 135.5 -53t51.5 -146q0 -123 -70.5 -215.5t-182.5 -92.5q-56 0 -99.5 23.5t-68.5 64.5l-58 -260h-75zM125 133q19 -35 57.5 -56.5t88.5 -21.5q80 0 132 68t52 159q0 67 -37 106.5t-98 39.5q-44 0 -83 -23.5t-65 -59.5z " />
+<glyph unicode="&#xff;" horiz-adv-x="490" d="M-46 -185l26 67q18 -8 47 -8q40 0 72 48l49 75l-92 486h79l72 -396l249 396h84l-372 -581q-63 -98 -151 -98q-36 0 -63 11zM173 599q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM380 599q0 20 15.5 35.5t36.5 15.5 q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="1105" d="M60 280q0 173 110.5 285t265.5 112q183 0 239 -155l31 145h438l-16 -74h-354l-48 -215h347l-16 -74h-348l-51 -230h355l-16 -74h-438l22 102q-86 -114 -240 -114q-124 0 -202.5 82t-78.5 210zM148 284q0 -101 60.5 -161.5t157.5 -60.5q71 0 135 37t103 102l49 222 q-15 86 -72.5 133t-144.5 47q-119 0 -203.5 -92t-84.5 -227z" />
+<glyph unicode="&#x153;" horiz-adv-x="962" d="M40 202q0 116 76.5 204.5t190.5 88.5q81 0 131.5 -45t59.5 -93q93 138 216 138q91 0 149 -56.5t58 -154.5q0 -29 -9 -67h-389q-2 -8 -2 -23q0 -60 43 -102t120 -42q79 0 136 47l26 -52q-70 -57 -167 -57q-85 0 -140.5 44t-66.5 94q-18 -28 -32.5 -45.5t-41 -42t-62 -37.5 t-77.5 -13q-99 0 -159 57.5t-60 156.5zM119 205q0 -69 37.5 -109.5t104.5 -40.5q78 0 132 66t54 157q0 75 -40.5 112.5t-101.5 37.5q-77 0 -131.5 -66t-54.5 -157zM531 272h320q1 5 1 19q0 62 -37.5 102t-106.5 40q-68 0 -118.5 -51t-58.5 -110z" />
+<glyph unicode="&#x178;" horiz-adv-x="626" d="M102 667h91l139 -310l275 310h103l-347 -385l-62 -282h-83l62 282zM280 766q0 20 16 35.5t36 15.5q18 0 30 -12t12 -29q0 -20 -16 -36t-36 -16q-17 0 -29.5 12.5t-12.5 29.5zM487 766q0 20 15.5 35.5t36.5 15.5q17 0 29 -12t12 -29q0 -20 -15.5 -36t-36.5 -16 q-17 0 -29 12.5t-12 29.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="265" d="M69 556l127 144h72l66 -144h-49l-60 106l-103 -106h-53z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="313" d="M70 560q27 134 114 134q25 0 42 -14.5t24.5 -31.5t21 -31.5t31.5 -14.5q41 0 62 86h46q-29 -134 -115 -134q-25 0 -42 14.5t-24.5 31.5t-21 31.5t-31.5 14.5q-42 0 -61 -86h-46z" />
+<glyph unicode="&#x2000;" horiz-adv-x="443" />
+<glyph unicode="&#x2001;" horiz-adv-x="887" />
+<glyph unicode="&#x2002;" horiz-adv-x="443" />
+<glyph unicode="&#x2003;" horiz-adv-x="887" />
+<glyph unicode="&#x2004;" horiz-adv-x="295" />
+<glyph unicode="&#x2005;" horiz-adv-x="221" />
+<glyph unicode="&#x2006;" horiz-adv-x="147" />
+<glyph unicode="&#x2007;" horiz-adv-x="147" />
+<glyph unicode="&#x2008;" horiz-adv-x="110" />
+<glyph unicode="&#x2009;" horiz-adv-x="177" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M22 209l14 66h240l-14 -66h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M22 209l14 66h240l-14 -66h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M22 209l14 66h240l-14 -66h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M22 209l14 66h533l-14 -66h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M22 209l14 66h773l-14 -66h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="230" d="M108 515q0 46 34 92t82 70l31 -33q-67 -34 -84 -84q1 1 8 1q18 0 30.5 -12.5t12.5 -32.5q0 -24 -18.5 -41.5t-42.5 -17.5q-22 0 -37.5 15t-15.5 43z" />
+<glyph unicode="&#x2019;" horiz-adv-x="230" d="M110 489q67 34 84 84h-8q-18 0 -30.5 12.5t-12.5 32.5q0 24 18 41.5t42 17.5q23 0 38 -15.5t15 -42.5q0 -46 -34 -92t-82 -71z" />
+<glyph unicode="&#x201a;" horiz-adv-x="230" d="M-18 -88q67 34 84 84h-8q-18 0 -30.5 12t-12.5 32q0 24 18 42t42 18q23 0 38 -15.5t15 -43.5q0 -45 -33.5 -91t-81.5 -71z" />
+<glyph unicode="&#x201c;" horiz-adv-x="390" d="M116 515q0 46 34 92t82 70l30 -33q-67 -34 -84 -84q1 1 8 1q18 0 30.5 -12.5t12.5 -32.5q0 -24 -18 -41.5t-42 -17.5q-23 0 -38 15t-15 43zM275 515q0 46 34 92t82 70l30 -33q-65 -33 -84 -84q2 1 9 1q17 0 29.5 -12.5t12.5 -32.5q0 -24 -18 -41.5t-42 -17.5 q-23 0 -38 15t-15 43z" />
+<glyph unicode="&#x201d;" horiz-adv-x="390" d="M110 489q67 34 84 84h-8q-18 0 -30.5 12.5t-12.5 32.5q0 24 18 41.5t42 17.5q23 0 38 -15.5t15 -42.5q0 -46 -34 -92t-82 -71zM270 489q65 33 84 84h-9q-17 0 -29.5 12.5t-12.5 32.5q0 24 18 41.5t42 17.5q23 0 38 -15.5t15 -42.5q0 -46 -34 -92t-82 -71z" />
+<glyph unicode="&#x201e;" horiz-adv-x="390" d="M-18 -88q67 34 84 84h-8q-18 0 -30.5 12t-12.5 32q0 24 18 42t42 18q23 0 38 -15.5t15 -43.5q0 -45 -33.5 -91t-81.5 -71zM141 -88q29 14 52.5 37t31.5 47h-8q-18 0 -30 12t-12 32q0 24 18 42t42 18q22 0 37.5 -15.5t15.5 -43.5q0 -45 -34 -91t-82 -71z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M70 232q0 48 36.5 83t84.5 35q41 0 69 -28t28 -69q0 -48 -36.5 -83t-84.5 -35q-41 0 -69 28t-28 69z" />
+<glyph unicode="&#x2026;" horiz-adv-x="691" d="M15 40q0 25 18 42.5t43 17.5q21 0 35.5 -15t14.5 -36q0 -24 -18 -41.5t-42 -17.5q-22 0 -36.5 14.5t-14.5 35.5zM246 40q0 25 17.5 42.5t42.5 17.5q21 0 35.5 -15t14.5 -36q0 -25 -17.5 -42t-42.5 -17q-21 0 -35.5 14.5t-14.5 35.5zM476 40q0 25 17.5 42.5t42.5 17.5 q21 0 35.5 -15t14.5 -36q0 -25 -17.5 -42t-42.5 -17q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="177" />
+<glyph unicode="&#x2039;" horiz-adv-x="295" d="M29 243l200 177h79l-204 -182l116 -175h-71z" />
+<glyph unicode="&#x203a;" horiz-adv-x="295" d="M-11 63l204 182l-116 175h71l120 -180l-200 -177h-79z" />
+<glyph unicode="&#x205f;" horiz-adv-x="221" />
+<glyph unicode="&#x20ac;" horiz-adv-x="695" d="M29 237l12 52h43q0 42 10 90h-34l12 52h38q43 113 139.5 180t209.5 67q97 0 167 -42t105 -115l-79 -31q-58 114 -198 114q-78 0 -147 -46.5t-105 -126.5h315l-12 -52h-321q-12 -42 -12 -90h313l-12 -52h-297q14 -80 72.5 -127.5t148.5 -47.5q98 0 179 76l61 -46 q-97 -104 -245 -104q-123 0 -207 67.5t-99 181.5h-57z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M105 641l5 26h152l-5 -26h-62l-43 -194h-28l43 194h-62zM250 447l48 220h43l29 -160l99 160h43l-48 -220h-28l40 182l-115 -182h-8l-35 182l-40 -182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern u1="K" u2="a" k="17" />
+<hkern u1="L" u2="a" k="14" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="T" u2="a" k="95" />
+<hkern u1="V" u2="a" k="63" />
+<hkern u1="W" u2="a" k="40" />
+<hkern u1="Y" u2="a" k="121" />
+<hkern u1="a" u2="&#x2122;" k="6" />
+<hkern u1="a" u2="&#x201d;" k="6" />
+<hkern u1="a" u2="&#x201c;" k="6" />
+<hkern u1="a" u2="&#x2019;" k="6" />
+<hkern u1="a" u2="&#x2018;" k="6" />
+<hkern u1="a" u2="&#x178;" k="110" />
+<hkern u1="a" u2="&#xdd;" k="110" />
+<hkern u1="a" u2="&#xae;" k="6" />
+<hkern u1="a" u2="Y" k="110" />
+<hkern u1="a" u2="W" k="43" />
+<hkern u1="a" u2="V" k="66" />
+<hkern u1="a" u2="T" k="108" />
+<hkern u1="a" u2="&#x3f;" k="36" />
+<hkern u1="a" u2="&#x27;" k="6" />
+<hkern u1="a" u2="&#x22;" k="6" />
+<hkern u1="&#xdd;" u2="a" k="121" />
+<hkern u1="&#x178;" u2="a" k="121" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="17" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="13" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="3" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-3" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="-3" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="3" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="12" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="26" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="3" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="16" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="39" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="32" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="33" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="56" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="24" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="17" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="59" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="36" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="6" />
+<hkern g1="G" 	g2="question" 	k="6" />
+<hkern g1="G" 	g2="T" 	k="20" />
+<hkern g1="G" 	g2="W" 	k="10" />
+<hkern g1="G" 	g2="V" 	k="23" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="29" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="3" />
+<hkern g1="G" 	g2="X" 	k="3" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="54" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="21" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="26" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="39" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="34" />
+<hkern g1="K" 	g2="x" 	k="26" />
+<hkern g1="L" 	g2="question" 	k="114" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="122" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="34" />
+<hkern g1="L" 	g2="asterisk" 	k="174" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="27" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="66" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="123" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
+<hkern g1="L" 	g2="t" 	k="33" />
+<hkern g1="L" 	g2="w" 	k="37" />
+<hkern g1="L" 	g2="v" 	k="57" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="57" />
+<hkern g1="L" 	g2="ampersand" 	k="7" />
+<hkern g1="L" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="21" />
+<hkern g1="P" 	g2="J" 	k="109" />
+<hkern g1="P" 	g2="W" 	k="3" />
+<hkern g1="P" 	g2="V" 	k="3" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="77" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="94" />
+<hkern g1="P" 	g2="X" 	k="9" />
+<hkern g1="P" 	g2="ampersand" 	k="26" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="34" />
+<hkern g1="P" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="13" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="3" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="19" />
+<hkern g1="R" 	g2="ampersand" 	k="3" />
+<hkern g1="R" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="6" />
+<hkern g1="S" 	g2="T" 	k="16" />
+<hkern g1="S" 	g2="W" 	k="10" />
+<hkern g1="S" 	g2="V" 	k="12" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="S" 	g2="t" 	k="17" />
+<hkern g1="S" 	g2="w" 	k="3" />
+<hkern g1="S" 	g2="v" 	k="6" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="6" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="7" />
+<hkern g1="S" 	g2="x" 	k="13" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
+<hkern g1="T" 	g2="J" 	k="83" />
+<hkern g1="T" 	g2="S" 	k="-7" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="31" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="85" />
+<hkern g1="T" 	g2="w" 	k="56" />
+<hkern g1="T" 	g2="v" 	k="56" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="56" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="57" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="93" />
+<hkern g1="T" 	g2="ampersand" 	k="40" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="115" />
+<hkern g1="T" 	g2="x" 	k="66" />
+<hkern g1="T" 	g2="s" 	k="91" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="85" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="12" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="16" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="7" />
+<hkern g1="V" 	g2="J" 	k="93" />
+<hkern g1="V" 	g2="S" 	k="-11" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="42" />
+<hkern g1="V" 	g2="t" 	k="13" />
+<hkern g1="V" 	g2="w" 	k="6" />
+<hkern g1="V" 	g2="v" 	k="13" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="6" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="44" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="12" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="53" />
+<hkern g1="V" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="23" />
+<hkern g1="V" 	g2="s" 	k="39" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="42" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="9" />
+<hkern g1="W" 	g2="J" 	k="38" />
+<hkern g1="W" 	g2="S" 	k="-10" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="13" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="13" />
+<hkern g1="W" 	g2="v" 	k="3" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="3" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="39" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="67" />
+<hkern g1="W" 	g2="ampersand" 	k="10" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="33" />
+<hkern g1="W" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="23" />
+<hkern g1="W" 	g2="s" 	k="19" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="24" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="113" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="7" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="49" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="26" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="53" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="42" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="116" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="127" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="73" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="59" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="17" />
+<hkern g1="ampersand" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="21" />
+<hkern g1="ampersand" 	g2="T" 	k="91" />
+<hkern g1="ampersand" 	g2="W" 	k="58" />
+<hkern g1="ampersand" 	g2="V" 	k="67" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="asterisk" 	g2="J" 	k="116" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="101" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="46" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="115" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="124" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="7" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="37" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="23" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="3" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="81" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="23" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="36" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="63" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="59" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="36" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="3" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="17" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="101" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="53" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="7" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="7" />
+<hkern g1="f" 	g2="question" 	k="-57" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-67" />
+<hkern g1="f" 	g2="asterisk" 	k="-67" />
+<hkern g1="f" 	g2="S" 	k="-23" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-63" />
+<hkern g1="f" 	g2="V" 	k="-63" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-56" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="43" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="3" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-74" />
+<hkern g1="g,j,q" 	g2="question" 	k="23" />
+<hkern g1="g,j,q" 	g2="T" 	k="85" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="42" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-46" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="33" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="53" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="109" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="43" />
+<hkern g1="k" 	g2="T" 	k="69" />
+<hkern g1="k" 	g2="W" 	k="23" />
+<hkern g1="k" 	g2="V" 	k="23" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="66" />
+<hkern g1="k" 	g2="bullet" 	k="27" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="27" />
+<hkern g1="k" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="3" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="76" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="93" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="67" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="87" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="23" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="44" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="67" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="57" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="7" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="66" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="78" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="31" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="3" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="92" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="104" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="76" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="ampersand" 	k="-7" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="48" />
+<hkern g1="r" 	g2="W" 	k="6" />
+<hkern g1="r" 	g2="V" 	k="23" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="83" />
+<hkern g1="r" 	g2="X" 	k="9" />
+<hkern g1="s" 	g2="question" 	k="43" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="88" />
+<hkern g1="s" 	g2="W" 	k="39" />
+<hkern g1="s" 	g2="V" 	k="43" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="93" />
+<hkern g1="s" 	g2="X" 	k="3" />
+<hkern g1="t" 	g2="T" 	k="52" />
+<hkern g1="t" 	g2="W" 	k="13" />
+<hkern g1="t" 	g2="V" 	k="26" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="33" />
+<hkern g1="a,u,z,uni00B5" 	g2="question" 	k="23" />
+<hkern g1="a,u,z,uni00B5" 	g2="T" 	k="85" />
+<hkern g1="a,u,z,uni00B5" 	g2="W" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="V" 	k="42" />
+<hkern g1="a,u,z,uni00B5" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="56" />
+<hkern g1="v" 	g2="W" 	k="3" />
+<hkern g1="v" 	g2="V" 	k="13" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="67" />
+<hkern g1="v" 	g2="X" 	k="37" />
+<hkern g1="w" 	g2="T" 	k="56" />
+<hkern g1="w" 	g2="V" 	k="6" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="17" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="44" />
+<hkern g1="w" 	g2="X" 	k="44" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="3" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="56" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="3" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="6" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="57" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="37" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="44" />
+<hkern g1="X" 	g2="v" 	k="37" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="37" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="43" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="31" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="97" />
+<hkern g1="x" 	g2="T" 	k="66" />
+<hkern g1="x" 	g2="W" 	k="23" />
+<hkern g1="x" 	g2="V" 	k="23" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="73" />
+<hkern g1="x" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="37" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..c05d4c9525abf5a6467b57641e68b2c8bb99284d
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.woff
new file mode 100755
index 0000000000000000000000000000000000000000..81c063fe17672e782daadf0adb9614c367a8968c
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-RegIt.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.eot
new file mode 100755
index 0000000000000000000000000000000000000000..84ed03eede511ad7a11f30baa9b61526e87ba53f
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.otf
new file mode 100755
index 0000000000000000000000000000000000000000..132cdd5b00e7e3c72a3b436f69088433ef204946
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.svg
new file mode 100755
index 0000000000000000000000000000000000000000..2c834abf7a478281701d19eb939f956abde20b16
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.svg
@@ -0,0 +1,555 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_nova_ltsemibold" horiz-adv-x="673" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="257" />
+<glyph unicode="&#xfb01;" horiz-adv-x="549" d="M13 391v92h80v27q0 79 42 123t111 44q51 0 84 -19l-23 -78q-16 11 -42 11q-31 0 -49 -20.5t-18 -60.5v-27h98v-92h-98v-391h-105v391h-80zM363 607q0 27 19.5 46t45.5 19q27 0 46 -19t19 -46t-19 -46t-46 -19q-26 0 -45.5 19t-19.5 46zM376 0v483h105v-483h-105z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="549" d="M13 391v92h80v27q0 79 42 123t111 44q51 0 84 -19l-23 -78q-16 11 -42 11q-31 0 -49 -20.5t-18 -60.5v-27h98v-92h-98v-391h-105v391h-80zM376 0v667h105v-667h-105z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="858" d="M13 391v92h80v27q0 78 41.5 122.5t111.5 44.5q75 0 116 -42l-41 -65q-23 21 -56 21q-31 0 -49 -20.5t-18 -60.5v-27h98v-92h-98v-391h-105v391h-80zM321 391v92h80v27q0 79 42 123t111 44q51 0 84 -19l-23 -78q-16 11 -42 11q-31 0 -49 -20.5t-18 -60.5v-27h98v-92h-98 v-391h-105v391h-80zM672 607q0 27 19.5 46t45.5 19q27 0 46 -19t19 -46t-19 -46t-46 -19q-26 0 -45.5 19t-19.5 46zM685 0v483h105v-483h-105z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="858" d="M13 391v92h80v27q0 78 41.5 122.5t111.5 44.5q75 0 116 -42l-41 -65q-23 21 -56 21q-31 0 -49 -20.5t-18 -60.5v-27h98v-92h-98v-391h-105v391h-80zM321 391v92h80v27q0 79 42 123t111 44q51 0 84 -19l-23 -78q-16 11 -42 11q-31 0 -49 -20.5t-18 -60.5v-27h98v-92h-98 v-391h-105v391h-80zM685 0v667h105v-667h-105z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="257" />
+<glyph unicode="&#x09;" horiz-adv-x="257" />
+<glyph unicode="&#xa0;" horiz-adv-x="257" />
+<glyph unicode="!" horiz-adv-x="245" d="M53 59q0 29 20.5 49.5t48.5 20.5t49 -20.5t21 -49.5q0 -28 -21 -48.5t-49 -20.5t-48.5 20.5t-20.5 48.5zM58 667h128l-18 -463h-91z" />
+<glyph unicode="&#x22;" horiz-adv-x="379" d="M48 618q0 24 17 41.5t42 17.5q24 0 41.5 -17.5t17.5 -41.5l-35 -227h-48q-35 210 -35 227zM214 618q0 24 17 41.5t42 17.5q24 0 41 -17.5t17 -41.5l-35 -227h-47q-35 210 -35 227z" />
+<glyph unicode="#" horiz-adv-x="606" d="M19 174l22 69h102l59 180h-102l21 68h105l58 176h80l-58 -176h101l58 176h80l-59 -176h101l-20 -68h-104l-60 -180h105l-21 -69h-107l-58 -174h-80l59 174h-102l-58 -174h-80l58 174h-100zM223 243h100l60 180h-101z" />
+<glyph unicode="$" horiz-adv-x="605" d="M35 94l65 90q69 -74 168 -89v193q-47 12 -78 23.5t-65 33t-51.5 56t-17.5 81.5q0 77 58 131t154 62v93h80v-94q121 -13 201 -90l-67 -87q-55 54 -134 70v-172q37 -10 63 -19t57.5 -25.5t50.5 -36t32 -50.5t13 -70q0 -82 -54.5 -138.5t-161.5 -65.5v-90h-80v90 q-149 11 -233 104zM176 490q0 -48 92 -74v156q-43 -4 -67.5 -26.5t-24.5 -55.5zM348 94q49 8 73 33t24 56t-25 50.5t-72 33.5v-173z" />
+<glyph unicode="%" horiz-adv-x="746" d="M28 510q0 72 46 119.5t119 47.5q74 0 120.5 -47.5t46.5 -119.5q0 -71 -46.5 -117.5t-120.5 -46.5q-73 0 -119 46.5t-46 117.5zM105 510q0 -43 25 -70.5t63 -27.5q39 0 64 27.5t25 70.5q0 45 -25 72.5t-64 27.5t-63.5 -27.5t-24.5 -72.5zM129 0l426 667h67l-427 -667h-66z M387 152q0 72 46 119.5t119 47.5t119.5 -48t46.5 -119t-46.5 -117.5t-119.5 -46.5t-119 46.5t-46 117.5zM464 152q0 -43 24.5 -70.5t63.5 -27.5t64 27.5t25 70.5q0 45 -25 72.5t-64 27.5t-63.5 -27.5t-24.5 -72.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="644" d="M29 178q0 70 38.5 114.5t106.5 80.5q-47 84 -47 146q0 68 51.5 113t129.5 45q71 0 118 -37t47 -100q0 -36 -13 -65t-40.5 -51.5t-51 -36t-62.5 -32.5q29 -40 66 -82q37 -45 66 -77q44 69 66 139l86 -39q-47 -103 -93 -165q55 -59 130 -131h-137q-22 19 -59 58 q-83 -70 -187 -70q-94 0 -154.5 49.5t-60.5 140.5zM141 187q0 -53 34 -84t82 -31q60 0 115 47q-59 64 -89 99.5t-67 88.5q-75 -49 -75 -120zM233 517q0 -43 33 -101q56 26 85 53t29 66q0 30 -19 47t-48 17q-34 0 -57 -23t-23 -59z" />
+<glyph unicode="'" horiz-adv-x="214" d="M48 618q0 24 17 41.5t42 17.5q24 0 41.5 -17.5t17.5 -41.5l-35 -227h-48q-35 210 -35 227z" />
+<glyph unicode="(" horiz-adv-x="276" d="M42 243q0 120 40 237.5t111 204.5l65 -49q-52 -98 -77 -189t-25 -204t25 -204t77 -188l-65 -50q-71 86 -111 203.5t-40 238.5z" />
+<glyph unicode=")" horiz-adv-x="276" d="M17 -149q53 97 78 188t25 204t-25 204t-78 189l65 49q71 -87 111.5 -204t40.5 -238t-40.5 -238.5t-111.5 -203.5z" />
+<glyph unicode="*" horiz-adv-x="346" d="M29 475l99 51l-99 51l27 48l94 -60l-5 112h56l-6 -112l94 60l28 -48l-99 -51l99 -51l-28 -48l-94 61l6 -112h-56l5 112l-94 -61z" />
+<glyph unicode="+" horiz-adv-x="502" d="M29 303v68h185v200h74v-200h185v-68h-185v-207h-74v207h-185z" />
+<glyph unicode="," horiz-adv-x="245" d="M52 60q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5z" />
+<glyph unicode="-" horiz-adv-x="300" d="M30 197v90h240v-90h-240z" />
+<glyph unicode="." horiz-adv-x="245" d="M52 59q0 29 21 49.5t49 20.5t49 -20.5t21 -49.5t-21 -49.5t-49 -20.5t-49 20.5t-21 49.5z" />
+<glyph unicode="/" horiz-adv-x="315" d="M0 -20l237 707h78l-237 -707h-78z" />
+<glyph unicode="0" horiz-adv-x="616" d="M41 333q0 65 16 125t47 109.5t84 79.5t120 30t120 -30t84 -79.5t47 -109.5t16 -125t-16 -125t-47 -110t-84 -80t-120 -30t-120 30t-84 80t-47 110t-16 125zM160 333q0 -105 36 -173t112 -68t112 68t36 173q0 67 -13.5 119t-48 86.5t-86.5 34.5t-86.5 -34.5t-48 -86.5 t-13.5 -119z" />
+<glyph unicode="1" horiz-adv-x="380" d="M15 473l192 194h102v-667h-117v515l-109 -113z" />
+<glyph unicode="2" horiz-adv-x="595" d="M41 570q43 52 108.5 79.5t137.5 27.5q102 0 172 -55t70 -151q0 -86 -72 -171t-220 -197h296v-103h-483v92q209 158 284.5 234.5t75.5 144.5q0 49 -35.5 75.5t-85.5 26.5q-110 0 -180 -80z" />
+<glyph unicode="3" horiz-adv-x="574" d="M24 96l63 77q32 -37 82 -59t103 -22q65 0 102 27.5t37 74.5q0 94 -148 94q-67 0 -77 -1v105q12 -1 77 -1q62 0 99.5 22t37.5 66q0 45 -38 69.5t-97 24.5q-98 0 -172 -74l-60 73q89 105 243 105q109 0 175 -48.5t66 -131.5q0 -62 -43.5 -102.5t-101.5 -50.5q57 -5 106 -48 t49 -114q0 -86 -68.5 -140t-182.5 -54q-85 0 -150.5 30t-101.5 78z" />
+<glyph unicode="4" horiz-adv-x="580" d="M28 151v94l274 422h161v-413h89v-103h-89v-151h-117v151h-318zM143 254h203v308z" />
+<glyph unicode="5" horiz-adv-x="600" d="M56 91l67 80q70 -79 180 -79q62 0 99.5 33.5t37.5 83.5q0 54 -36.5 86.5t-97.5 32.5q-85 0 -146 -58l-83 24v373h437v-103h-320v-193q58 58 151 58q88 0 150.5 -58.5t62.5 -156.5q0 -103 -70.5 -164.5t-183.5 -61.5q-161 0 -248 103z" />
+<glyph unicode="6" horiz-adv-x="601" d="M41 332q0 151 77 248t217 97q116 0 192 -74l-55 -89q-56 59 -137 59q-80 0 -128 -64t-48 -156q0 -13 1 -19q25 37 74 65t105 28q95 0 159 -56.5t64 -158.5q0 -95 -68 -159.5t-178 -64.5q-71 0 -125 27.5t-86 75.5t-48 108.5t-16 132.5zM161 248q6 -64 42 -110t107 -46 q62 0 98 35.5t36 80.5q0 58 -39 88.5t-98 30.5q-42 0 -81 -21.5t-65 -57.5z" />
+<glyph unicode="7" horiz-adv-x="532" d="M27 564v103h481v-81l-259 -586h-128l252 564h-346z" />
+<glyph unicode="8" horiz-adv-x="595" d="M42 171q0 61 42.5 106t107.5 67q-62 20 -100.5 59t-38.5 99q0 44 21.5 79t57 55t78 30.5t88.5 10.5t88 -10.5t78 -30.5t57.5 -55t21.5 -79q0 -113 -140 -158q65 -22 107.5 -67t42.5 -106q0 -86 -73.5 -134.5t-181.5 -48.5t-182 48.5t-74 134.5zM160 186q0 -42 39.5 -68 t98.5 -26q57 0 97 26t40 68q0 45 -46.5 72.5t-90.5 32.5q-26 -3 -55 -13.5t-56 -35t-27 -56.5zM171 484q0 -29 25 -50.5t50 -30t52 -13.5q27 5 52 13.5t49.5 30t24.5 50.5q0 41 -35.5 65t-90.5 24q-56 0 -91.5 -24t-35.5 -65z" />
+<glyph unicode="9" horiz-adv-x="601" d="M38 454q0 95 68.5 159.5t177.5 64.5q94 0 157.5 -48.5t90.5 -124t27 -172.5q0 -150 -77 -247t-217 -97q-117 0 -191 74l54 88q56 -58 137 -58q85 0 130.5 64.5t45.5 154.5v20q-26 -37 -75 -65.5t-104 -28.5q-95 0 -159.5 57t-64.5 159zM157 458q0 -58 39 -88.5t97 -30.5 q43 0 82 21t64 57q-5 63 -41.5 110t-107.5 47q-61 0 -97 -36t-36 -80z" />
+<glyph unicode=":" horiz-adv-x="245" d="M52 59q0 29 21 49.5t49 20.5t49 -20.5t21 -49.5t-21 -49.5t-49 -20.5t-49 20.5t-21 49.5zM52 420q0 28 21 49t49 21t49 -21t21 -49t-21 -49t-49 -21t-49 21t-21 49z" />
+<glyph unicode=";" horiz-adv-x="245" d="M52 63q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5zM52 420q0 28 21 49t49 21t49 -21t21 -49t-21 -49t-49 -21t-49 21t-21 49z" />
+<glyph unicode="&#x3c;" horiz-adv-x="502" d="M29 297v75l444 208v-81l-365 -165l365 -164v-80z" />
+<glyph unicode="=" horiz-adv-x="502" d="M29 205v67h444v-67h-444zM29 395v68h444v-68h-444z" />
+<glyph unicode="&#x3e;" horiz-adv-x="502" d="M29 90v80l364 164l-364 165v81l444 -208v-75z" />
+<glyph unicode="?" horiz-adv-x="458" d="M13 578q81 99 218 99q93 0 148 -44t55 -113q0 -41 -18.5 -73.5t-45 -53t-52.5 -38.5t-44.5 -39.5t-18.5 -45.5q0 -26 22 -45l-88 -29q-36 34 -36 85q0 41 25 73.5t55.5 50.5t55.5 43t25 53q0 31 -24.5 51.5t-70.5 20.5q-82 0 -139 -70zM155 59q0 29 20.5 49.5t49.5 20.5 t49.5 -20.5t20.5 -49.5t-20.5 -49.5t-49.5 -20.5t-49.5 20.5t-20.5 49.5z" />
+<glyph unicode="@" horiz-adv-x="783" d="M35 244q0 159 120 276.5t277 117.5q139 0 227 -90t88 -221q0 -114 -58 -178t-129 -64q-42 0 -66.5 22t-28.5 55l-1 6q-27 -37 -67 -60t-83 -23q-70 0 -112 46t-42 120q0 100 70.5 173.5t159.5 73.5q90 0 126 -71l12 56h94l-54 -255q-2 -12 -2 -23q0 -23 11.5 -35.5 t29.5 -12.5q36 0 68 43t32 127q0 122 -76.5 198t-202.5 76q-143 0 -249.5 -107t-106.5 -248q0 -120 80.5 -200t203.5 -80q97 0 184 55l20 -28q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM257 258q0 -44 24.5 -71t66.5 -27q73 0 127 76l27 126q-10 24 -33 42.5 t-58 18.5q-64 0 -109 -50.5t-45 -114.5z" />
+<glyph unicode="A" d="M1 0l262 667h146l262 -667h-133l-49 128h-306l-49 -128h-133zM216 231h240l-120 318z" />
+<glyph unicode="B" horiz-adv-x="648" d="M71 0v667h328q89 0 139.5 -48.5t50.5 -121.5q0 -60 -33.5 -101.5t-82.5 -51.5q54 -8 91.5 -55.5t37.5 -108.5q0 -80 -51.5 -130t-142.5 -50h-337zM188 103h192q48 0 75 24.5t27 68.5q0 39 -27 65.5t-75 26.5h-192v-185zM188 391h187q44 0 69 24t25 62q0 39 -25 63t-69 24 h-187v-173z" />
+<glyph unicode="C" horiz-adv-x="682" d="M41 333q0 152 100 248.5t250 96.5q174 0 268 -150l-100 -51q-25 43 -70.5 70t-97.5 27q-99 0 -164.5 -68t-65.5 -173t65.5 -173t164.5 -68q53 0 98 27t70 70l100 -51q-96 -150 -268 -150q-150 0 -250 96.5t-100 248.5z" />
+<glyph unicode="D" horiz-adv-x="710" d="M71 0v667h248q155 0 252 -93t97 -241q0 -147 -96.5 -240t-252.5 -93h-248zM188 103h131q105 0 167 66t62 164q0 101 -60.5 166t-168.5 65h-131v-461z" />
+<glyph unicode="E" horiz-adv-x="577" d="M71 0v667h457v-103h-340v-173h333v-103h-333v-185h340v-103h-457z" />
+<glyph unicode="F" horiz-adv-x="562" d="M71 0v667h457v-103h-340v-173h333v-103h-333v-288h-117z" />
+<glyph unicode="G" horiz-adv-x="717" d="M41 333q0 154 101 249.5t249 95.5q172 0 269 -139l-96 -54q-28 39 -73.5 64t-99.5 25q-99 0 -164.5 -68t-65.5 -173t65.5 -173.5t164.5 -68.5q47 0 89.5 18t68.5 42v104h-199v103h316v-250q-109 -121 -275 -121q-148 0 -249 96t-101 250z" />
+<glyph unicode="H" horiz-adv-x="723" d="M71 0v667h117v-273h347v273h117v-667h-117v291h-347v-291h-117z" />
+<glyph unicode="I" horiz-adv-x="259" d="M71 0v667h117v-667h-117z" />
+<glyph unicode="J" horiz-adv-x="481" d="M8 58l54 89q51 -55 114 -55q54 0 85.5 33t31.5 88v454h117v-456q0 -110 -62 -166.5t-163 -56.5q-111 0 -177 70z" />
+<glyph unicode="K" horiz-adv-x="621" d="M71 0v667h117v-318l261 318h145l-271 -315l291 -352h-144l-224 281l-58 -68v-213h-117z" />
+<glyph unicode="L" horiz-adv-x="517" d="M71 0v667h117v-564h294v-103h-411z" />
+<glyph unicode="M" horiz-adv-x="835" d="M71 0v667h165l181 -439l182 439h165v-667h-117v495l-205 -495h-50l-204 495v-495h-117z" />
+<glyph unicode="N" horiz-adv-x="720" d="M71 0v667h120l341 -463v463h117v-667h-113l-348 476v-476h-117z" />
+<glyph unicode="O" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5t245 -97.5t96 -247.5t-96 -247.5t-245 -97.5t-245 97.5t-96 247.5zM161 333q0 -105 60.5 -173t160.5 -68q99 0 160 68.5t61 172.5q0 105 -61 173t-160 68q-100 0 -160.5 -68t-60.5 -173z" />
+<glyph unicode="P" horiz-adv-x="608" d="M71 0v667h293q101 0 159.5 -60t58.5 -149q0 -88 -58.5 -148.5t-159.5 -60.5h-176v-249h-117zM188 352h160q50 0 82 29t32 77t-32 77t-82 29h-160v-212z" />
+<glyph unicode="Q" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5t245 -97.5t96 -247.5q0 -143 -89 -240l55 -62l-81 -68l-58 65q-74 -40 -168 -40q-149 0 -245 97.5t-96 247.5zM161 333q0 -105 60.5 -173t160.5 -68q51 0 94 20l-82 94l81 67l82 -94q46 63 46 154q0 105 -61 173t-160 68 q-100 0 -160.5 -68t-60.5 -173z" />
+<glyph unicode="R" horiz-adv-x="628" d="M71 0v667h293q98 0 158 -58t60 -151q0 -84 -46 -134.5t-112 -61.5l163 -262h-135l-148 249h-116v-249h-117zM188 352h160q50 0 82 29t32 77t-32 77t-82 29h-160v-212z" />
+<glyph unicode="S" horiz-adv-x="594" d="M28 94l65 90q86 -92 211 -92q67 0 100.5 27t33.5 64q0 38 -40 60.5t-97 35.5t-114.5 31t-97.5 61t-40 111q0 84 67.5 139.5t175.5 55.5q154 0 250 -93l-67 -87q-76 76 -193 76q-52 0 -82.5 -22.5t-30.5 -60.5q0 -25 21.5 -42t55.5 -27.5t75.5 -20.5t83 -24.5t75.5 -35.5 t55.5 -58t21.5 -88q0 -90 -65 -148t-193 -58q-172 0 -271 106z" />
+<glyph unicode="T" horiz-adv-x="577" d="M28 564v103h521v-103h-202v-564h-117v564h-202z" />
+<glyph unicode="U" horiz-adv-x="719" d="M71 263v404h118v-400q0 -81 44.5 -128t126.5 -47t126 47t44 128v400h118v-403q0 -128 -73.5 -202t-214.5 -74q-142 0 -215.5 74t-73.5 201z" />
+<glyph unicode="V" d="M1 667h133l202 -540l202 540h133l-262 -667h-146z" />
+<glyph unicode="W" horiz-adv-x="903" d="M6 667h131l130 -514l138 514h93l138 -514l129 514h131l-190 -667h-125l-130 492l-129 -492h-125z" />
+<glyph unicode="X" horiz-adv-x="661" d="M3 0l250 342l-235 325h140l172 -245l171 245h141l-234 -324l249 -343h-140l-187 261l-187 -261h-140z" />
+<glyph unicode="Y" horiz-adv-x="637" d="M1 667h134l184 -286l182 286h134l-258 -390v-277h-117v277z" />
+<glyph unicode="Z" horiz-adv-x="589" d="M44 0v95l341 469h-341v103h493v-95l-341 -469h348v-103h-500z" />
+<glyph unicode="[" horiz-adv-x="264" d="M44 -190v868h203v-72h-126v-724h126v-72h-203z" />
+<glyph unicode="\" horiz-adv-x="315" d="M0 687h78l237 -707h-78z" />
+<glyph unicode="]" horiz-adv-x="264" d="M17 -118h126v724h-126v72h203v-868h-203v72z" />
+<glyph unicode="^" horiz-adv-x="437" d="M19 333l161 334h78l160 -334h-80l-120 261l-119 -261h-80z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-3 -40h570v-72h-570v72z" />
+<glyph unicode="`" horiz-adv-x="240" d="M0 700h100l140 -144h-75z" />
+<glyph unicode="a" horiz-adv-x="536" d="M39 148q0 77 50.5 117t117.5 40q103 0 156 -62v72q0 42 -31 66t-82 24q-81 0 -143 -61l-43 73q82 78 203 78q89 0 145 -42t56 -133v-320h-105v52q-56 -64 -156 -64q-66 0 -117 42.5t-51 117.5zM145 146q0 -39 29 -62.5t74 -23.5q79 0 115 50v73q-36 50 -115 50 q-45 0 -74 -24t-29 -63z" />
+<glyph unicode="b" horiz-adv-x="581" d="M68 0v667h105v-251q59 79 155 79q94 0 154 -69.5t60 -184.5q0 -117 -60 -185t-154 -68q-95 0 -155 78v-66h-105zM173 145q17 -27 52.5 -45.5t71.5 -18.5q62 0 99.5 44.5t37.5 115.5t-37.5 116t-99.5 45q-36 0 -71 -19t-53 -47v-191z" />
+<glyph unicode="c" horiz-adv-x="497" d="M38 242q0 110 70 181.5t180 71.5q121 0 185 -86l-69 -64q-40 57 -111 57q-66 0 -106 -44.5t-40 -115.5t40 -116t106 -45q69 0 111 57l69 -64q-64 -86 -185 -86q-110 0 -180 71.5t-70 182.5z" />
+<glyph unicode="d" horiz-adv-x="581" d="M38 241q0 116 60 185t155 69t155 -79v251h105v-667h-105v66q-60 -78 -155 -78t-155 68t-60 185zM147 241q0 -71 37 -115.5t99 -44.5q37 0 72 18t53 46v192q-18 28 -53 46.5t-72 18.5q-62 0 -99 -45t-37 -116z" />
+<glyph unicode="e" horiz-adv-x="557" d="M38 242q0 106 69.5 179.5t175.5 73.5q107 0 172.5 -74t65.5 -189v-25h-373q6 -57 47 -95t107 -38q37 0 74.5 14t62.5 39l48 -69q-73 -70 -196 -70q-110 0 -181.5 70.5t-71.5 183.5zM147 281h272q-2 50 -36.5 89t-99.5 39q-62 0 -97 -38.5t-39 -89.5z" />
+<glyph unicode="f" horiz-adv-x="308" d="M13 391v92h80v27q0 78 41.5 122.5t111.5 44.5q75 0 116 -42l-41 -65q-23 21 -56 21q-31 0 -49 -20.5t-18 -60.5v-27h98v-92h-98v-391h-105v391h-80z" />
+<glyph unicode="g" horiz-adv-x="580" d="M38 247q0 115 59.5 181.5t154.5 66.5t155 -79v67h105v-458q0 -62 -21.5 -107.5t-58.5 -69t-78.5 -34t-89.5 -10.5q-123 0 -202 72l49 76q54 -62 153 -62q60 0 101.5 31.5t41.5 99.5v58q-62 -80 -155 -80q-95 0 -154.5 66t-59.5 182zM147 247q0 -70 37 -112.5t99 -42.5 q36 0 71 19t53 46v180q-18 27 -53 46t-71 19q-62 0 -99 -42.5t-37 -112.5z" />
+<glyph unicode="h" horiz-adv-x="568" d="M68 0v667h105v-250q27 32 72.5 55t98.5 23q156 0 156 -153v-342h-105v304q0 53 -25.5 75.5t-72.5 22.5q-37 0 -70 -19t-54 -46v-337h-105z" />
+<glyph unicode="i" horiz-adv-x="241" d="M55 607q0 27 19.5 46t45.5 19q27 0 46 -19t19 -46t-19 -46t-46 -19q-26 0 -45.5 19t-19.5 46zM68 0v483h105v-483h-105z" />
+<glyph unicode="j" horiz-adv-x="241" d="M-101 -161l31 78q30 -27 67 -27q32 0 51.5 20.5t19.5 61.5v511h105v-511q0 -79 -41 -123.5t-119 -44.5q-40 0 -64 8t-50 27zM55 607q0 27 19.5 46t45.5 19q27 0 46 -19t19 -46t-19 -46t-46 -19q-26 0 -45.5 19t-19.5 46z" />
+<glyph unicode="k" horiz-adv-x="526" d="M68 0v667h105v-417l213 233h130l-201 -219l205 -264h-132l-148 199l-67 -69v-130h-105z" />
+<glyph unicode="l" horiz-adv-x="241" d="M68 0v667h105v-667h-105z" />
+<glyph unicode="m" horiz-adv-x="833" d="M68 0v483h105v-66q18 27 62.5 52.5t94.5 25.5q105 0 132 -89q23 36 68 62.5t96 26.5q139 0 139 -146v-349h-105v315q0 87 -79 87q-33 0 -64 -19t-48 -45v-338h-105v315q0 87 -80 87q-32 0 -62.5 -19t-48.5 -46v-337h-105z" />
+<glyph unicode="n" horiz-adv-x="567" d="M68 0v483h105v-66q27 32 72 55t98 23q77 0 116.5 -40t39.5 -115v-340h-105v302q0 100 -97 100q-38 0 -71 -19t-53 -46v-337h-105z" />
+<glyph unicode="o" horiz-adv-x="573" d="M38 242q0 107 68 180t180 73q113 0 181 -73t68 -180q0 -108 -68 -181t-181 -73q-112 0 -180 73.5t-68 180.5zM147 242q0 -68 37.5 -114.5t101.5 -46.5q65 0 102.5 46.5t37.5 114.5q0 67 -37.5 113.5t-102.5 46.5q-64 0 -101.5 -46.5t-37.5 -113.5z" />
+<glyph unicode="p" horiz-adv-x="578" d="M68 -184v667h105v-66q58 78 155 78q95 0 154.5 -68t59.5 -185t-59.5 -185.5t-154.5 -68.5q-96 0 -155 79v-251h-105zM173 146q18 -27 53 -46t71 -19q62 0 99 45t37 116t-37 115.5t-99 44.5q-36 0 -71 -19t-53 -46v-191z" />
+<glyph unicode="q" horiz-adv-x="578" d="M36 242q0 117 59.5 185t154.5 68q96 0 155 -78v66h105v-667h-105v251q-59 -79 -155 -79q-95 0 -154.5 68.5t-59.5 185.5zM145 242q0 -71 37 -116t99 -45q36 0 71 19t53 46v191q-18 27 -53 46t-71 19q-62 0 -99 -44.5t-37 -115.5z" />
+<glyph unicode="r" horiz-adv-x="347" d="M68 0v483h105v-71q28 36 70 59t87 23v-104q-14 3 -33 3q-33 0 -70.5 -19.5t-53.5 -44.5v-329h-105z" />
+<glyph unicode="s" horiz-adv-x="472" d="M26 63l48 76q27 -28 73 -48t91 -20q46 0 70.5 18t24.5 47q0 26 -30 40.5t-73 23t-86 21t-73 44.5t-30 83q0 62 51 104.5t139 42.5q111 0 188 -68l-44 -74q-23 26 -61 42t-82 16q-41 0 -65.5 -16.5t-24.5 -42.5q0 -20 21.5 -32.5t54 -18.5t70.5 -16.5t70.5 -24.5t54 -45.5 t21.5 -76.5q0 -66 -53 -108t-148 -42q-130 0 -207 75z" />
+<glyph unicode="t" horiz-adv-x="319" d="M9 391v92h80v132h105v-132h98v-92h-98v-253q0 -26 12 -41.5t34 -15.5q32 0 47 17l25 -79q-33 -31 -99 -31q-61 0 -92.5 32t-31.5 92v279h-80z" />
+<glyph unicode="u" horiz-adv-x="567" d="M68 141v342h105v-304q0 -53 25 -75.5t72 -22.5q38 0 71 18t53 45v339h105v-483h-105v64q-68 -76 -171 -76q-155 0 -155 153z" />
+<glyph unicode="v" horiz-adv-x="503" d="M-2 483h112l141 -362l141 362h113l-197 -483h-113z" />
+<glyph unicode="w" horiz-adv-x="754" d="M5 483h109l102 -351l115 351h92l115 -351l102 351h109l-150 -483h-110l-112 354l-112 -354h-110z" />
+<glyph unicode="x" horiz-adv-x="496" d="M5 0l177 248l-167 235h118l115 -164l114 164h118l-167 -235l178 -248h-118l-125 178l-126 -178h-117z" />
+<glyph unicode="y" horiz-adv-x="503" d="M-2 483h112l141 -362l141 362h113l-233 -570q-43 -107 -166 -109q-33 0 -59 7l16 94q18 -8 40 -8q51 0 69 42l24 55z" />
+<glyph unicode="z" horiz-adv-x="476" d="M46 0v79l239 312h-239v92h379v-77l-241 -315h245v-91h-383z" />
+<glyph unicode="{" horiz-adv-x="276" d="M4 213v62q25 0 38.5 19.5t13.5 48.5v186q0 66 42.5 107.5t99.5 41.5h61v-72h-61q-27 0 -45.5 -21.5t-18.5 -55.5v-196q0 -69 -46 -89q46 -20 46 -89v-196q0 -33 18.5 -55t45.5 -22h61v-72h-61q-58 0 -100 41t-42 107v187q0 29 -13.5 48.5t-38.5 19.5z" />
+<glyph unicode="|" horiz-adv-x="214" d="M71 -20v707h72v-707h-72z" />
+<glyph unicode="}" horiz-adv-x="276" d="M17 -118h61q27 0 45.5 22t18.5 55v196q0 69 46 89q-46 20 -46 89v196q0 34 -18.5 55.5t-45.5 21.5h-61v72h61q57 0 99.5 -41.5t42.5 -107.5v-186q0 -29 13.5 -48.5t38.5 -19.5v-62q-25 0 -38.5 -19.5t-13.5 -48.5v-187q0 -66 -42 -107t-100 -41h-61v72z" />
+<glyph unicode="~" horiz-adv-x="507" d="M26 425q5 51 13 89.5t23.5 75t43 56.5t65.5 20q43 0 70 -28.5t35.5 -63t23 -63t36.5 -28.5q56 0 71 184l73 -9q-4 -51 -12 -89.5t-23.5 -75t-43 -56.5t-65.5 -20q-43 0 -70 28.5t-35.5 62.5t-23 62.5t-36.5 28.5q-54 0 -71 -183z" />
+<glyph unicode="&#xa1;" horiz-adv-x="245" d="M53 424q0 28 20.5 48.5t48.5 20.5t49 -20.5t21 -48.5t-21 -49t-49 -21t-48.5 20.5t-20.5 49.5zM59 -184l18 462h91l19 -462h-128z" />
+<glyph unicode="&#xa2;" horiz-adv-x="497" d="M38 242q0 98 57.5 167t150.5 83v73h78v-72q95 -12 149 -84l-69 -64q-31 43 -80 54v-315q49 11 80 54l69 -64q-54 -72 -149 -84v-90h-78v91q-93 14 -150.5 82.5t-57.5 168.5zM147 242q0 -57 26.5 -98.5t72.5 -55.5v307q-46 -15 -72.5 -55.5t-26.5 -97.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="536" d="M21 268v70h83q-18 23 -28.5 39t-20 42.5t-9.5 54.5q0 87 71 145t164 58q158 0 219 -117l-93 -55q-13 33 -44 54.5t-69 21.5q-51 0 -86 -30t-35 -79q0 -17 3 -32t11 -30.5t13.5 -23.5t18 -25t16.5 -23h147v-70h-116q3 -14 3 -29q0 -75 -70 -120q24 8 51 8q32 0 72 -18 t66 -18q60 0 90 38l47 -93q-47 -49 -142 -49q-47 0 -98 22.5t-82 22.5q-44 0 -117 -39l-40 82q119 55 119 137q0 28 -13 56h-131z" />
+<glyph unicode="&#xa4;" horiz-adv-x="612" d="M25 552l63 62l76 -77q61 39 142 39q80 0 141 -39l76 77l63 -63l-75 -75q43 -63 43 -143q0 -81 -43 -144l75 -73l-63 -62l-76 74q-59 -39 -141 -39q-81 0 -143 40l-74 -75l-63 62l74 74q-42 64 -42 143q0 80 43 143zM164 333q0 -63 38 -106.5t104 -43.5t104 43.5t38 106.5 q0 62 -38 105t-104 43t-104 -43t-38 -105z" />
+<glyph unicode="&#xa5;" horiz-adv-x="637" d="M1 667h134l184 -286l182 286h134l-214 -323h194v-67h-238v-92h238v-67h-238v-118h-117v118h-237v67h237v92h-237v67h192z" />
+<glyph unicode="&#xa6;" horiz-adv-x="214" d="M71 -20v316h72v-316h-72zM71 371v316h72v-316h-72z" />
+<glyph unicode="&#xa7;" horiz-adv-x="477" d="M28 -3l46 67q27 -29 69.5 -50t89.5 -21q45 0 72.5 18.5t27.5 51.5q0 25 -21.5 41t-54 23.5t-70.5 18.5t-70.5 24t-54 42.5t-21.5 72.5q0 48 30.5 80t74.5 46q-105 37 -105 125q0 60 52.5 100.5t137.5 40.5q120 0 187 -69l-43 -63q-52 57 -140 57q-42 0 -67.5 -17.5 t-25.5 -47.5q0 -26 30 -41t73 -23.5t86 -21.5t73 -45.5t30 -84.5q0 -87 -87 -128q87 -36 87 -122q0 -71 -55.5 -111.5t-145.5 -40.5q-121 0 -205 78zM142 299q0 -19 9 -32t29.5 -22.5t36 -14t45.5 -11.5q69 29 69 84q0 34 -26 52t-70 29q-51 -13 -72 -33.5t-21 -51.5z" />
+<glyph unicode="&#xa8;" horiz-adv-x="285" d="M-21 608q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM188 608q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M44 334q0 143 101 244t244 101t244 -101t101 -244t-101 -244t-244 -101t-244 101.5t-101 243.5zM78 334q0 -128 91.5 -219.5t219.5 -91.5t219.5 91.5t91.5 219.5t-91.5 219.5t-219.5 91.5t-219.5 -91.5t-91.5 -219.5zM185 335q0 91 60.5 151t147.5 60q91 0 147 -66 l-29 -28q-42 57 -118 57q-69 0 -117.5 -49t-48.5 -125q0 -75 49 -125.5t117 -50.5q76 0 119 58l29 -28q-57 -67 -148 -67q-87 0 -147.5 61t-60.5 152z" />
+<glyph unicode="&#xaa;" horiz-adv-x="382" d="M35 422q0 49 33.5 75.5t77.5 26.5q68 0 104 -40v46q0 27 -20.5 43t-52.5 16q-55 0 -95 -43l-31 50q56 52 138 52q61 0 99.5 -28t38.5 -91v-203h-77v33q-37 -41 -104 -41q-44 0 -77.5 27.5t-33.5 76.5zM112 422q0 -25 18.5 -40t46.5 -15q49 0 73 33v44q-24 32 -73 32 q-28 0 -46.5 -15t-18.5 -39z" />
+<glyph unicode="&#xab;" horiz-adv-x="489" d="M30 243l160 177h99l-160 -177l160 -180h-99zM200 243l160 177h99l-160 -177l160 -180h-99z" />
+<glyph unicode="&#xac;" horiz-adv-x="510" d="M29 395v68h444v-258h-70v190h-374z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M30 197v90h240v-90h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M35 465q0 88 62 150t150 62q89 0 150.5 -61.5t61.5 -150.5q0 -88 -62 -150t-150 -62t-150 62t-62 150zM65 465q0 -75 53 -128.5t129 -53.5q75 0 128 53.5t53 128.5q0 76 -53 128.5t-128 52.5q-76 0 -129 -52.5t-53 -128.5zM166 343v243h99q32 0 55 -20.5t23 -53.5 q0 -35 -22.5 -53.5t-39.5 -18.5l65 -97h-41l-63 96h-43v-96h-33zM199 469h66q17 0 30.5 12.5t13.5 30.5q0 19 -13.5 32t-30.5 13h-66v-88z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M0 566v62h363v-62h-363z" />
+<glyph unicode="&#xb0;" horiz-adv-x="302" d="M21 547q0 53 38 91.5t91 38.5q54 0 92 -38.5t38 -91.5q0 -54 -38 -91.5t-92 -37.5q-53 0 -91 37.5t-38 91.5zM82 547q0 -29 20 -49t48 -20q29 0 49.5 20.5t20.5 48.5q0 29 -21 49.5t-49 20.5t-48 -20.5t-20 -49.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="502" d="M29 0v67h444v-67h-444zM29 325v67h185v201h74v-201h185v-67h-185v-208h-74v208h-185z" />
+<glyph unicode="&#xb2;" horiz-adv-x="393" d="M41 762q55 65 155 65q66 0 109.5 -32t43.5 -90q0 -51 -44.5 -101.5t-139.5 -117.5h187v-65h-304v59q128 91 174.5 136t46.5 83q0 31 -21.5 47t-53.5 16q-34 0 -64 -15t-46 -36z" />
+<glyph unicode="&#xb3;" horiz-adv-x="393" d="M36 478l41 52q45 -51 115 -51q39 0 60.5 15.5t21.5 41.5q0 57 -95 57q-37 0 -43 -1v65q8 -1 42 -1q89 0 89 53q0 25 -22.5 39t-57.5 14q-62 0 -107 -46l-39 48q58 63 154 63q70 0 111 -29.5t41 -78.5q0 -37 -26.5 -61.5t-62.5 -30.5q35 -3 65.5 -28t30.5 -68 q0 -52 -43.5 -84.5t-115.5 -32.5q-107 0 -159 64z" />
+<glyph unicode="&#xb4;" horiz-adv-x="240" d="M0 556l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xb5;" horiz-adv-x="581" d="M68 -184v667h105v-304q0 -99 98 -99q37 0 70 18.5t53 45.5v339h105v-352q0 -23 11.5 -36.5t31.5 -13.5q9 0 19 2l7 -89q-20 -6 -50 -6q-97 0 -119 86q-25 -38 -62.5 -62t-80.5 -24q-60 0 -83 36v-208h-105z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M27 495q0 71 50.5 121.5t121.5 50.5h193v-767h-55v712h-83v-712h-55v423q-71 0 -121.5 50.5t-50.5 121.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="245" d="M52 244q0 28 21 49t49 21t49 -21t21 -49t-21 -48.5t-49 -20.5t-49 20.5t-21 48.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="214" d="M0 -163l22 46q36 -29 81 -29q23 0 39.5 9.5t16.5 26.5q0 30 -33 30q-21 0 -34 -15l-41 23l31 83h55l-26 -64q16 11 36 11q29 0 48 -19.5t19 -49.5q0 -37 -31 -60t-77 -23q-67 0 -106 31z" />
+<glyph unicode="&#xb9;" horiz-adv-x="264" d="M10 697l124 124h70v-400h-81v296l-67 -69z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M34 483q0 70 46.5 117.5t121.5 47.5q77 0 123 -47.5t46 -117.5t-46 -117.5t-123 -47.5q-75 0 -121.5 47.5t-46.5 117.5zM114 483q0 -46 23.5 -74t64.5 -28t65 28t24 74q0 45 -24 72.5t-65 27.5t-64.5 -27.5t-23.5 -72.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="489" d="M30 63l160 180l-160 177h99l160 -177l-160 -180h-99zM200 63l160 180l-160 177h99l160 -177l-160 -180h-99z" />
+<glyph unicode="&#xbc;" horiz-adv-x="806" d="M10 543l124 124h70v-400h-81v296l-67 -69zM125 0l426 667h68l-427 -667h-67zM445 92v56l164 252h112v-244h55v-64h-55v-92h-80v92h-196zM525 156h116v175z" />
+<glyph unicode="&#xbd;" horiz-adv-x="841" d="M10 543l124 124h70v-400h-81v296l-67 -69zM125 0l426 667h68l-427 -667h-67zM488 341q55 65 155 65q66 0 109.5 -32t43.5 -90q0 -51 -44.5 -101.5t-139.5 -117.5h187v-65h-304v59q128 91 174.5 136t46.5 83q0 31 -21.5 47t-53.5 16q-34 0 -64 -15t-46 -36z" />
+<glyph unicode="&#xbe;" horiz-adv-x="902" d="M36 324l41 52q45 -51 115 -51q39 0 60.5 15.5t21.5 41.5q0 57 -95 57q-37 0 -43 -1v65q8 -1 42 -1q89 0 89 53q0 25 -22.5 39t-57.5 14q-62 0 -107 -46l-39 48q58 63 154 63q70 0 111 -29.5t41 -78.5q0 -37 -26.5 -61.5t-62.5 -30.5q35 -3 65.5 -28t30.5 -68 q0 -52 -43.5 -84.5t-115.5 -32.5q-107 0 -159 64zM221 0l426 667h68l-427 -667h-67zM542 92v56l164 252h112v-244h55v-64h-55v-92h-80v92h-196zM622 156h116v175z" />
+<glyph unicode="&#xbf;" horiz-adv-x="396" d="M24 -39q0 41 18.5 73.5t45 53t52.5 38.5t44.5 39.5t18.5 45.5q0 26 -22 45l88 29q36 -35 36 -85q0 -41 -25 -73.5t-55.5 -50.5t-55.5 -43t-25 -53q0 -31 24.5 -51.5t70.5 -20.5q82 0 139 70l67 -75q-81 -99 -218 -99q-93 0 -148 44t-55 113zM163 423q0 29 20.5 49.5 t49.5 20.5t49.5 -20.5t20.5 -49.5q0 -28 -21 -48.5t-49 -20.5t-49 20.5t-21 48.5z" />
+<glyph unicode="&#xc0;" d="M1 0l262 667h146l262 -667h-133l-49 128h-306l-49 -128h-133zM158 867h100l140 -144h-75zM216 231h240l-120 318z" />
+<glyph unicode="&#xc1;" d="M1 0l262 667h146l262 -667h-133l-49 128h-306l-49 -128h-133zM216 231h240l-120 318zM276 723l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xc2;" d="M1 0l262 667h146l262 -667h-133l-49 128h-306l-49 -128h-133zM195 723l93 144h96l96 -144h-67l-77 96l-75 -96h-66zM216 231h240l-120 318z" />
+<glyph unicode="&#xc3;" d="M1 0l262 667h146l262 -667h-133l-49 128h-306l-49 -128h-133zM176 727q0 62 26.5 98t76.5 36q30 0 50.5 -19.5t36 -39t32.5 -19.5q41 0 41 72h58q0 -62 -26.5 -98t-76.5 -36q-19 0 -34.5 8t-25.5 19.5t-18.5 23t-19 19.5t-21.5 8q-18 0 -30 -18t-12 -54h-57zM216 231h240 l-120 318z" />
+<glyph unicode="&#xc4;" d="M1 0l262 667h146l262 -667h-133l-49 128h-306l-49 -128h-133zM173 775q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM216 231h240l-120 318zM382 775q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17 t-17.5 42z" />
+<glyph unicode="&#xc5;" d="M1 0l262 667h146l262 -667h-133l-49 128h-306l-49 -128h-133zM216 231h240l-120 318zM235 791q0 42 30 72.5t72 30.5t71.5 -30.5t29.5 -72.5t-29.5 -72t-71.5 -30t-72 30t-30 72zM285 791q0 -21 15.5 -36.5t36.5 -15.5t36 15.5t15 36.5q0 22 -14.5 37t-36.5 15 q-21 0 -36.5 -15t-15.5 -37z" />
+<glyph unicode="&#xc6;" horiz-adv-x="959" d="M-2 0l410 667h504v-103h-340v-173h333v-103h-333v-185h340v-103h-457v128h-247l-77 -128h-133zM264 231h191v318z" />
+<glyph unicode="&#xc7;" horiz-adv-x="682" d="M41 333q0 152 100 248.5t250 96.5q174 0 268 -150l-100 -51q-25 43 -70.5 70t-97.5 27q-99 0 -164.5 -68t-65.5 -173t65.5 -173t164.5 -68q53 0 98 27t70 70l100 -51q-91 -144 -254 -150l-15 -37q16 11 36 11q29 0 48 -19.5t19 -49.5q0 -37 -31 -60t-77 -23 q-67 0 -106 31l22 46q36 -29 81 -29q23 0 39.5 9.5t16.5 26.5q0 30 -33 30q-21 0 -34 -15l-41 23l21 58q-135 13 -222.5 107.5t-87.5 235.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="577" d="M71 0v667h457v-103h-340v-173h333v-103h-333v-185h340v-103h-457zM120 867h100l140 -144h-75z" />
+<glyph unicode="&#xc9;" horiz-adv-x="577" d="M71 0v667h457v-103h-340v-173h333v-103h-333v-185h340v-103h-457zM238 723l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xca;" horiz-adv-x="577" d="M71 0v667h457v-103h-340v-173h333v-103h-333v-185h340v-103h-457zM157 723l93 144h96l96 -144h-67l-77 96l-75 -96h-66z" />
+<glyph unicode="&#xcb;" horiz-adv-x="577" d="M71 0v667h457v-103h-340v-173h333v-103h-333v-185h340v-103h-457zM136 775q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM345 775q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xcc;" horiz-adv-x="259" d="M-50 867h100l140 -144h-75zM71 0v667h117v-667h-117z" />
+<glyph unicode="&#xcd;" horiz-adv-x="259" d="M70 723l140 144h100l-165 -144h-75zM71 0v667h117v-667h-117z" />
+<glyph unicode="&#xce;" horiz-adv-x="259" d="M-12 723l93 144h96l96 -144h-67l-77 96l-75 -96h-66zM71 0v667h117v-667h-117z" />
+<glyph unicode="&#xcf;" horiz-adv-x="259" d="M-33 775q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM71 0v667h117v-667h-117zM176 775q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xd0;" horiz-adv-x="736" d="M9 285v86h88v296h248q155 0 252 -93t97 -241q0 -147 -96.5 -240t-252.5 -93h-248v285h-88zM214 103h131q105 0 167 66t62 164q0 101 -60.5 166t-168.5 65h-131v-193h158v-86h-158v-182z" />
+<glyph unicode="&#xd1;" horiz-adv-x="720" d="M71 0v667h120l341 -463v463h117v-667h-113l-348 476v-476h-117zM198 727q0 62 26.5 98t76.5 36q30 0 50.5 -19.5t36 -39t32.5 -19.5q41 0 41 72h58q0 -62 -26.5 -98t-76.5 -36q-19 0 -34.5 8t-25.5 19.5t-18.5 23t-19 19.5t-21.5 8q-18 0 -30 -18t-12 -54h-57z" />
+<glyph unicode="&#xd2;" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5t245 -97.5t96 -247.5t-96 -247.5t-245 -97.5t-245 97.5t-96 247.5zM161 333q0 -105 60.5 -173t160.5 -68q99 0 160 68.5t61 172.5q0 105 -61 173t-160 68q-100 0 -160.5 -68t-60.5 -173zM204 867h100l140 -144h-75z" />
+<glyph unicode="&#xd3;" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5t245 -97.5t96 -247.5t-96 -247.5t-245 -97.5t-245 97.5t-96 247.5zM161 333q0 -105 60.5 -173t160.5 -68q99 0 160 68.5t61 172.5q0 105 -61 173t-160 68q-100 0 -160.5 -68t-60.5 -173zM322 723l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xd4;" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5t245 -97.5t96 -247.5t-96 -247.5t-245 -97.5t-245 97.5t-96 247.5zM161 333q0 -105 60.5 -173t160.5 -68q99 0 160 68.5t61 172.5q0 105 -61 173t-160 68q-100 0 -160.5 -68t-60.5 -173zM242 723l93 144h96l96 -144h-67l-77 96l-75 -96 h-66z" />
+<glyph unicode="&#xd5;" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5t245 -97.5t96 -247.5t-96 -247.5t-245 -97.5t-245 97.5t-96 247.5zM161 333q0 -105 60.5 -173t160.5 -68q99 0 160 68.5t61 172.5q0 105 -61 173t-160 68q-100 0 -160.5 -68t-60.5 -173zM222 727q0 62 26.5 98t76.5 36q29 0 50 -19.5 t36.5 -39t32.5 -19.5q41 0 41 72h58q0 -62 -26.5 -98t-76.5 -36q-19 0 -34.5 8t-25.5 19.5t-18.5 23t-19 19.5t-21.5 8q-18 0 -30 -18t-12 -54h-57z" />
+<glyph unicode="&#xd6;" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5t245 -97.5t96 -247.5t-96 -247.5t-245 -97.5t-245 97.5t-96 247.5zM161 333q0 -105 60.5 -173t160.5 -68q99 0 160 68.5t61 172.5q0 105 -61 173t-160 68q-100 0 -160.5 -68t-60.5 -173zM219 775q0 24 17 41t42 17q24 0 41 -17t17 -41 q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM428 775q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xd7;" horiz-adv-x="502" d="M59 189l144 145l-144 144l48 48l144 -145l144 145l48 -48l-144 -144l144 -145l-48 -47l-144 144l-144 -144z" />
+<glyph unicode="&#xd8;" horiz-adv-x="765" d="M41 333q0 150 96 247.5t245 97.5q93 0 170 -41l22 30h87l-51 -71q113 -100 113 -263q0 -150 -96 -247.5t-245 -97.5q-101 0 -179 46l-25 -34h-87l55 76q-105 99 -105 257zM161 333q0 -98 52 -164l275 379q-47 26 -106 26q-100 0 -160.5 -68t-60.5 -173zM267 122 q51 -30 115 -30q99 0 160 68.5t61 172.5t-60 172z" />
+<glyph unicode="&#xd9;" horiz-adv-x="719" d="M71 263v404h118v-400q0 -81 44.5 -128t126.5 -47t126 47t44 128v400h118v-403q0 -128 -73.5 -202t-214.5 -74q-142 0 -215.5 74t-73.5 201zM181 867h100l140 -144h-75z" />
+<glyph unicode="&#xda;" horiz-adv-x="719" d="M71 263v404h118v-400q0 -81 44.5 -128t126.5 -47t126 47t44 128v400h118v-403q0 -128 -73.5 -202t-214.5 -74q-142 0 -215.5 74t-73.5 201zM299 723l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xdb;" horiz-adv-x="719" d="M71 263v404h118v-400q0 -81 44.5 -128t126.5 -47t126 47t44 128v400h118v-403q0 -128 -73.5 -202t-214.5 -74q-142 0 -215.5 74t-73.5 201zM219 723l93 144h96l96 -144h-67l-77 96l-75 -96h-66z" />
+<glyph unicode="&#xdc;" horiz-adv-x="719" d="M71 263v404h118v-400q0 -81 44.5 -128t126.5 -47t126 47t44 128v400h118v-403q0 -128 -73.5 -202t-214.5 -74q-142 0 -215.5 74t-73.5 201zM198 775q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM407 775q0 24 17.5 41t41.5 17 t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xdd;" horiz-adv-x="637" d="M1 667h134l184 -286l182 286h134l-258 -390v-277h-117v277zM257 723l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xde;" horiz-adv-x="608" d="M71 0v667h117v-113h176q101 0 159.5 -60.5t58.5 -149.5q0 -88 -58.5 -147.5t-159.5 -59.5h-176v-137h-117zM188 240h160q50 0 82 29t32 76t-32 76.5t-82 29.5h-160v-211z" />
+<glyph unicode="&#xdf;" horiz-adv-x="623" d="M68 0v485q0 81 58 136.5t155 55.5q78 0 135 -38t57 -99q0 -37 -21.5 -66t-48 -44t-48 -35t-21.5 -43q0 -20 20 -32t50.5 -17.5t65.5 -16.5t65.5 -24.5t50.5 -45t20 -76.5q0 -66 -52.5 -109t-142.5 -43q-67 0 -109.5 20t-82.5 58l47 73q22 -29 61.5 -48t83.5 -19 q45 0 69.5 19t24.5 46q0 22 -20 36t-50.5 20.5t-65.5 17.5t-65.5 24.5t-50.5 42.5t-20 71q0 36 21 65t45.5 44t45.5 33t21 35q0 27 -26.5 42.5t-60.5 15.5q-46 0 -76 -27t-30 -72v-485h-105z" />
+<glyph unicode="&#xe0;" horiz-adv-x="536" d="M39 148q0 77 50.5 117t117.5 40q103 0 156 -62v72q0 42 -31 66t-82 24q-81 0 -143 -61l-43 73q82 78 203 78q89 0 145 -42t56 -133v-320h-105v52q-56 -64 -156 -64q-66 0 -117 42.5t-51 117.5zM88 700h100l140 -144h-75zM145 146q0 -39 29 -62.5t74 -23.5q79 0 115 50v73 q-36 50 -115 50q-45 0 -74 -24t-29 -63z" />
+<glyph unicode="&#xe1;" horiz-adv-x="536" d="M39 148q0 77 50.5 117t117.5 40q103 0 156 -62v72q0 42 -31 66t-82 24q-81 0 -143 -61l-43 73q82 78 203 78q89 0 145 -42t56 -133v-320h-105v52q-56 -64 -156 -64q-66 0 -117 42.5t-51 117.5zM145 146q0 -39 29 -62.5t74 -23.5q79 0 115 50v73q-36 50 -115 50 q-45 0 -74 -24t-29 -63zM206 556l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xe2;" horiz-adv-x="536" d="M39 148q0 77 50.5 117t117.5 40q103 0 156 -62v72q0 42 -31 66t-82 24q-81 0 -143 -61l-43 73q82 78 203 78q89 0 145 -42t56 -133v-320h-105v52q-56 -64 -156 -64q-66 0 -117 42.5t-51 117.5zM125 556l93 144h96l96 -144h-67l-77 96l-75 -96h-66zM145 146 q0 -39 29 -62.5t74 -23.5q79 0 115 50v73q-36 50 -115 50q-45 0 -74 -24t-29 -63z" />
+<glyph unicode="&#xe3;" horiz-adv-x="536" d="M39 148q0 77 50.5 117t117.5 40q103 0 156 -62v72q0 42 -31 66t-82 24q-81 0 -143 -61l-43 73q82 78 203 78q89 0 145 -42t56 -133v-320h-105v52q-56 -64 -156 -64q-66 0 -117 42.5t-51 117.5zM107 560q0 62 26.5 98t76.5 36q30 0 50.5 -19.5t36 -39t32.5 -19.5 q41 0 41 72h58q0 -62 -26.5 -98t-76.5 -36q-19 0 -34.5 8t-25.5 19.5t-18.5 23t-19 19.5t-21.5 8q-18 0 -30 -18t-12 -54h-57zM145 146q0 -39 29 -62.5t74 -23.5q79 0 115 50v73q-36 50 -115 50q-45 0 -74 -24t-29 -63z" />
+<glyph unicode="&#xe4;" horiz-adv-x="536" d="M39 148q0 77 50.5 117t117.5 40q103 0 156 -62v72q0 42 -31 66t-82 24q-81 0 -143 -61l-43 73q82 78 203 78q89 0 145 -42t56 -133v-320h-105v52q-56 -64 -156 -64q-66 0 -117 42.5t-51 117.5zM104 608q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17 q-25 0 -42 17t-17 42zM145 146q0 -39 29 -62.5t74 -23.5q79 0 115 50v73q-36 50 -115 50q-45 0 -74 -24t-29 -63zM313 608q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xe5;" horiz-adv-x="536" d="M39 148q0 77 50.5 117t117.5 40q103 0 156 -62v72q0 42 -31 66t-82 24q-81 0 -143 -61l-43 73q82 78 203 78q89 0 145 -42t56 -133v-320h-105v52q-56 -64 -156 -64q-66 0 -117 42.5t-51 117.5zM145 146q0 -39 29 -62.5t74 -23.5q79 0 115 50v73q-36 50 -115 50 q-45 0 -74 -24t-29 -63zM166 638q0 42 30 72.5t72 30.5t71.5 -30.5t29.5 -72.5t-29.5 -72t-71.5 -30t-72 30t-30 72zM216 638q0 -21 15.5 -36.5t36.5 -15.5t36 15.5t15 36.5q0 22 -14.5 37t-36.5 15q-21 0 -36.5 -15t-15.5 -37z" />
+<glyph unicode="&#xe6;" horiz-adv-x="878" d="M39 147q0 75 51 116.5t126 41.5q110 0 170 -60v71q0 41 -34 65t-89 24q-89 0 -156 -61l-43 73q84 78 208 78q137 0 174 -93q64 93 177 93q100 0 159.5 -73.5t59.5 -189.5v-25h-351q6 -57 43.5 -94t98.5 -37q34 0 69 14t58 39l48 -71q-35 -33 -84 -51.5t-96 -18.5 q-132 0 -190 98q-29 -44 -83.5 -71t-119.5 -27q-82 0 -139 41.5t-57 117.5zM145 154q0 -38 31 -58t82 -20t89.5 31.5t38.5 67.5v7q-45 51 -128 51q-50 0 -81.5 -20.5t-31.5 -58.5zM490 281h250q-2 50 -33.5 89t-91.5 39q-57 0 -89.5 -39t-35.5 -89z" />
+<glyph unicode="&#xe7;" horiz-adv-x="497" d="M38 242q0 110 70 181.5t180 71.5q121 0 185 -86l-69 -64q-40 57 -111 57q-66 0 -106 -44.5t-40 -115.5t40 -116t106 -45q69 0 111 57l69 -64q-57 -77 -162 -85l-16 -40q16 11 36 11q29 0 48 -19.5t19 -49.5q0 -37 -31 -60t-77 -23q-67 0 -106 31l22 46q36 -29 81 -29 q23 0 39.5 9.5t16.5 26.5q0 30 -33 30q-21 0 -34 -15l-41 23l22 60q-98 10 -158.5 79.5t-60.5 172.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="557" d="M38 242q0 106 69.5 179.5t175.5 73.5q107 0 172.5 -74t65.5 -189v-25h-373q6 -57 47 -95t107 -38q37 0 74.5 14t62.5 39l48 -69q-73 -70 -196 -70q-110 0 -181.5 70.5t-71.5 183.5zM105 700h100l140 -144h-75zM147 281h272q-2 50 -36.5 89t-99.5 39q-62 0 -97 -38.5 t-39 -89.5z" />
+<glyph unicode="&#xe9;" horiz-adv-x="557" d="M38 242q0 106 69.5 179.5t175.5 73.5q107 0 172.5 -74t65.5 -189v-25h-373q6 -57 47 -95t107 -38q37 0 74.5 14t62.5 39l48 -69q-73 -70 -196 -70q-110 0 -181.5 70.5t-71.5 183.5zM147 281h272q-2 50 -36.5 89t-99.5 39q-62 0 -97 -38.5t-39 -89.5zM223 556l140 144h100 l-165 -144h-75z" />
+<glyph unicode="&#xea;" horiz-adv-x="557" d="M38 242q0 106 69.5 179.5t175.5 73.5q107 0 172.5 -74t65.5 -189v-25h-373q6 -57 47 -95t107 -38q37 0 74.5 14t62.5 39l48 -69q-73 -70 -196 -70q-110 0 -181.5 70.5t-71.5 183.5zM142 556l93 144h96l96 -144h-67l-77 96l-75 -96h-66zM147 281h272q-2 50 -36.5 89 t-99.5 39q-62 0 -97 -38.5t-39 -89.5z" />
+<glyph unicode="&#xeb;" horiz-adv-x="557" d="M38 242q0 106 69.5 179.5t175.5 73.5q107 0 172.5 -74t65.5 -189v-25h-373q6 -57 47 -95t107 -38q37 0 74.5 14t62.5 39l48 -69q-73 -70 -196 -70q-110 0 -181.5 70.5t-71.5 183.5zM121 608q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17 t-17 42zM147 281h272q-2 50 -36.5 89t-99.5 39q-62 0 -97 -38.5t-39 -89.5zM330 608q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xec;" horiz-adv-x="241" d="M-59 700h100l140 -144h-75zM68 0v483h105v-483h-105z" />
+<glyph unicode="&#xed;" horiz-adv-x="241" d="M60 556l140 144h100l-165 -144h-75zM68 0v483h105v-483h-105z" />
+<glyph unicode="&#xee;" horiz-adv-x="241" d="M-22 556l93 144h96l96 -144h-67l-77 96l-75 -96h-66zM68 0v483h105v-483h-105z" />
+<glyph unicode="&#xef;" horiz-adv-x="241" d="M-43 608q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM68 0v483h105v-483h-105zM166 608q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xf0;" horiz-adv-x="573" d="M38 228q0 104 61.5 172t155.5 68q99 0 159 -91q-40 81 -158 168l-145 -64l-22 52l112 49q-13 9 -37 23.5t-30 18.5l57 85q64 -38 118 -79l105 46l22 -51l-78 -35q177 -155 177 -340q0 -117 -67 -189.5t-182 -72.5q-111 0 -179.5 67.5t-68.5 172.5zM147 228 q0 -62 37.5 -104.5t101.5 -42.5q65 0 102.5 42.5t37.5 104.5t-37.5 104.5t-102.5 42.5q-64 0 -101.5 -42.5t-37.5 -104.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="567" d="M68 0v483h105v-66q27 32 72 55t98 23q77 0 116.5 -40t39.5 -115v-340h-105v302q0 100 -97 100q-38 0 -71 -19t-53 -46v-337h-105zM124 560q0 62 26.5 98t76.5 36q29 0 50 -19.5t36.5 -39t32.5 -19.5q41 0 41 72h58q0 -62 -26.5 -98t-76.5 -36q-19 0 -34.5 8t-25.5 19.5 t-18.5 23t-19 19.5t-21.5 8q-18 0 -30 -18t-12 -54h-57z" />
+<glyph unicode="&#xf2;" horiz-adv-x="573" d="M38 242q0 107 68 180t180 73q113 0 181 -73t68 -180q0 -108 -68 -181t-181 -73q-112 0 -180 73.5t-68 180.5zM108 700h100l140 -144h-75zM147 242q0 -68 37.5 -114.5t101.5 -46.5q65 0 102.5 46.5t37.5 114.5q0 67 -37.5 113.5t-102.5 46.5q-64 0 -101.5 -46.5 t-37.5 -113.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="573" d="M38 242q0 107 68 180t180 73q113 0 181 -73t68 -180q0 -108 -68 -181t-181 -73q-112 0 -180 73.5t-68 180.5zM147 242q0 -68 37.5 -114.5t101.5 -46.5q65 0 102.5 46.5t37.5 114.5q0 67 -37.5 113.5t-102.5 46.5q-64 0 -101.5 -46.5t-37.5 -113.5zM226 556l140 144h100 l-165 -144h-75z" />
+<glyph unicode="&#xf4;" horiz-adv-x="573" d="M38 242q0 107 68 180t180 73q113 0 181 -73t68 -180q0 -108 -68 -181t-181 -73q-112 0 -180 73.5t-68 180.5zM144 556l93 144h96l96 -144h-67l-77 96l-75 -96h-66zM147 242q0 -68 37.5 -114.5t101.5 -46.5q65 0 102.5 46.5t37.5 114.5q0 67 -37.5 113.5t-102.5 46.5 q-64 0 -101.5 -46.5t-37.5 -113.5z" />
+<glyph unicode="&#xf5;" horiz-adv-x="573" d="M38 242q0 107 68 180t180 73q113 0 181 -73t68 -180q0 -108 -68 -181t-181 -73q-112 0 -180 73.5t-68 180.5zM126 560q0 62 26.5 98t76.5 36q30 0 50.5 -19.5t36 -39t32.5 -19.5q41 0 41 72h58q0 -62 -26.5 -98t-76.5 -36q-19 0 -34.5 8t-25.5 19.5t-18.5 23t-19 19.5 t-21.5 8q-18 0 -30 -18t-12 -54h-57zM147 242q0 -68 37.5 -114.5t101.5 -46.5q65 0 102.5 46.5t37.5 114.5q0 67 -37.5 113.5t-102.5 46.5q-64 0 -101.5 -46.5t-37.5 -113.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="573" d="M38 242q0 107 68 180t180 73q113 0 181 -73t68 -180q0 -108 -68 -181t-181 -73q-112 0 -180 73.5t-68 180.5zM123 608q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM147 242q0 -68 37.5 -114.5t101.5 -46.5q65 0 102.5 46.5 t37.5 114.5q0 67 -37.5 113.5t-102.5 46.5q-64 0 -101.5 -46.5t-37.5 -113.5zM332 608q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M29 303v68h453v-68h-453zM201 151q0 23 16 39t38 16q23 0 39 -16t16 -39q0 -22 -16 -38t-39 -16t-38.5 15.5t-15.5 38.5zM201 520q0 22 15.5 38t38.5 16t39 -16t16 -38t-16 -38.5t-39 -16.5q-22 0 -38 16t-16 39z" />
+<glyph unicode="&#xf8;" horiz-adv-x="573" d="M38 242q0 107 68 180t180 73q78 0 140 -39l22 27h69l-50 -61q68 -71 68 -180q0 -108 -68 -181t-181 -73q-84 0 -143 42l-25 -30h-68l53 64q-65 71 -65 178zM147 242q0 -54 24 -95l191 232q-35 23 -76 23q-64 0 -101.5 -46.5t-37.5 -113.5zM206 107q36 -26 80 -26 q65 0 102.5 46.5t37.5 114.5q0 58 -27 98z" />
+<glyph unicode="&#xf9;" horiz-adv-x="567" d="M68 141v342h105v-304q0 -53 25 -75.5t72 -22.5q38 0 71 18t53 45v339h105v-483h-105v64q-68 -76 -171 -76q-155 0 -155 153zM104 700h100l140 -144h-75z" />
+<glyph unicode="&#xfa;" horiz-adv-x="567" d="M68 141v342h105v-304q0 -53 25 -75.5t72 -22.5q38 0 71 18t53 45v339h105v-483h-105v64q-68 -76 -171 -76q-155 0 -155 153zM222 556l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xfb;" horiz-adv-x="567" d="M68 141v342h105v-304q0 -53 25 -75.5t72 -22.5q38 0 71 18t53 45v339h105v-483h-105v64q-68 -76 -171 -76q-155 0 -155 153zM141 556l93 144h96l96 -144h-67l-77 96l-75 -96h-66z" />
+<glyph unicode="&#xfc;" horiz-adv-x="567" d="M68 141v342h105v-304q0 -53 25 -75.5t72 -22.5q38 0 71 18t53 45v339h105v-483h-105v64q-68 -76 -171 -76q-155 0 -155 153zM119 608q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM328 608q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41 q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#xfd;" horiz-adv-x="503" d="M-2 483h112l141 -362l141 362h113l-233 -570q-43 -107 -166 -109q-33 0 -59 7l16 94q18 -8 40 -8q51 0 69 42l24 55zM190 556l140 144h100l-165 -144h-75z" />
+<glyph unicode="&#xfe;" horiz-adv-x="578" d="M68 -184v851h105v-250q58 78 155 78q95 0 154.5 -68t59.5 -185t-59.5 -185.5t-154.5 -68.5q-96 0 -155 79v-251h-105zM173 146q18 -27 53 -46t71 -19q62 0 99 45t37 116t-37 115.5t-99 44.5q-36 0 -71 -19t-53 -46v-191z" />
+<glyph unicode="&#xff;" horiz-adv-x="503" d="M-2 483h112l141 -362l141 362h113l-233 -570q-43 -107 -166 -109q-33 0 -59 7l16 94q18 -8 40 -8q51 0 69 42l24 55zM88 608q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM297 608q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41 q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#x152;" horiz-adv-x="1093" d="M41 333q0 150 92.5 247t237.5 97q64 0 123.5 -28t93.5 -79v97h457v-103h-340v-173h333v-103h-333v-185h340v-103h-457v96q-34 -52 -93.5 -80t-123.5 -28q-145 0 -237.5 97.5t-92.5 247.5zM161 333q0 -105 61.5 -173t163.5 -68q69 0 122.5 35t79.5 100v212 q-26 65 -79 99.5t-123 34.5q-103 0 -164 -67.5t-61 -172.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="944" d="M38 242q0 107 68 180t180 73q123 0 194 -121q67 121 191 121q107 0 172 -73.5t65 -189.5v-25h-372q6 -57 46.5 -95t106.5 -38q83 0 138 53l48 -69q-75 -70 -196 -70q-129 0 -200 120q-69 -120 -193 -120q-112 0 -180 73.5t-68 180.5zM147 242q0 -70 38 -116t101 -46 q64 0 102 46t38 116q0 69 -38 114.5t-102 45.5q-63 0 -101 -45.5t-38 -114.5zM535 281h272q-3 50 -37.5 89t-99.5 39q-62 0 -97 -39t-38 -89z" />
+<glyph unicode="&#x178;" horiz-adv-x="637" d="M1 667h134l184 -286l182 286h134l-258 -390v-277h-117v277zM156 775q0 24 17 41t42 17q24 0 41 -17t17 -41q0 -25 -17 -42t-41 -17q-25 0 -42 17t-17 42zM365 775q0 24 17.5 41t41.5 17t41.5 -17t17.5 -41q0 -25 -17.5 -42t-41.5 -17t-41.5 17t-17.5 42z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="285" d="M0 556l93 144h96l96 -144h-67l-77 96l-75 -96h-66z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="321" d="M0 560q0 62 26.5 98t76.5 36q30 0 50.5 -19.5t36 -39t32.5 -19.5q41 0 41 72h58q0 -62 -26.5 -98t-76.5 -36q-19 0 -34.5 8t-25.5 19.5t-18.5 23t-19 19.5t-21.5 8q-18 0 -30 -18t-12 -54h-57z" />
+<glyph unicode="&#x2000;" horiz-adv-x="447" />
+<glyph unicode="&#x2001;" horiz-adv-x="894" />
+<glyph unicode="&#x2002;" horiz-adv-x="447" />
+<glyph unicode="&#x2003;" horiz-adv-x="894" />
+<glyph unicode="&#x2004;" horiz-adv-x="298" />
+<glyph unicode="&#x2005;" horiz-adv-x="223" />
+<glyph unicode="&#x2006;" horiz-adv-x="149" />
+<glyph unicode="&#x2007;" horiz-adv-x="149" />
+<glyph unicode="&#x2008;" horiz-adv-x="111" />
+<glyph unicode="&#x2009;" horiz-adv-x="178" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M30 197v90h240v-90h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M30 197v90h240v-90h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M30 197v90h240v-90h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M30 197v90h533v-90h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M30 197v90h773v-90h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="244" d="M42 507q0 50 25.5 95t68.5 75l47 -38q-25 -15 -46 -42t-26 -52q6 2 17 2q26 0 43 -17.5t17 -45.5t-20 -48t-48 -20q-32 0 -55 24.5t-23 66.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="244" d="M52 608q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5z" />
+<glyph unicode="&#x201a;" horiz-adv-x="245" d="M52 60q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="429" d="M46 507q0 50 25.5 95t67.5 75l48 -38q-25 -15 -46.5 -42t-25.5 -52q4 2 17 2q25 0 42 -18t17 -45q0 -28 -20 -48t-48 -20q-32 0 -54.5 24.5t-22.5 66.5zM231 507q0 50 25.5 95t67.5 75l48 -38q-25 -15 -46.5 -42t-25.5 -52q4 2 17 2q25 0 42 -18t17 -45q0 -28 -20 -48 t-48 -20q-32 0 -54.5 24.5t-22.5 66.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="429" d="M52 608q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5zM237 608q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52 q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="430" d="M52 60q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5zM237 60q0 28 20 48.5t48 20.5q32 0 55 -24.5t23 -66.5q0 -50 -25.5 -95.5t-68.5 -75.5l-47 39q25 15 46 42t26 52 q-9 -3 -17 -3q-26 0 -43 17.5t-17 45.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M66 242q0 47 33.5 80.5t80.5 33.5t80.5 -33.5t33.5 -80.5t-33.5 -80t-80.5 -33t-80.5 33t-33.5 80z" />
+<glyph unicode="&#x2026;" horiz-adv-x="734" d="M52 59q0 29 20.5 49.5t48.5 20.5q29 0 49.5 -20.5t20.5 -49.5q0 -28 -21 -48.5t-49 -20.5t-48.5 20.5t-20.5 48.5zM297 59q0 29 20.5 49.5t48.5 20.5t49 -20.5t21 -49.5q0 -28 -21 -48.5t-49 -20.5t-48.5 20.5t-20.5 48.5zM542 59q0 29 20.5 49.5t48.5 20.5 q29 0 49.5 -20.5t20.5 -49.5q0 -28 -21 -48.5t-49 -20.5t-48.5 20.5t-20.5 48.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="178" />
+<glyph unicode="&#x2039;" horiz-adv-x="319" d="M30 243l160 177h99l-160 -177l160 -180h-99z" />
+<glyph unicode="&#x203a;" horiz-adv-x="319" d="M30 63l160 180l-160 177h99l160 -177l-160 -180h-99z" />
+<glyph unicode="&#x205f;" horiz-adv-x="223" />
+<glyph unicode="&#x20ac;" horiz-adv-x="703" d="M25 230v67h39q-1 11 -1 36q0 12 2 38h-40v67h52q32 109 123.5 174.5t212.5 65.5q174 0 268 -150l-100 -51q-25 43 -70.5 70t-97.5 27q-71 0 -127 -36.5t-82 -99.5h270v-67h-289q-2 -24 -2 -38q0 -25 2 -36h289v-67h-271q27 -64 82.5 -101t127.5 -37q53 0 98 27t70 70 l100 -51q-96 -150 -268 -150q-122 0 -213.5 65.5t-122.5 176.5h-52z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M17 641v26h152v-26h-62v-194h-28v194h-62zM205 447v220h43l64 -160l64 160h43v-220h-28v182l-75 -182h-8l-75 182v-182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="15" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="15" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="5" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="5" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="3" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="5" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="35" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="15" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="65" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="10" />
+<hkern g1="G" 	g2="question" 	k="10" />
+<hkern g1="G" 	g2="T" 	k="5" />
+<hkern g1="G" 	g2="W" 	k="5" />
+<hkern g1="G" 	g2="V" 	k="10" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="15" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="5" />
+<hkern g1="G" 	g2="X" 	k="5" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="50" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="15" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="45" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="15" />
+<hkern g1="K" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="K" 	g2="x" 	k="30" />
+<hkern g1="L" 	g2="question" 	k="110" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="130" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="L" 	g2="asterisk" 	k="170" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="70" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="125" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="L" 	g2="t" 	k="35" />
+<hkern g1="L" 	g2="w" 	k="35" />
+<hkern g1="L" 	g2="v" 	k="55" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="55" />
+<hkern g1="L" 	g2="ampersand" 	k="5" />
+<hkern g1="L" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
+<hkern g1="L" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="15" />
+<hkern g1="P" 	g2="J" 	k="115" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="5" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="75" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="P" 	g2="X" 	k="15" />
+<hkern g1="P" 	g2="ampersand" 	k="30" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="30" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="P" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="15" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="5" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="17" />
+<hkern g1="R" 	g2="ampersand" 	k="5" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="10" />
+<hkern g1="S" 	g2="T" 	k="10" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="15" />
+<hkern g1="S" 	g2="w" 	k="5" />
+<hkern g1="S" 	g2="v" 	k="10" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="10" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="x" 	k="15" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
+<hkern g1="T" 	g2="J" 	k="85" />
+<hkern g1="T" 	g2="S" 	k="5" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="25" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="75" />
+<hkern g1="T" 	g2="w" 	k="40" />
+<hkern g1="T" 	g2="v" 	k="40" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="40" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="65" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="95" />
+<hkern g1="T" 	g2="ampersand" 	k="55" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="85" />
+<hkern g1="T" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="105" />
+<hkern g1="T" 	g2="x" 	k="50" />
+<hkern g1="T" 	g2="s" 	k="85" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="75" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="30" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V" 	g2="J" 	k="95" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="25" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="50" />
+<hkern g1="V" 	g2="t" 	k="15" />
+<hkern g1="V" 	g2="w" 	k="10" />
+<hkern g1="V" 	g2="v" 	k="15" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="10" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="50" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="35" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="55" />
+<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="65" />
+<hkern g1="V" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="25" />
+<hkern g1="V" 	g2="s" 	k="45" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="50" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="W" 	g2="J" 	k="50" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="15" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="15" />
+<hkern g1="W" 	g2="v" 	k="5" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="5" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="45" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="65" />
+<hkern g1="W" 	g2="ampersand" 	k="20" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="35" />
+<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="40" />
+<hkern g1="W" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="25" />
+<hkern g1="W" 	g2="s" 	k="25" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="65" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="120" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="125" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="75" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="65" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="15" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="question" 	k="40" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="T" 	k="100" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="W" 	k="45" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="V" 	k="70" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="T" 	k="70" />
+<hkern g1="ampersand" 	g2="W" 	k="40" />
+<hkern g1="ampersand" 	g2="V" 	k="50" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="85" />
+<hkern g1="asterisk" 	g2="J" 	k="120" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="95" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="50" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="105" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="120" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="5" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="35" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="25" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="5" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="75" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="25" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="40" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="65" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="65" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="5" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="15" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="95" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="55" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="5" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="5" />
+<hkern g1="f" 	g2="question" 	k="-55" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-65" />
+<hkern g1="f" 	g2="asterisk" 	k="-65" />
+<hkern g1="f" 	g2="S" 	k="-25" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-65" />
+<hkern g1="f" 	g2="V" 	k="-65" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-60" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="45" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="5" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-70" />
+<hkern g1="g,j,q" 	g2="question" 	k="25" />
+<hkern g1="g,j,q" 	g2="T" 	k="75" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="50" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-50" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="35" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="55" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="115" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="45" />
+<hkern g1="k" 	g2="T" 	k="55" />
+<hkern g1="k" 	g2="W" 	k="25" />
+<hkern g1="k" 	g2="V" 	k="25" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="k" 	g2="bullet" 	k="25" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="25" />
+<hkern g1="k" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="5" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="80" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="95" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="65" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="85" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="25" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="25" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="65" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="55" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="5" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="25" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="5" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="100" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="100" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="40" />
+<hkern g1="r" 	g2="W" 	k="10" />
+<hkern g1="r" 	g2="V" 	k="25" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="85" />
+<hkern g1="r" 	g2="X" 	k="15" />
+<hkern g1="s" 	g2="question" 	k="45" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="80" />
+<hkern g1="s" 	g2="W" 	k="45" />
+<hkern g1="s" 	g2="V" 	k="45" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="95" />
+<hkern g1="s" 	g2="X" 	k="5" />
+<hkern g1="t" 	g2="T" 	k="40" />
+<hkern g1="t" 	g2="W" 	k="15" />
+<hkern g1="t" 	g2="V" 	k="30" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="35" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="25" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="75" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="V" 	k="50" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="40" />
+<hkern g1="v" 	g2="W" 	k="5" />
+<hkern g1="v" 	g2="V" 	k="15" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="65" />
+<hkern g1="v" 	g2="X" 	k="35" />
+<hkern g1="w" 	g2="T" 	k="40" />
+<hkern g1="w" 	g2="V" 	k="10" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="15" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="40" />
+<hkern g1="w" 	g2="X" 	k="40" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="5" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="40" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="5" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="10" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="55" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="35" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="40" />
+<hkern g1="X" 	g2="v" 	k="35" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="35" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="45" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="25" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="95" />
+<hkern g1="x" 	g2="T" 	k="50" />
+<hkern g1="x" 	g2="W" 	k="25" />
+<hkern g1="x" 	g2="V" 	k="25" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="75" />
+<hkern g1="x" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..b173d4eac0d0d2da7d4cb66f504a5e7a54e9e6b5
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.woff
new file mode 100755
index 0000000000000000000000000000000000000000..6bf44cf4fbe621981c6c2f8043694caf5fdda128
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Sbold.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.eot
new file mode 100755
index 0000000000000000000000000000000000000000..6bc32d9b038116939d31462e8878d4751c265c24
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..bf32016aaa5e1ee3ae0b1c153a44713400ab1fe3
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.svg
new file mode 100755
index 0000000000000000000000000000000000000000..01b383b38e771f994708d270388905ef2f36305b
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.svg
@@ -0,0 +1,578 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_novasemibold_italic" horiz-adv-x="581" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="257" />
+<glyph unicode="&#xfb01;" horiz-adv-x="549" d="M39 0l87 391h-80l20 92h80l6 27q36 167 171 167q59 0 99 -26l-38 -74q-18 14 -49 14q-60 0 -78 -81l-6 -27h98l-20 -92h-98l-87 -391h-105zM322 0l107 483h105l-107 -483h-105zM442 598q0 33 23 53.5t50 20.5q25 0 42 -16.5t17 -39.5q0 -33 -23 -53.5t-50 -20.5 q-25 0 -42 16.5t-17 39.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="549" d="M39 0l87 391h-80l20 92h80l6 27q36 167 171 167q59 0 99 -26l-38 -74q-18 14 -49 14q-60 0 -78 -81l-6 -27h98l-20 -92h-98l-87 -391h-105zM322 0l147 667h105l-147 -667h-105z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="858" d="M40 0l86 392h-80l21 91h79l6 27q17 76 60 121.5t116 45.5t118 -45l-54 -63q-22 22 -57 22q-32 0 -50.5 -19.5t-27.5 -61.5l-6 -27h99l-21 -91h-98l-86 -392h-105zM347 0l87 391h-80l20 92h80l6 27q36 167 171 167q59 0 99 -26l-38 -74q-18 14 -49 14q-60 0 -78 -81 l-6 -27h98l-20 -92h-98l-87 -391h-105zM631 0l107 483h105l-107 -483h-105zM751 598q0 33 23 53.5t50 20.5q25 0 42 -16.5t17 -39.5q0 -33 -23 -53.5t-50 -20.5q-25 0 -42 16.5t-17 39.5z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="858" d="M40 0l86 392h-80l21 91h79l6 27q17 76 60 121.5t116 45.5t118 -45l-54 -63q-22 22 -57 22q-32 0 -50.5 -19.5t-27.5 -61.5l-6 -27h99l-21 -91h-98l-86 -392h-105zM347 0l87 391h-80l20 92h80l6 27q36 167 171 167q59 0 99 -26l-38 -74q-18 14 -49 14q-60 0 -78 -81 l-6 -27h98l-20 -92h-98l-87 -391h-105zM631 0l147 667h105l-147 -667h-105z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="257" />
+<glyph unicode="&#x09;" horiz-adv-x="257" />
+<glyph unicode="&#xa0;" horiz-adv-x="257" />
+<glyph unicode="!" horiz-adv-x="245" d="M11 53q0 31 22.5 53.5t54.5 22.5q26 0 44.5 -19t18.5 -46q0 -31 -22.5 -53t-53.5 -22q-27 0 -45.5 19t-18.5 45zM67 204l84 463h128l-121 -463h-91z" />
+<glyph unicode="&#x22;" horiz-adv-x="379" d="M114 391q13 198 14 216q1 30 20.5 50t47.5 20q21 0 36.5 -15.5t15.5 -38.5q0 -12 -6 -27l-80 -205h-48zM281 391q13 198 14 216q1 30 20.5 50t47.5 20q21 0 36.5 -15.5t15.5 -38.5q0 -12 -6 -27l-80 -205h-48z" />
+<glyph unicode="#" horiz-adv-x="606" d="M3 174l37 69h102l100 180h-102l36 68h104l97 176h80l-97 -176h101l97 176h80l-98 -176h102l-35 -68h-104l-101 -180h106l-37 -69h-107l-96 -174h-80l97 174h-102l-96 -174h-80l97 174h-101zM222 243h100l101 180h-101z" />
+<glyph unicode="$" horiz-adv-x="605" d="M13 110l75 86q50 -70 148 -95l42 192q-38 15 -64 28t-54 34t-42 50t-14 65q0 84 69.5 145.5t180.5 61.5h10l20 91h80l-23 -101q108 -23 168 -97l-75 -83q-42 51 -116 75l-39 -174q39 -15 65 -28.5t54.5 -35t43 -50.5t14.5 -65q0 -91 -69 -156t-186 -65h-11l-19 -88h-80 l21 97q-137 27 -199 113zM228 489q0 -39 78 -72l35 157h-3q-46 0 -78 -25.5t-32 -59.5zM313 92q58 1 88 30t30 66q0 24 -20 41.5t-59 34.5z" />
+<glyph unicode="%" horiz-adv-x="746" d="M75 0l573 667h67l-574 -667h-66zM84 483q0 85 53.5 139.5t128.5 54.5q65 0 110 -38t45 -99q0 -85 -53.5 -139.5t-128.5 -54.5q-65 0 -110 38t-45 99zM161 490q0 -34 23 -56t58 -22q42 0 72 34.5t30 86.5q0 33 -23 55t-58 22q-42 0 -72 -34t-30 -86zM363 125 q0 85 54 139.5t128 54.5q65 0 110.5 -38t45.5 -99q0 -85 -54 -139.5t-128 -54.5q-65 0 -110.5 38t-45.5 99zM441 132q0 -34 22.5 -56t57.5 -22q42 0 72 34.5t30 86.5q0 33 -22.5 55t-57.5 22q-42 0 -72 -34t-30 -86z" />
+<glyph unicode="&#x26;" horiz-adv-x="644" d="M10 160q0 88 51 138t141 85q-19 59 -19 109q0 78 57 131.5t138 53.5q70 0 116.5 -34t46.5 -95q0 -34 -13 -62t-30 -46t-49.5 -36t-54.5 -27t-63 -24q24 -50 95 -171q62 66 98 133l77 -47q-62 -93 -128 -157q31 -46 81 -111h-127q-15 18 -34 45q-89 -57 -174 -57 q-93 0 -151 43.5t-58 128.5zM125 173q0 -49 31.5 -75t78.5 -26q51 0 111 40q-72 105 -115 200q-106 -50 -106 -139zM290 493q0 -33 13 -75q71 25 106.5 51t35.5 69q0 30 -17.5 45.5t-45.5 15.5q-36 0 -64 -28.5t-28 -77.5z" />
+<glyph unicode="'" horiz-adv-x="214" d="M114 391q13 198 14 216q1 30 20.5 50t47.5 20q21 0 36.5 -15.5t15.5 -38.5q0 -12 -6 -27l-80 -205h-48z" />
+<glyph unicode="(" horiz-adv-x="276" d="M24 100q0 156 70 309.5t196 275.5l55 -55q-211 -264 -211 -562q0 -103 38 -224l-76 -43q-72 121 -72 299z" />
+<glyph unicode=")" horiz-adv-x="276" d="M-70 -144q211 263 211 561q0 104 -38 225l75 43q73 -123 73 -299q0 -156 -70.5 -309.5t-196.5 -275.5z" />
+<glyph unicode="*" horiz-adv-x="346" d="M80 492l110 39l-87 61l38 44l80 -69l19 110h57l-32 -115l108 49l16 -50l-109 -40l87 -60l-39 -44l-80 69l-18 -110h-57l31 115l-108 -49z" />
+<glyph unicode="+" horiz-adv-x="502" d="M42 303l15 68h185l44 200h74l-44 -200h185l-15 -68h-185l-46 -207h-74l46 207h-185z" />
+<glyph unicode="," horiz-adv-x="245" d="M-18 -86q71 34 92 84h-10q-22 0 -37.5 15t-15.5 41q0 30 23 52.5t53 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-94.5 -80z" />
+<glyph unicode="-" horiz-adv-x="300" d="M19 197l20 90h240l-20 -90h-240z" />
+<glyph unicode="." horiz-adv-x="245" d="M11 53q0 31 22.5 53.5t54.5 22.5q26 0 44.5 -19t18.5 -46q0 -31 -22.5 -53t-53.5 -22q-27 0 -45.5 19t-18.5 45z" />
+<glyph unicode="/" horiz-adv-x="315" d="M-60 -20l393 707h82l-394 -707h-81z" />
+<glyph unicode="0" horiz-adv-x="616" d="M50 253q0 106 39 202t115 159t170 63q108 0 169 -70t61 -194q0 -106 -39 -202.5t-114.5 -159.5t-169.5 -63q-108 0 -169.5 70t-61.5 195zM168 247q0 -71 30.5 -113t93.5 -42q58 0 104 53t68 126.5t22 147.5q0 71 -30 112.5t-93 41.5q-58 0 -104 -53t-68.5 -126.5 t-22.5 -146.5z" />
+<glyph unicode="1" horiz-adv-x="380" d="M65 473l235 194h102l-147 -667h-117l113 515l-133 -113z" />
+<glyph unicode="2" horiz-adv-x="595" d="M-4 0l24 110q96 56 153.5 91.5t119.5 78.5t94.5 74t53.5 65t21 65q0 41 -36 65.5t-94 24.5q-97 0 -168 -62l-51 83q42 38 102.5 60t124.5 22q103 0 174 -49t71 -137q0 -98 -99 -191.5t-280 -196.5h295l-22 -103h-483z" />
+<glyph unicode="3" horiz-adv-x="574" d="M-9 127l80 69q28 -49 82.5 -76.5t112.5 -27.5q64 0 100 31t36 81q0 38 -33 61t-100 23q-63 0 -74 -1l24 105q11 -1 92 -1q63 0 103 23.5t40 71.5q0 39 -38 63t-102 24q-94 0 -165 -59l-44 80q41 38 98.5 60.5t120.5 22.5q113 0 181.5 -45.5t68.5 -126.5q0 -67 -55 -113.5 t-125 -53.5q54 -13 88.5 -49.5t34.5 -95.5q0 -87 -72 -146t-178 -59q-90 0 -167 37.5t-109 101.5z" />
+<glyph unicode="4" horiz-adv-x="580" d="M7 151l23 103l358 413h168l-92 -413h89l-22 -103h-89l-33 -151h-117l33 151h-318zM144 254h203l69 308z" />
+<glyph unicode="5" horiz-adv-x="600" d="M25 118l85 73q53 -99 181 -99q63 0 103.5 37.5t40.5 92.5q0 50 -38 78t-99 28q-70 0 -129 -44l-76 33l77 350h437l-23 -103h-320l-40 -184q56 44 136 44q84 0 140.5 -50.5t56.5 -138.5q0 -103 -75.5 -175t-193.5 -72q-184 0 -263 130z" />
+<glyph unicode="6" horiz-adv-x="601" d="M46 241q0 78 22.5 154t64 139.5t109 103t149.5 39.5q140 0 214 -95l-74 -81q-47 72 -147 72q-77 0 -129 -59t-75 -142q-5 -11 -7 -24q29 31 78.5 54t102.5 23q90 0 148.5 -49t58.5 -131q0 -105 -78.5 -181t-189.5 -76q-117 0 -182 66.5t-65 186.5zM159 226 q0 -61 37 -97.5t98 -36.5q62 0 103.5 40.5t41.5 97.5q0 46 -38.5 73t-98.5 27q-79 0 -141 -64q-2 -16 -2 -40z" />
+<glyph unicode="7" horiz-adv-x="532" d="M63 0l374 564h-340l23 103h481l-18 -81l-386 -586h-134z" />
+<glyph unicode="8" horiz-adv-x="595" d="M21 163q0 69 51.5 120.5t140.5 72.5q-45 19 -76 55t-31 82q0 89 76 136.5t175 47.5q100 0 173.5 -44.5t73.5 -123.5q0 -68 -49.5 -114.5t-130.5 -61.5q117 -59 117 -154q0 -86 -77 -138.5t-185 -52.5q-110 0 -184 45t-74 130zM145 184q0 -44 38.5 -68t100.5 -24 q55 0 97 27.5t42 71.5q0 36 -35 63t-80 38q-70 -4 -116.5 -33.5t-46.5 -74.5zM223 480q0 -31 33.5 -56t73.5 -34q67 5 107.5 30.5t40.5 67.5q0 36 -37 60t-91 24q-53 0 -90 -25t-37 -67z" />
+<glyph unicode="9" horiz-adv-x="601" d="M34 83l74 82q44 -72 147 -72q77 0 128.5 58t75.5 142q6 18 7 24q-30 -31 -79.5 -54t-101.5 -23q-90 0 -149 49.5t-59 131.5q0 105 79 181t190 76q117 0 182 -66.5t65 -186.5q0 -62 -13.5 -123.5t-42.5 -118t-69 -100t-97.5 -69t-123.5 -25.5q-140 0 -213 94zM199 436 q0 -46 38.5 -73.5t98.5 -27.5q78 0 142 64q1 8 1 40q0 61 -36.5 98t-97.5 37q-62 0 -104 -41t-42 -97z" />
+<glyph unicode=":" horiz-adv-x="245" d="M11 53q0 31 22.5 53.5t54.5 22.5q26 0 44.5 -19t18.5 -46q0 -31 -22.5 -53t-53.5 -22q-27 0 -45.5 19t-18.5 45zM91 415q0 31 22.5 53t53.5 22q27 0 45.5 -19t18.5 -45q0 -31 -22.5 -53.5t-54.5 -22.5q-26 0 -44.5 19t-18.5 46z" />
+<glyph unicode=";" horiz-adv-x="245" d="M-18 -86q71 34 92 84h-10q-22 0 -37.5 15t-15.5 41q0 30 23 52.5t53 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-94.5 -80zM91 415q0 31 22.5 53t53.5 22q27 0 45.5 -19t18.5 -45q0 -31 -22.5 -53.5t-54.5 -22.5q-26 0 -44.5 19t-18.5 46z" />
+<glyph unicode="&#x3c;" horiz-adv-x="502" d="M40 297l17 75l490 208l-19 -84l-401 -166l328 -163l-17 -77z" />
+<glyph unicode="=" horiz-adv-x="502" d="M20 205l15 67h444l-15 -67h-444zM62 395l15 68h444l-15 -68h-444z" />
+<glyph unicode="&#x3e;" horiz-adv-x="502" d="M-6 90l19 84l401 163l-328 166l17 77l398 -208l-17 -75z" />
+<glyph unicode="?" horiz-adv-x="458" d="M86 599q88 78 202 78q89 0 148 -40t59 -107q0 -49 -24.5 -85.5t-59 -57.5t-69 -38t-59 -39.5t-24.5 -51.5q0 -19 14 -33l-95 -29q-20 31 -20 70q0 40 22 70.5t53 49t62.5 34.5t53.5 37.5t22 48.5q0 31 -26 49.5t-73 18.5q-77 0 -135 -55zM114 53q0 31 22.5 53.5 t53.5 22.5q27 0 45.5 -19t18.5 -46q0 -31 -22.5 -53t-54.5 -22q-26 0 -44.5 19t-18.5 45z" />
+<glyph unicode="@" horiz-adv-x="783" d="M55 244q0 159 120 276.5t277 117.5q139 0 227 -90t88 -221q0 -114 -58 -178t-129 -64q-42 0 -66.5 22t-28.5 55l-1 6q-27 -37 -67 -60t-83 -23q-70 0 -112 46t-42 120q0 100 70.5 173.5t159.5 73.5q90 0 126 -71l12 56h94l-54 -255q-2 -12 -2 -23q0 -23 11.5 -35.5 t29.5 -12.5q36 0 68 43t32 127q0 122 -76.5 198t-202.5 76q-143 0 -249.5 -107t-106.5 -248q0 -120 80.5 -200t203.5 -80q97 0 184 55l20 -28q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM277 258q0 -44 24.5 -71t66.5 -27q73 0 127 76l27 126q-10 24 -33 42.5 t-58 18.5q-64 0 -109 -50.5t-45 -114.5z" />
+<glyph unicode="A" horiz-adv-x="673" d="M-53 0l409 667h146l115 -667h-127l-21 128h-306l-77 -128h-139zM219 231h240l-50 318z" />
+<glyph unicode="B" horiz-adv-x="648" d="M17 0l147 667h304q79 0 127.5 -45t48.5 -112q0 -68 -45.5 -119t-107.5 -57q44 -12 70.5 -51t26.5 -85q0 -80 -58.5 -139t-172.5 -59h-340zM156 103h195q55 0 87 30.5t32 74.5q0 36 -23.5 58t-64.5 22h-185zM220 391h191q56 0 82 29t26 70q0 31 -24 52.5t-58 21.5h-179z " />
+<glyph unicode="C" horiz-adv-x="682" d="M51 284q0 173 113 283.5t269 110.5q107 0 179.5 -48t106.5 -127l-112 -40q-23 54 -70.5 82.5t-109.5 28.5q-103 0 -178.5 -81t-75.5 -202q0 -88 55.5 -143.5t148.5 -55.5q96 0 166 76l89 -62q-52 -62 -121.5 -90t-140.5 -28q-138 0 -228.5 81.5t-90.5 214.5z" />
+<glyph unicode="D" horiz-adv-x="710" d="M17 0l147 667h243q115 0 199.5 -81t84.5 -205q0 -55 -15 -108t-48.5 -103t-82 -87.5t-121 -60t-160.5 -22.5h-247zM156 103h129q128 0 206 79t78 192q0 81 -52 135.5t-132 54.5h-127z" />
+<glyph unicode="E" horiz-adv-x="577" d="M17 0l147 667h457l-23 -103h-340l-38 -173h333l-23 -103h-333l-41 -185h340l-22 -103h-457z" />
+<glyph unicode="F" horiz-adv-x="562" d="M17 0l147 667h457l-23 -103h-340l-38 -173h333l-23 -103h-333l-63 -288h-117z" />
+<glyph unicode="G" horiz-adv-x="717" d="M51 284q0 170 112.5 282t279.5 112q96 0 165.5 -44t104.5 -113l-107 -47q-21 46 -70 73t-109 27q-103 0 -178.5 -81.5t-75.5 -201.5q0 -88 55.5 -143.5t148.5 -55.5q83 0 151 59l23 104h-199l23 103h316l-56 -253q-106 -117 -265 -117q-138 0 -228.5 82t-90.5 214z" />
+<glyph unicode="H" horiz-adv-x="723" d="M17 0l147 667h117l-60 -273h347l60 273h117l-147 -667h-117l64 291h-347l-64 -291h-117z" />
+<glyph unicode="I" horiz-adv-x="259" d="M17 0l147 667h117l-147 -667h-117z" />
+<glyph unicode="J" horiz-adv-x="481" d="M-26 67l65 86q38 -61 115 -61q105 0 132 121l100 454h117l-100 -456q-25 -114 -84.5 -168.5t-156.5 -54.5q-128 0 -188 79z" />
+<glyph unicode="K" horiz-adv-x="621" d="M17 0l147 667h117l-68 -308l322 308h152l-340 -315l213 -352h-137l-165 286l-77 -73l-47 -213h-117z" />
+<glyph unicode="L" horiz-adv-x="517" d="M17 0l147 667h117l-125 -564h294l-22 -103h-411z" />
+<glyph unicode="M" horiz-adv-x="835" d="M17 0l147 667h160l80 -459l283 459h170l-147 -667h-117l113 515l-318 -515h-50l-91 515l-113 -515h-117z" />
+<glyph unicode="N" horiz-adv-x="720" d="M17 0l147 667h120l234 -481l107 481h117l-147 -667h-113l-239 494l-109 -494h-117z" />
+<glyph unicode="O" horiz-adv-x="765" d="M51 284q0 165 110.5 279.5t271.5 114.5q138 0 228.5 -80.5t90.5 -214.5q0 -166 -110.5 -280.5t-271.5 -114.5q-138 0 -228.5 80.5t-90.5 215.5zM173 291q0 -92 57.5 -145.5t146.5 -53.5q105 0 179 81.5t74 201.5q0 91 -58 145t-146 54q-105 0 -179 -81.5t-74 -201.5z" />
+<glyph unicode="P" horiz-adv-x="608" d="M17 0l147 667h268q93 0 145.5 -51.5t52.5 -128.5q0 -32 -8.5 -63.5t-28.5 -63.5t-49.5 -56t-76 -39.5t-104.5 -15.5h-174l-55 -249h-117zM211 352h160q63 0 100 35.5t37 88.5q0 37 -27 62.5t-68 25.5h-155z" />
+<glyph unicode="Q" horiz-adv-x="765" d="M51 284q0 165 110.5 279.5t271.5 114.5q138 0 228.5 -80.5t90.5 -214.5q0 -96 -40.5 -179t-110.5 -138l38 -56l-94 -47l-34 52q-70 -27 -141 -27q-138 0 -228.5 80.5t-90.5 215.5zM173 291q0 -92 57.5 -145.5t146.5 -53.5q39 0 75 12l-67 102l93 47l63 -95q89 84 89 217 q0 91 -58 145t-146 54q-105 0 -179 -81.5t-74 -201.5z" />
+<glyph unicode="R" horiz-adv-x="628" d="M17 0l147 667h268q81 0 140 -50t59 -132q0 -91 -56.5 -154t-145.5 -75l104 -256h-129l-93 249h-123l-54 -249h-117zM211 352h161q63 0 99.5 34.5t36.5 87.5q0 39 -29 64.5t-68 25.5h-153z" />
+<glyph unicode="S" horiz-adv-x="594" d="M6 110l75 86q35 -48 94.5 -76t128.5 -28q59 0 89.5 29t30.5 67q0 30 -33.5 52t-82 39.5t-96.5 38.5t-81.5 60t-33.5 92q0 84 69.5 145.5t180.5 61.5q79 0 147 -28.5t108 -78.5l-75 -83q-34 42 -87 64.5t-109 22.5q-46 0 -78 -25.5t-32 -59.5q0 -27 34 -48.5t82 -39 t96 -39t82 -60.5t34 -93q0 -91 -69 -156t-186 -65q-93 0 -170.5 34t-117.5 88z" />
+<glyph unicode="T" horiz-adv-x="577" d="M98 564l23 103h521l-23 -103h-202l-124 -564h-117l124 564h-202z" />
+<glyph unicode="U" horiz-adv-x="719" d="M70 216q0 22 5 47l89 404h118l-88 -401q-4 -14 -4 -37q0 -60 41.5 -99t115.5 -39q149 0 187 175l89 401h118l-89 -403q-29 -133 -100 -204.5t-205 -71.5q-133 0 -205 61.5t-72 166.5z" />
+<glyph unicode="V" horiz-adv-x="673" d="M94 667h127l83 -540l321 540h139l-409 -667h-146z" />
+<glyph unicode="W" horiz-adv-x="903" d="M99 667h128l16 -514l252 514h93l24 -514l243 514h134l-337 -667h-125l-21 492l-238 -492h-125z" />
+<glyph unicode="X" horiz-adv-x="661" d="M-51 0l328 349l-166 318h133l123 -240l220 240h148l-309 -332l177 -335h-132l-135 256l-239 -256h-148z" />
+<glyph unicode="Y" horiz-adv-x="637" d="M94 667h127l121 -286l245 286h141l-344 -390l-61 -277h-117l61 277z" />
+<glyph unicode="Z" horiz-adv-x="589" d="M-10 0l21 95l437 469h-333l22 103h493l-20 -95l-439 -469h342l-23 -103h-500z" />
+<glyph unicode="[" horiz-adv-x="264" d="M-53 -190l193 868h203l-16 -72h-126l-160 -724h125l-16 -72h-203z" />
+<glyph unicode="\" horiz-adv-x="315" d="M98 687h78l80 -707h-78z" />
+<glyph unicode="]" horiz-adv-x="264" d="M-79 -190l16 72h125l161 724h-126l16 72h203l-193 -868h-202z" />
+<glyph unicode="^" horiz-adv-x="437" d="M38 333l235 334h78l86 -334h-76l-62 261l-177 -261h-84z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-82 -112l17 72h569l-17 -72h-569z" />
+<glyph unicode="`" horiz-adv-x="240" d="M101 700h100l108 -144h-75z" />
+<glyph unicode="a" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-107 -483h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136z" />
+<glyph unicode="b" d="M14 0l147 667h105l-55 -248q64 76 152 76q83 0 134 -53t51 -147q0 -120 -70 -213.5t-184 -93.5q-108 0 -160 81l-15 -69h-105zM151 146q17 -29 50.5 -47t76.5 -18q69 0 114.5 57.5t45.5 135.5q0 58 -33.5 93t-85.5 35q-74 0 -127 -69z" />
+<glyph unicode="c" horiz-adv-x="497" d="M33 206q0 120 80.5 204.5t196.5 84.5q134 0 190 -93l-79 -60q-35 60 -110 60q-76 0 -123.5 -56.5t-47.5 -135.5q0 -61 37.5 -95t96.5 -34q65 0 110 52l58 -70q-71 -75 -178 -75q-104 0 -167.5 59.5t-63.5 158.5z" />
+<glyph unicode="d" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l56 253h105l-148 -667h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136z" />
+<glyph unicode="e" horiz-adv-x="557" d="M33 204q0 120 79.5 205.5t196.5 85.5q95 0 154 -58.5t59 -155.5q0 -40 -9 -74h-374q0 -1 -0.5 -7.5t-0.5 -9.5q0 -45 39 -80.5t108 -35.5q77 0 129 40l33 -73q-72 -53 -170 -53q-113 0 -178.5 58t-65.5 158zM150 281h277q1 3 1 14q0 49 -33 81.5t-94 32.5 q-56 0 -98.5 -38t-52.5 -90z" />
+<glyph unicode="f" horiz-adv-x="308" d="M40 0l86 392h-80l21 91h79l6 27q17 76 60 121.5t116 45.5t118 -45l-54 -63q-22 22 -57 22q-32 0 -50.5 -19.5t-27.5 -61.5l-6 -27h99l-21 -91h-98l-86 -392h-105z" />
+<glyph unicode="g" horiz-adv-x="580" d="M-14 -113l63 70q48 -67 161 -67q118 0 148 135l12 52q-62 -77 -155 -77q-80 0 -131.5 49.5t-51.5 148.5q0 118 69 207.5t182 89.5q46 0 90.5 -22.5t70.5 -58.5l16 69h105l-102 -458q-26 -120 -94 -170.5t-157 -50.5q-152 0 -226 83zM141 217q0 -57 33 -90.5t88 -33.5 q35 0 68.5 18.5t57.5 46.5l39 175q-19 32 -54 50.5t-78 18.5q-67 0 -110.5 -55t-43.5 -130z" />
+<glyph unicode="h" horiz-adv-x="568" d="M14 0l147 667h105l-55 -250q82 78 165 78q68 0 108 -32.5t40 -89.5q0 -15 -5 -40l-73 -333h-105l66 303q5 20 5 30q0 35 -24.5 52t-65.5 17q-65 0 -129 -66l-74 -336h-105z" />
+<glyph unicode="i" horiz-adv-x="241" d="M14 0l107 483h105l-107 -483h-105zM134 598q0 33 23 53.5t50 20.5q25 0 42 -16.5t17 -39.5q0 -33 -23 -53.5t-50 -20.5q-25 0 -42 16.5t-17 39.5z" />
+<glyph unicode="j" horiz-adv-x="241" d="M-186 -155l46 75q24 -30 65 -30q63 0 82 82l114 511h105l-114 -511q-18 -82 -59 -125t-113 -43q-85 0 -126 41zM134 598q0 33 23 53.5t50 20.5q25 0 42 -16.5t17 -39.5q0 -33 -23 -53.5t-50 -20.5q-25 0 -42 16.5t-17 39.5z" />
+<glyph unicode="k" horiz-adv-x="526" d="M14 0l147 667h105l-91 -411l259 227h135l-250 -219l147 -264h-127l-106 202l-86 -72l-28 -130h-105z" />
+<glyph unicode="l" horiz-adv-x="241" d="M14 0l147 667h105l-147 -667h-105z" />
+<glyph unicode="m" horiz-adv-x="833" d="M14 0l107 483h105l-15 -66q70 78 149 78q60 0 94 -31t34 -54v-2q70 87 169 87q55 0 94 -32.5t39 -89.5q0 -15 -5 -40l-74 -333h-105l68 308q4 20 4 30q0 29 -22 46.5t-53 17.5q-57 0 -114 -65l-74 -337h-105l68 308q4 22 4 35q-1 25 -21 42t-55 17q-54 0 -113 -65 l-74 -337h-105z" />
+<glyph unicode="n" horiz-adv-x="567" d="M14 0l107 483h105l-15 -66q82 78 165 78q68 0 108 -32.5t40 -89.5q0 -15 -5 -40l-74 -333h-105l67 303q5 22 5 30q0 35 -23 52t-58 17q-73 0 -138 -65l-74 -337h-105z" />
+<glyph unicode="o" horiz-adv-x="573" d="M32 205q0 116 79 203t196 87q108 0 170 -60.5t62 -157.5q0 -116 -79 -202.5t-196 -86.5q-108 0 -170 60t-62 157zM141 210q0 -60 33.5 -94.5t92.5 -34.5q70 0 116.5 57.5t46.5 134.5q0 60 -33.5 94.5t-92.5 34.5q-70 0 -116.5 -58t-46.5 -134z" />
+<glyph unicode="p" horiz-adv-x="578" d="M-27 -184l148 667h105l-15 -64q64 76 152 76q83 0 134 -53t51 -147q0 -120 -70 -213.5t-184 -93.5q-108 0 -160 81l-56 -253h-105zM151 146q17 -29 50.5 -47t76.5 -18q69 0 114.5 57.5t45.5 135.5q0 58 -33.5 93t-85.5 35q-74 0 -127 -69z" />
+<glyph unicode="q" horiz-adv-x="578" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-148 -667h-105l55 248q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136z" />
+<glyph unicode="r" horiz-adv-x="347" d="M14 0l107 483h105l-16 -68q71 79 175 79l-23 -105q-17 5 -43 5q-36 0 -70.5 -19t-57.5 -48l-72 -327h-105z" />
+<glyph unicode="s" horiz-adv-x="472" d="M-4 74l62 73q22 -30 68.5 -53t96.5 -23q39 0 63 19t24 46q0 25 -39 44.5t-85.5 32.5t-85.5 45t-39 80q0 65 51.5 111t140.5 46q60 0 112.5 -22t83.5 -57l-56 -69q-18 25 -59 44.5t-84 19.5q-39 0 -62 -16t-23 -41q0 -19 25.5 -33.5t62.5 -27t74 -27.5t62.5 -44t25.5 -69 q0 -70 -54.5 -117.5t-146.5 -47.5q-141 0 -218 86z" />
+<glyph unicode="t" horiz-adv-x="319" d="M42 392l21 91h80l29 132h105l-29 -132h98l-21 -91h-98l-55 -249q-2 -10 -2 -19q0 -43 48 -43q25 0 40 13l6 -84q-28 -22 -77 -22q-60 0 -94.5 24.5t-34.5 73.5q0 14 3 31l61 275h-80z" />
+<glyph unicode="u" horiz-adv-x="567" d="M42 110q0 15 5 40l74 333h105l-67 -302q-5 -22 -5 -31q0 -35 24.5 -52t65.5 -17q63 0 129 66l74 336h105l-107 -483h-105l15 66q-82 -78 -165 -78q-68 0 -108 32.5t-40 89.5z" />
+<glyph unicode="v" horiz-adv-x="503" d="M51 483h109l60 -362l222 362h116l-304 -483h-113z" />
+<glyph unicode="w" horiz-adv-x="754" d="M58 483h105l24 -351l193 351h93l36 -351l180 351h113l-257 -483h-110l-34 354l-190 -354h-110z" />
+<glyph unicode="x" horiz-adv-x="496" d="M-49 0l231 248l-114 235h114l78 -164l151 164h122l-220 -235l124 -248h-114l-86 178l-165 -178h-121z" />
+<glyph unicode="y" horiz-adv-x="503" d="M-47 -185l35 92q18 -8 48 -8q38 0 65 40l38 58l-88 486h109l60 -362l222 362h116l-360 -570q-37 -58 -77 -83.5t-95 -25.5q-42 0 -73 11z" />
+<glyph unicode="z" horiz-adv-x="476" d="M-8 0l17 79l304 312h-234l20 92h379l-17 -77l-307 -315h241l-20 -91h-383z" />
+<glyph unicode="{" horiz-adv-x="276" d="M-11 -71q0 15 3 29l42 187q2 12 2 17q0 22 -10.5 36.5t-28.5 14.5l14 62q52 0 67 68l41 186q17 74 62.5 111.5t112.5 37.5h61l-16 -72h-61q-64 0 -81 -77l-46 -204q-16 -73 -65 -89q29 -15 29 -55q0 -18 -4 -34l-41 -188q-2 -12 -2 -20q0 -25 16 -41t40 -16h55l-17 -72 h-46q-52 0 -89.5 33.5t-37.5 85.5z" />
+<glyph unicode="|" horiz-adv-x="214" d="M91 -20v707h72v-707h-72z" />
+<glyph unicode="}" horiz-adv-x="276" d="M-80 -190l16 72h61q64 0 81 76l46 205q16 73 65 89q-29 15 -29 55q0 18 4 34l41 188q2 12 2 19q0 25 -16 41.5t-40 16.5h-55l17 72h46q52 0 89.5 -33.5t37.5 -85.5q0 -17 -3 -30l-42 -186q-2 -12 -2 -18q0 -22 10.5 -36t28.5 -14l-14 -62q-52 0 -67 -68l-41 -186 q-34 -149 -175 -149h-61z" />
+<glyph unicode="~" horiz-adv-x="507" d="M66 425q51 241 184 241q39 0 61.5 -19t29 -46t10 -53.5t12.5 -45.5t29 -19q32 0 62 53t46 131l72 -9q-54 -241 -185 -241q-39 0 -61.5 18.5t-29 45.5t-10 54t-12.5 45.5t-28 18.5q-32 0 -61.5 -52.5t-46.5 -130.5z" />
+<glyph unicode="&#xa1;" horiz-adv-x="245" d="M-37 -184l121 462h91l-84 -462h-128zM91 418q0 31 22.5 53.5t53.5 22.5q27 0 45.5 -19t18.5 -46q0 -31 -22.5 -53t-54.5 -22q-26 0 -44.5 19t-18.5 45z" />
+<glyph unicode="&#xa2;" horiz-adv-x="497" d="M33 206q0 117 77 201t190 88l16 70h78l-17 -77q83 -20 123 -86l-79 -60q-23 38 -65 52l-70 -313q58 6 98 52l58 -70q-70 -74 -176 -75l-20 -88h-78l22 97q-73 19 -115 74t-42 135zM140 210q0 -86 71 -117l68 306q-63 -12 -101 -65.5t-38 -123.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="536" d="M8 75q66 28 109.5 76.5t43.5 100.5q0 2 -0.5 8t-0.5 8h-134l16 70h93q-2 3 -8 15t-8.5 16.5t-7.5 15.5t-7.5 18t-5.5 17t-4 20t-1 21q0 88 74.5 152t179.5 64q81 0 143 -34.5t80 -93.5l-106 -44q-7 34 -38.5 55t-73.5 21q-55 0 -93.5 -37t-38.5 -95q0 -21 5 -38t18 -42 t16 -31h144l-16 -70h-116q-3 -45 -33.5 -86.5t-66.5 -61.5q24 7 45 7q31 0 77.5 -18t73.5 -18q49 0 85 38l27 -93q-51 -49 -121 -49q-46 0 -114 22.5t-101 22.5q-47 0 -113 -39z" />
+<glyph unicode="&#xa4;" horiz-adv-x="612" d="M3 125l94 76q-24 46 -24 101q0 110 74 187l-56 73l71 57l58 -75q58 30 126 30q92 0 152 -46l97 79l55 -67l-95 -78q25 -47 25 -101q0 -108 -75 -186l56 -69l-71 -57l-57 72q-58 -30 -125 -30q-89 0 -151 44l-98 -80zM181 309q0 -55 35.5 -89.5t96.5 -34.5q68 0 114 50 t46 118q0 55 -35 90.5t-100 35.5q-68 0 -112.5 -51t-44.5 -119z" />
+<glyph unicode="&#xa5;" horiz-adv-x="637" d="M-6 118l15 67h239l21 92h-239l15 67h194l-143 323h127l121 -286l245 286h141l-285 -323h192l-15 -67h-236l-21 -92h236l-15 -67h-235l-26 -118h-117l26 118h-240z" />
+<glyph unicode="&#xa6;" horiz-adv-x="214" d="M91 -20v316h72v-316h-72zM91 371v316h72v-316h-72z" />
+<glyph unicode="&#xa7;" horiz-adv-x="477" d="M-27 1l61 63q26 -32 71.5 -51.5t94.5 -19.5q41 0 67 21t26 52q0 24 -25 41.5t-61 30t-72.5 27.5t-61.5 43.5t-25 69.5q0 50 34.5 87t100.5 52q-81 35 -81 108q0 64 53 108t138 44q136 0 205 -74l-57 -58q-47 57 -144 57q-42 0 -66.5 -18.5t-24.5 -46.5q0 -24 25.5 -40.5 t62 -28.5t72.5 -26.5t61.5 -43.5t25.5 -70q0 -49 -31.5 -88.5t-87.5 -57.5q64 -35 64 -101q0 -68 -54.5 -115t-142.5 -47q-149 0 -228 82zM153 297q0 -29 25 -46.5t77 -34.5q46 13 68 37t22 52q0 49 -80 76q-56 -7 -84 -30t-28 -54z" />
+<glyph unicode="&#xa8;" horiz-adv-x="285" d="M59 601q0 26 20 45.5t46 19.5q23 0 37.5 -15t14.5 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM268 601q0 26 20 45.5t46 19.5q22 0 37 -15t15 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M64 334q0 143 100.5 244t243.5 101t244.5 -101t101.5 -244t-101.5 -244t-244.5 -101q-142 0 -243 101t-101 244zM98 334q0 -128 91 -219.5t219 -91.5t220 91.5t92 219.5t-92 219.5t-220 91.5t-219 -91.5t-91 -219.5zM200 307q0 100 71 169.5t163 69.5q109 0 158 -80 l-35 -25q-36 68 -125 68q-72 0 -131 -58t-59 -143q0 -62 41 -105.5t109 -43.5q64 0 114 48l22 -32q-64 -53 -137 -53q-87 0 -139 52.5t-52 132.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="412" d="M81 451q0 81 49 139t120 58q73 0 108 -50l9 42h78l-70 -314h-78l9 42q-43 -50 -100 -50q-53 0 -89 34.5t-36 98.5zM162 460q0 -39 21 -59.5t55 -20.5q45 0 81 40l29 131q-24 35 -80 35q-44 0 -75 -37.5t-31 -88.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="489" d="M29 243l200 177h103l-204 -182l116 -175h-95zM199 243l200 177h103l-204 -182l116 -175h-95z" />
+<glyph unicode="&#xac;" horiz-adv-x="510" d="M62 395l15 68h444l-57 -258h-70l42 190h-374z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M19 197l20 90h240l-20 -90h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M84 465q0 88 62 150t150 62t150 -61.5t62 -150.5q0 -88 -62.5 -150t-150.5 -62t-149.5 62t-61.5 150zM114 465q0 -75 53 -128.5t128 -53.5t128.5 53.5t53.5 128.5t-53.5 128t-128.5 53q-76 0 -128.5 -52.5t-52.5 -128.5zM188 343l53 243h92q30 0 50.5 -18t20.5 -46 q0 -35 -25 -58.5t-55 -23.5l44 -97h-39l-42 96h-45l-21 -96h-33zM248 469h66q24 0 39.5 14.5t15.5 35.5q0 17 -11.5 27.5t-30.5 10.5h-59z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M71 566l14 62h362l-14 -62h-362z" />
+<glyph unicode="&#xb0;" horiz-adv-x="302" d="M88 547q0 53 38 91.5t91 38.5q54 0 92 -38.5t38 -91.5q0 -54 -38 -91.5t-92 -37.5q-53 0 -91 37.5t-38 91.5zM149 547q0 -29 19.5 -49t47.5 -20q29 0 50 20.5t21 48.5q0 29 -20.5 49.5t-49.5 20.5q-28 0 -48 -20.5t-20 -49.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="502" d="M-25 0l14 67h444l-14 -67h-444zM46 325l15 67h185l45 201h74l-45 -201h185l-15 -67h-185l-46 -208h-74l46 208h-185z" />
+<glyph unicode="&#xb2;" horiz-adv-x="393" d="M87 421l14 63q155 91 212 136t57 87q0 26 -21.5 40.5t-53.5 14.5q-69 0 -112 -45l-35 54q59 56 150 56q65 0 110 -29.5t45 -83.5q0 -56 -58 -108.5t-175 -119.5h185l-14 -65h-304z" />
+<glyph unicode="&#xb3;" horiz-adv-x="393" d="M95 487l51 48q40 -56 116 -56q36 0 56 18t20 46q0 23 -25 36.5t-68 13.5q-26 0 -32 -1l14 65q24 -2 63 -2q38 0 59 15t21 41q0 24 -24.5 37.5t-60.5 13.5q-59 0 -105 -39l-29 51q62 53 141 53q71 0 115.5 -27.5t44.5 -77.5q0 -41 -30 -69.5t-81 -32.5q34 -7 56 -29.5 t22 -56.5q0 -47 -42 -83.5t-111 -36.5q-59 0 -104 19.5t-67 53.5z" />
+<glyph unicode="&#xb4;" horiz-adv-x="240" d="M67 556l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xb5;" horiz-adv-x="579" d="M-30 -184l151 667h105l-68 -303q-11 -49 10.5 -74.5t64.5 -25.5q37 0 74 18.5t63 45.5l75 339h105l-78 -352q-5 -23 3.5 -36.5t28.5 -13.5q10 0 20 2l-13 -89q-21 -6 -52 -6q-97 0 -99 86q-33 -38 -76.5 -62t-86.5 -24q-57 0 -75 36l-47 -208h-105z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M79 479q0 73 56.5 130.5t137.5 57.5h212l-170 -767h-55l158 712h-83l-158 -712h-55l94 423q-57 0 -97 44.5t-40 111.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="245" d="M52 239q0 31 22.5 53.5t54.5 22.5q26 0 44.5 -19t18.5 -46q0 -31 -22.5 -53t-53.5 -22q-27 0 -45.5 19t-18.5 45z" />
+<glyph unicode="&#xb8;" horiz-adv-x="214" d="M-89 -154l31 43q35 -35 84 -35q26 0 40.5 11t14.5 29q0 26 -33 26q-18 0 -32 -15l-35 23l49 83h55l-40 -64q15 11 32 11q26 0 42.5 -16.5t16.5 -44.5q0 -41 -31 -66t-80 -25q-74 0 -114 40z" />
+<glyph unicode="&#xb9;" horiz-adv-x="264" d="M109 697l152 124h70l-88 -400h-81l64 292l-80 -66z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M79 462q0 78 55 132t132 54q71 0 114 -40.5t43 -104.5q0 -77 -55.5 -131t-131.5 -54q-71 0 -114 40t-43 104zM159 460q0 -36 21.5 -57.5t57.5 -21.5q48 0 76.5 37t28.5 86q0 36 -21.5 57.5t-57.5 21.5q-48 0 -76.5 -37t-28.5 -86z" />
+<glyph unicode="&#xbb;" horiz-adv-x="489" d="M-11 63l204 182l-116 175h95l120 -180l-200 -177h-103zM159 63l204 182l-116 175h95l120 -180l-200 -177h-103z" />
+<glyph unicode="&#xbc;" horiz-adv-x="806" d="M71 0l573 667h68l-574 -667h-67zM75 543l152 124h70l-88 -400h-81l64 292l-80 -66zM411 92l12 56l220 252h112l-54 -244h55l-14 -64h-55l-20 -92h-80l20 92h-196zM506 156h115l38 171z" />
+<glyph unicode="&#xbd;" horiz-adv-x="841" d="M71 0l573 667h68l-574 -667h-67zM75 543l152 124h70l-88 -400h-81l64 292l-80 -66zM441 0l14 63q155 91 212 136t57 87q0 26 -21.5 40.5t-53.5 14.5q-69 0 -112 -45l-35 54q59 56 150 56q65 0 110 -29.5t45 -83.5q0 -56 -58 -108.5t-175 -119.5h185l-14 -65h-304z" />
+<glyph unicode="&#xbe;" horiz-adv-x="902" d="M61 333l51 48q40 -56 116 -56q36 0 56 18t20 46q0 23 -25 36.5t-68 13.5q-26 0 -32 -1l14 65q24 -2 63 -2q38 0 59 15t21 41q0 24 -24.5 37.5t-60.5 13.5q-59 0 -105 -39l-29 51q62 53 141 53q71 0 115.5 -27.5t44.5 -77.5q0 -41 -30 -69.5t-81 -32.5q34 -7 56 -29.5 t22 -56.5q0 -47 -42 -83.5t-111 -36.5q-59 0 -104 19.5t-67 53.5zM167 0l573 667h68l-574 -667h-67zM508 92l12 56l220 252h112l-54 -244h55l-14 -64h-55l-20 -92h-80l20 92h-196zM603 156h115l38 171z" />
+<glyph unicode="&#xbf;" horiz-adv-x="396" d="M-39 -48q0 49 24.5 85.5t59 57.5t69 38t59 39.5t24.5 51.5q0 19 -13 33l95 29q19 -29 19 -70q0 -40 -22 -70.5t-53 -49t-62 -34.5t-53 -37.5t-22 -48.5q0 -31 25.5 -49.5t73.5 -18.5q77 0 135 55l50 -80q-88 -78 -202 -78q-89 0 -148 40t-59 107zM203 418q0 31 22.5 53 t53.5 22q27 0 45.5 -19t18.5 -45q0 -31 -22.5 -53.5t-54.5 -22.5q-26 0 -44.5 19t-18.5 46z" />
+<glyph unicode="&#xc0;" horiz-adv-x="673" d="M-53 0l409 667h146l115 -667h-127l-21 128h-306l-77 -128h-139zM219 231h240l-50 318zM294 867h100l108 -144h-75z" />
+<glyph unicode="&#xc1;" horiz-adv-x="673" d="M-53 0l409 667h146l115 -667h-127l-21 128h-306l-77 -128h-139zM219 231h240l-50 318zM378 723l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xc2;" horiz-adv-x="673" d="M-53 0l409 667h146l115 -667h-127l-21 128h-306l-77 -128h-139zM219 231h240l-50 318zM298 723l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xc3;" horiz-adv-x="673" d="M-53 0l409 667h146l115 -667h-127l-21 128h-306l-77 -128h-139zM219 231h240l-50 318zM281 727q26 134 118 134q24 0 42 -12t26.5 -27t22 -27t29.5 -12q35 0 52 72h59q-29 -134 -119 -134q-24 0 -42 12t-26.5 27t-22 27t-29.5 12q-36 0 -52 -72h-58z" />
+<glyph unicode="&#xc4;" horiz-adv-x="673" d="M-53 0l409 667h146l115 -667h-127l-21 128h-306l-77 -128h-139zM219 231h240l-50 318zM289 768q0 26 20 45.5t46 19.5q23 0 37.5 -14.5t14.5 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM498 768q0 26 20 45.5t46 19.5q22 0 37 -14.5t15 -37.5 q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xc5;" horiz-adv-x="673" d="M-53 0l409 667h146l115 -667h-127l-21 128h-306l-77 -128h-139zM219 231h240l-50 318zM354 782q0 45 33.5 78.5t78.5 33.5q41 0 67 -26t26 -67q0 -46 -33 -79t-79 -33q-41 0 -67 26t-26 67zM405 787q0 -21 13 -34t33 -13q23 0 40 16.5t17 39.5q0 21 -12.5 34t-33.5 13 q-23 0 -40 -17t-17 -39z" />
+<glyph unicode="&#xc6;" horiz-adv-x="959" d="M-56 0l557 667h504l-23 -103h-340l-38 -173h333l-23 -103h-333l-41 -185h340l-22 -103h-457l28 128h-243l-105 -128h-137zM265 231h187l68 312z" />
+<glyph unicode="&#xc7;" horiz-adv-x="682" d="M51 284q0 173 113 283.5t269 110.5q107 0 179.5 -48t106.5 -127l-112 -40q-23 54 -70.5 82.5t-109.5 28.5q-103 0 -178.5 -81t-75.5 -202q0 -88 55.5 -143.5t148.5 -55.5q96 0 166 76l89 -62q-52 -62 -121.5 -90t-140.5 -28q-14 0 -20 1l-26 -42q15 11 32 11 q26 0 42.5 -16.5t16.5 -44.5q0 -41 -31 -66t-80 -25q-74 0 -114 40l31 43q35 -35 84 -35q26 0 40.5 11t14.5 29q0 26 -33 26q-19 0 -32 -15l-35 23l39 67q-111 20 -179.5 97t-68.5 192z" />
+<glyph unicode="&#xc8;" horiz-adv-x="577" d="M17 0l147 667h457l-23 -103h-340l-38 -173h333l-23 -103h-333l-41 -185h340l-22 -103h-457zM259 867h100l108 -144h-75z" />
+<glyph unicode="&#xc9;" horiz-adv-x="577" d="M17 0l147 667h457l-23 -103h-340l-38 -173h333l-23 -103h-333l-41 -185h340l-22 -103h-457zM342 723l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xca;" horiz-adv-x="577" d="M17 0l147 667h457l-23 -103h-340l-38 -173h333l-23 -103h-333l-41 -185h340l-22 -103h-457zM262 723l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xcb;" horiz-adv-x="577" d="M17 0l147 667h457l-23 -103h-340l-38 -173h333l-23 -103h-333l-41 -185h340l-22 -103h-457zM253 768q0 26 20 45.5t46 19.5q23 0 37.5 -14.5t14.5 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM462 768q0 26 20 45.5t46 19.5q22 0 37 -14.5t15 -37.5 q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xcc;" horiz-adv-x="259" d="M17 0l147 667h117l-147 -667h-117zM88 867h100l108 -144h-75z" />
+<glyph unicode="&#xcd;" horiz-adv-x="259" d="M17 0l147 667h117l-147 -667h-117zM172 723l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xce;" horiz-adv-x="259" d="M17 0l147 667h117l-147 -667h-117zM92 723l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xcf;" horiz-adv-x="259" d="M17 0l147 667h117l-147 -667h-117zM83 768q0 26 20 45.5t46 19.5q23 0 37.5 -14.5t14.5 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM292 768q0 26 20 45.5t46 19.5q22 0 37 -14.5t15 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xd0;" horiz-adv-x="736" d="M18 286l21 95h88l63 286h243q115 0 199.5 -81t84.5 -205q0 -55 -15 -108t-48.5 -103t-82 -87.5t-121 -60t-160.5 -22.5h-247l63 286h-88zM182 103h131q127 1 204.5 79.5t77.5 191.5q0 81 -52 135.5t-132 54.5h-127l-41 -183h158l-21 -95h-158z" />
+<glyph unicode="&#xd1;" horiz-adv-x="720" d="M17 0l147 667h120l234 -481l107 481h117l-147 -667h-113l-239 494l-109 -494h-117zM306 727q26 134 118 134q24 0 42 -12t26.5 -27t22 -27t29.5 -12q35 0 52 72h59q-29 -134 -119 -134q-24 0 -42 12t-26.5 27t-22 27t-29.5 12q-36 0 -52 -72h-58z" />
+<glyph unicode="&#xd2;" horiz-adv-x="765" d="M51 284q0 165 110.5 279.5t271.5 114.5q138 0 228.5 -80.5t90.5 -214.5q0 -166 -110.5 -280.5t-271.5 -114.5q-138 0 -228.5 80.5t-90.5 215.5zM173 291q0 -92 57.5 -145.5t146.5 -53.5q105 0 179 81.5t74 201.5q0 91 -58 145t-146 54q-105 0 -179 -81.5t-74 -201.5z M343 867h100l108 -144h-75z" />
+<glyph unicode="&#xd3;" horiz-adv-x="765" d="M51 284q0 165 110.5 279.5t271.5 114.5q138 0 228.5 -80.5t90.5 -214.5q0 -166 -110.5 -280.5t-271.5 -114.5q-138 0 -228.5 80.5t-90.5 215.5zM173 291q0 -92 57.5 -145.5t146.5 -53.5q105 0 179 81.5t74 201.5q0 91 -58 145t-146 54q-105 0 -179 -81.5t-74 -201.5z M426 723l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xd4;" horiz-adv-x="765" d="M51 284q0 165 110.5 279.5t271.5 114.5q138 0 228.5 -80.5t90.5 -214.5q0 -166 -110.5 -280.5t-271.5 -114.5q-138 0 -228.5 80.5t-90.5 215.5zM173 291q0 -92 57.5 -145.5t146.5 -53.5q105 0 179 81.5t74 201.5q0 91 -58 145t-146 54q-105 0 -179 -81.5t-74 -201.5z M347 723l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xd5;" horiz-adv-x="765" d="M51 284q0 165 110.5 279.5t271.5 114.5q138 0 228.5 -80.5t90.5 -214.5q0 -166 -110.5 -280.5t-271.5 -114.5q-138 0 -228.5 80.5t-90.5 215.5zM173 291q0 -92 57.5 -145.5t146.5 -53.5q105 0 179 81.5t74 201.5q0 91 -58 145t-146 54q-105 0 -179 -81.5t-74 -201.5z M329 727q26 134 118 134q24 0 42 -12t26.5 -27t22 -27t29.5 -12q35 0 52 72h59q-29 -134 -119 -134q-24 0 -42 12t-26.5 27t-22 27t-29.5 12q-36 0 -52 -72h-58z" />
+<glyph unicode="&#xd6;" horiz-adv-x="765" d="M51 284q0 165 110.5 279.5t271.5 114.5q138 0 228.5 -80.5t90.5 -214.5q0 -166 -110.5 -280.5t-271.5 -114.5q-138 0 -228.5 80.5t-90.5 215.5zM173 291q0 -92 57.5 -145.5t146.5 -53.5q105 0 179 81.5t74 201.5q0 91 -58 145t-146 54q-105 0 -179 -81.5t-74 -201.5z M336 768q0 26 20 45.5t46 19.5q22 0 37 -14.5t15 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM545 768q0 26 20 45.5t46 19.5q23 0 37.5 -14.5t14.5 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xd7;" horiz-adv-x="502" d="M44 191l180 147l-111 142l54 44l109 -142l179 146l42 -52l-179 -147l110 -142l-53 -43l-111 142l-178 -146z" />
+<glyph unicode="&#xd8;" horiz-adv-x="765" d="M37 0l84 89q-70 78 -70 195q0 165 110.5 279.5t271.5 114.5q111 0 193 -54l41 43h87l-79 -84q77 -80 77 -200q0 -166 -110.5 -280.5t-271.5 -114.5q-119 0 -202 59l-44 -47h-87zM173 291q0 -67 31 -114l343 363q-53 34 -121 34q-105 0 -179 -81.5t-74 -201.5zM248 131 q52 -39 129 -39q105 0 179 81.5t74 201.5q0 70 -37 121z" />
+<glyph unicode="&#xd9;" horiz-adv-x="719" d="M70 216q0 22 5 47l89 404h118l-88 -401q-4 -14 -4 -37q0 -60 41.5 -99t115.5 -39q149 0 187 175l89 401h118l-89 -403q-29 -133 -100 -204.5t-205 -71.5q-133 0 -205 61.5t-72 166.5zM318 867h100l108 -144h-75z" />
+<glyph unicode="&#xda;" horiz-adv-x="719" d="M70 216q0 22 5 47l89 404h118l-88 -401q-4 -14 -4 -37q0 -60 41.5 -99t115.5 -39q149 0 187 175l89 401h118l-89 -403q-29 -133 -100 -204.5t-205 -71.5q-133 0 -205 61.5t-72 166.5zM402 723l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xdb;" horiz-adv-x="719" d="M70 216q0 22 5 47l89 404h118l-88 -401q-4 -14 -4 -37q0 -60 41.5 -99t115.5 -39q149 0 187 175l89 401h118l-89 -403q-29 -133 -100 -204.5t-205 -71.5q-133 0 -205 61.5t-72 166.5zM322 723l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xdc;" horiz-adv-x="719" d="M70 216q0 22 5 47l89 404h118l-88 -401q-4 -14 -4 -37q0 -60 41.5 -99t115.5 -39q149 0 187 175l89 401h118l-89 -403q-29 -133 -100 -204.5t-205 -71.5q-133 0 -205 61.5t-72 166.5zM312 768q0 26 20 45.5t46 19.5q22 0 37 -14.5t15 -37.5q0 -26 -20 -45.5t-46 -19.5 q-22 0 -37 15t-15 37zM521 768q0 26 20 45.5t46 19.5q23 0 37.5 -14.5t14.5 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xdd;" horiz-adv-x="637" d="M94 667h127l121 -286l245 286h141l-344 -390l-61 -277h-117l61 277zM361 723l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xde;" horiz-adv-x="608" d="M17 0l147 667h117l-25 -113h168q77 0 129 -52.5t52 -126.5q0 -93 -67 -165.5t-199 -72.5h-175l-30 -137h-117zM187 240h159q64 0 100.5 36t36.5 87q0 38 -27.5 63t-67.5 25h-155z" />
+<glyph unicode="&#xdf;" horiz-adv-x="623" d="M14 0l107 485q19 85 76.5 138.5t148.5 53.5q76 0 136 -37t60 -95q0 -45 -28.5 -76.5t-63 -46t-63 -35t-28.5 -45.5q0 -19 23.5 -32.5t57.5 -24.5t67.5 -25t57 -42t23.5 -67q0 -66 -54.5 -114.5t-142.5 -48.5q-70 0 -119 21t-91 68l61 67q58 -72 152 -72q41 0 65 20t24 47 q0 24 -35.5 41.5t-78.5 29t-78.5 41t-35.5 75.5q0 38 18 66.5t44 45t52 29.5t44 27.5t18 32.5q0 26 -26 41.5t-63 15.5q-44 0 -74.5 -26t-41.5 -73l-107 -485h-105z" />
+<glyph unicode="&#xe0;" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-107 -483h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136zM208 700h100l108 -144h-75z" />
+<glyph unicode="&#xe1;" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-107 -483h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136zM291 556l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xe2;" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-107 -483h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136zM213 556l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xe3;" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-107 -483h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136zM196 560q26 134 118 134q24 0 42 -12t26.5 -27t22 -27t29.5 -12q35 0 52 72h59q-29 -134 -119 -134q-24 0 -42 12t-26.5 27t-22 27t-29.5 12q-36 0 -52 -72h-58z" />
+<glyph unicode="&#xe4;" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-107 -483h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136zM203 601q0 26 20 45.5t46 19.5q23 0 37.5 -15t14.5 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM412 601q0 26 20 45.5t46 19.5q22 0 37 -15t15 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xe5;" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-107 -483h-105l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5 q-69 0 -114.5 -58t-45.5 -136zM271 629q0 45 33.5 78.5t78.5 33.5q41 0 67 -26t26 -67q0 -46 -33 -79t-79 -33q-41 0 -67 26t-26 67zM322 634q0 -21 13 -34t33 -13q23 0 40 16.5t17 39.5q0 21 -12.5 34t-33.5 13q-23 0 -40 -17t-17 -39z" />
+<glyph unicode="&#xe6;" horiz-adv-x="924" d="M32 187q0 77 29 146.5t88.5 115.5t136.5 46q51 0 93.5 -21.5t66.5 -59.5l15 69h105l-15 -70q66 82 160 82q87 0 134 -54.5t47 -152.5q0 -44 -10 -81h-372q-1 -3 -1 -17q0 -45 38.5 -79.5t107.5 -34.5q76 0 126 41l34 -76q-76 -53 -156 -53q-136 0 -179 107l-21 -95h-105 l14 64q-62 -76 -151 -76q-84 0 -134.5 52.5t-50.5 146.5zM142 208q0 -58 33 -92.5t86 -34.5q37 0 70.5 19t55.5 49l42 187q-17 29 -50.5 47.5t-76.5 18.5q-69 0 -114.5 -58t-45.5 -136zM520 281h274q1 3 1 14q0 50 -31.5 82t-91.5 32q-56 0 -99 -38t-53 -90z" />
+<glyph unicode="&#xe7;" horiz-adv-x="497" d="M33 206q0 120 80.5 204.5t196.5 84.5q134 0 190 -93l-79 -60q-35 60 -110 60q-76 0 -123.5 -56.5t-47.5 -135.5q0 -61 37.5 -95t96.5 -34q65 0 110 52l58 -70q-71 -75 -178 -75h-10l-25 -41q15 11 32 11q26 0 42.5 -16.5t16.5 -44.5q0 -41 -31 -66t-80 -25q-74 0 -114 40 l31 43q35 -35 84 -35q26 0 40.5 11t14.5 29q0 26 -33 26q-18 0 -32 -15l-35 23l39 66q-79 16 -125 72t-46 140z" />
+<glyph unicode="&#xe8;" horiz-adv-x="557" d="M33 204q0 120 79.5 205.5t196.5 85.5q95 0 154 -58.5t59 -155.5q0 -40 -9 -74h-374q0 -1 -0.5 -7.5t-0.5 -9.5q0 -45 39 -80.5t108 -35.5q77 0 129 40l33 -73q-72 -53 -170 -53q-113 0 -178.5 58t-65.5 158zM150 281h277q1 3 1 14q0 49 -33 81.5t-94 32.5 q-56 0 -98.5 -38t-52.5 -90zM206 700h100l108 -144h-75z" />
+<glyph unicode="&#xe9;" horiz-adv-x="557" d="M33 204q0 120 79.5 205.5t196.5 85.5q95 0 154 -58.5t59 -155.5q0 -40 -9 -74h-374q0 -1 -0.5 -7.5t-0.5 -9.5q0 -45 39 -80.5t108 -35.5q77 0 129 40l33 -73q-72 -53 -170 -53q-113 0 -178.5 58t-65.5 158zM150 281h277q1 3 1 14q0 49 -33 81.5t-94 32.5 q-56 0 -98.5 -38t-52.5 -90zM291 556l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xea;" horiz-adv-x="557" d="M33 204q0 120 79.5 205.5t196.5 85.5q95 0 154 -58.5t59 -155.5q0 -40 -9 -74h-374q0 -1 -0.5 -7.5t-0.5 -9.5q0 -45 39 -80.5t108 -35.5q77 0 129 40l33 -73q-72 -53 -170 -53q-113 0 -178.5 58t-65.5 158zM150 281h277q1 3 1 14q0 49 -33 81.5t-94 32.5 q-56 0 -98.5 -38t-52.5 -90zM209 556l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xeb;" horiz-adv-x="557" d="M33 204q0 120 79.5 205.5t196.5 85.5q95 0 154 -58.5t59 -155.5q0 -40 -9 -74h-374q0 -1 -0.5 -7.5t-0.5 -9.5q0 -45 39 -80.5t108 -35.5q77 0 129 40l33 -73q-72 -53 -170 -53q-113 0 -178.5 58t-65.5 158zM150 281h277q1 3 1 14q0 49 -33 81.5t-94 32.5 q-56 0 -98.5 -38t-52.5 -90zM202 601q0 26 20 45.5t46 19.5q22 0 37 -15t15 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM411 601q0 26 20 45.5t46 19.5q23 0 37.5 -15t14.5 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xec;" horiz-adv-x="241" d="M14 0l107 483h105l-107 -483h-105zM42 700h100l108 -144h-75z" />
+<glyph unicode="&#xed;" horiz-adv-x="241" d="M14 0l107 483h105l-107 -483h-105zM127 556l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xee;" horiz-adv-x="241" d="M14 0l107 483h105l-107 -483h-105zM47 556l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xef;" horiz-adv-x="241" d="M14 0l107 483h105l-107 -483h-105zM38 601q0 26 20 45.5t46 19.5q22 0 37 -15t15 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM247 601q0 26 20 45.5t46 19.5q23 0 37.5 -15t14.5 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xf0;" horiz-adv-x="573" d="M31 196q0 114 71.5 193t174.5 79q55 0 98.5 -27t66.5 -81q-24 88 -119 183l-159 -47l-15 50l130 38q-38 32 -59 48l74 77q57 -43 102 -90l110 33l15 -50l-87 -26q109 -132 109 -272q0 -133 -76.5 -224.5t-199.5 -91.5q-106 0 -171 57.5t-65 150.5zM140 203 q0 -56 33.5 -89t94.5 -33q66 0 111.5 51t45.5 124q0 49 -34 84t-97 35q-64 0 -109 -50t-45 -122z" />
+<glyph unicode="&#xf1;" horiz-adv-x="567" d="M14 0l107 483h105l-15 -66q82 78 165 78q68 0 108 -32.5t40 -89.5q0 -15 -5 -40l-74 -333h-105l67 303q5 22 5 30q0 35 -23 52t-58 17q-73 0 -138 -65l-74 -337h-105zM191 560q26 134 118 134q24 0 42 -12t26.5 -27t22 -27t29.5 -12q35 0 52 72h59q-29 -134 -119 -134 q-24 0 -42 12t-26.5 27t-22 27t-29.5 12q-36 0 -52 -72h-58z" />
+<glyph unicode="&#xf2;" horiz-adv-x="573" d="M32 205q0 116 79 203t196 87q108 0 170 -60.5t62 -157.5q0 -116 -79 -202.5t-196 -86.5q-108 0 -170 60t-62 157zM141 210q0 -60 33.5 -94.5t92.5 -34.5q70 0 116.5 57.5t46.5 134.5q0 60 -33.5 94.5t-92.5 34.5q-70 0 -116.5 -58t-46.5 -134zM209 700h100l108 -144h-75z " />
+<glyph unicode="&#xf3;" horiz-adv-x="573" d="M32 205q0 116 79 203t196 87q108 0 170 -60.5t62 -157.5q0 -116 -79 -202.5t-196 -86.5q-108 0 -170 60t-62 157zM141 210q0 -60 33.5 -94.5t92.5 -34.5q70 0 116.5 57.5t46.5 134.5q0 60 -33.5 94.5t-92.5 34.5q-70 0 -116.5 -58t-46.5 -134zM291 556l172 144h102 l-197 -144h-77z" />
+<glyph unicode="&#xf4;" horiz-adv-x="573" d="M32 205q0 116 79 203t196 87q108 0 170 -60.5t62 -157.5q0 -116 -79 -202.5t-196 -86.5q-108 0 -170 60t-62 157zM141 210q0 -60 33.5 -94.5t92.5 -34.5q70 0 116.5 57.5t46.5 134.5q0 60 -33.5 94.5t-92.5 34.5q-70 0 -116.5 -58t-46.5 -134zM212 556l125 144h96 l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xf5;" horiz-adv-x="573" d="M32 205q0 116 79 203t196 87q108 0 170 -60.5t62 -157.5q0 -116 -79 -202.5t-196 -86.5q-108 0 -170 60t-62 157zM141 210q0 -60 33.5 -94.5t92.5 -34.5q70 0 116.5 57.5t46.5 134.5q0 60 -33.5 94.5t-92.5 34.5q-70 0 -116.5 -58t-46.5 -134zM197 560q26 134 118 134 q24 0 42 -12t26.5 -27t22 -27t29.5 -12q35 0 52 72h59q-29 -134 -119 -134q-24 0 -42 12t-26.5 27t-22 27t-29.5 12q-36 0 -52 -72h-58z" />
+<glyph unicode="&#xf6;" horiz-adv-x="573" d="M32 205q0 116 79 203t196 87q108 0 170 -60.5t62 -157.5q0 -116 -79 -202.5t-196 -86.5q-108 0 -170 60t-62 157zM141 210q0 -60 33.5 -94.5t92.5 -34.5q70 0 116.5 57.5t46.5 134.5q0 60 -33.5 94.5t-92.5 34.5q-70 0 -116.5 -58t-46.5 -134zM203 601q0 26 20 45.5 t46 19.5q23 0 37.5 -15t14.5 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM412 601q0 26 20 45.5t46 19.5q22 0 37 -15t15 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M42 303l15 68h453l-15 -68h-453zM180 147q0 24 17.5 41.5t41.5 17.5q21 0 35.5 -15t14.5 -35q0 -24 -18 -41.5t-42 -17.5q-20 0 -34.5 15t-14.5 35zM261 515q0 24 17.5 41.5t42.5 17.5q20 0 34.5 -15t14.5 -35q0 -25 -17.5 -42t-41.5 -17q-21 0 -35.5 15t-14.5 35z" />
+<glyph unicode="&#xf8;" horiz-adv-x="573" d="M-6 0l77 74q-39 55 -39 131q0 116 79 203t196 87q93 0 155 -48l37 36h73l-75 -72q42 -56 42 -134q0 -116 -79 -202.5t-196 -86.5q-97 0 -159 49l-39 -37h-72zM141 210q0 -32 11 -59l235 225q-32 26 -83 26q-70 0 -116.5 -58t-46.5 -134zM181 109q33 -28 86 -28 q70 0 116.5 57.5t46.5 134.5q0 33 -13 62z" />
+<glyph unicode="&#xf9;" horiz-adv-x="567" d="M42 110q0 15 5 40l74 333h105l-67 -302q-5 -22 -5 -31q0 -35 24.5 -52t65.5 -17q63 0 129 66l74 336h105l-107 -483h-105l15 66q-82 -78 -165 -78q-68 0 -108 32.5t-40 89.5zM206 700h100l108 -144h-75z" />
+<glyph unicode="&#xfa;" horiz-adv-x="567" d="M42 110q0 15 5 40l74 333h105l-67 -302q-5 -22 -5 -31q0 -35 24.5 -52t65.5 -17q63 0 129 66l74 336h105l-107 -483h-105l15 66q-82 -78 -165 -78q-68 0 -108 32.5t-40 89.5zM289 556l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xfb;" horiz-adv-x="567" d="M42 110q0 15 5 40l74 333h105l-67 -302q-5 -22 -5 -31q0 -35 24.5 -52t65.5 -17q63 0 129 66l74 336h105l-107 -483h-105l15 66q-82 -78 -165 -78q-68 0 -108 32.5t-40 89.5zM210 556l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#xfc;" horiz-adv-x="567" d="M42 110q0 15 5 40l74 333h105l-67 -302q-5 -22 -5 -31q0 -35 24.5 -52t65.5 -17q63 0 129 66l74 336h105l-107 -483h-105l15 66q-82 -78 -165 -78q-68 0 -108 32.5t-40 89.5zM202 601q0 26 20 45.5t46 19.5q22 0 37 -15t15 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15 t-15 37zM411 601q0 26 20 45.5t46 19.5q23 0 37.5 -15t14.5 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#xfd;" horiz-adv-x="503" d="M-47 -185l35 92q18 -8 48 -8q38 0 65 40l38 58l-88 486h109l60 -362l222 362h116l-360 -570q-37 -58 -77 -83.5t-95 -25.5q-42 0 -73 11zM255 556l172 144h102l-197 -144h-77z" />
+<glyph unicode="&#xfe;" horiz-adv-x="578" d="M-27 -184l188 851h105l-55 -248q64 76 152 76q83 0 134 -53t51 -147q0 -120 -70 -213.5t-184 -93.5q-108 0 -160 81l-56 -253h-105zM151 146q17 -29 50.5 -47t76.5 -18q69 0 114.5 57.5t45.5 135.5q0 58 -33.5 93t-85.5 35q-74 0 -127 -69z" />
+<glyph unicode="&#xff;" horiz-adv-x="503" d="M-47 -185l35 92q18 -8 48 -8q38 0 65 40l38 58l-88 486h109l60 -362l222 362h116l-360 -570q-37 -58 -77 -83.5t-95 -25.5q-42 0 -73 11zM167 601q0 26 20 45.5t46 19.5q23 0 37.5 -15t14.5 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM376 601q0 26 20 45.5 t46 19.5q22 0 37 -15t15 -37q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#x152;" horiz-adv-x="1093" d="M51 284q0 86 30.5 160t82 124.5t120.5 79.5t144 29q167 0 227 -132l26 122h457l-22 -103h-340l-38 -173h333l-23 -103h-333l-41 -185h340l-23 -103h-457l19 87q-81 -99 -222 -99q-121 0 -200.5 83t-79.5 213zM173 291q0 -90 55 -144.5t142 -54.5q63 0 119.5 32t91.5 87 l46 210q-16 72 -67 112t-127 40q-110 0 -185 -82t-75 -200z" />
+<glyph unicode="&#x153;" horiz-adv-x="944" d="M32 205q0 115 77.5 202.5t195.5 87.5q74 0 123.5 -38t65.5 -83q18 24 34 40.5t42 37.5t59.5 32t70.5 11q91 0 151 -57t60 -157q0 -33 -9 -74h-370q0 -1 -0.5 -7t-0.5 -10q0 -47 38.5 -81.5t106.5 -34.5q76 0 127 40l33 -73q-70 -53 -168 -53q-78 0 -132 37.5t-70 82.5 q-21 -26 -34.5 -40.5t-40 -36.5t-58.5 -32.5t-71 -10.5q-104 0 -167 58t-63 159zM141 210q0 -60 33 -94.5t91 -34.5q69 0 115 56.5t46 135.5q0 64 -35.5 96.5t-88.5 32.5q-67 0 -114 -56.5t-47 -135.5zM543 281h273q1 4 1 14q0 49 -32 81.5t-92 32.5q-58 0 -100.5 -40 t-49.5 -88z" />
+<glyph unicode="&#x178;" horiz-adv-x="637" d="M94 667h127l121 -286l245 286h141l-344 -390l-61 -277h-117l61 277zM273 768q0 26 20 45.5t46 19.5q23 0 37.5 -14.5t14.5 -37.5q0 -26 -20 -45.5t-46 -19.5q-22 0 -37 15t-15 37zM482 768q0 26 20 45.5t46 19.5q22 0 37 -14.5t15 -37.5q0 -26 -20 -45.5t-46 -19.5 q-22 0 -37 15t-15 37z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="285" d="M69 556l125 144h96l64 -144h-65l-56 96l-96 -96h-68z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="321" d="M70 560q26 134 118 134q24 0 42 -12t26.5 -27t22 -27t29.5 -12q35 0 52 72h59q-29 -134 -119 -134q-24 0 -42 12t-26.5 27t-22 27t-29.5 12q-36 0 -52 -72h-58z" />
+<glyph unicode="&#x2000;" horiz-adv-x="447" />
+<glyph unicode="&#x2001;" horiz-adv-x="894" />
+<glyph unicode="&#x2002;" horiz-adv-x="447" />
+<glyph unicode="&#x2003;" horiz-adv-x="894" />
+<glyph unicode="&#x2004;" horiz-adv-x="298" />
+<glyph unicode="&#x2005;" horiz-adv-x="223" />
+<glyph unicode="&#x2006;" horiz-adv-x="149" />
+<glyph unicode="&#x2007;" horiz-adv-x="149" />
+<glyph unicode="&#x2008;" horiz-adv-x="111" />
+<glyph unicode="&#x2009;" horiz-adv-x="178" />
+<glyph unicode="&#x200a;" horiz-adv-x="49" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M19 197l20 90h240l-20 -90h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M19 197l20 90h240l-20 -90h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M19 197l20 90h240l-20 -90h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M19 197l20 90h533l-20 -90h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M19 197l20 90h773l-20 -90h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="244" d="M98 493q0 52 38.5 104t95.5 80l39 -41q-71 -34 -92 -84q2 1 9 1q23 0 38.5 -15.5t15.5 -41.5q0 -30 -23.5 -52t-53.5 -22q-28 0 -47.5 18.5t-19.5 52.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="244" d="M103 462q71 34 92 84h-9q-23 0 -38.5 15t-15.5 41q0 30 23.5 52.5t53.5 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-95.5 -80z" />
+<glyph unicode="&#x201a;" horiz-adv-x="245" d="M-18 -86q71 34 92 84h-10q-22 0 -37.5 15t-15.5 41q0 30 23 52.5t53 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-94.5 -80z" />
+<glyph unicode="&#x201c;" horiz-adv-x="429" d="M102 493q0 52 38.5 104t95.5 80l39 -41q-71 -34 -92 -84q2 1 9 1q23 0 38.5 -15.5t15.5 -41.5q0 -30 -23.5 -52t-53.5 -22q-28 0 -47.5 18.5t-19.5 52.5zM287 493q0 52 38.5 104.5t94.5 79.5l39 -41q-71 -34 -92 -84q2 1 10 1q22 0 37.5 -15.5t15.5 -41.5q0 -30 -23 -52 t-53 -22q-29 0 -48 18.5t-19 52.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="429" d="M103 462q71 34 92 84h-9q-23 0 -38.5 15t-15.5 41q0 30 23.5 52.5t53.5 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-95.5 -80zM288 462q71 34 92 84h-10q-22 0 -37.5 15t-15.5 41q0 30 23 52.5t53 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-94.5 -80z" />
+<glyph unicode="&#x201e;" horiz-adv-x="429" d="M-18 -86q71 34 92 84h-10q-22 0 -37.5 15t-15.5 41q0 30 23 52.5t53 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-94.5 -80zM166 -86q71 34 92 84h-9q-23 0 -38.5 15t-15.5 41q0 30 23.5 52.5t53.5 22.5q28 0 47.5 -19t19.5 -53q0 -52 -38.5 -104t-95.5 -80z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M64 231q0 51 38 88t89 37q44 0 73.5 -29.5t29.5 -73.5q0 -51 -38.5 -87.5t-89.5 -36.5q-44 0 -73 29.5t-29 72.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="735" d="M11 53q0 31 22.5 53.5t54.5 22.5q26 0 44.5 -19t18.5 -46q0 -31 -22.5 -53t-53.5 -22q-27 0 -45.5 19t-18.5 45zM256 53q0 31 22.5 53.5t54.5 22.5q26 0 44.5 -19t18.5 -46q0 -31 -22.5 -53t-53.5 -22q-27 0 -45.5 19t-18.5 45zM501 53q0 31 22.5 53.5t54.5 22.5 q26 0 44.5 -19t18.5 -46q0 -31 -22.5 -53t-53.5 -22q-27 0 -45.5 19t-18.5 45z" />
+<glyph unicode="&#x202f;" horiz-adv-x="178" />
+<glyph unicode="&#x2039;" horiz-adv-x="319" d="M29 243l200 177h103l-204 -182l116 -175h-95z" />
+<glyph unicode="&#x203a;" horiz-adv-x="319" d="M-11 63l204 182l-116 175h95l120 -180l-200 -177h-103z" />
+<glyph unicode="&#x205f;" horiz-adv-x="223" />
+<glyph unicode="&#x20ac;" horiz-adv-x="703" d="M22 230l15 67h40q1 34 8 74h-32l15 67h37q43 110 140 175t214 65q107 0 179.5 -48t106.5 -127l-112 -40q-23 54 -71 82.5t-109 28.5q-67 0 -125.5 -36.5t-92.5 -99.5h282l-16 -67h-292q-10 -38 -10 -74h286l-15 -67h-263q18 -63 69.5 -100.5t126.5 -37.5q96 0 166 76 l89 -62q-52 -62 -121.5 -90t-140.5 -28q-123 0 -209.5 65.5t-105.5 176.5h-59z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M105 641l5 26h152l-5 -26h-62l-43 -194h-28l43 194h-62zM250 447l48 220h43l29 -160l99 160h43l-48 -220h-28l40 182l-115 -182h-8l-35 182l-40 -182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern u1="K" u2="a" k="15" />
+<hkern u1="L" u2="a" k="10" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="T" u2="a" k="85" />
+<hkern u1="V" u2="a" k="65" />
+<hkern u1="W" u2="a" k="40" />
+<hkern u1="Y" u2="a" k="115" />
+<hkern u1="a" u2="&#x2122;" k="10" />
+<hkern u1="a" u2="&#x201d;" k="10" />
+<hkern u1="a" u2="&#x201c;" k="10" />
+<hkern u1="a" u2="&#x2019;" k="10" />
+<hkern u1="a" u2="&#x2018;" k="10" />
+<hkern u1="a" u2="&#x178;" k="110" />
+<hkern u1="a" u2="&#xdd;" k="110" />
+<hkern u1="a" u2="&#xae;" k="10" />
+<hkern u1="a" u2="Y" k="110" />
+<hkern u1="a" u2="W" k="45" />
+<hkern u1="a" u2="V" k="70" />
+<hkern u1="a" u2="T" k="100" />
+<hkern u1="a" u2="&#x3f;" k="40" />
+<hkern u1="a" u2="&#x27;" k="10" />
+<hkern u1="a" u2="&#x22;" k="10" />
+<hkern u1="&#xdd;" u2="a" k="115" />
+<hkern u1="&#x178;" u2="a" k="115" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="15" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="15" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="5" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-5" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="-5" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="5" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="13" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="5" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="38" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="33" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="35" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="15" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="25" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="65" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="10" />
+<hkern g1="G" 	g2="question" 	k="10" />
+<hkern g1="G" 	g2="T" 	k="20" />
+<hkern g1="G" 	g2="W" 	k="13" />
+<hkern g1="G" 	g2="V" 	k="25" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="35" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="5" />
+<hkern g1="G" 	g2="X" 	k="5" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="50" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="15" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="45" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="K" 	g2="x" 	k="30" />
+<hkern g1="L" 	g2="question" 	k="110" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="130" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="L" 	g2="asterisk" 	k="170" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="25" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="70" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="125" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
+<hkern g1="L" 	g2="t" 	k="35" />
+<hkern g1="L" 	g2="w" 	k="35" />
+<hkern g1="L" 	g2="v" 	k="55" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="55" />
+<hkern g1="L" 	g2="ampersand" 	k="5" />
+<hkern g1="L" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="15" />
+<hkern g1="P" 	g2="J" 	k="115" />
+<hkern g1="P" 	g2="W" 	k="5" />
+<hkern g1="P" 	g2="V" 	k="5" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="75" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="P" 	g2="X" 	k="15" />
+<hkern g1="P" 	g2="ampersand" 	k="30" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="30" />
+<hkern g1="P" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="15" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="5" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="22" />
+<hkern g1="R" 	g2="ampersand" 	k="5" />
+<hkern g1="R" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="10" />
+<hkern g1="S" 	g2="T" 	k="20" />
+<hkern g1="S" 	g2="W" 	k="10" />
+<hkern g1="S" 	g2="V" 	k="13" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="33" />
+<hkern g1="S" 	g2="t" 	k="15" />
+<hkern g1="S" 	g2="w" 	k="5" />
+<hkern g1="S" 	g2="v" 	k="10" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="10" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="5" />
+<hkern g1="S" 	g2="x" 	k="15" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="13" />
+<hkern g1="T" 	g2="J" 	k="85" />
+<hkern g1="T" 	g2="S" 	k="-5" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="25" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="75" />
+<hkern g1="T" 	g2="w" 	k="40" />
+<hkern g1="T" 	g2="v" 	k="40" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="40" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="55" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="95" />
+<hkern g1="T" 	g2="ampersand" 	k="40" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="105" />
+<hkern g1="T" 	g2="x" 	k="50" />
+<hkern g1="T" 	g2="s" 	k="85" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="75" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="5" />
+<hkern g1="V" 	g2="J" 	k="95" />
+<hkern g1="V" 	g2="S" 	k="-12" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="25" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="50" />
+<hkern g1="V" 	g2="t" 	k="15" />
+<hkern g1="V" 	g2="w" 	k="10" />
+<hkern g1="V" 	g2="v" 	k="15" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="10" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="20" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="55" />
+<hkern g1="V" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="25" />
+<hkern g1="V" 	g2="s" 	k="45" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="50" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
+<hkern g1="W" 	g2="J" 	k="50" />
+<hkern g1="W" 	g2="S" 	k="-10" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="15" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="15" />
+<hkern g1="W" 	g2="v" 	k="5" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="5" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="38" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="65" />
+<hkern g1="W" 	g2="ampersand" 	k="10" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="35" />
+<hkern g1="W" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="25" />
+<hkern g1="W" 	g2="s" 	k="25" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="115" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="8" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="55" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="43" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="120" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="125" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="75" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="65" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="15" />
+<hkern g1="ampersand" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="15" />
+<hkern g1="ampersand" 	g2="T" 	k="85" />
+<hkern g1="ampersand" 	g2="W" 	k="50" />
+<hkern g1="ampersand" 	g2="V" 	k="65" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="103" />
+<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="asterisk" 	g2="J" 	k="120" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="95" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="50" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="105" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="120" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="5" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="35" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="25" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="5" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="75" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="25" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="40" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="65" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="65" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="5" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="15" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="95" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="55" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="5" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="5" />
+<hkern g1="f" 	g2="question" 	k="-55" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-65" />
+<hkern g1="f" 	g2="asterisk" 	k="-65" />
+<hkern g1="f" 	g2="S" 	k="-25" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-65" />
+<hkern g1="f" 	g2="V" 	k="-65" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-60" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="45" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="5" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-70" />
+<hkern g1="g,j,q" 	g2="question" 	k="25" />
+<hkern g1="g,j,q" 	g2="T" 	k="75" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="50" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-50" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="35" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="55" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="115" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="45" />
+<hkern g1="k" 	g2="T" 	k="55" />
+<hkern g1="k" 	g2="W" 	k="25" />
+<hkern g1="k" 	g2="V" 	k="25" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="k" 	g2="bullet" 	k="25" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="25" />
+<hkern g1="k" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="5" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="80" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="95" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="65" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="85" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="25" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="25" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="65" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="55" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="5" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="25" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="5" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="100" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="100" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="ampersand" 	k="-5" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="40" />
+<hkern g1="r" 	g2="W" 	k="10" />
+<hkern g1="r" 	g2="V" 	k="25" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="85" />
+<hkern g1="r" 	g2="X" 	k="15" />
+<hkern g1="s" 	g2="question" 	k="45" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="80" />
+<hkern g1="s" 	g2="W" 	k="45" />
+<hkern g1="s" 	g2="V" 	k="45" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="95" />
+<hkern g1="s" 	g2="X" 	k="5" />
+<hkern g1="t" 	g2="T" 	k="40" />
+<hkern g1="t" 	g2="W" 	k="15" />
+<hkern g1="t" 	g2="V" 	k="30" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="35" />
+<hkern g1="a,u,z,uni00B5" 	g2="question" 	k="25" />
+<hkern g1="a,u,z,uni00B5" 	g2="T" 	k="75" />
+<hkern g1="a,u,z,uni00B5" 	g2="W" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="V" 	k="50" />
+<hkern g1="a,u,z,uni00B5" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="40" />
+<hkern g1="v" 	g2="W" 	k="5" />
+<hkern g1="v" 	g2="V" 	k="15" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="65" />
+<hkern g1="v" 	g2="X" 	k="35" />
+<hkern g1="w" 	g2="T" 	k="40" />
+<hkern g1="w" 	g2="V" 	k="10" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="15" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="40" />
+<hkern g1="w" 	g2="X" 	k="40" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="5" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="40" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="5" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="10" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="55" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="35" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="40" />
+<hkern g1="X" 	g2="v" 	k="35" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="35" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="45" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="25" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="95" />
+<hkern g1="x" 	g2="T" 	k="50" />
+<hkern g1="x" 	g2="W" 	k="25" />
+<hkern g1="x" 	g2="V" 	k="25" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="75" />
+<hkern g1="x" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="35" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..6add3d87aa36fae85085704cdb532163ec7c9e62
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.woff
new file mode 100755
index 0000000000000000000000000000000000000000..930034c4374eaccced86ef1bdd89416b9c406ea7
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-SboldIt.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.eot
new file mode 100755
index 0000000000000000000000000000000000000000..28ecd24bec7f2743adb2602d03336ec509b7394a
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.otf
new file mode 100755
index 0000000000000000000000000000000000000000..87218e518a0d4ac26241aaa5cee16b5697be7bea
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.svg
new file mode 100755
index 0000000000000000000000000000000000000000..9478a7b2c72a656efa697845535ebb116181daf5
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.svg
@@ -0,0 +1,514 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_nova_ththin" horiz-adv-x="208" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="260" />
+<glyph unicode="&#xfb01;" horiz-adv-x="448" d="M20 456v27h80v51q0 67 32 105t89 38q35 0 57 -13l-13 -26q-21 12 -44 12q-91 0 -91 -116v-51h98v-27h-98v-456h-30v456h-80zM318 595q0 12 9 20.5t20 8.5q12 0 20.5 -8.5t8.5 -20.5t-8.5 -20.5t-20.5 -8.5q-11 0 -20 8.5t-9 20.5zM332 0v483h30v-483h-30z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="448" d="M20 456v27h80v51q0 67 32 105t89 38q35 0 57 -13l-13 -26q-21 12 -44 12q-91 0 -91 -116v-51h98v-27h-98v-456h-30v456h-80zM332 0v667h30v-667h-30z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="694" d="M20 456v27h80v51q0 67 32 105t89 38q45 0 82 -30l-18 -24q-29 27 -64 27q-91 0 -91 -116v-51h98v-27h-98v-456h-30v456h-80zM266 456v27h80v51q0 67 32 105t89 38q35 0 57 -13l-13 -26q-21 12 -44 12q-91 0 -91 -116v-51h98v-27h-98v-456h-30v456h-80zM564 595 q0 12 9 20.5t20 8.5q12 0 20.5 -8.5t8.5 -20.5t-8.5 -20.5t-20.5 -8.5q-11 0 -20 8.5t-9 20.5zM578 0v483h30v-483h-30z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="694" d="M20 456v27h80v51q0 67 32 105t89 38q45 0 82 -30l-18 -24q-29 27 -64 27q-91 0 -91 -116v-51h98v-27h-98v-456h-30v456h-80zM266 456v27h80v51q0 67 32 105t89 38q35 0 57 -13l-13 -26q-21 12 -44 12q-91 0 -91 -116v-51h98v-27h-98v-456h-30v456h-80zM578 0v667h30v-667 h-30z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="260" />
+<glyph unicode="&#x09;" horiz-adv-x="260" />
+<glyph unicode="&#xa0;" horiz-adv-x="260" />
+<glyph unicode="!" d="M71 24q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5q0 -14 -9.5 -23.5t-23.5 -9.5t-23.5 9.5t-9.5 23.5zM83 667h42l-11 -506h-20z" />
+<glyph unicode="&#x22;" horiz-adv-x="290" d="M62 651q0 11 7.5 18.5t18.5 7.5t18.5 -7.5t7.5 -18.5l-15 -208h-22q-15 197 -15 208zM176 651q0 11 7.5 18.5t18.5 7.5t18.5 -7.5t7.5 -18.5l-15 -208h-22q-15 197 -15 208z" />
+<glyph unicode="#" horiz-adv-x="567" d="M26 191l9 29h116l76 227h-117l8 29h119l63 191h33l-63 -191h124l63 191h33l-64 -191h115l-7 -29h-117l-77 -227h120l-9 -29h-120l-64 -191h-33l65 191h-125l-64 -191h-33l64 191h-115zM184 220h123l77 227h-124z" />
+<glyph unicode="$" horiz-adv-x="575" d="M53 94l26 23q76 -94 196 -99v318q-39 11 -61 18t-52.5 21.5t-47 31t-28.5 42.5t-12 59q0 76 58.5 122t142.5 48v90h32v-91q122 -7 192 -93l-25 -23q-61 78 -167 86v-285q38 -11 62 -19.5t54.5 -25t48 -35t30 -48t12.5 -65.5q0 -30 -10 -58t-32 -55.5t-64.5 -45.5 t-100.5 -21v-89h-32v88q-71 2 -128.5 31t-93.5 75zM109 508q0 -30 12.5 -52.5t39 -38.5t50.5 -25t64 -21v277q-71 -2 -118.5 -41.5t-47.5 -98.5zM307 18q48 3 83.5 18t54 38t26.5 46.5t8 48.5q0 29 -10 52t-24.5 38.5t-39 29t-45.5 21t-53 17.5v-309z" />
+<glyph unicode="%" horiz-adv-x="709" d="M36 513q0 71 43 117.5t110 46.5t110 -46.5t43 -117.5q0 -70 -43 -116t-110 -46t-110 46t-43 116zM69 513q0 -55 34 -95t86 -40q53 0 86.5 39.5t33.5 95.5q0 57 -33.5 97t-86.5 40q-52 0 -86 -40t-34 -97zM127 0l426 667h37l-427 -667h-36zM367 150q0 71 43 117.5 t110 46.5t110 -46.5t43 -117.5q0 -70 -43 -116t-110 -46t-110 46t-43 116zM400 150q0 -56 33.5 -95.5t86.5 -39.5t86.5 39.5t33.5 95.5q0 57 -33.5 97t-86.5 40t-86.5 -40t-33.5 -97z" />
+<glyph unicode="&#x26;" horiz-adv-x="637" d="M47 167q0 73 40 119t111 86q-58 90 -58 155t43.5 107.5t105.5 42.5q60 0 95 -32t35 -90q0 -34 -13 -61.5t-39.5 -50.5t-49.5 -38t-62 -36q-7 -4 -11 -6q37 -53 94 -115q52 -58 100 -106q44 67 79 171l32 -12q-50 -131 -86 -184q63 -61 128 -117h-53q-34 29 -96 89 q-80 -101 -199 -101q-84 0 -140 47t-56 132zM82 167q0 -71 47 -110t114 -39q98 0 174 96q-79 81 -105 112q-57 65 -97 120q-63 -36 -98 -77t-35 -102zM175 527q0 -58 52 -138q33 18 48 26.5t40.5 26t37 32t21.5 36t10 45.5q0 44 -26.5 68t-68.5 24q-47 0 -80.5 -34 t-33.5 -86z" />
+<glyph unicode="'" horiz-adv-x="176" d="M62 651q0 11 7.5 18.5t18.5 7.5t18.5 -7.5t7.5 -18.5l-15 -208h-22q-15 197 -15 208z" />
+<glyph unicode="(" horiz-adv-x="206" d="M47 243q0 236 126 442l16 -11q-54 -114 -80.5 -210t-26.5 -221q0 -124 26.5 -221t80.5 -209l-16 -12q-126 206 -126 442z" />
+<glyph unicode=")" horiz-adv-x="206" d="M17 -187q54 112 80.5 209t26.5 221q0 125 -26.5 221t-80.5 210l16 11q126 -206 126 -442t-126 -442z" />
+<glyph unicode="*" horiz-adv-x="330" d="M41 489l106 54l-106 54l15 26l100 -65l-6 119h30l-6 -119l100 65l15 -26l-106 -54l106 -54l-15 -26l-100 65l6 -119h-30l6 119l-100 -65z" />
+<glyph unicode="+" horiz-adv-x="494" d="M29 322v30h202v216h32v-216h202v-30h-202v-222h-32v222h-202z" />
+<glyph unicode="," d="M58 -100q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39q0 -36 -18 -69.5t-44 -51.5z" />
+<glyph unicode="-" horiz-adv-x="300" d="M30 227v30h240v-30h-240z" />
+<glyph unicode="." d="M71 24q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5q0 -14 -9.5 -23.5t-23.5 -9.5t-23.5 9.5t-9.5 23.5z" />
+<glyph unicode="/" horiz-adv-x="268" d="M0 -20l237 707h31l-237 -707h-31z" />
+<glyph unicode="0" horiz-adv-x="605" d="M65 333q0 62 13 120t39.5 109.5t74.5 83t111 31.5t110.5 -31.5t74 -83t39.5 -109.5t13 -120q0 -61 -13 -119.5t-39.5 -110.5t-74 -83.5t-110.5 -31.5t-111 31.5t-74.5 83.5t-39.5 110.5t-13 119.5zM100 333q0 -57 10.5 -109.5t33 -100.5t63.5 -76.5t96 -28.5t96 29 t63 76.5t32.5 100t10.5 109.5t-10.5 109.5t-32.5 100t-63 76t-96 28.5t-96 -28.5t-63.5 -76t-33 -100t-10.5 -109.5z" />
+<glyph unicode="1" horiz-adv-x="277" d="M30 529l129 138h30v-667h-32v621l-105 -115z" />
+<glyph unicode="2" horiz-adv-x="577" d="M59 0v28q80 66 124 104.5t102.5 94.5t88 95t51 85.5t21.5 88.5q0 75 -49.5 113t-116.5 38q-62 0 -110 -24.5t-74 -65.5l-26 19q31 47 86.5 74t124.5 27q75 0 136 -45.5t61 -135.5q0 -33 -11.5 -67.5t-26.5 -63.5t-47 -67t-56.5 -63.5t-71.5 -68t-75 -66l-84 -70.5h374 v-30h-421z" />
+<glyph unicode="3" horiz-adv-x="531" d="M36 100l28 16q61 -98 188 -98q83 0 132 42.5t49 116.5q0 77 -55 115t-138 38q-46 0 -56 -1v32q10 -1 56 -1q77 0 130 36t53 107q0 66 -49.5 105t-121.5 39q-58 0 -100.5 -22t-81.5 -68l-25 20q79 100 207 100q83 0 143 -46.5t60 -127.5q0 -72 -45 -110.5t-97 -47.5 q31 -3 64 -19.5t60.5 -56t27.5 -92.5q0 -83 -56.5 -136t-156.5 -53q-75 0 -131.5 32t-84.5 80z" />
+<glyph unicode="4" horiz-adv-x="524" d="M38 195v33l305 439h42v-442h101v-30h-101v-195h-32v195h-315zM73 225h280v406z" />
+<glyph unicode="5" horiz-adv-x="574" d="M81 100l26 19q67 -101 190 -101q77 0 128.5 51.5t51.5 128.5q0 83 -51 132.5t-129 49.5q-95 0 -168 -69l-27 16v340h364v-30h-332v-291q66 64 163 64q89 0 150.5 -56t61.5 -156q0 -94 -62.5 -152t-149.5 -58q-145 0 -216 112z" />
+<glyph unicode="6" horiz-adv-x="577" d="M65 333q0 65 12.5 123t39 109t74.5 81.5t112 30.5q112 0 175 -90l-24 -21q-56 81 -151 81q-56 0 -98 -28.5t-64.5 -77t-33 -103t-10.5 -115.5q0 -24 1 -36q25 42 81.5 80.5t121.5 38.5q94 0 152.5 -53.5t58.5 -156.5q0 -83 -58 -145.5t-157 -62.5q-62 0 -108.5 28.5 t-72.5 78.5t-38.5 109.5t-12.5 128.5zM102 246q4 -40 16 -78t34 -73t59.5 -56t85.5 -21q87 0 135 55.5t48 122.5q0 88 -49 134t-131 46q-59 0 -113 -36.5t-85 -93.5z" />
+<glyph unicode="7" horiz-adv-x="489" d="M36 637v30h417v-22l-295 -645h-36l293 637h-379z" />
+<glyph unicode="8" horiz-adv-x="561" d="M66 165q0 68 50.5 114.5t122.5 64.5q-68 16 -115 57.5t-47 104.5q0 82 61 126.5t143 44.5q81 0 142.5 -45t61.5 -126q0 -63 -47 -104.5t-115 -57.5q72 -18 122 -64.5t50 -114.5q0 -77 -60.5 -127t-153.5 -50q-95 0 -155 49.5t-60 127.5zM98 165q0 -66 54 -106.5 t129 -40.5q74 0 128 40.5t54 106.5q0 40 -22 73t-54.5 51.5t-59.5 28.5t-46 12q-19 -2 -46.5 -12t-60 -28.5t-54.5 -51.5t-22 -73zM109 506q0 -37 20 -66t52.5 -45.5t54.5 -23.5t45 -12q23 4 45.5 12t54.5 24t52 45t20 66q0 65 -49.5 103t-122.5 38t-122.5 -38t-49.5 -103z " />
+<glyph unicode="9" horiz-adv-x="577" d="M65 470q0 83 58 145.5t157 62.5q62 0 108.5 -28.5t72.5 -78.5t38.5 -109.5t12.5 -128.5q0 -65 -12.5 -123t-39 -109t-74.5 -81.5t-112 -30.5q-112 0 -175 90l24 21q56 -81 151 -81q56 0 98 28.5t64.5 77t33 103t10.5 115.5q0 24 -1 36q-25 -42 -81.5 -80.5t-121.5 -38.5 q-94 0 -152.5 53.5t-58.5 156.5zM97 470q0 -88 49 -134t131 -46q59 0 113 36.5t85 93.5q-4 40 -16 78t-34 73t-59.5 56t-85.5 21q-87 0 -135 -55.5t-48 -122.5z" />
+<glyph unicode=":" d="M71 24q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5q0 -14 -9.5 -23.5t-23.5 -9.5t-23.5 9.5t-9.5 23.5zM71 457q0 13 9.5 23t23.5 10t23.5 -10t9.5 -23t-10 -22.5t-23 -9.5t-23 9.5t-10 22.5z" />
+<glyph unicode=";" d="M58 -100q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39q0 -36 -18 -69.5t-44 -51.5zM71 457q0 13 9.5 23t23.5 10t23.5 -10t9.5 -23t-10 -22.5t-23 -9.5t-23 9.5t-10 22.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="494" d="M29 324v21l436 235v-36l-395 -210l395 -208v-36z" />
+<glyph unicode="=" horiz-adv-x="494" d="M29 220v30h436v-30h-436zM29 418v30h436v-30h-436z" />
+<glyph unicode="&#x3e;" horiz-adv-x="494" d="M29 90v36l395 208l-395 210v36l436 -235v-21z" />
+<glyph unicode="?" horiz-adv-x="467" d="M26 570q75 107 214 107q85 0 135.5 -44.5t50.5 -108.5q0 -36 -16 -66.5t-40 -50t-51.5 -39.5t-51.5 -36.5t-40 -39t-16 -48.5q0 -30 33 -53l-19 -23q-44 33 -44 76q0 37 21.5 67t52.5 50.5t62 42t52.5 52t21.5 68.5q0 52 -40 87.5t-111 35.5q-68 0 -112.5 -25t-78.5 -73z M189 24q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5q0 -14 -9.5 -23.5t-23.5 -9.5t-23.5 9.5t-9.5 23.5z" />
+<glyph unicode="@" horiz-adv-x="783" d="M35 244q0 106 55.5 197.5t147 144t194.5 52.5q138 0 226.5 -94t88.5 -233q0 -105 -43.5 -165.5t-107.5 -60.5q-38 0 -62 26t-24 62v6q-28 -40 -74 -67t-97 -27q-68 0 -110 43t-42 115q0 106 75 181.5t168 75.5q49 0 82.5 -24.5t48.5 -62.5l14 69h30l-62 -294 q-1 -6 -1 -18q0 -26 15.5 -42t38.5 -16q17 0 36 9.5t39.5 30.5t33.5 62.5t13 97.5q0 127 -81 211.5t-208 84.5q-146 0 -255 -110.5t-109 -252.5q0 -122 82.5 -204t208.5 -82q97 0 188 57l16 -23q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM220 243q0 -58 31.5 -94.5 t87.5 -36.5t102.5 32.5t77.5 78.5l34 157q-11 36 -42.5 64.5t-80.5 28.5q-85 0 -147.5 -70.5t-62.5 -159.5z" />
+<glyph unicode="A" horiz-adv-x="636" d="M21 0l278 667h38l278 -667h-37l-74 179h-372l-74 -179h-37zM144 209h348l-174 421z" />
+<glyph unicode="B" horiz-adv-x="600" d="M88 0v667h251q82 0 132 -44.5t50 -125.5q0 -60 -35 -101.5t-83 -51.5q53 -8 92 -57t39 -107q0 -85 -51.5 -132.5t-139.5 -47.5h-255zM120 30h223q73 0 114.5 40t41.5 109q0 61 -41 105t-115 44h-223v-298zM120 358h219q71 0 109 39t38 100q0 60 -38.5 100t-108.5 40h-219 v-279z" />
+<glyph unicode="C" horiz-adv-x="667" d="M65 333q0 151 96 248t237 97t232 -105l-25 -22q-36 45 -90.5 71t-116.5 26q-127 0 -212.5 -88t-85.5 -227q0 -138 85.5 -226.5t212.5 -88.5q62 0 116.5 26t90.5 71l26 -21q-94 -106 -233 -106q-141 0 -237 97t-96 248z" />
+<glyph unicode="D" horiz-adv-x="684" d="M88 0v667h198q150 0 241 -97.5t91 -236.5q0 -140 -90.5 -236.5t-241.5 -96.5h-198zM120 30h166q138 0 217.5 86t79.5 217q0 130 -80 217t-217 87h-166v-607z" />
+<glyph unicode="E" horiz-adv-x="558" d="M88 0v667h408v-30h-376v-279h369v-30h-369v-298h376v-30h-408z" />
+<glyph unicode="F" horiz-adv-x="533" d="M88 0v667h408v-30h-376v-279h369v-30h-369v-328h-32z" />
+<glyph unicode="G" horiz-adv-x="708" d="M65 333q0 151 96 248t237 97q144 0 244 -103l-21 -22q-39 45 -98 70t-125 25q-127 0 -212.5 -88t-85.5 -227q0 -138 85.5 -227t212.5 -89q67 0 122 26.5t90 63.5v183h-275v30h307v-226q-44 -49 -107.5 -78t-136.5 -29q-141 0 -237 97t-96 249z" />
+<glyph unicode="H" horiz-adv-x="695" d="M88 0v667h32v-309h455v309h32v-667h-32v328h-455v-328h-32z" />
+<glyph unicode="I" d="M88 0v667h32v-667h-32z" />
+<glyph unicode="J" horiz-adv-x="465" d="M16 75l27 24q57 -81 142 -81q73 0 116.5 46.5t43.5 120.5v482h32v-482q0 -95 -55 -146t-137 -51q-107 0 -169 87z" />
+<glyph unicode="K" horiz-adv-x="571" d="M88 0v667h32v-385l347 385h43l-290 -319l320 -348h-43l-297 328l-80 -87v-241h-32z" />
+<glyph unicode="L" horiz-adv-x="499" d="M88 0v667h32v-637h335v-30h-367z" />
+<glyph unicode="M" horiz-adv-x="770" d="M88 0v667h51l246 -597l246 597h51v-667h-32v629l-260 -629h-10l-260 629v-629h-32z" />
+<glyph unicode="N" horiz-adv-x="690" d="M88 0v667h32l450 -609v609h32v-667h-32l-450 615v-615h-32z" />
+<glyph unicode="O" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q142 0 229.5 -98.5t87.5 -246.5t-87.5 -246.5t-229.5 -98.5q-143 0 -230 98.5t-87 246.5zM100 333q0 -138 77 -226.5t205 -88.5q127 0 204.5 88.5t77.5 226.5q0 139 -77.5 227t-204.5 88q-128 0 -205 -88t-77 -227z" />
+<glyph unicode="P" horiz-adv-x="555" d="M88 0v667h231q90 0 142.5 -54.5t52.5 -134.5q0 -79 -53 -134t-142 -55h-199v-289h-32zM120 319h198q73 0 117 44.5t44 114.5t-44 114.5t-117 44.5h-198v-318z" />
+<glyph unicode="Q" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q142 0 229.5 -98.5t87.5 -246.5q0 -157 -98 -257l77 -76l-22 -23l-78 78q-83 -67 -196 -67q-143 0 -230 98.5t-87 246.5zM100 333q0 -138 77 -226.5t205 -88.5q100 0 173 59l-110 111l23 23l111 -112q85 88 85 234q0 139 -77.5 227 t-204.5 88q-128 0 -205 -88t-77 -227z" />
+<glyph unicode="R" horiz-adv-x="579" d="M88 0v667h230q85 0 141 -50.5t56 -138.5t-56.5 -139t-140.5 -51l206 -288h-41l-203 288h-160v-288h-32zM120 318h198q73 0 117.5 45t44.5 115t-44.5 114.5t-117.5 44.5h-198v-319z" />
+<glyph unicode="S" horiz-adv-x="575" d="M53 94l26 23q81 -99 207 -99q55 0 95 14.5t60 38t29 48t9 50.5q0 51 -30 85.5t-75 49.5t-97.5 31.5t-97.5 32t-75 51.5t-30 89q0 78 61 124t148 46q140 0 216 -94l-25 -23q-67 87 -191 87q-74 0 -124 -39.5t-50 -100.5q0 -38 22.5 -65t58 -42t79 -27.5t86.5 -27 t78.5 -34.5t58 -56.5t22.5 -86.5q0 -31 -11 -60.5t-35 -58t-71 -45.5t-111 -17q-75 0 -135 29t-98 77z" />
+<glyph unicode="T" horiz-adv-x="559" d="M38 637v30h483v-30h-226v-637h-32v637h-225z" />
+<glyph unicode="U" horiz-adv-x="672" d="M88 253v414h32v-414q0 -112 56 -173.5t160 -61.5t160 61.5t56 173.5v414h32v-414q0 -125 -64 -195t-184 -70t-184 70t-64 195z" />
+<glyph unicode="V" horiz-adv-x="636" d="M21 667h37l260 -630l260 630h37l-278 -667h-38z" />
+<glyph unicode="W" horiz-adv-x="852" d="M25 667h35l174 -619l175 619h34l175 -619l174 619h35l-190 -667h-38l-173 607l-173 -607h-38z" />
+<glyph unicode="X" horiz-adv-x="638" d="M25 0l276 342l-261 325h43l236 -299l236 299h43l-261 -324l276 -343h-42l-252 318l-252 -318h-42z" />
+<glyph unicode="Y" horiz-adv-x="610" d="M21 667h41l243 -346l243 346h41l-268 -378v-289h-32v289z" />
+<glyph unicode="Z" horiz-adv-x="578" d="M53 0v30l427 607h-427v30h465v-30l-428 -607h435v-30h-472z" />
+<glyph unicode="[" horiz-adv-x="212" d="M34 -190v868h161v-30h-131v-808h131v-30h-161z" />
+<glyph unicode="\" horiz-adv-x="268" d="M0 687h31l237 -707h-31z" />
+<glyph unicode="]" horiz-adv-x="212" d="M17 -160h131v808h-131v30h161v-868h-161v30z" />
+<glyph unicode="^" horiz-adv-x="424" d="M19 333l180 334h26l180 -334h-34l-159 307l-159 -307h-34z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-3 -40h570v-30h-570v30z" />
+<glyph unicode="`" horiz-adv-x="205" d="M0 700h45l160 -144h-30z" />
+<glyph unicode="a" horiz-adv-x="514" d="M62 149q0 74 50 117.5t119 43.5q102 0 167 -71v109q0 56 -39 88t-97 32q-92 0 -155 -76l-23 20q37 43 78 63t100 20q74 0 120 -37.5t46 -108.5v-349h-30v59q-65 -71 -167 -71q-68 0 -118.5 43.5t-50.5 117.5zM95 149q0 -57 39.5 -95.5t104.5 -38.5q103 0 159 74v120 q-56 74 -159 74q-65 0 -104.5 -38.5t-39.5 -95.5z" />
+<glyph unicode="b" horiz-adv-x="566" d="M86 0v667h30v-267q30 44 75.5 69.5t98.5 25.5q97 0 156.5 -70t59.5 -184q0 -115 -59 -184t-157 -69q-54 0 -101 26.5t-73 66.5v-81h-30zM116 111q24 -40 72 -68t102 -28q86 0 134.5 63.5t48.5 162.5t-48.5 163t-134.5 64q-54 0 -102 -29t-72 -69v-259z" />
+<glyph unicode="c" horiz-adv-x="493" d="M60 242q0 107 63 180t165 73q56 0 94 -20t71 -61l-22 -18q-53 72 -141 72q-91 0 -144 -64.5t-53 -161.5q0 -98 53.5 -162.5t143.5 -64.5q87 0 141 73l22 -19q-33 -41 -71 -61t-94 -20q-102 0 -165 73.5t-63 180.5z" />
+<glyph unicode="d" horiz-adv-x="566" d="M60 241q0 114 59.5 184t156.5 70q53 0 98.5 -25.5t75.5 -69.5v267h30v-667h-30v81q-26 -40 -73 -66.5t-101 -26.5q-98 0 -157 69t-59 184zM93 241q0 -99 48.5 -162.5t134.5 -63.5q54 0 102 28t72 68v259q-24 40 -72 69t-102 29q-86 0 -134.5 -64t-48.5 -163z" />
+<glyph unicode="e" horiz-adv-x="571" d="M60 242q0 106 65 179.5t162 73.5q106 0 165 -73t59 -180v-10h-417q2 -92 57.5 -154.5t145.5 -62.5q100 0 168 73l18 -19q-78 -81 -186 -81q-105 0 -171 71.5t-66 182.5zM94 259h385q0 49 -20 95.5t-65.5 80t-107.5 33.5q-87 0 -138 -64.5t-54 -144.5z" />
+<glyph unicode="f" horiz-adv-x="246" d="M20 456v27h80v51q0 67 32 105t89 38q45 0 82 -30l-18 -24q-29 27 -64 27q-91 0 -91 -116v-51h98v-27h-98v-456h-30v456h-80z" />
+<glyph unicode="g" horiz-adv-x="566" d="M60 240q0 114 59.5 184.5t156.5 70.5q53 0 98.5 -25.5t75.5 -69.5v83h30v-486q0 -99 -55.5 -146t-148.5 -47q-63 0 -103.5 15t-81.5 58l22 25q31 -39 68.5 -55t94.5 -16q77 0 125.5 41.5t48.5 124.5v84q-27 -40 -73.5 -67.5t-100.5 -27.5q-98 0 -157 69.5t-59 184.5z M93 240q0 -99 48.5 -163t134.5 -64q54 0 102 29t72 69v259q-24 40 -72 69t-102 29q-86 0 -134.5 -64.5t-48.5 -163.5z" />
+<glyph unicode="h" horiz-adv-x="528" d="M86 0v667h30v-260q29 35 78 61.5t97 26.5q75 0 113 -36.5t38 -119.5v-339h-30v339q0 72 -32 100.5t-93 28.5q-48 0 -96 -26.5t-75 -64.5v-377h-30z" />
+<glyph unicode="i" horiz-adv-x="202" d="M72 595q0 12 9 20.5t20 8.5q12 0 20.5 -8.5t8.5 -20.5t-8.5 -20.5t-20.5 -8.5q-11 0 -20 8.5t-9 20.5zM86 0v483h30v-483h-30z" />
+<glyph unicode="j" horiz-adv-x="202" d="M-95 -158l19 25q32 -36 73 -36q40 0 64.5 23t24.5 70v559h30v-559q0 -120 -119 -120q-51 0 -92 38zM72 595q0 12 9 20.5t20 8.5q12 0 20.5 -8.5t8.5 -20.5t-8.5 -20.5t-20.5 -8.5q-11 0 -20 8.5t-9 20.5z" />
+<glyph unicode="k" horiz-adv-x="496" d="M86 0v667h30v-478l315 294h43l-235 -218l232 -265h-43l-212 243l-100 -92v-151h-30z" />
+<glyph unicode="l" horiz-adv-x="202" d="M86 0v667h30v-667h-30z" />
+<glyph unicode="m" horiz-adv-x="770" d="M86 0v483h30v-76q18 29 63 58.5t92 29.5q53 0 85 -27t40 -65q22 36 66.5 64t92.5 28q129 0 129 -147v-348h-30v348q0 120 -104 120q-40 0 -83.5 -26.5t-66.5 -63.5v-378h-30v348q0 120 -104 120q-40 0 -82.5 -26.5t-67.5 -64.5v-377h-30z" />
+<glyph unicode="n" horiz-adv-x="528" d="M86 0v483h30v-76q29 35 78 61.5t97 26.5q75 0 113 -37.5t38 -120.5v-337h-30v337q0 72 -32 101.5t-93 29.5q-48 0 -96 -26.5t-75 -64.5v-377h-30z" />
+<glyph unicode="o" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q101 0 163 -72t62 -181t-62 -181.5t-163 -72.5q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -160.5t140 -66.5q89 0 140.5 66.5t51.5 160.5q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5z" />
+<glyph unicode="p" horiz-adv-x="562" d="M86 -184v667h30v-81q26 40 73 66.5t101 26.5q98 0 157 -69t59 -184q0 -114 -59.5 -184t-156.5 -70q-53 0 -98.5 25.5t-75.5 69.5v-267h-30zM116 113q24 -40 72 -69t102 -29q86 0 134.5 64t48.5 163t-48.5 162.5t-134.5 63.5q-54 0 -102 -28t-72 -68v-259z" />
+<glyph unicode="q" horiz-adv-x="562" d="M56 242q0 115 59 184t157 69q54 0 101 -26.5t73 -66.5v81h30v-667h-30v267q-30 -44 -75.5 -69.5t-98.5 -25.5q-97 0 -156.5 70t-59.5 184zM89 242q0 -99 48.5 -163t134.5 -64q54 0 102 29t72 69v259q-24 40 -72 68t-102 28q-86 0 -134.5 -63.5t-48.5 -162.5z" />
+<glyph unicode="r" horiz-adv-x="304" d="M86 0v483h30v-88q73 97 166 97v-36q-9 1 -24 1q-37 0 -81 -30t-61 -65v-362h-30z" />
+<glyph unicode="s" horiz-adv-x="454" d="M44 65l24 22q54 -72 153 -72q65 0 104 31.5t39 80.5q0 41 -32 65t-77.5 35.5t-91 24t-77.5 40.5t-32 75q0 55 44 91.5t120 36.5q109 0 166 -73l-22 -20q-46 66 -144 66q-62 0 -98 -28.5t-36 -72.5q0 -37 32 -58.5t77.5 -32.5t91 -24t77.5 -43.5t32 -81.5 q0 -60 -44.5 -99.5t-128.5 -39.5q-110 0 -177 77z" />
+<glyph unicode="t" horiz-adv-x="256" d="M12 456v27h80v132h30v-132h98v-27h-98v-371q0 -70 52 -70q35 0 57 26l18 -23q-32 -30 -75 -30q-82 0 -82 97v371h-80z" />
+<glyph unicode="u" horiz-adv-x="528" d="M86 144v339h30v-339q0 -72 32 -100.5t93 -28.5q48 0 96.5 25.5t74.5 62.5v380h30v-483h-30v74q-33 -37 -80 -61.5t-95 -24.5q-75 0 -113 36.5t-38 119.5z" />
+<glyph unicode="v" horiz-adv-x="471" d="M11 483h35l190 -448l189 448h35l-207 -483h-35z" />
+<glyph unicode="w" horiz-adv-x="704" d="M22 483h33l140 -436l145 436h24l145 -436l140 436h33l-160 -483h-24l-146 438l-146 -438h-24z" />
+<glyph unicode="x" horiz-adv-x="472" d="M22 0l197 248l-186 235h39l164 -214l164 214h39l-186 -235l197 -248h-39l-175 228l-175 -228h-39z" />
+<glyph unicode="y" horiz-adv-x="471" d="M11 483h35l190 -448l189 448h35l-256 -597q-36 -82 -106 -82q-27 0 -48 7l6 28q18 -8 42 -8q25 0 42.5 14.5t33.5 51.5l44 100z" />
+<glyph unicode="z" horiz-adv-x="466" d="M60 0v27l307 429h-307v27h342v-27l-309 -429h313v-27h-346z" />
+<glyph unicode="{" horiz-adv-x="237" d="M7 229v30q25 0 38.5 21t13.5 51v234q0 49 30 81t69 32h62v-30h-62q-28 0 -48.5 -24t-20.5 -59v-234q0 -68 -45 -87q45 -19 45 -87v-234q0 -35 20.5 -59t48.5 -24h62v-30h-62q-39 0 -69 32t-30 81v234q0 30 -13.5 51t-38.5 21z" />
+<glyph unicode="|" horiz-adv-x="206" d="M88 -20v707h30v-707h-30z" />
+<glyph unicode="}" horiz-adv-x="237" d="M17 -160h62q28 0 48.5 24t20.5 59v234q0 68 45 87q-45 19 -45 87v234q0 35 -20.5 59t-48.5 24h-62v30h62q39 0 69 -32t30 -81v-234q0 -30 13.5 -51t38.5 -21v-30q-25 0 -38.5 -21t-13.5 -51v-234q0 -49 -30 -81t-69 -32h-62v30z" />
+<glyph unicode="~" horiz-adv-x="496" d="M28 436q10 105 39.5 167t89.5 62q33 0 56 -21t34.5 -50.5t22 -59.5t27.5 -51t42 -21q42 0 65.5 50.5t33.5 154.5l30 -3q-7 -68 -19 -115.5t-40 -81.5t-70 -34q-41 0 -66.5 31.5t-35.5 69.5t-30 69.5t-50 31.5q-79 0 -99 -204z" />
+<glyph unicode="&#xa1;" d="M71 459q0 13 9.5 23t23.5 10t23.5 -10t9.5 -23t-10 -22.5t-23 -9.5t-23 9.5t-10 22.5zM83 -184l11 506h20l11 -506h-42z" />
+<glyph unicode="&#xa2;" horiz-adv-x="493" d="M60 242q0 100 55 170.5t147 80.5v72h30v-70q96 -1 161 -81l-22 -18q-53 70 -139 72v-453q85 0 139 73l22 -19q-65 -80 -161 -81v-88h-30v90q-92 10 -147 81t-55 171zM93 242q0 -89 45.5 -152.5t123.5 -73.5v450q-79 -10 -124 -72.5t-45 -151.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="491" d="M17 267v30h143q-7 8 -34 36t-38.5 43.5t-24 46.5t-12.5 66q0 75 58.5 131.5t149.5 56.5q55 0 103.5 -28.5t71.5 -75.5l-26 -18q-15 36 -56 64t-93 28q-73 0 -124 -42.5t-51 -115.5q0 -33 12 -63t26 -47t37.5 -42.5t34.5 -39.5h152v-30h-133q16 -30 16 -64 q0 -50 -22.5 -84t-63.5 -65q28 10 55 10q35 0 83.5 -24t78.5 -24q32 0 62 14t42 29l18 -27q-48 -46 -124 -46q-46 0 -90 24t-88 24q-39 0 -119 -41l-14 33q76 32 114 78t38 99q0 33 -18 64h-164z" />
+<glyph unicode="&#xa4;" horiz-adv-x="577" d="M31 570l21 21l82 -83q63 58 154 58q92 0 154 -57l81 81l21 -21l-82 -82q51 -63 51 -154q0 -89 -50 -153l81 -81l-21 -21l-80 80q-62 -59 -155 -59q-94 0 -155 59l-80 -80l-21 21l81 81q-50 64 -50 153q0 91 51 154zM96 333q0 -84 52 -144t140 -60q89 0 140.5 60t51.5 144 t-51.5 143.5t-140.5 59.5q-88 0 -140 -60t-52 -143z" />
+<glyph unicode="&#xa5;" horiz-adv-x="610" d="M21 129v30h268v130h-268v30h246l-246 348h41l243 -346l243 346h41l-247 -348h247v-30h-268v-130h268v-30h-268v-129h-32v129h-268z" />
+<glyph unicode="&#xa6;" horiz-adv-x="206" d="M88 -20v316h30v-316h-30zM88 371v316h30v-316h-30z" />
+<glyph unicode="&#xa7;" horiz-adv-x="454" d="M44 -4l24 22q54 -72 153 -72q63 0 103 30.5t40 81.5q0 40 -32 64.5t-77.5 36t-91 24t-77.5 40.5t-32 75q0 52 35.5 84.5t94.5 45.5q-64 18 -97 45t-33 76q0 54 43 91t121 37q108 0 166 -73l-22 -20q-48 66 -144 66q-58 0 -96 -28.5t-38 -74.5q0 -37 32 -58.5t77.5 -32 t91 -23t77.5 -44t32 -83.5q0 -88 -100 -127q50 -18 75 -46.5t25 -74.5q0 -65 -47.5 -102t-125.5 -37q-65 0 -104.5 20t-72.5 57zM84 296q0 -30 23.5 -50.5t52 -30t78.5 -21.5q15 -3 22 -5q104 45 104 120q0 25 -11.5 43.5t-35 31t-41.5 19t-50 14.5q-79 -21 -110.5 -50 t-31.5 -71z" />
+<glyph unicode="&#xa8;" horiz-adv-x="252" d="M-3 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM199 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M44 334q0 143 101 244t244 101t244 -101t101 -244t-101 -244t-244 -101t-244 101.5t-101 243.5zM70 334q0 -131 94 -225t225 -94q132 0 225.5 94t93.5 225q0 132 -93.5 225.5t-225.5 93.5q-131 0 -225 -93.5t-94 -225.5zM181 336q0 91 60.5 152.5t147.5 61.5 q89 0 144 -64l-20 -20q-19 26 -53.5 41.5t-70.5 15.5q-73 0 -126 -52.5t-53 -135.5q0 -81 53.5 -135t125.5 -54q36 0 70.5 16t53.5 42l20 -20q-56 -65 -144 -65q-87 0 -147.5 63t-60.5 154z" />
+<glyph unicode="&#xaa;" horiz-adv-x="372" d="M50 423q0 48 33.5 76t79.5 28q68 0 113 -46v68q0 35 -27 54.5t-63 19.5q-64 0 -103 -50l-18 19q48 56 122 56q52 0 84 -25t32 -74v-223h-27v38q-45 -46 -113 -46q-45 0 -79 29t-34 76zM79 423q0 -36 25.5 -59.5t67.5 -23.5q67 0 104 46v73q-37 46 -104 46 q-41 0 -67 -23.5t-26 -58.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="364" d="M30 243l160 177h39l-160 -177l160 -180h-39zM135 243l160 177h39l-160 -177l160 -180h-39z" />
+<glyph unicode="&#xac;" horiz-adv-x="494" d="M29 418v30h436v-228h-32v198h-404z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M30 227v30h240v-30h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M35 465q0 88 62 150t150 62q89 0 150.5 -61.5t61.5 -150.5q0 -88 -62 -150t-150 -62t-150 62t-62 150zM61 465q0 -77 54.5 -131.5t131.5 -54.5t131.5 54.5t54.5 131.5q0 78 -54.5 132t-131.5 54t-131.5 -54t-54.5 -132zM167 343v243h99q31 0 52.5 -20.5t21.5 -53.5 q0 -35 -22.5 -53.5t-39.5 -18.5l65 -97h-37l-63 96h-47v-96h-29zM196 467h70q16 0 30 13.5t14 31.5q0 20 -14 33.5t-30 13.5h-70v-92z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M0 581v27h363v-27h-363z" />
+<glyph unicode="&#xb0;" horiz-adv-x="273" d="M26 566q0 46 32 78.5t78 32.5t78.5 -32.5t32.5 -78.5t-32.5 -78t-78.5 -32t-78 32t-32 78zM56 566q0 -33 23.5 -56.5t56.5 -23.5t57 23.5t24 56.5t-24 57t-57 24t-56.5 -24t-23.5 -57z" />
+<glyph unicode="&#xb1;" horiz-adv-x="494" d="M29 0v30h436v-30h-436zM29 322v30h202v216h32v-216h202v-30h-202v-222h-32v222h-202z" />
+<glyph unicode="&#xb2;" horiz-adv-x="380" d="M54 421v24q119 86 179.5 149t60.5 120q0 44 -29.5 65.5t-70.5 21.5q-78 0 -114 -53l-20 18q43 61 135 61q50 0 89 -28t39 -84q0 -64 -57.5 -126t-167.5 -142h227v-26h-271z" />
+<glyph unicode="&#xb3;" horiz-adv-x="380" d="M50 480l20 17q40 -57 118 -57q50 0 79 23.5t29 64.5q0 44 -33 65.5t-84 21.5q-30 0 -36 -1v27q6 -1 36 -1q48 0 79.5 20t31.5 61q0 37 -30 58.5t-73 21.5q-67 0 -113 -52l-19 18q51 60 133 60q55 0 93 -28.5t38 -76.5q0 -43 -28 -66t-61 -28q33 -3 64.5 -28.5t31.5 -71.5 q0 -51 -37 -82.5t-101 -31.5q-48 0 -84 18.5t-54 47.5z" />
+<glyph unicode="&#xb4;" horiz-adv-x="205" d="M0 556l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xb5;" horiz-adv-x="542" d="M86 -184v667h30v-339q0 -131 127 -131q47 0 95 26.5t74 63.5v380h30v-398q0 -70 52 -70q12 0 20 2l3 -27q-12 -2 -23 -2q-75 0 -82 86q-32 -37 -77.5 -61.5t-91.5 -24.5q-95 0 -127 65v-237h-30z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M27 495q0 71 50.5 121.5t121.5 50.5h158v-767h-30v737h-98v-737h-30v423q-71 0 -121.5 50.5t-50.5 121.5z" />
+<glyph unicode="&#xb7;" d="M71 245q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5t-9.5 -23t-23.5 -10t-23.5 10t-9.5 23z" />
+<glyph unicode="&#xb8;" horiz-adv-x="191" d="M0 -159l14 27q32 -28 79 -28q29 0 49 13.5t20 35.5q0 43 -44 43q-27 0 -43 -19l-22 13l31 85h30l-26 -69q15 12 38 12q29 0 47 -17.5t18 -47.5q0 -33 -28 -54.5t-70 -21.5q-58 0 -93 28z" />
+<glyph unicode="&#xb9;" horiz-adv-x="192" d="M20 732l85 89h27v-400h-30v360l-63 -69z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M48 483q0 71 43 118t111 47q69 0 112 -47t43 -118q0 -70 -43 -117.5t-112 -47.5q-68 0 -111 47.5t-43 117.5zM78 483q0 -58 33.5 -98.5t90.5 -40.5q58 0 92 40.5t34 98.5t-34 98t-92 40q-57 0 -90.5 -40t-33.5 -98z" />
+<glyph unicode="&#xbb;" horiz-adv-x="364" d="M30 63l160 180l-160 177h39l160 -177l-160 -180h-39zM135 63l160 180l-160 177h39l160 -177l-160 -180h-39z" />
+<glyph unicode="&#xbc;" horiz-adv-x="715" d="M20 578l85 89h27v-400h-30v360l-63 -69zM83 0l426 667h37l-427 -667h-36zM382 113v26l186 261h39v-261h62v-26h-62v-113h-29v113h-196zM413 139h165v232z" />
+<glyph unicode="&#xbd;" horiz-adv-x="755" d="M20 578l85 89h27v-400h-30v360l-63 -69zM83 0l426 667h37l-427 -667h-36zM429 0v24q119 86 179.5 149t60.5 120q0 44 -29.5 65.5t-70.5 21.5q-78 0 -114 -53l-20 18q43 61 135 61q50 0 89 -28t39 -84q0 -64 -57.5 -126t-167.5 -142h227v-26h-271z" />
+<glyph unicode="&#xbe;" horiz-adv-x="841" d="M50 326l20 17q40 -57 118 -57q50 0 79 23.5t29 64.5q0 44 -33 65.5t-84 21.5q-30 0 -36 -1v27q6 -1 36 -1q48 0 79.5 20t31.5 61q0 37 -30 58.5t-73 21.5q-67 0 -113 -52l-19 18q51 60 133 60q55 0 93 -28.5t38 -76.5q0 -43 -28 -66t-61 -28q33 -3 64.5 -28.5t31.5 -71.5 q0 -51 -37 -82.5t-101 -31.5q-48 0 -84 18.5t-54 47.5zM209 0l426 667h37l-427 -667h-36zM508 113v26l186 261h39v-261h62v-26h-62v-113h-29v113h-196zM539 139h165v232z" />
+<glyph unicode="&#xbf;" horiz-adv-x="391" d="M41 -44q0 36 16 66.5t40 50t51.5 39.5t51.5 36.5t40 39t16 48.5q0 30 -33 53l19 23q44 -33 44 -76q0 -37 -21.5 -67t-52.5 -50.5t-62 -42t-52.5 -52t-21.5 -68.5q0 -52 40 -87.5t111 -35.5q68 0 112.5 25t78.5 73l23 -21q-75 -107 -214 -107q-85 0 -135.5 44.5 t-50.5 108.5zM212 459q0 13 10 23t23 10t23 -10t10 -23t-10 -22.5t-23 -9.5t-23 9.5t-10 22.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="636" d="M21 0l278 667h38l278 -667h-37l-74 179h-372l-74 -179h-37zM144 209h348l-174 421zM164 867h45l160 -144h-30z" />
+<glyph unicode="&#xc1;" horiz-adv-x="636" d="M21 0l278 667h38l278 -667h-37l-74 179h-372l-74 -179h-37zM144 209h348l-174 421zM267 723l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xc2;" horiz-adv-x="636" d="M21 0l278 667h38l278 -667h-37l-74 179h-372l-74 -179h-37zM144 209h348l-174 421zM202 723l98 144h36l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xc3;" horiz-adv-x="636" d="M21 0l278 667h38l278 -667h-37l-74 179h-372l-74 -179h-37zM144 209h348l-174 421zM168 727q0 57 23.5 95.5t64.5 38.5q26 0 44.5 -17.5t27 -39t23 -39t33.5 -17.5q26 0 42.5 26.5t16.5 80.5h26q0 -57 -23.5 -95.5t-64.5 -38.5q-26 0 -44.5 17.5t-27 39t-23 39 t-33.5 17.5q-26 0 -42.5 -26.5t-16.5 -80.5h-26z" />
+<glyph unicode="&#xc4;" horiz-adv-x="636" d="M21 0l278 667h38l278 -667h-37l-74 179h-372l-74 -179h-37zM144 209h348l-174 421zM190 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM392 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5 t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="636" d="M21 0l278 667h38l278 -667h-37l-74 179h-372l-74 -179h-37zM144 209h348l-174 421zM226 785q0 38 27.5 65.5t65.5 27.5t65 -27.5t27 -65.5t-27 -65.5t-65 -27.5t-65.5 27.5t-27.5 65.5zM250 785q0 -29 20 -49t49 -20q28 0 48 20t20 49t-20 49t-48 20q-29 0 -49 -20 t-20 -49z" />
+<glyph unicode="&#xc6;" horiz-adv-x="930" d="M21 0l425 667h419v-30h-376v-279h369v-30h-369v-298h376v-30h-408v179h-286l-113 -179h-37zM188 209h269v421z" />
+<glyph unicode="&#xc7;" horiz-adv-x="667" d="M65 333q0 151 96 248t237 97t232 -105l-25 -22q-36 45 -90.5 71t-116.5 26q-127 0 -212.5 -88t-85.5 -227q0 -138 85.5 -226.5t212.5 -88.5q62 0 116.5 26t90.5 71l26 -21q-93 -105 -228 -106l-16 -42q15 12 38 12q29 0 47 -17.5t18 -47.5q0 -33 -28 -54.5t-70 -21.5 q-58 0 -93 28l14 27q32 -28 79 -28q29 0 49 13.5t20 35.5q0 43 -44 43q-27 0 -43 -19l-22 13l21 59q-132 9 -220 104.5t-88 239.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="558" d="M88 0v667h408v-30h-376v-279h369v-30h-369v-298h376v-30h-408zM138 867h45l160 -144h-30z" />
+<glyph unicode="&#xc9;" horiz-adv-x="558" d="M88 0v667h408v-30h-376v-279h369v-30h-369v-298h376v-30h-408zM241 723l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xca;" horiz-adv-x="558" d="M88 0v667h408v-30h-376v-279h369v-30h-369v-298h376v-30h-408zM173 723l98 144h36l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xcb;" horiz-adv-x="558" d="M88 0v667h408v-30h-376v-279h369v-30h-369v-298h376v-30h-408zM161 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM363 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xcc;" d="M-50 867h45l160 -144h-30zM88 0v667h32v-667h-32z" />
+<glyph unicode="&#xcd;" d="M53 723l160 144h45l-175 -144h-30zM88 0v667h32v-667h-32z" />
+<glyph unicode="&#xce;" d="M-12 723l98 144h36l101 -144h-28l-91 120l-88 -120h-28zM88 0v667h32v-667h-32z" />
+<glyph unicode="&#xcf;" d="M-25 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM88 0v667h32v-667h-32zM177 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="715" d="M12 318v30h107v319h198q150 0 241 -97.5t91 -236.5q0 -140 -90.5 -236.5t-241.5 -96.5h-198v318h-107zM151 30h166q138 0 217.5 86t79.5 217q0 130 -80 217t-217 87h-166v-289h188v-30h-188v-288z" />
+<glyph unicode="&#xd1;" horiz-adv-x="690" d="M88 0v667h32l450 -609v609h32v-667h-32l-450 615v-615h-32zM193 727q0 57 23.5 95.5t64.5 38.5q26 0 44.5 -17.5t27 -39t23 -39t33.5 -17.5q26 0 42.5 26.5t16.5 80.5h26q0 -57 -23.5 -95.5t-64.5 -38.5q-26 0 -44.5 17.5t-27 39t-23 39t-33.5 17.5q-26 0 -42.5 -26.5 t-16.5 -80.5h-26z" />
+<glyph unicode="&#xd2;" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q142 0 229.5 -98.5t87.5 -246.5t-87.5 -246.5t-229.5 -98.5q-143 0 -230 98.5t-87 246.5zM100 333q0 -138 77 -226.5t205 -88.5q127 0 204.5 88.5t77.5 226.5q0 139 -77.5 227t-204.5 88q-128 0 -205 -88t-77 -227zM228 867h45l160 -144 h-30z" />
+<glyph unicode="&#xd3;" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q142 0 229.5 -98.5t87.5 -246.5t-87.5 -246.5t-229.5 -98.5q-143 0 -230 98.5t-87 246.5zM100 333q0 -138 77 -226.5t205 -88.5q127 0 204.5 88.5t77.5 226.5q0 139 -77.5 227t-204.5 88q-128 0 -205 -88t-77 -227zM331 723l160 144h45 l-175 -144h-30z" />
+<glyph unicode="&#xd4;" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q142 0 229.5 -98.5t87.5 -246.5t-87.5 -246.5t-229.5 -98.5q-143 0 -230 98.5t-87 246.5zM100 333q0 -138 77 -226.5t205 -88.5q127 0 204.5 88.5t77.5 226.5q0 139 -77.5 227t-204.5 88q-128 0 -205 -88t-77 -227zM266 723l98 144h36 l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xd5;" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q142 0 229.5 -98.5t87.5 -246.5t-87.5 -246.5t-229.5 -98.5q-143 0 -230 98.5t-87 246.5zM100 333q0 -138 77 -226.5t205 -88.5q127 0 204.5 88.5t77.5 226.5q0 139 -77.5 227t-204.5 88q-128 0 -205 -88t-77 -227zM232 727 q0 57 23.5 95.5t64.5 38.5q26 0 44.5 -17.5t27 -39t23 -39t33.5 -17.5q26 0 42.5 26.5t16.5 80.5h26q0 -57 -23.5 -95.5t-64.5 -38.5q-26 0 -44.5 17.5t-27 39t-23 39t-33.5 17.5q-26 0 -42.5 -26.5t-16.5 -80.5h-26z" />
+<glyph unicode="&#xd6;" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q142 0 229.5 -98.5t87.5 -246.5t-87.5 -246.5t-229.5 -98.5q-143 0 -230 98.5t-87 246.5zM100 333q0 -138 77 -226.5t205 -88.5q127 0 204.5 88.5t77.5 226.5q0 139 -77.5 227t-204.5 88q-128 0 -205 -88t-77 -227zM251 765 q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM453 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="494" d="M71 179l155 155l-155 155l21 21l155 -155l155 155l21 -21l-155 -155l155 -155l-21 -21l-155 155l-155 -155z" />
+<glyph unicode="&#xd8;" horiz-adv-x="764" d="M65 333q0 148 87 246.5t230 98.5q89 0 162 -43l19 32h36l-30 -50q62 -46 96 -120.5t34 -163.5q0 -148 -87.5 -246.5t-229.5 -98.5q-92 0 -163 43l-18 -31h-36l29 48q-62 47 -95.5 121t-33.5 164zM100 333q0 -170 110 -258l318 534q-64 39 -146 39q-128 0 -205 -88 t-77 -227zM235 57q64 -39 147 -39q127 0 204.5 88.5t77.5 226.5q0 169 -111 258z" />
+<glyph unicode="&#xd9;" horiz-adv-x="672" d="M88 253v414h32v-414q0 -112 56 -173.5t160 -61.5t160 61.5t56 173.5v414h32v-414q0 -125 -64 -195t-184 -70t-184 70t-64 195zM182 867h45l160 -144h-30z" />
+<glyph unicode="&#xda;" horiz-adv-x="672" d="M88 253v414h32v-414q0 -112 56 -173.5t160 -61.5t160 61.5t56 173.5v414h32v-414q0 -125 -64 -195t-184 -70t-184 70t-64 195zM285 723l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xdb;" horiz-adv-x="672" d="M88 253v414h32v-414q0 -112 56 -173.5t160 -61.5t160 61.5t56 173.5v414h32v-414q0 -125 -64 -195t-184 -70t-184 70t-64 195zM222 723l98 144h36l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xdc;" horiz-adv-x="672" d="M88 253v414h32v-414q0 -112 56 -173.5t160 -61.5t160 61.5t56 173.5v414h32v-414q0 -125 -64 -195t-184 -70t-184 70t-64 195zM207 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM409 765q0 11 8.5 19.5t19.5 8.5 t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="610" d="M21 667h41l243 -346l243 346h41l-268 -378v-289h-32v289zM254 723l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xde;" horiz-adv-x="555" d="M88 0v667h32v-129h199q90 0 142.5 -55t52.5 -135q0 -79 -53 -133.5t-142 -54.5h-199v-160h-32zM120 190h198q73 0 117 44t44 114t-44 115t-117 45h-198v-318z" />
+<glyph unicode="&#xdf;" horiz-adv-x="558" d="M86 0v519q0 68 44 113t114 45q62 0 105 -30.5t43 -79.5q0 -36 -26 -62.5t-57 -41t-57 -40t-26 -58.5q0 -37 32 -58.5t77.5 -32t91 -23t77.5 -43t32 -81.5q0 -57 -43 -98t-130 -41q-65 0 -104.5 20t-72.5 57l24 22q55 -72 153 -72q69 0 106 33t37 79q0 41 -32 65 t-77.5 35.5t-91 24t-77.5 40.5t-32 75q0 38 26 67t57 44.5t57 38.5t26 50q0 38 -36.5 60.5t-81.5 22.5q-54 0 -91 -36t-37 -95v-519h-30z" />
+<glyph unicode="&#xe0;" horiz-adv-x="514" d="M62 149q0 74 50 117.5t119 43.5q102 0 167 -71v109q0 56 -39 88t-97 32q-92 0 -155 -76l-23 20q37 43 78 63t100 20q74 0 120 -37.5t46 -108.5v-349h-30v59q-65 -71 -167 -71q-68 0 -118.5 43.5t-50.5 117.5zM95 149q0 -57 39.5 -95.5t104.5 -38.5q103 0 159 74v120 q-56 74 -159 74q-65 0 -104.5 -38.5t-39.5 -95.5zM108 700h45l160 -144h-30z" />
+<glyph unicode="&#xe1;" horiz-adv-x="514" d="M62 149q0 74 50 117.5t119 43.5q102 0 167 -71v109q0 56 -39 88t-97 32q-92 0 -155 -76l-23 20q37 43 78 63t100 20q74 0 120 -37.5t46 -108.5v-349h-30v59q-65 -71 -167 -71q-68 0 -118.5 43.5t-50.5 117.5zM95 149q0 -57 39.5 -95.5t104.5 -38.5q103 0 159 74v120 q-56 74 -159 74q-65 0 -104.5 -38.5t-39.5 -95.5zM211 556l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xe2;" horiz-adv-x="514" d="M62 149q0 74 50 117.5t119 43.5q102 0 167 -71v109q0 56 -39 88t-97 32q-92 0 -155 -76l-23 20q37 43 78 63t100 20q74 0 120 -37.5t46 -108.5v-349h-30v59q-65 -71 -167 -71q-68 0 -118.5 43.5t-50.5 117.5zM95 149q0 -57 39.5 -95.5t104.5 -38.5q103 0 159 74v120 q-56 74 -159 74q-65 0 -104.5 -38.5t-39.5 -95.5zM146 556l98 144h36l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xe3;" horiz-adv-x="514" d="M62 149q0 74 50 117.5t119 43.5q102 0 167 -71v109q0 56 -39 88t-97 32q-92 0 -155 -76l-23 20q37 43 78 63t100 20q74 0 120 -37.5t46 -108.5v-349h-30v59q-65 -71 -167 -71q-68 0 -118.5 43.5t-50.5 117.5zM95 149q0 -57 39.5 -95.5t104.5 -38.5q103 0 159 74v120 q-56 74 -159 74q-65 0 -104.5 -38.5t-39.5 -95.5zM111 560q0 57 23.5 95.5t64.5 38.5q26 0 44.5 -17.5t27 -39t23 -39t33.5 -17.5q26 0 42.5 26.5t16.5 80.5h26q0 -57 -23.5 -95.5t-64.5 -38.5q-26 0 -44.5 17.5t-27 39t-23 39t-33.5 17.5q-26 0 -42.5 -26.5t-16.5 -80.5 h-26z" />
+<glyph unicode="&#xe4;" horiz-adv-x="514" d="M62 149q0 74 50 117.5t119 43.5q102 0 167 -71v109q0 56 -39 88t-97 32q-92 0 -155 -76l-23 20q37 43 78 63t100 20q74 0 120 -37.5t46 -108.5v-349h-30v59q-65 -71 -167 -71q-68 0 -118.5 43.5t-50.5 117.5zM95 149q0 -57 39.5 -95.5t104.5 -38.5q103 0 159 74v120 q-56 74 -159 74q-65 0 -104.5 -38.5t-39.5 -95.5zM131 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM333 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="514" d="M62 149q0 74 50 117.5t119 43.5q102 0 167 -71v109q0 56 -39 88t-97 32q-92 0 -155 -76l-23 20q37 43 78 63t100 20q74 0 120 -37.5t46 -108.5v-349h-30v59q-65 -71 -167 -71q-68 0 -118.5 43.5t-50.5 117.5zM95 149q0 -57 39.5 -95.5t104.5 -38.5q103 0 159 74v120 q-56 74 -159 74q-65 0 -104.5 -38.5t-39.5 -95.5zM168 646q0 38 27.5 65.5t65.5 27.5t65 -27.5t27 -65.5t-27 -65.5t-65 -27.5t-65.5 27.5t-27.5 65.5zM192 646q0 -28 20 -48.5t49 -20.5q28 0 48 20t20 49t-20 49t-48 20q-29 0 -49 -20.5t-20 -48.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="905" d="M62 150q0 74 52.5 117t127.5 43q112 0 182 -69v107q0 57 -40 88.5t-108 31.5q-100 0 -169 -76l-23 20q71 83 200 83q61 0 111 -29.5t57 -94.5q23 54 72.5 89t108.5 35q101 0 156.5 -73t55.5 -180v-10h-391q3 -92 54 -154.5t134 -62.5q93 0 157 73l18 -19 q-71 -81 -174 -81q-68 0 -120.5 37t-77.5 105q-21 -65 -72.5 -103.5t-119.5 -38.5q-84 0 -137.5 43.5t-53.5 118.5zM95 149q0 -57 43 -95.5t114 -38.5q78 0 125 51t47 122v19q-61 76 -172 76q-71 0 -114 -38.5t-43 -95.5zM454 259h359q0 81 -46 145t-134 64 q-80 0 -128 -64.5t-51 -144.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="493" d="M60 242q0 107 63 180t165 73q56 0 94 -20t71 -61l-22 -18q-53 72 -141 72q-91 0 -144 -64.5t-53 -161.5q0 -98 53.5 -162.5t143.5 -64.5q87 0 141 73l22 -19q-61 -77 -154 -81l-16 -44q15 12 38 12q29 0 47 -17.5t18 -47.5q0 -33 -28 -54.5t-70 -21.5q-58 0 -93 28l14 27 q32 -28 79 -28q29 0 49 13.5t20 35.5q0 43 -44 43q-27 0 -43 -19l-22 13l22 61q-95 7 -152.5 79t-57.5 174z" />
+<glyph unicode="&#xe8;" horiz-adv-x="571" d="M60 242q0 106 65 179.5t162 73.5q106 0 165 -73t59 -180v-10h-417q2 -92 57.5 -154.5t145.5 -62.5q100 0 168 73l18 -19q-78 -81 -186 -81q-105 0 -171 71.5t-66 182.5zM94 259h385q0 49 -20 95.5t-65.5 80t-107.5 33.5q-87 0 -138 -64.5t-54 -144.5zM133 700h45 l160 -144h-30z" />
+<glyph unicode="&#xe9;" horiz-adv-x="571" d="M60 242q0 106 65 179.5t162 73.5q106 0 165 -73t59 -180v-10h-417q2 -92 57.5 -154.5t145.5 -62.5q100 0 168 73l18 -19q-78 -81 -186 -81q-105 0 -171 71.5t-66 182.5zM94 259h385q0 49 -20 95.5t-65.5 80t-107.5 33.5q-87 0 -138 -64.5t-54 -144.5zM236 556l160 144h45 l-175 -144h-30z" />
+<glyph unicode="&#xea;" horiz-adv-x="571" d="M60 242q0 106 65 179.5t162 73.5q106 0 165 -73t59 -180v-10h-417q2 -92 57.5 -154.5t145.5 -62.5q100 0 168 73l18 -19q-78 -81 -186 -81q-105 0 -171 71.5t-66 182.5zM94 259h385q0 49 -20 95.5t-65.5 80t-107.5 33.5q-87 0 -138 -64.5t-54 -144.5zM172 556l98 144h36 l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xeb;" horiz-adv-x="571" d="M60 242q0 106 65 179.5t162 73.5q106 0 165 -73t59 -180v-10h-417q2 -92 57.5 -154.5t145.5 -62.5q100 0 168 73l18 -19q-78 -81 -186 -81q-105 0 -171 71.5t-66 182.5zM94 259h385q0 49 -20 95.5t-65.5 80t-107.5 33.5q-87 0 -138 -64.5t-54 -144.5zM159 598 q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM361 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="202" d="M-53 700h45l160 -144h-30zM86 0v483h30v-483h-30z" />
+<glyph unicode="&#xed;" horiz-adv-x="202" d="M50 556l160 144h45l-175 -144h-30zM86 0v483h30v-483h-30z" />
+<glyph unicode="&#xee;" horiz-adv-x="202" d="M-16 556l98 144h36l101 -144h-28l-91 120l-88 -120h-28zM86 0v483h30v-483h-30z" />
+<glyph unicode="&#xef;" horiz-adv-x="202" d="M-28 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM86 0v483h30v-483h-30zM174 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q95 0 156 -85q-63 99 -162 174l-141 -62l-11 26l126 56q-41 28 -87 57l18 27q66 -41 103 -69l111 49l11 -26l-97 -43q198 -163 198 -357q0 -109 -62 -181.5t-163 -72.5q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -160.5 t140 -66.5q89 0 140.5 66.5t51.5 160.5q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="528" d="M86 0v483h30v-76q29 35 78 61.5t97 26.5q75 0 113 -37.5t38 -120.5v-337h-30v337q0 72 -32 101.5t-93 29.5q-48 0 -96 -26.5t-75 -64.5v-377h-30zM114 560q0 57 23.5 95.5t64.5 38.5q26 0 44.5 -17.5t27 -39t23 -39t33.5 -17.5q26 0 42.5 26.5t16.5 80.5h26 q0 -57 -23.5 -95.5t-64.5 -38.5q-26 0 -44.5 17.5t-27 39t-23 39t-33.5 17.5q-26 0 -42.5 -26.5t-16.5 -80.5h-26z" />
+<glyph unicode="&#xf2;" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q101 0 163 -72t62 -181t-62 -181.5t-163 -72.5q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -160.5t140 -66.5q89 0 140.5 66.5t51.5 160.5q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5zM131 700h45l160 -144 h-30z" />
+<glyph unicode="&#xf3;" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q101 0 163 -72t62 -181t-62 -181.5t-163 -72.5q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -160.5t140 -66.5q89 0 140.5 66.5t51.5 160.5q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5zM234 556l160 144h45 l-175 -144h-30z" />
+<glyph unicode="&#xf4;" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q101 0 163 -72t62 -181t-62 -181.5t-163 -72.5q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -160.5t140 -66.5q89 0 140.5 66.5t51.5 160.5q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5zM169 556l98 144h36 l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xf5;" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q101 0 163 -72t62 -181t-62 -181.5t-163 -72.5q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -160.5t140 -66.5q89 0 140.5 66.5t51.5 160.5q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5zM135 560 q0 57 23.5 95.5t64.5 38.5q26 0 44.5 -17.5t27 -39t23 -39t33.5 -17.5q26 0 42.5 26.5t16.5 80.5h26q0 -57 -23.5 -95.5t-64.5 -38.5q-26 0 -44.5 17.5t-27 39t-23 39t-33.5 17.5q-26 0 -42.5 -26.5t-16.5 -80.5h-26z" />
+<glyph unicode="&#xf6;" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q101 0 163 -72t62 -181t-62 -181.5t-163 -72.5q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -160.5t140 -66.5q89 0 140.5 66.5t51.5 160.5q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5zM156 598q0 11 8.5 19.5 t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM358 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M29 322v30h453v-30h-453zM223 133q0 13 9.5 23t23.5 10t23.5 -10t9.5 -23t-9.5 -23t-23.5 -10t-23.5 10t-9.5 23zM223 536q0 13 9.5 22.5t23.5 9.5t23.5 -9.5t9.5 -22.5q0 -14 -10 -24t-23 -10t-23 10t-10 24z" />
+<glyph unicode="&#xf8;" horiz-adv-x="570" d="M60 242q0 108 62.5 180.5t162.5 72.5q76 0 133 -44l24 32h33l-37 -50q72 -72 72 -191q0 -109 -62 -181.5t-163 -72.5q-81 0 -139 49l-28 -37h-34l42 56q-66 72 -66 186zM93 242q0 -96 52 -160l255 345q-49 41 -115 41q-88 0 -140 -66.5t-52 -159.5zM163 61 q49 -46 122 -46q89 0 140.5 66.5t51.5 160.5q0 101 -57 166z" />
+<glyph unicode="&#xf9;" horiz-adv-x="528" d="M86 144v339h30v-339q0 -72 32 -100.5t93 -28.5q48 0 96.5 25.5t74.5 62.5v380h30v-483h-30v74q-33 -37 -80 -61.5t-95 -24.5q-75 0 -113 36.5t-38 119.5zM110 700h45l160 -144h-30z" />
+<glyph unicode="&#xfa;" horiz-adv-x="528" d="M86 144v339h30v-339q0 -72 32 -100.5t93 -28.5q48 0 96.5 25.5t74.5 62.5v380h30v-483h-30v74q-33 -37 -80 -61.5t-95 -24.5q-75 0 -113 36.5t-38 119.5zM213 556l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xfb;" horiz-adv-x="528" d="M86 144v339h30v-339q0 -72 32 -100.5t93 -28.5q48 0 96.5 25.5t74.5 62.5v380h30v-483h-30v74q-33 -37 -80 -61.5t-95 -24.5q-75 0 -113 36.5t-38 119.5zM146 556l98 144h36l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#xfc;" horiz-adv-x="528" d="M86 144v339h30v-339q0 -72 32 -100.5t93 -28.5q48 0 96.5 25.5t74.5 62.5v380h30v-483h-30v74q-33 -37 -80 -61.5t-95 -24.5q-75 0 -113 36.5t-38 119.5zM139 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM341 598 q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="471" d="M11 483h35l190 -448l189 448h35l-256 -597q-36 -82 -106 -82q-27 0 -48 7l6 28q18 -8 42 -8q25 0 42.5 14.5t33.5 51.5l44 100zM185 556l160 144h45l-175 -144h-30z" />
+<glyph unicode="&#xfe;" horiz-adv-x="562" d="M86 -184v851h30v-265q26 40 73 66.5t101 26.5q98 0 157 -69t59 -184q0 -114 -59.5 -184t-156.5 -70q-53 0 -98.5 25.5t-75.5 69.5v-267h-30zM116 113q24 -40 72 -69t102 -29q86 0 134.5 64t48.5 163t-48.5 162.5t-134.5 63.5q-54 0 -102 -28t-72 -68v-259z" />
+<glyph unicode="&#xff;" horiz-adv-x="471" d="M11 483h35l190 -448l189 448h35l-256 -597q-36 -82 -106 -82q-27 0 -48 7l6 28q18 -8 42 -8q25 0 42.5 14.5t33.5 51.5l44 100zM107 598q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM309 598q0 11 8.5 19.5t19.5 8.5 t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#x152;" horiz-adv-x="1124" d="M65 333q0 148 87 246t230 98q86 0 158 -43.5t111 -123.5v157h408v-30h-376v-279h369v-30h-369v-298h376v-30h-408v157q-39 -81 -111 -125t-158 -44q-143 0 -230 98.5t-87 246.5zM100 333q0 -139 77 -227t205 -88q93 0 164 51t105 149v231q-34 98 -104.5 148t-164.5 50 q-128 0 -205 -87.5t-77 -226.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="988" d="M60 242q0 108 62.5 180.5t162.5 72.5q48 0 88 -17t64 -44.5t37.5 -53t19.5 -49.5q7 25 22 51t39.5 52.5t63.5 43.5t85 17q106 0 165 -73t59 -180v-10h-417q2 -92 57.5 -154.5t145.5 -62.5q100 0 168 73l18 -19q-78 -81 -186 -81q-50 0 -90.5 16.5t-66 42.5t-41 52.5 t-22.5 52.5q-8 -26 -21.5 -51t-37.5 -52t-63 -44t-87 -17q-100 0 -162.5 72.5t-62.5 181.5zM93 242q0 -94 52 -161t140 -67q89 0 140.5 67t51.5 161q0 93 -51.5 159.5t-140.5 66.5q-88 0 -140 -66.5t-52 -159.5zM511 259h385q0 49 -20 95.5t-65.5 80t-107.5 33.5 q-87 0 -138 -64.5t-54 -144.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="610" d="M21 667h41l243 -346l243 346h41l-268 -378v-289h-32v289zM180 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5zM382 765q0 11 8.5 19.5t19.5 8.5t19.5 -8.5t8.5 -19.5t-8.5 -19.5t-19.5 -8.5t-19.5 8.5t-8.5 19.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="235" d="M0 556l98 144h36l101 -144h-28l-91 120l-88 -120h-28z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="301" d="M0 560q0 57 23.5 95.5t64.5 38.5q26 0 44.5 -17.5t27 -39t23 -39t33.5 -17.5q26 0 42.5 26.5t16.5 80.5h26q0 -57 -23.5 -95.5t-64.5 -38.5q-26 0 -44.5 17.5t-27 39t-23 39t-33.5 17.5q-26 0 -42.5 -26.5t-16.5 -80.5h-26z" />
+<glyph unicode="&#x2000;" horiz-adv-x="439" />
+<glyph unicode="&#x2001;" horiz-adv-x="878" />
+<glyph unicode="&#x2002;" horiz-adv-x="439" />
+<glyph unicode="&#x2003;" horiz-adv-x="878" />
+<glyph unicode="&#x2004;" horiz-adv-x="292" />
+<glyph unicode="&#x2005;" horiz-adv-x="219" />
+<glyph unicode="&#x2006;" horiz-adv-x="146" />
+<glyph unicode="&#x2007;" horiz-adv-x="146" />
+<glyph unicode="&#x2008;" horiz-adv-x="109" />
+<glyph unicode="&#x2009;" horiz-adv-x="175" />
+<glyph unicode="&#x200a;" horiz-adv-x="48" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M30 227v30h240v-30h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M30 227v30h240v-30h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M30 227v30h240v-30h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M30 227v30h533v-30h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M30 227v30h773v-30h-773z" />
+<glyph unicode="&#x2018;" d="M55 556q0 36 18 69.5t44 51.5l22 -18q-24 -18 -38.5 -43.5t-14.5 -48.5q6 1 8 1q14 0 23 -9.5t9 -23.5q0 -13 -9 -22.5t-23 -9.5q-16 0 -27.5 14t-11.5 39z" />
+<glyph unicode="&#x2019;" d="M58 521q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39q0 -36 -18 -69.5t-44 -51.5z" />
+<glyph unicode="&#x201a;" d="M58 -100q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39q0 -36 -18 -69.5t-44 -51.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="331" d="M66 556q0 36 18 69.5t44 51.5l22 -18q-24 -18 -38.5 -43.5t-14.5 -48.5q6 1 8 1q14 0 23 -9.5t9 -23.5q0 -13 -9 -22.5t-23 -9.5q-16 0 -27.5 14t-11.5 39zM189 556q0 36 18 69.5t44 51.5l22 -18q-24 -18 -38.5 -43.5t-14.5 -48.5q6 1 8 1q14 0 23 -9.5t9 -23.5 q0 -13 -9 -22.5t-23 -9.5q-16 0 -27.5 14t-11.5 39z" />
+<glyph unicode="&#x201d;" horiz-adv-x="331" d="M58 521q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39q0 -36 -18 -69.5t-44 -51.5zM181 521q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39 q0 -36 -18 -69.5t-44 -51.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="331" d="M58 -100q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39q0 -36 -18 -69.5t-44 -51.5zM181 -100q24 18 38.5 43.5t14.5 48.5q-6 -1 -8 -1q-14 0 -23 9.5t-9 23.5q0 13 9 22.5t23 9.5q16 0 27.5 -14t11.5 -39 q0 -36 -18 -69.5t-44 -51.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M82 242q0 40 29 69t69 29t69 -29t29 -69t-29 -68.5t-69 -28.5t-69 28.5t-29 68.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="624" d="M71 24q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5q0 -14 -9.5 -23.5t-23.5 -9.5t-23.5 9.5t-9.5 23.5zM279 24q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5q0 -14 -9.5 -23.5t-23.5 -9.5t-23.5 9.5t-9.5 23.5zM487 24q0 13 10 22.5t23 9.5t23 -9.5t10 -22.5q0 -14 -9.5 -23.5 t-23.5 -9.5t-23.5 9.5t-9.5 23.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="175" />
+<glyph unicode="&#x2039;" horiz-adv-x="259" d="M30 243l160 177h39l-160 -177l160 -180h-39z" />
+<glyph unicode="&#x203a;" horiz-adv-x="259" d="M30 63l160 180l-160 177h39l160 -177l-160 -180h-39z" />
+<glyph unicode="&#x205f;" horiz-adv-x="219" />
+<glyph unicode="&#x20ac;" horiz-adv-x="684" d="M39 247v30h50q-4 24 -4 56q0 20 4 58h-50v30h55q27 116 116.5 186.5t207.5 70.5q141 0 232 -105l-25 -22q-36 45 -90.5 71t-116.5 26q-105 0 -184 -62t-104 -165h348v-30h-354q-4 -25 -4 -58q0 -20 4 -56h354v-30h-348q25 -104 104 -166.5t184 -62.5q62 0 116.5 26 t90.5 71l26 -21q-94 -106 -233 -106q-119 0 -208.5 71t-115.5 188h-55z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M17 641v26h152v-26h-62v-194h-28v194h-62zM205 447v220h43l64 -160l64 160h43v-220h-28v182l-75 -182h-8l-75 182v-182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="20" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="10" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="50" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="60" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="K" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="30" />
+<hkern g1="K" 	g2="x" 	k="20" />
+<hkern g1="L" 	g2="question" 	k="120" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="110" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="L" 	g2="asterisk" 	k="180" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="60" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="120" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="L" 	g2="w" 	k="40" />
+<hkern g1="L" 	g2="v" 	k="60" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="L" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="L" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="L" 	g2="t" 	k="30" />
+<hkern g1="L" 	g2="ampersand" 	k="10" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="80" />
+<hkern g1="P" 	g2="J" 	k="100" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="100" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="40" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="P" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="10" />
+<hkern g1="P" 	g2="ampersand" 	k="20" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="14" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="20" />
+<hkern g1="S" 	g2="x" 	k="10" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="100" />
+<hkern g1="T" 	g2="w" 	k="80" />
+<hkern g1="T" 	g2="v" 	k="80" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="80" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="70" />
+<hkern g1="T" 	g2="J" 	k="80" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="110" />
+<hkern g1="T" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="130" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="40" />
+<hkern g1="T" 	g2="x" 	k="90" />
+<hkern g1="T" 	g2="ampersand" 	k="60" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="100" />
+<hkern g1="T" 	g2="s" 	k="100" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="V" 	g2="v" 	k="10" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="60" />
+<hkern g1="V" 	g2="J" 	k="90" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="60" />
+<hkern g1="V" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="V" 	g2="t" 	k="10" />
+<hkern g1="V" 	g2="x" 	k="20" />
+<hkern g1="V" 	g2="ampersand" 	k="20" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="V" 	g2="s" 	k="30" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="50" />
+<hkern g1="W" 	g2="J" 	k="20" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="70" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="30" />
+<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="40" />
+<hkern g1="W" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="10" />
+<hkern g1="W" 	g2="t" 	k="10" />
+<hkern g1="W" 	g2="x" 	k="20" />
+<hkern g1="W" 	g2="ampersand" 	k="20" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="W" 	g2="s" 	k="10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="110" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="110" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="130" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="130" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="70" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="question" 	k="30" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="T" 	k="120" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="W" 	k="40" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="V" 	k="60" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="T" 	k="80" />
+<hkern g1="ampersand" 	g2="W" 	k="60" />
+<hkern g1="ampersand" 	g2="V" 	k="50" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="110" />
+<hkern g1="asterisk" 	g2="J" 	k="110" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="130" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="130" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="40" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="20" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="90" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="20" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="30" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="20" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="50" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="f" 	g2="question" 	k="-60" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-70" />
+<hkern g1="f" 	g2="asterisk" 	k="-70" />
+<hkern g1="f" 	g2="S" 	k="-20" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-60" />
+<hkern g1="f" 	g2="V" 	k="-60" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-50" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="40" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-80" />
+<hkern g1="g,j,q" 	g2="question" 	k="20" />
+<hkern g1="g,j,q" 	g2="T" 	k="100" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="30" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-40" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="30" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="50" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="40" />
+<hkern g1="k" 	g2="T" 	k="90" />
+<hkern g1="k" 	g2="W" 	k="20" />
+<hkern g1="k" 	g2="V" 	k="20" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="k" 	g2="bullet" 	k="30" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="50" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="10" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="20" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="40" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="110" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="80" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="70" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="60" />
+<hkern g1="r" 	g2="V" 	k="20" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
+<hkern g1="s" 	g2="question" 	k="40" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="100" />
+<hkern g1="s" 	g2="W" 	k="30" />
+<hkern g1="s" 	g2="V" 	k="40" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="t" 	g2="T" 	k="70" />
+<hkern g1="t" 	g2="W" 	k="10" />
+<hkern g1="t" 	g2="V" 	k="20" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="20" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="100" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="V" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="80" />
+<hkern g1="v" 	g2="V" 	k="10" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="70" />
+<hkern g1="v" 	g2="X" 	k="40" />
+<hkern g1="w" 	g2="T" 	k="80" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="w" 	g2="X" 	k="50" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="80" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="40" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="50" />
+<hkern g1="X" 	g2="v" 	k="40" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="40" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="40" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="40" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="100" />
+<hkern g1="x" 	g2="T" 	k="90" />
+<hkern g1="x" 	g2="W" 	k="20" />
+<hkern g1="x" 	g2="V" 	k="20" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="x" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..7d897a07df912b389eaddbfebc74f8f55211a885
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.woff
new file mode 100755
index 0000000000000000000000000000000000000000..59373c8680dd0214c5aa8426da8877c20eb5eb56
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Thin.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.eot
new file mode 100755
index 0000000000000000000000000000000000000000..a1fa55ba765991fe52b8ef69e16f3276c4a71cd6
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..a0faabe0f502abd681494ab6bdb0d5e9b60cef5a
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.svg
new file mode 100755
index 0000000000000000000000000000000000000000..0b90096c5d43953e6350bf039b6fca0cce3d317e
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.svg
@@ -0,0 +1,533 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_novathin_italic" horiz-adv-x="208" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="260" />
+<glyph unicode="&#xfb01;" horiz-adv-x="448" d="M46 0l101 456h-80l6 27h80l11 51q32 143 140 143q39 0 67 -19l-15 -23q-20 15 -55 15q-82 0 -107 -116l-11 -51h98l-6 -27h-98l-101 -456h-30zM278 0l107 483h30l-107 -483h-30zM394 592q0 14 10.5 23t22.5 9q11 0 19 -7.5t8 -18.5q0 -14 -10.5 -23t-22.5 -9 q-11 0 -19 7.5t-8 18.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="448" d="M46 0l101 456h-80l6 27h80l11 51q32 143 140 143q39 0 67 -19l-15 -23q-20 15 -55 15q-82 0 -107 -116l-11 -51h98l-6 -27h-98l-101 -456h-30zM278 0l147 667h30l-147 -667h-30z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="694" d="M46 0l101 456h-80l6 27h80l11 51q32 143 140 143q50 0 85 -34l-20 -20q-25 27 -68 27q-82 0 -107 -116l-11 -51h98l-6 -27h-98l-101 -456h-30zM292 0l101 456h-80l6 27h80l11 51q32 143 140 143q39 0 67 -19l-15 -23q-20 15 -55 15q-82 0 -107 -116l-11 -51h98l-6 -27 h-98l-101 -456h-30zM524 0l107 483h30l-107 -483h-30zM640 592q0 14 10.5 23t22.5 9q11 0 19 -7.5t8 -18.5q0 -14 -10.5 -23t-22.5 -9q-11 0 -19 7.5t-8 18.5z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="694" d="M46 0l101 456h-80l6 27h80l11 51q32 143 140 143q50 0 85 -34l-20 -20q-25 27 -68 27q-82 0 -107 -116l-11 -51h98l-6 -27h-98l-101 -456h-30zM292 0l101 456h-80l6 27h80l11 51q32 143 140 143q39 0 67 -19l-15 -23q-20 15 -55 15q-82 0 -107 -116l-11 -51h98l-6 -27 h-98l-101 -456h-30zM524 0l147 667h30l-147 -667h-30z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="260" />
+<glyph unicode="&#x09;" horiz-adv-x="260" />
+<glyph unicode="&#xa0;" horiz-adv-x="260" />
+<glyph unicode="!" d="M22 21q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5zM75 161l101 506h42l-123 -506h-20z" />
+<glyph unicode="&#x22;" horiz-adv-x="290" d="M119 443q28 189 30 201q5 33 31 33q10 0 16.5 -7t6.5 -17q0 -5 -4 -17l-59 -193h-21zM235 443q28 189 30 201q5 33 31 33q10 0 16.5 -7t6.5 -17q0 -5 -4 -17l-59 -193h-21z" />
+<glyph unicode="#" horiz-adv-x="567" d="M14 191l15 29h116l127 227h-117l14 29h119l105 191h33l-105 -191h124l105 191h33l-106 -191h115l-13 -29h-117l-128 -227h120l-15 -29h-120l-106 -191h-33l107 191h-125l-106 -191h-33l106 191h-115zM178 220h123l128 227h-124z" />
+<glyph unicode="$" horiz-adv-x="575" d="M31 103l29 21q59 -86 165 -102l70 313q-40 17 -63 29t-50.5 32.5t-40.5 46.5t-13 59q0 73 63.5 124.5t151.5 51.5q5 0 14 -0.5t13 -0.5l21 91h32l-21 -95q113 -20 160 -98l-29 -21q-45 71 -138 89l-63 -285q31 -13 50.5 -23t44 -26.5t39 -33t24.5 -40.5t10 -51 q0 -77 -60.5 -136.5t-166.5 -59.5q-4 0 -12 0.5t-11 0.5l-20 -89h-32l20 93q-64 10 -114 40t-73 70zM164 502q0 -44 34.5 -72t104.5 -59l61 276q-4 0 -11 0.5t-10 0.5q-74 0 -126.5 -44.5t-52.5 -101.5zM256 18h20q92 0 140 51t48 115q0 49 -36 79t-104 60z" />
+<glyph unicode="%" horiz-adv-x="709" d="M73 0l573 667h37l-574 -667h-36zM92 483q0 84 51.5 139t120.5 55q60 0 100 -37t40 -95q0 -84 -51.5 -139t-120.5 -55q-60 0 -100 37t-40 95zM125 486q0 -46 30.5 -77t77.5 -31q55 0 96.5 48t41.5 116q0 46 -30.5 77t-77.5 31q-55 0 -96.5 -48t-41.5 -116zM343 120 q0 84 51.5 139t120.5 55q60 0 100 -37t40 -95q0 -84 -51.5 -139t-120.5 -55q-60 0 -100 37t-40 95zM376 123q0 -47 31 -77.5t77 -30.5q55 0 96.5 48t41.5 116q0 47 -31 77.5t-77 30.5q-55 0 -96.5 -48t-41.5 -116z" />
+<glyph unicode="&#x26;" horiz-adv-x="637" d="M26 147q0 38 11.5 70t29 54t45.5 43t53 34t61 29q-28 67 -28 124q0 71 51 123.5t117 52.5q56 0 91 -28t35 -78q0 -32 -13 -60t-28 -45.5t-50 -38.5t-53 -29.5t-63 -27.5q-3 -1 -5 -2t-4.5 -2t-4.5 -2q20 -44 64 -116q46 -75 78 -121q64 67 119 166l29 -15 q-71 -118 -127 -178q39 -53 80 -100h-48q-27 31 -58 75q-94 -87 -195 -87q-81 0 -134 42.5t-53 116.5zM62 152q0 -64 44 -99t107 -35q86 0 176 85q-46 63 -82 123q-46 76 -69 124q-84 -37 -130 -81t-46 -117zM233 501q0 -47 26 -110q41 17 60.5 25.5t51 26.5t46.5 33.5 t27 39.5t12 52q0 37 -26 58t-64 21q-49 0 -91 -40t-42 -106z" />
+<glyph unicode="'" horiz-adv-x="176" d="M119 443q28 189 30 201q5 33 31 33q10 0 16.5 -7t6.5 -17q0 -5 -4 -17l-59 -193h-21z" />
+<glyph unicode="(" horiz-adv-x="206" d="M26 77q0 314 244 608l14 -13q-111 -154 -168.5 -303t-57.5 -313q0 -103 36 -245l-19 -10q-49 135 -49 276z" />
+<glyph unicode=")" horiz-adv-x="206" d="M-79 -186q111 154 168.5 303t57.5 313q0 103 -36 245l19 10q49 -135 49 -276q0 -314 -244 -608z" />
+<glyph unicode="*" horiz-adv-x="330" d="M95 503l118 42l-93 64l20 24l85 -74l20 118h31l-33 -120l114 53l9 -27l-117 -42l92 -64l-20 -24l-85 74l-20 -118h-31l33 120l-114 -53z" />
+<glyph unicode="+" horiz-adv-x="494" d="M46 322l7 30h202l47 216h32l-47 -216h202l-7 -30h-202l-49 -222h-32l49 222h-202z" />
+<glyph unicode="," d="M-18 -92q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5z" />
+<glyph unicode="-" horiz-adv-x="300" d="M26 227l6 30h240l-6 -30h-240z" />
+<glyph unicode="." d="M22 21q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="/" horiz-adv-x="268" d="M-59 -20l393 707h33l-394 -707h-32z" />
+<glyph unicode="0" horiz-adv-x="605" d="M72 240q0 72 20.5 147.5t57 141t95 107t127.5 41.5q99 0 149 -67.5t50 -183.5q0 -72 -20 -148t-56 -141.5t-94.5 -107t-127.5 -41.5q-99 0 -150 68t-51 184zM106 237q0 -99 41 -159t128 -60q77 0 139 66.5t92.5 159.5t30.5 185q0 99 -40.5 158.5t-127.5 59.5 q-77 0 -139 -66t-93 -159t-31 -185z" />
+<glyph unicode="1" horiz-adv-x="277" d="M93 529l159 138h30l-147 -667h-32l137 621l-130 -115z" />
+<glyph unicode="2" horiz-adv-x="577" d="M5 0l9 38q95 63 151.5 102t129.5 95.5t112.5 98.5t68 91.5t28.5 93.5q0 60 -45.5 94t-118.5 34q-108 0 -175 -69l-22 21q33 35 86 56.5t111 21.5q83 0 141 -40t58 -118q0 -35 -15.5 -72.5t-37.5 -70t-63 -72t-75 -68.5t-92 -70.5t-95.5 -67t-102.5 -68.5h374l-6 -30h-421 z" />
+<glyph unicode="3" horiz-adv-x="531" d="M5 127l31 13q20 -56 72.5 -89t120.5 -33q87 0 140 50.5t53 129.5q0 59 -48 95.5t-122 36.5q-39 0 -50 -1l8 32q9 -1 88 -1q76 0 131 40.5t55 113.5q0 56 -47.5 94.5t-123.5 38.5q-98 0 -174 -75l-21 23q37 38 89.5 60t105.5 22q88 0 145 -43.5t57 -119.5 q0 -78 -55.5 -125.5t-125.5 -50.5q50 -11 85 -48.5t35 -91.5q0 -87 -62 -148.5t-163 -61.5q-79 0 -142 39.5t-82 99.5z" />
+<glyph unicode="4" horiz-adv-x="524" d="M27 195l8 35l399 437h44l-98 -442h101l-6 -30h-101l-43 -195h-32l43 195h-315zM68 225h280l90 406z" />
+<glyph unicode="5" horiz-adv-x="574" d="M49 125l30 16q48 -123 190 -123q82 0 142 59t60 145q0 74 -48.5 116t-123.5 42q-77 0 -153 -54l-22 18l71 323h364l-6 -30h-332l-61 -274q60 47 146 47q83 0 140.5 -49.5t57.5 -137.5q0 -96 -68.5 -165.5t-171.5 -69.5q-158 0 -215 137z" />
+<glyph unicode="6" horiz-adv-x="577" d="M68 223q0 52 10 110t33.5 120t57.5 111.5t86.5 81t115.5 31.5q66 0 113 -28t69 -80l-29 -18q-37 96 -155 96q-45 0 -84 -20t-66.5 -51t-50 -75t-36.5 -86.5t-24 -91.5q-3 -13 -3 -16q32 37 90 68t118 31q88 0 141.5 -45t53.5 -124q0 -101 -69 -175t-172 -74 q-97 0 -148 61t-51 174zM98 207q0 -85 44 -137t128 -52q87 0 146 64.5t59 149.5q0 67 -45 105.5t-121 38.5q-114 0 -209 -110q-2 -20 -2 -59z" />
+<glyph unicode="7" horiz-adv-x="489" d="M68 0l432 637h-377l6 30h417l-5 -22l-435 -645h-38z" />
+<glyph unicode="8" horiz-adv-x="561" d="M44 151q0 79 59.5 130.5t156.5 67.5q-53 18 -91 55.5t-38 90.5q0 86 65.5 134t149.5 48t142.5 -43.5t58.5 -114.5q0 -75 -56 -121t-147 -58q53 -20 95 -60.5t42 -102.5q0 -80 -64 -134.5t-157 -54.5q-97 0 -156.5 43.5t-59.5 119.5zM77 156q0 -65 53 -101.5t129 -36.5 q75 0 132.5 43.5t57.5 116.5q0 56 -47.5 97t-101.5 55q-97 -7 -160 -54.5t-63 -119.5zM164 496q0 -49 45 -87t97 -50q93 8 150 49t57 111q0 54 -49 90.5t-119 36.5q-75 0 -128 -40.5t-53 -109.5z" />
+<glyph unicode="9" horiz-adv-x="577" d="M62 97l29 18q37 -96 155 -96q45 0 84 20t66.5 51t50 75t36.5 86.5t24 91.5q3 14 3 16q-32 -37 -90 -68t-118 -31q-88 0 -141.5 45t-53.5 124q0 101 69 175t172 74q97 0 148 -61t51 -174q0 -52 -10 -110t-33.5 -120t-57.5 -111.5t-86.5 -81t-115.5 -31.5q-66 0 -113 28 t-69 80zM140 434q0 -67 45 -105.5t121 -38.5q114 0 209 110q2 20 2 59q0 85 -44 137t-128 52q-87 0 -146 -64.5t-59 -149.5z" />
+<glyph unicode=":" d="M22 21q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5zM118 455q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode=";" d="M-18 -92q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5zM118 455q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="494" d="M46 324l5 21l488 235l-9 -38l-441 -210l348 -208l-7 -34z" />
+<glyph unicode="=" horiz-adv-x="494" d="M23 220l7 30h436l-7 -30h-436zM67 418l7 30h436l-7 -30h-436z" />
+<glyph unicode="&#x3e;" horiz-adv-x="494" d="M-6 90l9 38l442 208l-349 210l7 34l384 -235l-5 -21z" />
+<glyph unicode="?" horiz-adv-x="467" d="M98 589q85 88 199 88q87 0 139.5 -40.5t52.5 -104.5q0 -50 -28.5 -87t-69.5 -59.5t-82.5 -42.5t-70 -45.5t-28.5 -57.5q0 -28 22 -49l-24 -23q-29 33 -29 72t28 68.5t68.5 49.5t81 41t68.5 54.5t28 78.5q0 52 -42 83.5t-114 31.5q-105 0 -181 -79zM140 21q0 15 10.5 25 t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="@" horiz-adv-x="783" d="M55 244q0 106 55.5 197.5t147 144t194.5 52.5q138 0 226.5 -94t88.5 -233q0 -105 -43.5 -165.5t-107.5 -60.5q-38 0 -62 26t-24 62v6q-28 -40 -74 -67t-97 -27q-68 0 -110 43t-42 115q0 106 75 181.5t168 75.5q49 0 82.5 -24.5t48.5 -62.5l14 69h30l-62 -294 q-1 -6 -1 -18q0 -26 15.5 -42t38.5 -16q17 0 36 9.5t39.5 30.5t33.5 62.5t13 97.5q0 127 -81 211.5t-208 84.5q-146 0 -255 -110.5t-109 -252.5q0 -122 82.5 -204t208.5 -82q97 0 188 57l16 -23q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM240 243q0 -58 31.5 -94.5 t87.5 -36.5t102.5 32.5t77.5 78.5l34 157q-11 36 -42.5 64.5t-80.5 28.5q-85 0 -147.5 -70.5t-62.5 -159.5z" />
+<glyph unicode="A" horiz-adv-x="636" d="M-33 0l425 667h38l131 -667h-35l-35 179h-372l-113 -179h-39zM138 209h348l-81 421z" />
+<glyph unicode="B" horiz-adv-x="600" d="M34 0l147 667h237q65 0 112.5 -40.5t47.5 -107.5q0 -72 -45.5 -123t-110.5 -59q41 -11 69.5 -51t28.5 -88q0 -83 -58.5 -140.5t-165.5 -57.5h-262zM72 30h230q85 0 134 50t49 118q0 56 -36.5 93t-99.5 37h-211zM145 358h230q86 0 126.5 47.5t40.5 113.5q0 50 -37.5 84 t-92.5 34h-205z" />
+<glyph unicode="C" horiz-adv-x="667" d="M74 274q0 89 31.5 166t83 128.5t116.5 80.5t133 29q81 0 147 -32t105 -97l-30 -19q-71 118 -225 118q-127 0 -226 -104t-99 -270q0 -117 69.5 -186.5t187.5 -69.5q105 0 198 76l20 -23q-98 -83 -220 -83q-130 0 -210.5 79t-80.5 207z" />
+<glyph unicode="D" horiz-adv-x="684" d="M34 0l147 667h193q112 0 189 -81t77 -202q0 -72 -26.5 -139.5t-76.5 -122.5t-129.5 -88.5t-176.5 -33.5h-197zM72 30h164q165 0 267.5 103.5t102.5 250.5q0 109 -68 181t-170 72h-161z" />
+<glyph unicode="E" horiz-adv-x="558" d="M34 0l147 667h408l-6 -30h-376l-62 -279h369l-7 -30h-369l-66 -298h376l-6 -30h-408z" />
+<glyph unicode="F" horiz-adv-x="533" d="M34 0l147 667h408l-6 -30h-376l-62 -279h369l-7 -30h-369l-72 -328h-32z" />
+<glyph unicode="G" horiz-adv-x="708" d="M74 274q0 173 108.5 288.5t255.5 115.5q171 0 252 -129l-27 -17q-33 58 -93.5 87t-134.5 29q-130 0 -227.5 -107t-97.5 -267q0 -118 70 -187t187 -69q118 0 212 88l41 184h-275l6 30h307l-51 -232q-111 -100 -242 -100q-134 0 -212.5 80.5t-78.5 205.5z" />
+<glyph unicode="H" horiz-adv-x="695" d="M34 0l147 667h32l-68 -309h455l68 309h32l-147 -667h-32l72 328h-455l-72 -328h-32z" />
+<glyph unicode="I" d="M34 0l147 667h32l-147 -667h-32z" />
+<glyph unicode="J" horiz-adv-x="465" d="M-16 80l27 20q43 -82 142 -82q71 0 116.5 45t62.5 122l106 482h32l-106 -482q-22 -98 -77 -147.5t-134 -49.5q-58 0 -102.5 24t-66.5 68z" />
+<glyph unicode="K" horiz-adv-x="571" d="M34 0l147 667h32l-84 -380l428 380h46l-360 -319l243 -348h-39l-226 331l-102 -90l-53 -241h-32z" />
+<glyph unicode="L" horiz-adv-x="517" d="M34 0l147 667h32l-141 -637h335l-6 -30h-367z" />
+<glyph unicode="M" horiz-adv-x="770" d="M34 0l147 667h49l114 -597l378 597h53l-147 -667h-32l139 629l-399 -629h-10l-121 629l-139 -629h-32z" />
+<glyph unicode="N" horiz-adv-x="690" d="M34 0l147 667h32l314 -613l136 613h32l-147 -667h-32l-313 619l-137 -619h-32z" />
+<glyph unicode="O" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q126 0 208.5 -75.5t82.5 -210.5q0 -170 -107 -287t-257 -117q-126 0 -208.5 75.5t-82.5 210.5zM110 274q0 -122 73.5 -189t183.5 -67q132 0 229 106.5t97 267.5q0 121 -74 188.5t-184 67.5q-132 0 -228.5 -106.5t-96.5 -267.5z" />
+<glyph unicode="P" horiz-adv-x="555" d="M34 0l147 667h219q71 0 118.5 -48t47.5 -114q0 -87 -61 -151.5t-178 -64.5h-197l-64 -289h-32zM136 319h198q95 0 146 54t51 132q0 53 -39 92.5t-96 39.5h-189z" />
+<glyph unicode="Q" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q126 0 208.5 -75.5t82.5 -210.5q0 -103 -42 -190t-114 -142l49 -62l-26 -21l-50 64q-84 -53 -181 -53q-126 0 -208.5 75.5t-82.5 210.5zM110 274q0 -122 73.5 -189t183.5 -67q86 0 160 48l-95 122l26 21l96 -124q64 51 101.5 130.5 t37.5 176.5q0 121 -74 188.5t-184 67.5q-132 0 -228.5 -106.5t-96.5 -267.5z" />
+<glyph unicode="R" horiz-adv-x="579" d="M34 0l147 667h212q69 0 121.5 -44t52.5 -118q0 -95 -65.5 -156t-174.5 -61l143 -288h-37l-140 288h-164l-63 -288h-32zM136 318h198q93 0 145 54t52 133q0 57 -42 94.5t-96 37.5h-186z" />
+<glyph unicode="S" horiz-adv-x="575" d="M31 103l29 21q74 -106 216 -106q92 0 140 51t48 115q0 38 -25 67.5t-62 46.5t-81 37t-81 39t-62 52t-25 76q0 73 63.5 124.5t151.5 51.5q74 0 133 -28.5t86 -74.5l-29 -21q-29 46 -79.5 70t-110.5 24q-74 0 -126.5 -44.5t-52.5 -101.5q0 -41 34.5 -71.5t84 -51t99 -43.5 t84 -61.5t34.5 -90.5q0 -77 -60.5 -136.5t-166.5 -59.5q-80 0 -146.5 33t-95.5 82z" />
+<glyph unicode="T" horiz-adv-x="559" d="M125 637l6 30h483l-6 -30h-226l-141 -637h-32l141 637h-225z" />
+<glyph unicode="U" horiz-adv-x="672" d="M85 200q0 28 5 53l91 414h32l-91 -414q-6 -24 -6 -49q0 -84 54 -135t149 -51q100 0 154.5 58.5t80.5 176.5l91 414h32l-91 -414q-30 -132 -90.5 -198.5t-176.5 -66.5q-107 0 -170.5 57t-63.5 155z" />
+<glyph unicode="V" horiz-adv-x="636" d="M114 667h35l121 -630l399 630h39l-425 -667h-38z" />
+<glyph unicode="W" horiz-adv-x="852" d="M118 667h34l37 -619l312 619h34l38 -619l311 619h36l-337 -667h-38l-39 607l-307 -607h-38z" />
+<glyph unicode="X" horiz-adv-x="638" d="M-29 0l349 345l-187 322h38l172 -302l300 302h48l-330 -327l198 -340h-37l-184 321l-320 -321h-47z" />
+<glyph unicode="Y" horiz-adv-x="610" d="M114 667h37l167 -346l319 346h45l-351 -378l-64 -289h-32l64 289z" />
+<glyph unicode="Z" horiz-adv-x="578" d="M-1 0l6 30l558 607h-423l6 30h465l-6 -30l-559 -607h431l-6 -30h-472z" />
+<glyph unicode="[" horiz-adv-x="212" d="M-62 -190l192 868h161l-7 -30h-131l-179 -808h131l-7 -30h-160z" />
+<glyph unicode="\" horiz-adv-x="268" d="M98 687h31l80 -707h-31z" />
+<glyph unicode="]" horiz-adv-x="212" d="M-79 -190l7 30h130l179 808h-131l7 30h161l-193 -868h-160z" />
+<glyph unicode="^" horiz-adv-x="424" d="M38 333l254 334h26l106 -334h-32l-91 307l-227 -307h-36z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-72 -70l7 30h569l-7 -30h-569z" />
+<glyph unicode="`" horiz-adv-x="205" d="M101 700h45l128 -144h-30z" />
+<glyph unicode="a" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-107 -483h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194z" />
+<glyph unicode="b" horiz-adv-x="566" d="M32 0l147 667h30l-57 -261q67 89 172 89q85 0 137.5 -53t52.5 -145q0 -128 -71.5 -218.5t-181.5 -90.5q-61 0 -107.5 27t-72.5 72l-19 -87h-30zM87 113q20 -42 66 -70t108 -28q96 0 157.5 84t61.5 194q0 81 -43 128t-115 47q-54 0 -102.5 -30t-77.5 -74z" />
+<glyph unicode="c" horiz-adv-x="493" d="M51 200q0 120 77 207.5t187 87.5q116 0 167 -86l-24 -17q-43 76 -140 76q-105 0 -169.5 -81t-64.5 -190q0 -88 49.5 -135t128.5 -47q84 0 140 66l19 -21q-70 -72 -161 -72q-92 0 -150.5 56t-58.5 156z" />
+<glyph unicode="d" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l60 271h30l-148 -667h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194z" />
+<glyph unicode="e" horiz-adv-x="571" d="M51 200q0 122 78 208.5t187 86.5q95 0 148 -59t53 -148q0 -28 -7 -56h-423q-2 -12 -2 -32q0 -81 49.5 -133t140.5 -52q85 0 153 57l15 -22q-77 -62 -168 -62q-105 0 -164.5 58.5t-59.5 153.5zM90 259h395q2 12 2 26q0 83 -46.5 133t-129.5 50q-79 0 -143 -61.5 t-78 -147.5z" />
+<glyph unicode="f" horiz-adv-x="246" d="M46 0l101 456h-80l6 27h80l11 51q32 143 140 143q50 0 85 -34l-20 -20q-25 27 -68 27q-82 0 -107 -116l-11 -51h98l-6 -27h-98l-101 -456h-30z" />
+<glyph unicode="g" horiz-adv-x="566" d="M11 -115l26 23q50 -77 175 -77q67 0 115.5 40t67.5 126l17 80q-68 -89 -178 -89q-81 0 -132.5 52.5t-51.5 150.5q0 123 70.5 213.5t181.5 90.5q53 0 103 -28.5t78 -70.5l20 87h30l-108 -486q-43 -193 -213 -193q-71 0 -119.5 17.5t-81.5 63.5zM83 192q0 -83 42.5 -130 t114.5 -47q49 0 98 27.5t82 68.5l58 259q-23 44 -72.5 71t-106.5 27q-96 0 -156 -85t-60 -191z" />
+<glyph unicode="h" horiz-adv-x="528" d="M32 0l147 667h30l-57 -260q90 88 178 88q62 0 100 -29t38 -87q0 -20 -6 -42l-74 -337h-30l75 339q6 27 6 37q0 47 -31.5 69.5t-83.5 22.5q-46 0 -94 -27t-85 -67l-83 -374h-30z" />
+<glyph unicode="i" horiz-adv-x="202" d="M32 0l107 483h30l-107 -483h-30zM148 592q0 14 10.5 23t22.5 9q11 0 19 -7.5t8 -18.5q0 -14 -10.5 -23t-22.5 -9q-11 0 -19 7.5t-8 18.5z" />
+<glyph unicode="j" horiz-adv-x="202" d="M-179 -153l21 22q27 -38 75 -38q77 0 98 93l124 559h30l-124 -559q-27 -120 -125 -120q-68 0 -99 43zM148 592q0 14 10.5 23t22.5 9q11 0 19 -7.5t8 -18.5q0 -14 -10.5 -23t-22.5 -9q-11 0 -19 7.5t-8 18.5z" />
+<glyph unicode="k" horiz-adv-x="496" d="M32 0l147 667h30l-105 -475l377 291h46l-284 -218l174 -265h-37l-161 246l-124 -95l-33 -151h-30z" />
+<glyph unicode="l" horiz-adv-x="202" d="M32 0l147 667h30l-147 -667h-30z" />
+<glyph unicode="m" horiz-adv-x="770" d="M32 0l107 483h30l-17 -76q28 33 69 60.5t87 27.5q54 0 86 -31t32 -66v-2q79 99 167 99q49 0 83 -30.5t34 -85.5q0 -10 -6 -42l-74 -337h-30l77 348q4 16 4 28q0 43 -27.5 67.5t-66.5 24.5t-82 -27t-76 -66l-83 -375h-30l77 348q4 21 4 35q0 37 -25 61t-70 24 q-75 0 -157 -93l-83 -375h-30z" />
+<glyph unicode="n" horiz-adv-x="528" d="M32 0l107 483h30l-17 -76q90 88 178 88q62 0 100 -29t38 -87q0 -18 -6 -42l-74 -337h-30l75 338q6 30 6 38q0 47 -31.5 69.5t-83.5 22.5q-46 0 -94 -26.5t-85 -66.5l-83 -375h-30z" />
+<glyph unicode="o" horiz-adv-x="570" d="M51 198q0 118 76 207.5t185 89.5q93 0 149 -57t56 -153q0 -118 -76 -207.5t-185 -89.5q-93 0 -149 57t-56 153zM85 198q0 -84 45.5 -133.5t125.5 -49.5q96 0 161.5 82t65.5 188q0 84 -45.5 133.5t-125.5 49.5q-96 0 -161.5 -82t-65.5 -188z" />
+<glyph unicode="p" horiz-adv-x="562" d="M-9 -184l148 667h30l-17 -77q67 89 172 89q85 0 137.5 -53t52.5 -145q0 -128 -71.5 -218.5t-181.5 -90.5q-61 0 -107.5 27t-72.5 72l-60 -271h-30zM87 113q20 -42 66 -70t108 -28q96 0 157.5 84t61.5 194q0 81 -43 128t-115 47q-54 0 -102.5 -30t-77.5 -74z" />
+<glyph unicode="q" horiz-adv-x="562" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-148 -667h-30l58 261q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194z" />
+<glyph unicode="r" horiz-adv-x="304" d="M32 0l107 483h30l-19 -82q41 48 82 69.5t105 21.5l-8 -35q-10 2 -31 2q-44 0 -87 -28.5t-69 -68.5l-80 -362h-30z" />
+<glyph unicode="s" horiz-adv-x="454" d="M13 72l27 20q19 -33 60 -55t94 -22q66 0 106 34t40 81q0 32 -27 55.5t-65.5 39t-77 31.5t-65.5 42t-27 60q0 59 45.5 98t123.5 39q59 0 104.5 -23.5t63.5 -55.5l-25 -19q-15 30 -57 50.5t-90 20.5q-60 0 -97 -28.5t-37 -71.5q0 -30 27 -52t65.5 -37.5t77 -31.5 t65.5 -43.5t27 -64.5q0 -61 -47 -106t-127 -45q-129 0 -184 84z" />
+<glyph unicode="t" horiz-adv-x="256" d="M53 61q0 11 3 24l83 371h-80l6 27h80l29 132h30l-29 -132h98l-6 -27h-98l-83 -371q-2 -12 -2 -22q0 -48 50 -48q30 0 55 21l12 -24q-31 -24 -66 -24q-82 0 -82 73z" />
+<glyph unicode="u" horiz-adv-x="528" d="M59 104q0 18 6 42l74 337h30l-75 -338q-6 -30 -6 -38q0 -47 31.5 -69.5t83.5 -22.5q46 0 94 26.5t85 66.5l83 375h30l-107 -483h-30l17 76q-90 -88 -178 -88q-62 0 -100 29t-38 87z" />
+<glyph unicode="v" horiz-adv-x="471" d="M64 483h33l90 -448l289 448h37l-314 -483h-35z" />
+<glyph unicode="w" horiz-adv-x="704" d="M75 483h31l43 -436l242 436h24l48 -436l237 436h35l-267 -483h-24l-49 438l-243 -438h-24z" />
+<glyph unicode="x" horiz-adv-x="472" d="M-32 0l251 248l-133 235h36l116 -214l212 214h42l-239 -235l143 -248h-36l-125 228l-225 -228h-42z" />
+<glyph unicode="y" horiz-adv-x="471" d="M-45 -186l13 31q18 -9 46 -9q21 0 39.5 13t41.5 48l66 100l-97 486h33l90 -448l289 448h37l-389 -597q-54 -82 -120 -82q-27 0 -49 10z" />
+<glyph unicode="z" horiz-adv-x="466" d="M6 0l5 27l399 429h-303l6 27h342l-6 -27l-401 -429h309l-5 -27h-346z" />
+<glyph unicode="{" horiz-adv-x="237" d="M-16 -102q0 14 3 25l52 234q2 12 2 17q0 23 -10.5 39t-27.5 16l7 30q52 0 68 72l52 234q13 55 45.5 84t78.5 29h62l-7 -30h-62q-33 0 -56 -22t-31 -61l-53 -237q-15 -68 -64 -87q29 -14 29 -53q0 -18 -4 -34l-51 -231q-2 -12 -2 -22q0 -26 17 -43.5t42 -17.5h56l-7 -30 h-50q-35 0 -62 24.5t-27 63.5z" />
+<glyph unicode="|" horiz-adv-x="206" d="M108 -20v707h30v-707h-30z" />
+<glyph unicode="}" horiz-adv-x="237" d="M-80 -190l7 30h62q33 0 56 22t31 61l53 237q15 68 64 87q-29 14 -29 53q0 18 4 34l51 231q2 12 2 22q0 26 -17 43.5t-42 17.5h-56l7 30h50q35 0 62 -24.5t27 -63.5q0 -10 -3 -25l-52 -234q-2 -12 -2 -17q0 -23 10.5 -39t27.5 -16l-7 -30q-52 0 -68 -72l-52 -234 q-13 -55 -45.5 -84t-78.5 -29h-62z" />
+<glyph unicode="~" horiz-adv-x="496" d="M70 436q24 102 66 165.5t103 63.5q36 0 56 -21t26 -50.5t11 -59.5t19 -51t42 -21q88 0 138 205l30 -3q-55 -231 -170 -231q-36 0 -56 21t-26 50.5t-11 59t-19 50.5t-42 21q-87 0 -138 -204z" />
+<glyph unicode="&#xa1;" d="M-12 -184l123 506h20l-101 -506h-42zM118 457q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="493" d="M51 200q0 120 77 207.5t187 87.5h2l16 70h30l-16 -72q90 -10 135 -84l-24 -17q-38 66 -117 74l-100 -450q7 -1 21 -1q84 0 140 66l19 -21q-70 -72 -161 -72q-17 0 -25 1l-20 -89h-30l21 94q-71 15 -113 68t-42 138zM84 197q0 -73 34.5 -118t93.5 -59l99 448 q-102 -3 -164.5 -83.5t-62.5 -187.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="491" d="M-2 26q82 32 138.5 91t56.5 118q0 12 -4 32h-167l6 30h149q-8 14 -30.5 45.5t-34.5 59t-12 61.5q0 83 66.5 148.5t160.5 65.5q61 0 114 -30.5t66 -76.5l-30 -15q-11 39 -53 65.5t-97 26.5q-79 0 -136 -50.5t-57 -132.5q0 -34 12 -62t33 -58t29 -47h149l-6 -30h-132 q4 -20 4 -33q0 -51 -37 -99t-86 -79q26 8 49 8q35 0 89.5 -24t84.5 -24q55 0 100 43l12 -27q-58 -46 -112 -46q-45 0 -98 24t-102 24q-46 0 -118 -41z" />
+<glyph unicode="&#xa4;" horiz-adv-x="577" d="M8 106l104 84q-30 47 -30 109q0 118 84 197l-58 75l24 19l58 -74q66 47 144 47q100 0 159 -62l105 86l20 -25l-106 -86q31 -50 31 -110q0 -119 -83 -197l56 -71l-24 -19l-55 71q-66 -49 -146 -49q-99 0 -159 63l-104 -83zM116 303q0 -75 48 -123.5t129 -48.5 q93 0 154.5 69.5t61.5 160.5q0 73 -45.5 122.5t-131.5 49.5q-93 0 -154.5 -70t-61.5 -160z" />
+<glyph unicode="&#xa5;" horiz-adv-x="610" d="M-5 129l7 30h272l29 130h-272l6 30h251l-170 348h37l167 -346l319 346h45l-323 -348h242l-6 -30h-264l-29 -130h264l-7 -30h-264l-28 -129h-32l28 129h-272z" />
+<glyph unicode="&#xa6;" horiz-adv-x="206" d="M108 -20v316h30v-316h-30zM108 371v316h30v-316h-30z" />
+<glyph unicode="&#xa7;" horiz-adv-x="454" d="M-11 -2l28 20q22 -34 65.5 -53t98.5 -19q62 0 102 34t40 84q0 32 -26.5 54.5t-64.5 37t-76.5 30.5t-65 43.5t-26.5 66.5q0 50 42.5 88t117.5 45q-106 38 -106 113q0 51 43.5 93t120.5 42q124 0 181 -76l-26 -17q-47 66 -153 66q-58 0 -97 -29.5t-39 -72.5q0 -33 27 -55.5 t65.5 -37t77 -30t65.5 -44t27 -69.5q0 -46 -32.5 -83.5t-99.5 -55.5q44 -23 60.5 -47.5t16.5 -58.5q0 -58 -46.5 -103t-125.5 -45q-131 0 -194 79zM94 300q0 -18 8 -32.5t18 -24t33.5 -21t40 -17.5t52.5 -19q70 20 101.5 52.5t31.5 69.5q0 38 -29.5 61.5t-85.5 43.5 q-85 -11 -127.5 -42t-42.5 -71z" />
+<glyph unicode="&#xa8;" horiz-adv-x="252" d="M75 595q0 13 9 22t22 9q10 0 17.5 -7t7.5 -18q0 -13 -9 -22t-22 -9q-10 0 -17.5 7t-7.5 18zM277 595q0 13 9 22t22 9q10 0 17.5 -7t7.5 -18q0 -13 -9 -22t-22 -9q-10 0 -17.5 7t-7.5 18z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M64 334q0 143 100.5 244t243.5 101t244.5 -101t101.5 -244t-101.5 -244t-244.5 -101q-142 0 -243 101t-101 244zM90 334q0 -131 93.5 -225t224.5 -94q132 0 226 94t94 225q0 132 -94 225.5t-226 93.5q-131 0 -224.5 -93.5t-93.5 -225.5zM196 307q0 101 72.5 172t164.5 71 q106 0 153 -80l-24 -17q-37 70 -129 70q-79 0 -143.5 -63t-64.5 -153q0 -67 46 -114t117 -47q69 0 116 47l15 -23q-61 -51 -131 -51q-89 0 -140.5 54t-51.5 134z" />
+<glyph unicode="&#xaa;" horiz-adv-x="408" d="M95 454q0 77 49 135.5t122 58.5q83 0 121 -60l11 52h28l-70 -314h-28l12 53q-50 -61 -118 -61q-54 0 -90.5 35t-36.5 101zM125 454q0 -53 28 -82.5t74 -29.5q66 0 119 63l36 161q-13 26 -45 42t-71 16q-59 0 -100 -50.5t-41 -119.5z" />
+<glyph unicode="&#xab;" horiz-adv-x="364" d="M29 243l200 177h43l-204 -182l116 -175h-35zM134 243l200 177h43l-204 -182l116 -175h-35z" />
+<glyph unicode="&#xac;" horiz-adv-x="494" d="M67 418l7 30h436l-51 -228h-32l44 198h-404z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M26 227l6 30h240l-6 -30h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M84 465q0 88 62 150t150 62t150 -61.5t62 -150.5q0 -88 -62.5 -150t-150.5 -62t-149.5 62t-61.5 150zM110 465q0 -77 54 -131.5t131 -54.5t132 54.5t55 131.5q0 78 -54.5 132t-132.5 54q-77 0 -131 -54t-54 -132zM189 343l53 243h91q27 0 47.5 -17t20.5 -47 q0 -35 -25.5 -58.5t-54.5 -23.5l44 -97h-35l-42 96h-49l-21 -96h-29zM245 467h70q22 0 38.5 15t16.5 36q0 19 -12 30t-29 11h-64z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M75 581l6 27h362l-6 -27h-362z" />
+<glyph unicode="&#xb0;" horiz-adv-x="273" d="M97 566q0 46 32 78.5t78 32.5t78.5 -32.5t32.5 -78.5t-32.5 -78t-78.5 -32t-78 32t-32 78zM127 566q0 -33 23 -56.5t56 -23.5t57.5 23.5t24.5 56.5t-24 57t-57 24t-56.5 -24t-23.5 -57z" />
+<glyph unicode="&#xb1;" horiz-adv-x="494" d="M-25 0l6 30h436l-6 -30h-436zM46 322l7 30h202l47 216h32l-47 -216h202l-7 -30h-202l-49 -222h-32l49 222h-202z" />
+<glyph unicode="&#xb2;" horiz-adv-x="380" d="M93 421l6 28q42 26 59.5 36.5t53.5 33.5t52.5 35.5t43 33t39 35t27 33t20 35.5t5.5 34q0 37 -29.5 56.5t-69.5 19.5q-70 0 -113 -48l-17 19q50 55 130 55q50 0 89.5 -24.5t39.5 -77.5q0 -15 -3.5 -30t-13.5 -30.5t-17.5 -28t-26 -29t-29 -27t-35.5 -28t-36 -26t-41 -27.5 t-40 -25.5t-43 -26.5h225l-5 -26h-271z" />
+<glyph unicode="&#xb3;" horiz-adv-x="380" d="M108 486l23 15q38 -61 121 -61q48 0 77.5 29t29.5 72q0 32 -30.5 53t-77.5 21q-20 0 -27 -1l6 27q32 -2 57 -2q48 0 78.5 23t30.5 63q0 34 -30.5 55t-73.5 21q-58 0 -111 -47l-16 20q57 53 127 53q55 0 94 -25t39 -73q0 -47 -32 -74.5t-80 -31.5q30 -6 53.5 -29.5 t23.5 -56.5q0 -48 -38 -85.5t-100 -37.5q-104 0 -144 72z" />
+<glyph unicode="&#xb4;" horiz-adv-x="205" d="M67 556l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xb5;" horiz-adv-x="542" d="M-10 -184l151 667h30l-76 -338q-15 -66 14 -99t83 -33q47 0 100.5 26.5t88.5 63.5l84 380h30l-88 -398q-15 -70 36 -70q13 0 21 2l-3 -27q-12 -2 -24 -2q-76 0 -62 86q-41 -37 -92 -61.5t-97 -24.5q-84 0 -112 65l-54 -237h-30z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M79 479q0 73 56.5 130.5t137.5 57.5h177l-170 -767h-30l164 737h-98l-164 -737h-30l94 423q-57 0 -97 44.5t-40 111.5z" />
+<glyph unicode="&#xb7;" d="M71 242q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="191" d="M-89 -151l20 25q30 -34 82 -34q35 0 53 16t18 40q0 36 -43 36q-24 0 -40 -19l-19 13l50 85h30l-41 -69q15 12 35 12q26 0 41.5 -14.5t15.5 -41.5q0 -37 -28 -61t-75 -24q-61 0 -99 36z" />
+<glyph unicode="&#xb9;" horiz-adv-x="192" d="M127 732l105 89h27l-88 -400h-30l78 356l-76 -66z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M97 458q0 77 51 133.5t125 56.5q63 0 101.5 -38.5t38.5 -101.5q0 -77 -51 -133.5t-125 -56.5q-63 0 -101.5 38.5t-38.5 101.5zM127 458q0 -50 30.5 -82t79.5 -32q64 0 105.5 48.5t41.5 115.5q0 50 -31 81.5t-80 31.5q-64 0 -105 -48t-41 -115z" />
+<glyph unicode="&#xbb;" horiz-adv-x="364" d="M-11 63l204 182l-116 175h35l120 -180l-200 -177h-43zM94 63l204 182l-116 175h35l120 -180l-200 -177h-43z" />
+<glyph unicode="&#xbc;" horiz-adv-x="715" d="M29 0l573 667h37l-574 -667h-36zM93 578l105 89h27l-88 -400h-30l78 356l-76 -66zM353 113l5 26l244 261h39l-58 -261h62l-5 -26h-62l-25 -113h-29l25 113h-196zM390 139h164l51 228z" />
+<glyph unicode="&#xbd;" horiz-adv-x="755" d="M29 0l573 667h37l-574 -667h-36zM93 578l105 89h27l-88 -400h-30l78 356l-76 -66zM375 0l6 28q42 26 59.5 36.5t53.5 33.5t52.5 35.5t43 33t39 35t27 33t20 35.5t5.5 34q0 37 -29.5 56.5t-69.5 19.5q-70 0 -113 -48l-17 19q50 55 130 55q50 0 89.5 -24.5t39.5 -77.5 q0 -15 -3.5 -30t-13.5 -30.5t-17.5 -28t-26 -29t-29 -27t-35.5 -28t-36 -26t-41 -27.5t-40 -25.5t-43 -26.5h225l-5 -26h-271z" />
+<glyph unicode="&#xbe;" horiz-adv-x="841" d="M74 332l23 15q38 -61 121 -61q48 0 77.5 29t29.5 72q0 32 -30.5 53t-77.5 21q-20 0 -27 -1l6 27q32 -2 57 -2q48 0 78.5 23t30.5 63q0 34 -30.5 55t-73.5 21q-58 0 -111 -47l-16 20q57 53 127 53q55 0 94 -25t39 -73q0 -47 -32 -74.5t-80 -31.5q30 -6 53.5 -29.5 t23.5 -56.5q0 -48 -38 -85.5t-100 -37.5q-104 0 -144 72zM155 0l573 667h37l-574 -667h-36zM479 113l5 26l244 261h39l-58 -261h62l-5 -26h-62l-25 -113h-29l25 113h-196zM516 139h164l51 228z" />
+<glyph unicode="&#xbf;" horiz-adv-x="391" d="M-24 -49q0 50 28.5 87t69.5 59.5t82.5 42.5t70 45.5t28.5 57.5q0 28 -22 49l24 23q29 -33 29 -72t-28 -68.5t-68.5 -49.5t-81 -41t-68.5 -54.5t-28 -78.5q0 -52 42 -83.5t114 -31.5q105 0 181 79l18 -21q-85 -88 -199 -88q-87 0 -139.5 40.5t-52.5 104.5zM259 457 q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="636" d="M-33 0l425 667h38l131 -667h-35l-35 179h-372l-113 -179h-39zM138 209h348l-81 421zM301 867h45l128 -144h-30z" />
+<glyph unicode="&#xc1;" horiz-adv-x="636" d="M-33 0l425 667h38l131 -667h-35l-35 179h-372l-113 -179h-39zM138 209h348l-81 421zM370 723l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xc2;" horiz-adv-x="636" d="M-33 0l425 667h38l131 -667h-35l-35 179h-372l-113 -179h-39zM138 209h348l-81 421zM308 723l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xc3;" horiz-adv-x="636" d="M-33 0l425 667h38l131 -667h-35l-35 179h-372l-113 -179h-39zM138 209h348l-81 421zM275 727q12 58 40.5 96t68.5 38q26 0 42 -17.5t22 -39t18.5 -39t33.5 -17.5q51 0 77 107h27q-12 -58 -40.5 -96t-69.5 -38q-26 0 -42 17.5t-22 39t-18.5 39t-33.5 17.5q-52 0 -76 -107 h-27z" />
+<glyph unicode="&#xc4;" horiz-adv-x="636" d="M-33 0l425 667h38l131 -667h-35l-35 179h-372l-113 -179h-39zM138 209h348l-81 421zM304 762q0 13 9 22t22 9q11 0 18 -7.5t7 -17.5q0 -13 -9 -22t-22 -9q-11 0 -18 7.5t-7 17.5zM506 762q0 13 9 22t22 9q11 0 18 -7.5t7 -17.5q0 -13 -9 -22t-22 -9q-11 0 -18 7.5 t-7 17.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="636" d="M-33 0l425 667h38l131 -667h-35l-35 179h-372l-113 -179h-39zM138 209h348l-81 421zM344 776q0 41 30.5 71.5t71.5 30.5q37 0 60.5 -23.5t23.5 -60.5q0 -41 -30.5 -71.5t-71.5 -30.5q-37 0 -60.5 23.5t-23.5 60.5zM368 778q0 -27 16.5 -44.5t43.5 -17.5q32 0 55 22.5 t23 53.5q0 28 -16.5 45t-43.5 17q-32 0 -55 -22.5t-23 -53.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="930" d="M-33 0l572 667h419l-6 -30h-376l-62 -279h369l-7 -30h-369l-66 -298h376l-6 -30h-408l39 179h-283l-152 -179h-40zM183 209h266l92 417z" />
+<glyph unicode="&#xc7;" horiz-adv-x="667" d="M74 274q0 89 31.5 166t83 128.5t116.5 80.5t133 29q81 0 147 -32t105 -97l-30 -19q-71 118 -225 118q-127 0 -226 -104t-99 -270q0 -117 69.5 -186.5t187.5 -69.5q105 0 198 76l20 -23q-98 -83 -220 -83q-12 0 -18 1l-27 -47q15 12 35 12q26 0 41.5 -14.5t15.5 -41.5 q0 -37 -28 -61t-75 -24q-61 0 -99 36l20 25q30 -34 82 -34q35 0 53 16t18 40q0 36 -43 36q-24 0 -40 -19l-19 13l38 65q-111 14 -178 90.5t-67 192.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="558" d="M34 0l147 667h408l-6 -30h-376l-62 -279h369l-7 -30h-369l-66 -298h376l-6 -30h-408zM276 867h45l128 -144h-30z" />
+<glyph unicode="&#xc9;" horiz-adv-x="558" d="M34 0l147 667h408l-6 -30h-376l-62 -279h369l-7 -30h-369l-66 -298h376l-6 -30h-408zM344 723l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xca;" horiz-adv-x="558" d="M34 0l147 667h408l-6 -30h-376l-62 -279h369l-7 -30h-369l-66 -298h376l-6 -30h-408zM279 723l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xcb;" horiz-adv-x="558" d="M34 0l147 667h408l-6 -30h-376l-62 -279h369l-7 -30h-369l-66 -298h376l-6 -30h-408zM277 762q0 13 9 22t22 9q10 0 17.5 -7.5t7.5 -17.5q0 -13 -9 -22t-22 -9q-10 0 -17.5 7.5t-7.5 17.5zM479 762q0 13 9 22t22 9q10 0 17.5 -7.5t7.5 -17.5q0 -13 -9 -22t-22 -9 q-10 0 -17.5 7.5t-7.5 17.5z" />
+<glyph unicode="&#xcc;" d="M34 0l147 667h32l-147 -667h-32zM88 867h45l128 -144h-30z" />
+<glyph unicode="&#xcd;" d="M34 0l147 667h32l-147 -667h-32zM158 723l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xce;" d="M34 0l147 667h32l-147 -667h-32zM94 723l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xcf;" d="M34 0l147 667h32l-147 -667h-32zM90 762q0 13 9 22t22 9q11 0 18 -7.5t7 -17.5q0 -13 -9 -22t-22 -9q-11 0 -18 7.5t-7 17.5zM292 762q0 13 9 22t22 9q11 0 18 -7.5t7 -17.5q0 -13 -9 -22t-22 -9q-11 0 -18 7.5t-7 17.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="715" d="M28 319l7 30h107l70 318h193q112 0 189 -81t77 -202q0 -72 -26.5 -139.5t-76.5 -122.5t-129.5 -88.5t-176.5 -33.5h-197l70 319h-107zM103 30h164q165 0 267.5 103.5t102.5 250.5q0 109 -68 181t-170 72h-161l-64 -288h187l-7 -30h-187z" />
+<glyph unicode="&#xd1;" horiz-adv-x="690" d="M34 0l147 667h32l314 -613l136 613h32l-147 -667h-32l-313 619l-137 -619h-32zM300 727q12 58 40.5 96t68.5 38q26 0 42 -17.5t21.5 -39t18.5 -39t34 -17.5q51 0 77 107h27q-12 -58 -40.5 -96t-69.5 -38q-26 0 -42 17.5t-21.5 39t-18.5 39t-34 17.5q-52 0 -76 -107h-27z " />
+<glyph unicode="&#xd2;" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q126 0 208.5 -75.5t82.5 -210.5q0 -170 -107 -287t-257 -117q-126 0 -208.5 75.5t-82.5 210.5zM110 274q0 -122 73.5 -189t183.5 -67q132 0 229 106.5t97 267.5q0 121 -74 188.5t-184 67.5q-132 0 -228.5 -106.5t-96.5 -267.5zM366 867h45 l128 -144h-30z" />
+<glyph unicode="&#xd3;" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q126 0 208.5 -75.5t82.5 -210.5q0 -170 -107 -287t-257 -117q-126 0 -208.5 75.5t-82.5 210.5zM110 274q0 -122 73.5 -189t183.5 -67q132 0 229 106.5t97 267.5q0 121 -74 188.5t-184 67.5q-132 0 -228.5 -106.5t-96.5 -267.5zM433 723 l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xd4;" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q126 0 208.5 -75.5t82.5 -210.5q0 -170 -107 -287t-257 -117q-126 0 -208.5 75.5t-82.5 210.5zM110 274q0 -122 73.5 -189t183.5 -67q132 0 229 106.5t97 267.5q0 121 -74 188.5t-184 67.5q-132 0 -228.5 -106.5t-96.5 -267.5zM371 723 l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xd5;" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q126 0 208.5 -75.5t82.5 -210.5q0 -170 -107 -287t-257 -117q-126 0 -208.5 75.5t-82.5 210.5zM110 274q0 -122 73.5 -189t183.5 -67q132 0 229 106.5t97 267.5q0 121 -74 188.5t-184 67.5q-132 0 -228.5 -106.5t-96.5 -267.5zM339 727 q12 58 40.5 96t68.5 38q26 0 42 -17.5t22 -39t18.5 -39t33.5 -17.5q51 0 77 107h27q-12 -58 -40.5 -96t-69.5 -38q-26 0 -42 17.5t-22 39t-18.5 39t-33.5 17.5q-52 0 -76 -107h-27z" />
+<glyph unicode="&#xd6;" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q126 0 208.5 -75.5t82.5 -210.5q0 -170 -107 -287t-257 -117q-126 0 -208.5 75.5t-82.5 210.5zM110 274q0 -122 73.5 -189t183.5 -67q132 0 229 106.5t97 267.5q0 121 -74 188.5t-184 67.5q-132 0 -228.5 -106.5t-96.5 -267.5zM369 762 q0 13 9 22t22 9q10 0 17.5 -7.5t7.5 -17.5q0 -13 -9 -22t-22 -9q-10 0 -17.5 7.5t-7.5 17.5zM571 762q0 13 9 22t22 9q10 0 17.5 -7.5t7.5 -17.5q0 -13 -9 -22t-22 -9q-10 0 -17.5 7.5t-7.5 17.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="494" d="M55 180l191 156l-120 154l24 19l119 -154l191 156l18 -23l-190 -156l119 -154l-23 -19l-120 154l-190 -156z" />
+<glyph unicode="&#xd8;" horiz-adv-x="764" d="M74 274q0 170 107 287t257 117q106 0 182 -55l36 44h36l-50 -61q87 -79 87 -214q0 -170 -107 -287t-257 -117q-107 0 -183 55l-35 -43h-36l49 60q-86 78 -86 214zM110 274q0 -119 72 -188l417 511q-67 51 -164 51q-132 0 -228.5 -106.5t-96.5 -267.5zM203 69 q67 -51 164 -51q132 0 229 106.5t97 267.5q0 117 -73 187z" />
+<glyph unicode="&#xd9;" horiz-adv-x="672" d="M85 200q0 28 5 53l91 414h32l-91 -414q-6 -24 -6 -49q0 -84 54 -135t149 -51q100 0 154.5 58.5t80.5 176.5l91 414h32l-91 -414q-30 -132 -90.5 -198.5t-176.5 -66.5q-107 0 -170.5 57t-63.5 155zM320 867h45l128 -144h-30z" />
+<glyph unicode="&#xda;" horiz-adv-x="672" d="M85 200q0 28 5 53l91 414h32l-91 -414q-6 -24 -6 -49q0 -84 54 -135t149 -51q100 0 154.5 58.5t80.5 176.5l91 414h32l-91 -414q-30 -132 -90.5 -198.5t-176.5 -66.5q-107 0 -170.5 57t-63.5 155zM390 723l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xdb;" horiz-adv-x="672" d="M85 200q0 28 5 53l91 414h32l-91 -414q-6 -24 -6 -49q0 -84 54 -135t149 -51q100 0 154.5 58.5t80.5 176.5l91 414h32l-91 -414q-30 -132 -90.5 -198.5t-176.5 -66.5q-107 0 -170.5 57t-63.5 155zM325 723l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xdc;" horiz-adv-x="672" d="M85 200q0 28 5 53l91 414h32l-91 -414q-6 -24 -6 -49q0 -84 54 -135t149 -51q100 0 154.5 58.5t80.5 176.5l91 414h32l-91 -414q-30 -132 -90.5 -198.5t-176.5 -66.5q-107 0 -170.5 57t-63.5 155zM323 762q0 13 9 22t22 9q10 0 17.5 -7.5t7.5 -17.5q0 -13 -9 -22t-22 -9 q-10 0 -17.5 7.5t-7.5 17.5zM525 762q0 13 9 22t22 9q10 0 17.5 -7.5t7.5 -17.5q0 -13 -9 -22t-22 -9q-10 0 -17.5 7.5t-7.5 17.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="610" d="M114 667h37l167 -346l319 346h45l-351 -378l-64 -289h-32l64 289zM357 723l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xde;" horiz-adv-x="555" d="M34 0l147 667h32l-28 -129h186q69 0 117.5 -47t48.5 -115q0 -86 -61 -151t-178 -65h-197l-35 -160h-32zM108 190h195q97 0 148 54.5t51 131.5q0 54 -40.5 93t-94.5 39h-189z" />
+<glyph unicode="&#xdf;" horiz-adv-x="558" d="M32 0l115 519q16 70 63 114t115 44q56 0 99.5 -29t43.5 -76q0 -35 -22 -60t-53.5 -39t-63 -27t-53.5 -35t-22 -53q0 -30 27 -51.5t65 -35.5t76.5 -29t65.5 -41.5t27 -64.5q0 -59 -44.5 -103.5t-128.5 -44.5q-67 0 -111.5 21t-82.5 69l27 19q59 -82 168 -82q66 0 104 35.5 t38 81.5q0 32 -27 54t-65.5 36t-76.5 28.5t-65 40.5t-27 63t22 64t53.5 42.5t63 29t53.5 33t22 45.5q0 37 -36 59.5t-76 22.5q-53 0 -94.5 -35.5t-54.5 -95.5l-115 -519h-30z" />
+<glyph unicode="&#xe0;" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-107 -483h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194zM222 700 h45l128 -144h-30z" />
+<glyph unicode="&#xe1;" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-107 -483h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194zM289 556 l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xe2;" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-107 -483h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194zM226 556 l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xe3;" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-107 -483h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194zM195 560 q12 58 40.5 96t68.5 38q26 0 42 -17.5t22 -39t18.5 -39t33.5 -17.5q51 0 77 107h27q-12 -58 -40.5 -96t-69.5 -38q-26 0 -42 17.5t-22 39t-18.5 39t-33.5 17.5q-52 0 -76 -107h-27z" />
+<glyph unicode="&#xe4;" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-107 -483h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194zM224 595 q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18zM426 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18z" />
+<glyph unicode="&#xe5;" horiz-adv-x="566" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-107 -483h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194zM268 630 q0 41 30.5 71.5t71.5 30.5q37 0 60.5 -23.5t23.5 -60.5q0 -41 -30.5 -71.5t-71.5 -30.5q-37 0 -60.5 23.5t-23.5 60.5zM292 632q0 -27 16.5 -44.5t43.5 -17.5q32 0 55 22.5t23 53.5q0 28 -16.5 45t-43.5 17q-32 0 -55 -22.5t-23 -53.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="958" d="M51 186q0 128 71.5 218.5t181.5 90.5q61 0 107.5 -27t72.5 -72l19 87h30l-22 -101q32 46 84 79.5t114 33.5q94 0 144.5 -58.5t50.5 -148.5q0 -28 -7 -56h-417q-2 -12 -2 -32q0 -81 49.5 -133t140.5 -52q79 0 147 57l15 -22q-77 -62 -162 -62q-86 0 -141 44.5t-67 119.5 l-34 -152h-30l17 77q-67 -89 -172 -89q-85 0 -137.5 53t-52.5 145zM85 190q0 -81 43 -128t115 -47q54 0 102.5 30t77.5 74l55 251q-20 42 -66 70t-108 28q-96 0 -157.5 -84t-61.5 -194zM483 259h389q2 12 2 26q0 83 -44 133t-126 50q-79 0 -143 -61.5t-78 -147.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="493" d="M51 200q0 120 77 207.5t187 87.5q116 0 167 -86l-24 -17q-43 76 -140 76q-105 0 -169.5 -81t-64.5 -190q0 -88 49.5 -135t128.5 -47q84 0 140 66l19 -21q-70 -72 -161 -72q-11 0 -17 1l-27 -47q15 12 35 12q26 0 41.5 -14.5t15.5 -41.5q0 -37 -28 -61t-75 -24 q-61 0 -99 36l20 25q30 -34 82 -34q35 0 53 16t18 40q0 36 -43 36q-24 0 -40 -19l-19 13l38 66q-74 12 -119 66.5t-45 141.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="571" d="M51 200q0 122 78 208.5t187 86.5q95 0 148 -59t53 -148q0 -28 -7 -56h-423q-2 -12 -2 -32q0 -81 49.5 -133t140.5 -52q85 0 153 57l15 -22q-77 -62 -168 -62q-105 0 -164.5 58.5t-59.5 153.5zM90 259h395q2 12 2 26q0 83 -46.5 133t-129.5 50q-79 0 -143 -61.5 t-78 -147.5zM233 700h45l128 -144h-30z" />
+<glyph unicode="&#xe9;" horiz-adv-x="571" d="M51 200q0 122 78 208.5t187 86.5q95 0 148 -59t53 -148q0 -28 -7 -56h-423q-2 -12 -2 -32q0 -81 49.5 -133t140.5 -52q85 0 153 57l15 -22q-77 -62 -168 -62q-105 0 -164.5 58.5t-59.5 153.5zM90 259h395q2 12 2 26q0 83 -46.5 133t-129.5 50q-79 0 -143 -61.5 t-78 -147.5zM301 556l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xea;" horiz-adv-x="571" d="M51 200q0 122 78 208.5t187 86.5q95 0 148 -59t53 -148q0 -28 -7 -56h-423q-2 -12 -2 -32q0 -81 49.5 -133t140.5 -52q85 0 153 57l15 -22q-77 -62 -168 -62q-105 0 -164.5 58.5t-59.5 153.5zM90 259h395q2 12 2 26q0 83 -46.5 133t-129.5 50q-79 0 -143 -61.5 t-78 -147.5zM237 556l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xeb;" horiz-adv-x="571" d="M51 200q0 122 78 208.5t187 86.5q95 0 148 -59t53 -148q0 -28 -7 -56h-423q-2 -12 -2 -32q0 -81 49.5 -133t140.5 -52q85 0 153 57l15 -22q-77 -62 -168 -62q-105 0 -164.5 58.5t-59.5 153.5zM90 259h395q2 12 2 26q0 83 -46.5 133t-129.5 50q-79 0 -143 -61.5 t-78 -147.5zM234 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18zM436 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18z" />
+<glyph unicode="&#xec;" horiz-adv-x="202" d="M32 0l107 483h30l-107 -483h-30zM49 700h45l128 -144h-30z" />
+<glyph unicode="&#xed;" horiz-adv-x="202" d="M32 0l107 483h30l-107 -483h-30zM117 556l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xee;" horiz-adv-x="202" d="M32 0l107 483h30l-107 -483h-30zM53 556l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xef;" horiz-adv-x="202" d="M32 0l107 483h30l-107 -483h-30zM50 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18zM252 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18z" />
+<glyph unicode="&#xf0;" horiz-adv-x="570" d="M52 191q0 126 75.5 215t180.5 89q50 0 97 -25t72 -79q-45 108 -123 189l-154 -46l-7 25l140 42q-42 38 -74 62l23 25q46 -34 88 -76l120 36l7 -25l-107 -32q126 -141 126 -291q0 -131 -74 -221.5t-183 -90.5q-91 0 -149 58t-58 145zM86 199q0 -81 46 -132.5t127 -51.5 q91 0 157 81.5t66 193.5q0 70 -44 124t-130 54q-90 0 -156 -78.5t-66 -190.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="528" d="M32 0l107 483h30l-17 -76q90 88 178 88q62 0 100 -29t38 -87q0 -18 -6 -42l-74 -337h-30l75 338q6 30 6 38q0 47 -31.5 69.5t-83.5 22.5q-46 0 -94 -26.5t-85 -66.5l-83 -375h-30zM186 560q12 58 40.5 96t68.5 38q26 0 42 -17.5t21.5 -39t18.5 -39t34 -17.5q51 0 77 107 h27q-12 -58 -40.5 -96t-69.5 -38q-26 0 -42 17.5t-21.5 39t-18.5 39t-34 17.5q-52 0 -76 -107h-27z" />
+<glyph unicode="&#xf2;" horiz-adv-x="570" d="M51 198q0 118 76 207.5t185 89.5q93 0 149 -57t56 -153q0 -118 -76 -207.5t-185 -89.5q-93 0 -149 57t-56 153zM85 198q0 -84 45.5 -133.5t125.5 -49.5q96 0 161.5 82t65.5 188q0 84 -45.5 133.5t-125.5 49.5q-96 0 -161.5 -82t-65.5 -188zM234 700h45l128 -144h-30z" />
+<glyph unicode="&#xf3;" horiz-adv-x="570" d="M51 198q0 118 76 207.5t185 89.5q93 0 149 -57t56 -153q0 -118 -76 -207.5t-185 -89.5q-93 0 -149 57t-56 153zM85 198q0 -84 45.5 -133.5t125.5 -49.5q96 0 161.5 82t65.5 188q0 84 -45.5 133.5t-125.5 49.5q-96 0 -161.5 -82t-65.5 -188zM301 556l192 144h47l-207 -144 h-32z" />
+<glyph unicode="&#xf4;" horiz-adv-x="570" d="M51 198q0 118 76 207.5t185 89.5q93 0 149 -57t56 -153q0 -118 -76 -207.5t-185 -89.5q-93 0 -149 57t-56 153zM85 198q0 -84 45.5 -133.5t125.5 -49.5q96 0 161.5 82t65.5 188q0 84 -45.5 133.5t-125.5 49.5q-96 0 -161.5 -82t-65.5 -188zM238 556l130 144h36l69 -144 h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xf5;" horiz-adv-x="570" d="M51 198q0 118 76 207.5t185 89.5q93 0 149 -57t56 -153q0 -118 -76 -207.5t-185 -89.5q-93 0 -149 57t-56 153zM85 198q0 -84 45.5 -133.5t125.5 -49.5q96 0 161.5 82t65.5 188q0 84 -45.5 133.5t-125.5 49.5q-96 0 -161.5 -82t-65.5 -188zM206 560q12 58 40.5 96 t68.5 38q26 0 42 -17.5t21.5 -39t18.5 -39t34 -17.5q51 0 77 107h27q-12 -58 -40.5 -96t-69.5 -38q-26 0 -42 17.5t-21.5 39t-18.5 39t-34 17.5q-52 0 -76 -107h-27z" />
+<glyph unicode="&#xf6;" horiz-adv-x="570" d="M51 198q0 118 76 207.5t185 89.5q93 0 149 -57t56 -153q0 -118 -76 -207.5t-185 -89.5q-93 0 -149 57t-56 153zM85 198q0 -84 45.5 -133.5t125.5 -49.5q96 0 161.5 82t65.5 188q0 84 -45.5 133.5t-125.5 49.5q-96 0 -161.5 -82t-65.5 -188zM236 595q0 13 9 22t22 9 q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18zM438 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M46 322l7 30h453l-7 -30h-453zM198 131q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5zM287 533q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="570" d="M29 0l62 64q-40 52 -40 134q0 118 76 207.5t185 89.5q88 0 143 -52l39 40h35l-56 -59q44 -55 44 -139q0 -118 -76 -207.5t-185 -89.5q-93 0 -149 56l-42 -44h-36zM85 198q0 -66 28 -111l321 334q-45 47 -122 47q-96 0 -161.5 -82t-65.5 -188zM128 66q46 -51 128 -51 q96 0 161.5 82t65.5 188q0 69 -33 116z" />
+<glyph unicode="&#xf9;" horiz-adv-x="528" d="M59 104q0 18 6 42l74 337h30l-75 -338q-6 -30 -6 -38q0 -47 31.5 -69.5t83.5 -22.5q46 0 94 26.5t85 66.5l83 375h30l-107 -483h-30l17 76q-90 -88 -178 -88q-62 0 -100 29t-38 87zM211 700h45l128 -144h-30z" />
+<glyph unicode="&#xfa;" horiz-adv-x="528" d="M59 104q0 18 6 42l74 337h30l-75 -338q-6 -30 -6 -38q0 -47 31.5 -69.5t83.5 -22.5q46 0 94 26.5t85 66.5l83 375h30l-107 -483h-30l17 76q-90 -88 -178 -88q-62 0 -100 29t-38 87zM279 556l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xfb;" horiz-adv-x="528" d="M59 104q0 18 6 42l74 337h30l-75 -338q-6 -30 -6 -38q0 -47 31.5 -69.5t83.5 -22.5q46 0 94 26.5t85 66.5l83 375h30l-107 -483h-30l17 76q-90 -88 -178 -88q-62 0 -100 29t-38 87zM215 556l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#xfc;" horiz-adv-x="528" d="M59 104q0 18 6 42l74 337h30l-75 -338q-6 -30 -6 -38q0 -47 31.5 -69.5t83.5 -22.5q46 0 94 26.5t85 66.5l83 375h30l-107 -483h-30l17 76q-90 -88 -178 -88q-62 0 -100 29t-38 87zM212 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18z M414 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18z" />
+<glyph unicode="&#xfd;" horiz-adv-x="471" d="M-45 -186l13 31q18 -9 46 -9q21 0 39.5 13t41.5 48l66 100l-97 486h33l90 -448l289 448h37l-389 -597q-54 -82 -120 -82q-27 0 -49 10zM248 556l192 144h47l-207 -144h-32z" />
+<glyph unicode="&#xfe;" horiz-adv-x="562" d="M-9 -184l188 851h30l-57 -261q67 89 172 89q85 0 137.5 -53t52.5 -145q0 -128 -71.5 -218.5t-181.5 -90.5q-61 0 -107.5 27t-72.5 72l-60 -271h-30zM87 113q20 -42 66 -70t108 -28q96 0 157.5 84t61.5 194q0 81 -43 128t-115 47q-54 0 -102.5 -30t-77.5 -74z" />
+<glyph unicode="&#xff;" horiz-adv-x="471" d="M-45 -186l13 31q18 -9 46 -9q21 0 39.5 13t41.5 48l66 100l-97 486h33l90 -448l289 448h37l-389 -597q-54 -82 -120 -82q-27 0 -49 10zM182 595q0 13 9 22t22 9q11 0 18 -7t7 -18q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18zM384 595q0 13 9 22t22 9q11 0 18 -7t7 -18 q0 -13 -9 -22t-22 -9q-11 0 -18 7t-7 18z" />
+<glyph unicode="&#x152;" horiz-adv-x="1124" d="M74 274q0 174 110 288.5t264 114.5q59 0 107.5 -17t89.5 -60.5t60 -111.5l39 179h408l-6 -30h-376l-62 -279h369l-7 -30h-369l-66 -298h376l-6 -30h-408l27 125q-96 -137 -269 -137q-127 0 -204 79.5t-77 206.5zM110 274q0 -117 69 -186.5t182 -69.5q83 0 158 44.5 t119 123.5l53 241q-13 105 -79.5 162.5t-170.5 57.5q-135 0 -233 -106.5t-98 -266.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="988" d="M51 198q0 118 75 207.5t184 89.5q48 0 87.5 -17.5t61.5 -44t34 -53t12 -49.5q13 26 31 50.5t46 52.5t68 44.5t86 16.5q90 0 144.5 -56.5t54.5 -150.5q0 -28 -7 -56h-419q-2 -10 -2 -32q0 -81 49 -133t139 -52q84 0 151 57l15 -22q-74 -62 -166 -62q-96 0 -153.5 54 t-60.5 110q-15 -30 -30 -51.5t-42.5 -51t-67 -45.5t-87.5 -16q-91 0 -147 56.5t-56 153.5zM85 198q0 -83 44.5 -133t124.5 -50q94 0 159.5 80.5t65.5 189.5q0 91 -48.5 137t-120.5 46q-93 0 -159 -81t-66 -189zM512 259h391q2 14 2 26q0 81 -46 132t-128 51 q-84 0 -146.5 -66.5t-72.5 -142.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="610" d="M114 667h37l167 -346l319 346h45l-351 -378l-64 -289h-32l64 289zM292 762q0 13 9 22t22 9q11 0 18 -7.5t7 -17.5q0 -13 -9 -22t-22 -9q-11 0 -18 7.5t-7 17.5zM494 762q0 13 9 22t22 9q11 0 18 -7.5t7 -17.5q0 -13 -9 -22t-22 -9q-11 0 -18 7.5t-7 17.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="235" d="M69 556l130 144h36l69 -144h-26l-65 120l-114 -120h-30z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="301" d="M70 560q12 58 40.5 96t68.5 38q26 0 42 -17.5t21.5 -39t18.5 -39t34 -17.5q51 0 77 107h27q-12 -58 -40.5 -96t-69.5 -38q-26 0 -42 17.5t-21.5 39t-18.5 39t-34 17.5q-52 0 -76 -107h-27z" />
+<glyph unicode="&#x2000;" horiz-adv-x="439" />
+<glyph unicode="&#x2001;" horiz-adv-x="878" />
+<glyph unicode="&#x2002;" horiz-adv-x="439" />
+<glyph unicode="&#x2003;" horiz-adv-x="878" />
+<glyph unicode="&#x2004;" horiz-adv-x="292" />
+<glyph unicode="&#x2005;" horiz-adv-x="219" />
+<glyph unicode="&#x2006;" horiz-adv-x="146" />
+<glyph unicode="&#x2007;" horiz-adv-x="146" />
+<glyph unicode="&#x2008;" horiz-adv-x="109" />
+<glyph unicode="&#x2009;" horiz-adv-x="175" />
+<glyph unicode="&#x200a;" horiz-adv-x="48" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M26 227l6 30h240l-6 -30h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M26 227l6 30h240l-6 -30h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M26 227l6 30h240l-6 -30h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M26 227l6 30h533l-6 -30h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M26 227l6 30h773l-6 -30h-773z" />
+<glyph unicode="&#x2018;" d="M124 547q0 36 27 73.5t62 56.5l18 -20q-27 -15 -47 -38t-25 -46h6q10 0 18 -8.5t8 -19.5q0 -15 -10.5 -25.5t-24.5 -10.5q-32 0 -32 38z" />
+<glyph unicode="&#x2019;" d="M120 529q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5z" />
+<glyph unicode="&#x201a;" d="M-18 -92q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="331" d="M136 547q0 36 27 73.5t62 56.5l18 -20q-27 -15 -47 -38t-25 -46h6q10 0 18 -8.5t8 -19.5q0 -15 -10.5 -25.5t-24.5 -10.5q-32 0 -32 38zM258 547q0 36 27 73.5t62 56.5l18 -20q-27 -15 -47 -38t-25 -46h6q10 0 18 -8.5t8 -19.5q0 -15 -10.5 -25.5t-24.5 -10.5 q-32 0 -32 38z" />
+<glyph unicode="&#x201d;" horiz-adv-x="331" d="M120 529q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5zM242 529q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5z" />
+<glyph unicode="&#x201e;" horiz-adv-x="331" d="M-18 -92q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5zM104 -92q27 15 47 38t25 46h-6q-10 0 -18 8.5t-8 19.5q0 15 10.5 25.5t24.5 10.5q32 0 32 -38q0 -36 -27 -73.5t-62 -56.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M80 233q0 43 33 75t77 32q38 0 63 -25t25 -63q0 -43 -33 -75t-77 -32q-38 0 -63 25.5t-25 62.5z" />
+<glyph unicode="&#x2026;" horiz-adv-x="624" d="M22 21q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5zM230 21q0 15 10.5 25t25.5 10q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5zM438 21q0 15 10.5 25t25.5 10 q13 0 21.5 -8.5t8.5 -21.5q0 -15 -10.5 -25t-25.5 -10q-13 0 -21.5 8.5t-8.5 21.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="175" />
+<glyph unicode="&#x2039;" horiz-adv-x="259" d="M29 243l200 177h43l-204 -182l116 -175h-35z" />
+<glyph unicode="&#x203a;" horiz-adv-x="259" d="M-11 63l204 182l-116 175h35l120 -180l-200 -177h-43z" />
+<glyph unicode="&#x205f;" horiz-adv-x="219" />
+<glyph unicode="&#x20ac;" horiz-adv-x="684" d="M39 247l7 30h49q0 60 15 114h-39l7 30h41q40 117 135.5 187t204.5 70q81 0 147 -32t105 -97l-30 -19q-71 118 -225 118q-94 0 -178 -61t-122 -166h361l-7 -30h-364q-15 -58 -15 -114h354l-7 -30h-346q8 -106 76.5 -167.5t179.5 -61.5q105 0 198 76l20 -23 q-98 -83 -220 -83t-201.5 70.5t-88.5 188.5h-57z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M105 641l5 26h152l-5 -26h-62l-43 -194h-28l43 194h-62zM250 447l48 220h43l29 -160l99 160h43l-48 -220h-28l40 182l-115 -182h-8l-35 182l-40 -182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern u1="K" u2="a" k="20" />
+<hkern u1="L" u2="a" k="20" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="T" u2="a" k="110" />
+<hkern u1="V" u2="a" k="60" />
+<hkern u1="W" u2="a" k="40" />
+<hkern u1="Y" u2="a" k="130" />
+<hkern u1="a" u2="&#x178;" k="110" />
+<hkern u1="a" u2="&#xdd;" k="110" />
+<hkern u1="a" u2="Y" k="110" />
+<hkern u1="a" u2="W" k="40" />
+<hkern u1="a" u2="V" k="60" />
+<hkern u1="a" u2="T" k="120" />
+<hkern u1="a" u2="&#x3f;" k="30" />
+<hkern u1="&#xdd;" u2="a" k="130" />
+<hkern u1="&#x178;" u2="a" k="130" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="20" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="10" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="50" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="G" 	g2="T" 	k="20" />
+<hkern g1="G" 	g2="W" 	k="5" />
+<hkern g1="G" 	g2="V" 	k="20" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="60" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="30" />
+<hkern g1="K" 	g2="x" 	k="20" />
+<hkern g1="L" 	g2="question" 	k="120" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="110" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="L" 	g2="asterisk" 	k="180" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="60" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="120" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="L" 	g2="w" 	k="40" />
+<hkern g1="L" 	g2="v" 	k="60" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="L" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="L" 	g2="t" 	k="30" />
+<hkern g1="L" 	g2="ampersand" 	k="10" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="80" />
+<hkern g1="P" 	g2="J" 	k="100" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="100" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="40" />
+<hkern g1="P" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="10" />
+<hkern g1="P" 	g2="ampersand" 	k="20" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="14" />
+<hkern g1="R" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="S" 	g2="T" 	k="10" />
+<hkern g1="S" 	g2="W" 	k="10" />
+<hkern g1="S" 	g2="V" 	k="10" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="25" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="20" />
+<hkern g1="S" 	g2="x" 	k="10" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="T" 	g2="S" 	k="-10" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="100" />
+<hkern g1="T" 	g2="w" 	k="80" />
+<hkern g1="T" 	g2="v" 	k="80" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="80" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="60" />
+<hkern g1="T" 	g2="J" 	k="80" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="130" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="40" />
+<hkern g1="T" 	g2="x" 	k="90" />
+<hkern g1="T" 	g2="ampersand" 	k="40" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="100" />
+<hkern g1="T" 	g2="s" 	k="100" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="V" 	g2="S" 	k="-10" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="V" 	g2="v" 	k="10" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="50" />
+<hkern g1="V" 	g2="J" 	k="90" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="V" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="V" 	g2="t" 	k="10" />
+<hkern g1="V" 	g2="x" 	k="20" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="V" 	g2="s" 	k="30" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
+<hkern g1="W" 	g2="S" 	k="-10" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="40" />
+<hkern g1="W" 	g2="J" 	k="20" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="70" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="30" />
+<hkern g1="W" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="10" />
+<hkern g1="W" 	g2="t" 	k="10" />
+<hkern g1="W" 	g2="x" 	k="20" />
+<hkern g1="W" 	g2="ampersand" 	k="10" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="W" 	g2="s" 	k="10" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="5" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="50" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="110" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="110" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="130" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="70" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="ampersand" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="30" />
+<hkern g1="ampersand" 	g2="T" 	k="100" />
+<hkern g1="ampersand" 	g2="W" 	k="70" />
+<hkern g1="ampersand" 	g2="V" 	k="70" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="120" />
+<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="110" />
+<hkern g1="asterisk" 	g2="J" 	k="110" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="130" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="130" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="40" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="20" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="90" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="20" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="30" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="30" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="20" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="50" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="10" />
+<hkern g1="f" 	g2="question" 	k="-60" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-70" />
+<hkern g1="f" 	g2="asterisk" 	k="-70" />
+<hkern g1="f" 	g2="S" 	k="-20" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-60" />
+<hkern g1="f" 	g2="V" 	k="-60" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-50" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="40" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-80" />
+<hkern g1="g,j,q" 	g2="question" 	k="20" />
+<hkern g1="g,j,q" 	g2="T" 	k="100" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="30" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-40" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="30" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="50" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="100" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="40" />
+<hkern g1="k" 	g2="T" 	k="90" />
+<hkern g1="k" 	g2="W" 	k="20" />
+<hkern g1="k" 	g2="V" 	k="20" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="k" 	g2="bullet" 	k="30" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="50" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="70" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="10" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="20" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="60" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="40" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="110" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="80" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="70" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="ampersand" 	k="-10" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="60" />
+<hkern g1="r" 	g2="V" 	k="20" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="80" />
+<hkern g1="s" 	g2="question" 	k="40" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="100" />
+<hkern g1="s" 	g2="W" 	k="30" />
+<hkern g1="s" 	g2="V" 	k="40" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="t" 	g2="T" 	k="70" />
+<hkern g1="t" 	g2="W" 	k="10" />
+<hkern g1="t" 	g2="V" 	k="20" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="question" 	k="20" />
+<hkern g1="a,u,z,uni00B5" 	g2="T" 	k="100" />
+<hkern g1="a,u,z,uni00B5" 	g2="W" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="V" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="80" />
+<hkern g1="v" 	g2="V" 	k="10" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="70" />
+<hkern g1="v" 	g2="X" 	k="40" />
+<hkern g1="w" 	g2="T" 	k="80" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="w" 	g2="X" 	k="50" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="80" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="40" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="50" />
+<hkern g1="X" 	g2="v" 	k="40" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="40" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="40" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="40" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="100" />
+<hkern g1="x" 	g2="T" 	k="90" />
+<hkern g1="x" 	g2="W" 	k="20" />
+<hkern g1="x" 	g2="V" 	k="20" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="70" />
+<hkern g1="x" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..0a1035d9b64ba1c072396094d58cdb7052090f99
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.woff
new file mode 100755
index 0000000000000000000000000000000000000000..1d0b7bd04ba15f502de67dcc376dbdd98d3539ff
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-ThinIt.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.eot
new file mode 100755
index 0000000000000000000000000000000000000000..cdcaa46cef1d9530e54c7622063cb82cb3238429
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.otf
new file mode 100755
index 0000000000000000000000000000000000000000..9f6755f418678adc53deab33b21d80443e9af7cf
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.svg
new file mode 100755
index 0000000000000000000000000000000000000000..5815469991d26af8c5b57fa5221e38fc88af48c5
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.svg
@@ -0,0 +1,555 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_nova_thextrabold" horiz-adv-x="589" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="256" />
+<glyph unicode="&#xfb01;" horiz-adv-x="615" d="M9 349v134h80v24q0 76 48.5 123t124.5 47q61 0 102 -22l-29 -107q-15 12 -41 12q-23 0 -37 -14.5t-14 -38.5v-24h98v-134h-98v-349h-154v349h-80zM394 615q0 37 25.5 62.5t62.5 25.5t62.5 -25.5t25.5 -62.5t-25.5 -63t-62.5 -26t-62.5 26t-25.5 63zM405 0v483h154v-483 h-154z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="615" d="M9 349v134h80v24q0 76 48.5 123t124.5 47q61 0 102 -22l-29 -107q-15 12 -41 12q-23 0 -37 -14.5t-14 -38.5v-24h98v-134h-98v-349h-154v349h-80zM405 0v667h154v-667h-154z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="965" d="M9 349v134h80v24q0 76 48.5 123t124.5 47q92 0 139 -48l-57 -88q-18 19 -48 19q-23 0 -38 -14t-15 -39v-24h98v-134h-98v-349h-154v349h-80zM358 349v134h80v24q0 76 48.5 123t124.5 47q61 0 102 -22l-29 -107q-15 12 -41 12q-23 0 -37 -14.5t-14 -38.5v-24h98v-134h-98 v-349h-154v349h-80zM743 615q0 37 25.5 62.5t62.5 25.5t62.5 -25.5t25.5 -62.5t-25.5 -63t-62.5 -26t-62.5 26t-25.5 63zM754 0v483h154v-483h-154z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="965" d="M9 349v134h80v24q0 76 48.5 123t124.5 47q92 0 139 -48l-57 -88q-18 19 -48 19q-23 0 -38 -14t-15 -39v-24h98v-134h-98v-349h-154v349h-80zM358 349v134h80v24q0 76 48.5 123t124.5 47q61 0 102 -22l-29 -107q-15 12 -41 12q-23 0 -37 -14.5t-14 -38.5v-24h98v-134h-98 v-349h-154v349h-80zM754 0v667h154v-667h-154z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="256" />
+<glyph unicode="&#x09;" horiz-adv-x="256" />
+<glyph unicode="&#xa0;" horiz-adv-x="256" />
+<glyph unicode="!" horiz-adv-x="268" d="M41 82q0 38 27.5 66t65.5 28t66 -28t28 -66t-28 -65.5t-66 -27.5t-65.5 27.5t-27.5 65.5zM42 667h184l-23 -434h-137z" />
+<glyph unicode="&#x22;" horiz-adv-x="438" d="M39 597q0 33 23.5 56.5t56.5 23.5t57 -23.5t24 -56.5q0 -9 -12 -69t-24 -116l-12 -55h-65q-48 219 -48 240zM239 597q0 33 23 56.5t57 23.5q33 0 56.5 -23.5t23.5 -56.5q0 -9 -12 -69t-24 -116l-12 -55h-64q-48 219 -48 240z" />
+<glyph unicode="#" horiz-adv-x="632" d="M14 164l31 95h93l48 148h-92l30 94h95l55 166h110l-55 -166h86l55 166h111l-56 -166h93l-29 -94h-95l-50 -148h96l-30 -95h-98l-54 -164h-111l55 164h-87l-54 -164h-110l54 164h-91zM248 259h85l50 148h-86z" />
+<glyph unicode="$" horiz-adv-x="625" d="M24 94l91 129q88 -88 213 -88q44 0 69.5 15.5t25.5 39.5q0 21 -28 34.5t-70 20t-91 21t-91 34t-70 62.5t-28 103q0 79 58 138t161 71v94h111v-95q121 -17 207 -89l-94 -123q-84 69 -195 69q-72 0 -72 -48q0 -23 39 -36.5t94 -25t110.5 -30.5t94.5 -64.5t39 -114.5 q0 -91 -58 -149.5t-165 -70.5v-91h-111v91q-148 14 -240 103z" />
+<glyph unicode="%" horiz-adv-x="771" d="M23 509q0 72 48 120t125 48q79 0 127.5 -48t48.5 -120q0 -71 -48.5 -118.5t-127.5 -47.5q-77 0 -125 47.5t-48 118.5zM129 509q0 -35 18.5 -54.5t48.5 -19.5t49.5 19.5t19.5 54.5q0 36 -19.5 56t-49.5 20t-48.5 -20t-18.5 -56zM130 0l426 667h87l-427 -667h-86zM400 154 q0 72 48 120t125 48q78 0 126.5 -48t48.5 -120q0 -71 -48.5 -118.5t-126.5 -47.5q-77 0 -125 47.5t-48 118.5zM506 154q0 -36 18.5 -55t48.5 -19q31 0 50 19t19 55t-19.5 56t-49.5 20t-48.5 -20t-18.5 -56z" />
+<glyph unicode="&#x26;" horiz-adv-x="649" d="M18 185q0 69 37.5 113t103.5 76q-40 80 -40 140q0 69 57 116t145 47q77 0 132 -40t55 -106q0 -69 -42 -108t-119 -73q20 -26 48 -61q16 -22 46 -57q35 56 55 118l121 -57q-42 -90 -94 -155q54 -61 128 -138h-192l-40 41q-80 -53 -174 -53q-99 0 -163 51t-64 146zM179 200 q0 -41 26 -67t62 -26q35 0 72 21q-70 78 -122 152q-38 -33 -38 -80zM271 511q0 -32 23 -78q41 19 62 39.5t21 49.5q0 14 -6.5 24.5t-17.5 16t-24 5.5q-25 0 -41.5 -16t-16.5 -41z" />
+<glyph unicode="'" horiz-adv-x="239" d="M39 597q0 33 23.5 56.5t56.5 23.5t57 -23.5t24 -56.5q0 -9 -12 -69t-24 -116l-12 -55h-65q-48 219 -48 240z" />
+<glyph unicode="(" horiz-adv-x="322" d="M39 243q0 122 46 244t122 198l97 -74q-53 -90 -76.5 -176t-23.5 -192q0 -105 23.5 -191.5t76.5 -175.5l-97 -75q-76 76 -122 198t-46 244z" />
+<glyph unicode=")" horiz-adv-x="322" d="M18 -124q99 169 99 367q0 106 -23.5 192t-75.5 176l97 74q76 -76 122 -198t46 -244t-46 -244t-122 -198z" />
+<glyph unicode="*" horiz-adv-x="357" d="M21 467l95 49l-95 49l36 62l90 -57l-5 107h73l-6 -107l90 57l37 -62l-95 -49l95 -49l-37 -63l-90 58l6 -107h-73l5 107l-90 -58z" />
+<glyph unicode="+" horiz-adv-x="507" d="M29 291v92h174v191h101v-191h174v-92h-174v-198h-101v198h-174z" />
+<glyph unicode="," horiz-adv-x="268" d="M40 84q0 38 27 65t65 27q42 0 72 -31t30 -84q0 -123 -114 -203l-64 52q25 13 51 41t34 54q-15 -3 -23 -3q-33 0 -55.5 23t-22.5 59z" />
+<glyph unicode="-" horiz-adv-x="300" d="M30 178v129h240v-129h-240z" />
+<glyph unicode="." horiz-adv-x="270" d="M40 82q0 38 28 66t66 28t66 -28t28 -66t-28 -66t-66 -28t-66 28t-28 66z" />
+<glyph unicode="/" horiz-adv-x="346" d="M0 -20l237 707h109l-237 -707h-109z" />
+<glyph unicode="0" horiz-adv-x="624" d="M26 333q0 92 30 168t96.5 126t159.5 50t159.5 -50t96.5 -126t30 -168q0 -68 -17.5 -128.5t-52 -109.5t-90 -78t-126.5 -29t-126.5 29t-90 78t-52 109.5t-17.5 128.5zM200 333q0 -193 112 -193t112 193q0 192 -112 192t-112 -192z" />
+<glyph unicode="1" horiz-adv-x="447" d="M5 437l233 230h149v-667h-172v447l-112 -113z" />
+<glyph unicode="2" horiz-adv-x="607" d="M22 566q51 56 123 83.5t147 27.5q119 0 194.5 -61t75.5 -161q0 -75 -56 -146t-183 -159h244v-150h-523v134q222 160 282.5 216t60.5 105q0 33 -26.5 51.5t-65.5 18.5q-100 0 -178 -73z" />
+<glyph unicode="3" horiz-adv-x="602" d="M16 93l87 117q34 -34 84.5 -52t97.5 -18q54 0 83 18t29 47t-26.5 42.5t-92.5 13.5q-80 0 -90 -1v153q13 -1 90 -1q108 0 108 52q0 30 -31 45.5t-81 15.5q-94 0 -166 -64l-83 108q96 108 267 108q126 0 195.5 -49.5t69.5 -133.5q0 -57 -42.5 -98.5t-103.5 -51.5 q60 -6 108.5 -48.5t48.5 -109.5q0 -88 -76 -143t-200 -55q-92 0 -163.5 29t-112.5 76z" />
+<glyph unicode="4" horiz-adv-x="616" d="M22 122v134l253 411h239v-394h81v-151h-81v-122h-173v122h-319zM189 273h152v244z" />
+<glyph unicode="5" horiz-adv-x="617" d="M40 85l94 120q71 -65 173 -65q52 0 80.5 22t28.5 55q0 35 -27 56t-77 21q-79 0 -132 -50l-119 29v394h484v-150h-312v-129q55 53 143 53t151.5 -60t63.5 -157q0 -108 -76 -172t-206 -64q-170 0 -269 97z" />
+<glyph unicode="6" horiz-adv-x="617" d="M26 332q0 159 89 252t241 93q121 0 203 -64l-75 -132q-54 44 -128 44q-63 0 -109.5 -42.5t-46.5 -109.5v-8q25 34 69.5 55t94.5 21q96 0 163.5 -58.5t67.5 -160.5q0 -103 -75 -168.5t-191 -65.5q-151 0 -227 95.5t-76 248.5zM200 250q4 -46 33 -78t85 -32q46 0 74.5 23 t28.5 53q0 39 -32.5 59t-76.5 20q-68 0 -112 -45z" />
+<glyph unicode="7" horiz-adv-x="560" d="M21 517v150h523v-119l-235 -548h-189l226 517h-325z" />
+<glyph unicode="8" horiz-adv-x="618" d="M26 176q0 55 37.5 100t97.5 68q-124 47 -124 155q0 46 23.5 81.5t63.5 56t87 30.5t98 10q70 0 129 -17t101 -58.5t42 -102.5q0 -107 -125 -155q60 -23 97.5 -68t37.5 -100q0 -62 -41.5 -106t-103.5 -63t-137 -19q-118 0 -200.5 48t-82.5 140zM201 196q0 -29 30 -47 t78 -18q47 0 77.5 18t30.5 47q0 28 -35 46.5t-73 23.5q-39 -5 -73.5 -23.5t-34.5 -46.5zM212 474q0 -25 30 -41.5t67 -21.5q37 5 66.5 21.5t29.5 41.5q0 28 -26.5 44t-69.5 16q-44 0 -70.5 -16t-26.5 -44z" />
+<glyph unicode="9" horiz-adv-x="617" d="M21 444q0 103 75 168.5t191 65.5q151 0 227 -95.5t76 -248.5q0 -159 -89 -252t-241 -93q-122 0 -202 64l74 132q54 -44 128 -44q70 0 113 44.5t43 107.5v8q-25 -34 -69.5 -55.5t-93.5 -21.5q-95 0 -163.5 59t-68.5 161zM196 450q0 -39 32.5 -59t75.5 -20q70 0 112 45 q-3 46 -32.5 78t-86.5 32q-45 0 -73 -23t-28 -53z" />
+<glyph unicode=":" horiz-adv-x="259" d="M40 82q0 38 28 66t66 28t66 -28t28 -66t-28 -66t-66 -28t-66 28t-28 66zM40 396q0 38 28 66t66 28t66 -28t28 -66t-28 -66t-66 -28t-66 28t-28 66z" />
+<glyph unicode=";" horiz-adv-x="268" d="M40 86q0 38 27 65t65 27q43 0 72.5 -31.5t29.5 -84.5q0 -122 -114 -202l-64 52q25 12 51 40t34 55q-10 -4 -23 -4q-33 0 -55.5 23t-22.5 60zM40 397q0 38 28 65.5t66 27.5t66 -27.5t28 -65.5t-28 -66.5t-66 -28.5t-66 28.5t-28 66.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="507" d="M29 279v111l449 190v-110l-345 -136l345 -135v-109z" />
+<glyph unicode="=" horiz-adv-x="507" d="M29 195v92h449v-92h-449zM29 381v92h449v-92h-449z" />
+<glyph unicode="&#x3e;" horiz-adv-x="507" d="M29 90v109l345 135l-345 136v110l449 -190v-111z" />
+<glyph unicode="?" horiz-adv-x="453" d="M5 583q40 46 98.5 70t121.5 24q98 0 156 -44t58 -116q0 -40 -16 -71t-38.5 -50.5t-45.5 -35.5t-39 -34t-16 -38q0 -25 15 -40l-133 -34q-31 38 -31 92q0 31 13.5 56.5t32.5 41.5t38 29t32.5 26.5t13.5 26.5q0 39 -59 39q-60 0 -105 -52zM133 82q0 38 28 66t66 28t66 -28 t28 -66t-28 -66t-66 -28t-66 28t-28 66z" />
+<glyph unicode="@" horiz-adv-x="783" d="M35 244q0 158 120 276t277 118q141 0 228 -87.5t87 -213.5q0 -62 -20 -112t-52 -79.5t-68 -45t-70 -15.5q-46 0 -71.5 21.5t-30.5 55.5q-26 -37 -62.5 -57t-74.5 -20q-72 0 -114 48t-42 123q0 97 67.5 169t154.5 72q86 0 123 -61l10 48h136l-49 -230q-2 -10 -2 -26 q0 -41 32 -41q33 0 60 39.5t27 110.5q0 118 -74 188.5t-199 70.5q-141 0 -246 -104.5t-105 -244.5q0 -118 79.5 -197t200.5 -79q94 0 180 54l23 -32q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM282 268q0 -35 19.5 -55.5t53.5 -20.5q52 0 92 53l22 106 q-22 40 -70 40q-51 0 -84 -37t-33 -86z" />
+<glyph unicode="A" horiz-adv-x="697" d="M-11 0l251 667h216l252 -667h-195l-33 96h-263l-33 -96h-195zM263 246h170l-85 251z" />
+<glyph unicode="B" horiz-adv-x="680" d="M60 0v667h378q93 0 144 -50.5t51 -119.5q0 -60 -32.5 -101t-81.5 -52q54 -8 90.5 -54.5t36.5 -108.5q0 -77 -51 -129t-145 -52h-390zM232 145h173q31 0 48.5 16.5t17.5 43.5q0 26 -17.5 43t-48.5 17h-173v-120zM232 411h167q26 0 42.5 15.5t16.5 40.5q0 24 -16.5 39.5 t-42.5 15.5h-167v-111z" />
+<glyph unicode="C" horiz-adv-x="692" d="M26 333q0 153 102.5 249t258.5 96q201 0 291 -179l-148 -70q-17 41 -56.5 69t-86.5 28q-81 0 -133.5 -55.5t-52.5 -137.5t52.5 -137.5t133.5 -55.5q47 0 86.5 28t56.5 69l148 -70q-38 -76 -109.5 -127.5t-181.5 -51.5q-155 0 -258 96.5t-103 248.5z" />
+<glyph unicode="D" horiz-adv-x="727" d="M60 0v667h280q160 0 260.5 -90t100.5 -243t-100.5 -243.5t-259.5 -90.5h-281zM232 150h108q85 0 135 53.5t50 130.5q0 81 -48 132t-136 51h-109v-367z" />
+<glyph unicode="E" d="M60 0v667h489v-150h-317v-104h310v-150h-310v-113h317v-150h-489z" />
+<glyph unicode="F" horiz-adv-x="582" d="M60 0v667h489v-150h-317v-104h310v-150h-310v-263h-172z" />
+<glyph unicode="G" horiz-adv-x="723" d="M26 333q0 155 104 250t257 95q104 0 175 -46t110 -116l-144 -75q-20 36 -57.5 60.5t-83.5 24.5q-81 0 -133.5 -55.5t-52.5 -137.5t52.5 -137.5t133.5 -55.5q35 0 69.5 12t53.5 28v52h-150v151h322v-265q-118 -130 -295 -130q-153 0 -257 95t-104 250z" />
+<glyph unicode="H" horiz-adv-x="741" d="M60 0v667h172v-249h277v249h172v-667h-172v268h-277v-268h-172z" />
+<glyph unicode="I" horiz-adv-x="292" d="M60 0v667h172v-667h-172z" />
+<glyph unicode="J" horiz-adv-x="492" d="M3 48l72 131q47 -39 96 -39q41 0 65 24.5t24 66.5v436h172v-438q0 -120 -66 -180.5t-180 -60.5q-115 0 -183 60z" />
+<glyph unicode="K" horiz-adv-x="654" d="M60 0v667h172v-274l205 274h212l-259 -312l273 -355h-211l-175 251l-45 -56v-195h-172z" />
+<glyph unicode="L" horiz-adv-x="529" d="M60 0v667h172v-517h268v-150h-440z" />
+<glyph unicode="M" horiz-adv-x="877" d="M60 0v667h239l139 -362l140 362h239v-667h-172v434l-169 -434h-76l-168 434v-434h-172z" />
+<glyph unicode="N" horiz-adv-x="740" d="M60 0v667h177l270 -367v367h173v-667h-166l-282 386v-386h-172z" />
+<glyph unicode="O" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97t255 -97t101 -248t-101 -248t-255 -97t-255.5 97t-101.5 248zM201 333q0 -83 50 -138t132 -55q81 0 131 55t50 138t-50 138t-131 55q-82 0 -132 -55t-50 -138z" />
+<glyph unicode="P" horiz-adv-x="643" d="M60 0v667h334q108 0 170 -63.5t62 -158.5q0 -94 -62 -157.5t-170 -63.5h-162v-224h-172zM232 374h139q35 0 57.5 19t22.5 52q0 34 -22.5 53t-57.5 19h-139v-143z" />
+<glyph unicode="Q" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97t255 -97t101 -248q0 -137 -84 -231l42 -51l-120 -96l-49 60q-70 -27 -145 -27q-154 0 -255.5 97t-101.5 248zM201 333q0 -83 50 -138t132 -55q22 0 39 4l-61 74l119 96l63 -76q21 45 21 95q0 83 -50 138t-131 55q-82 0 -132 -55 t-50 -138z" />
+<glyph unicode="R" horiz-adv-x="661" d="M60 0v667h334q108 0 170 -63t62 -159q0 -80 -39.5 -130.5t-93.5 -69.5l136 -245h-197l-112 224h-88v-224h-172zM232 374h136q35 0 59 19t24 53q0 33 -24 52t-59 19h-136v-143z" />
+<glyph unicode="S" horiz-adv-x="606" d="M12 94l91 129q88 -88 213 -88q44 0 69.5 15.5t25.5 39.5q0 21 -28 34.5t-70 20t-91 21t-91 34t-70 62.5t-28 103q0 88 71.5 150t194.5 62q163 0 271 -93l-94 -123q-84 69 -195 69q-72 0 -72 -48q0 -19 28 -32.5t70 -20.5t90.5 -21.5t90.5 -34.5t70 -62t28 -100 q0 -102 -73 -162.5t-205 -60.5q-185 0 -296 106z" />
+<glyph unicode="T" d="M22 517v150h545v-150h-186v-517h-172v517h-187z" />
+<glyph unicode="U" horiz-adv-x="750" d="M60 270v397h175v-391q0 -61 36.5 -98.5t104.5 -37.5q67 0 103.5 37.5t36.5 98.5v391h174v-396q0 -129 -79.5 -206t-234.5 -77q-156 0 -236 77t-80 205z" />
+<glyph unicode="V" horiz-adv-x="697" d="M-11 667h195l164 -481l165 481h195l-252 -667h-216z" />
+<glyph unicode="W" horiz-adv-x="936" d="M-6 667h193l101 -445l114 445h132l114 -445l100 445h194l-191 -667h-182l-101 418l-101 -418h-182z" />
+<glyph unicode="X" horiz-adv-x="676" d="M-11 0l233 342l-218 325h203l131 -209l129 209h204l-217 -324l232 -343h-203l-145 224l-145 -224h-204z" />
+<glyph unicode="Y" horiz-adv-x="655" d="M-11 667h194l145 -246l143 246h195l-252 -398v-269h-172v269z" />
+<glyph unicode="Z" horiz-adv-x="596" d="M39 0v137l284 380h-284v150h511v-137l-285 -380h292v-150h-518z" />
+<glyph unicode="[" horiz-adv-x="298" d="M51 -190v868h230v-99h-122v-670h122v-99h-230z" />
+<glyph unicode="\" horiz-adv-x="346" d="M0 687h109l237 -707h-109z" />
+<glyph unicode="]" horiz-adv-x="298" d="M18 -91h122v670h-122v99h230v-868h-230v99z" />
+<glyph unicode="^" horiz-adv-x="445" d="M19 333l149 334h111l147 -334h-109l-94 231l-93 -231h-111z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-3 -40h570v-99h-570v99z" />
+<glyph unicode="`" horiz-adv-x="263" d="M0 700h136l127 -144h-104z" />
+<glyph unicode="a" horiz-adv-x="551" d="M25 147q0 80 50 117.5t116 37.5q105 0 150 -56v58q0 32 -26 51t-72 19q-77 0 -137 -51l-55 97q88 75 219 75q46 0 84.5 -9.5t71 -30.5t51 -60t18.5 -93v-302h-154v48q-23 -27 -63.5 -43.5t-86.5 -16.5q-63 0 -114.5 41.5t-51.5 117.5zM178 145q0 -27 22 -41.5t55 -14.5 q62 0 86 35v43q-25 34 -86 34q-33 0 -55 -14.5t-22 -41.5z" />
+<glyph unicode="b" horiz-adv-x="591" d="M56 0v667h154v-241q55 69 143 69q92 0 152.5 -68.5t60.5 -184.5q0 -119 -60 -186.5t-153 -67.5q-84 0 -143 68v-56h-154zM210 167q14 -19 40.5 -31t51.5 -12q47 0 77 32t30 86q0 53 -30 85t-77 32q-25 0 -51.5 -12.5t-40.5 -31.5v-148z" />
+<glyph unicode="c" horiz-adv-x="500" d="M24 242q0 112 75 182.5t189 70.5q72 0 122.5 -26t75.5 -63l-100 -93q-31 46 -91 46q-49 0 -81 -31.5t-32 -85.5t32 -86t81 -32q58 0 91 47l100 -94q-25 -37 -75.5 -63t-122.5 -26q-114 0 -189 70.5t-75 183.5z" />
+<glyph unicode="d" horiz-adv-x="591" d="M24 242q0 116 60.5 184.5t153.5 68.5q87 0 143 -69v241h153v-667h-153v56q-59 -68 -143 -68q-93 0 -153.5 67.5t-60.5 186.5zM182 242q0 -53 30 -85.5t76 -32.5q25 0 51.5 12.5t41.5 31.5v148q-15 19 -41.5 31t-51.5 12q-47 0 -76.5 -32t-29.5 -85z" />
+<glyph unicode="e" horiz-adv-x="548" d="M24 242q0 107 72.5 180t184.5 73q109 0 178 -73.5t69 -195.5v-33h-344q7 -36 39 -61t82 -25q28 0 64.5 11.5t55.5 29.5l65 -96q-35 -31 -89.5 -47.5t-112.5 -16.5q-114 0 -189 69.5t-75 184.5zM182 293h199q-4 32 -28 57.5t-72 25.5q-45 0 -69 -25t-30 -58z" />
+<glyph unicode="f" horiz-adv-x="349" d="M9 349v134h80v24q0 76 48.5 123t124.5 47q92 0 139 -48l-57 -88q-18 19 -48 19q-23 0 -38 -14t-15 -39v-24h98v-134h-98v-349h-154v349h-80z" />
+<glyph unicode="g" horiz-adv-x="590" d="M24 252q0 116 59.5 179.5t153.5 63.5q87 0 143 -69v57h153v-440q0 -57 -17.5 -100.5t-44.5 -69t-65 -42t-74 -22t-75 -5.5q-126 0 -214 72l67 110q52 -56 147 -56q48 0 85.5 25t37.5 86v37q-60 -70 -143 -70q-93 0 -153 63.5t-60 180.5zM182 252q0 -52 29.5 -80t76.5 -28 q25 0 51.5 12t40.5 31v129q-14 19 -40.5 31t-51.5 12q-47 0 -76.5 -28t-29.5 -79z" />
+<glyph unicode="h" horiz-adv-x="594" d="M57 0v667h154v-243q61 71 167 71q80 0 120 -40.5t40 -110.5v-344h-154v281q0 78 -80 78q-55 0 -93 -47v-312h-154z" />
+<glyph unicode="i" horiz-adv-x="266" d="M45 615q0 37 25.5 62.5t62.5 25.5t62.5 -25.5t25.5 -62.5t-25.5 -63t-62.5 -26t-62.5 26t-25.5 63zM56 0v483h154v-483h-154z" />
+<glyph unicode="j" horiz-adv-x="266" d="M-104 -162l39 113q27 -21 62 -21q59 0 59 74v479h154v-479q0 -92 -47 -146t-140 -54q-47 0 -72 7.5t-55 26.5zM45 615q0 37 25.5 62.5t62.5 25.5t62.5 -25.5t25.5 -62.5t-25.5 -63t-62.5 -26t-62.5 26t-25.5 63z" />
+<glyph unicode="k" horiz-adv-x="546" d="M56 0v667h154v-377l147 193h186l-178 -220l187 -263h-190l-106 171l-46 -55v-116h-154z" />
+<glyph unicode="l" horiz-adv-x="266" d="M56 0v667h154v-667h-154z" />
+<glyph unicode="m" horiz-adv-x="875" d="M56 0v483h154v-59q19 25 63 48t96 23q107 0 137 -86q23 35 68.5 60.5t98.5 25.5q69 0 107 -36.5t38 -108.5v-350h-153v294q0 65 -64 65q-52 0 -87 -47v-312h-154v294q0 65 -64 65q-48 0 -86 -47v-312h-154z" />
+<glyph unicode="n" horiz-adv-x="593" d="M56 0v483h154v-59q61 71 167 71q80 0 120 -41.5t40 -111.5v-342h-154v279q0 80 -79 80q-56 0 -94 -47v-312h-154z" />
+<glyph unicode="o" horiz-adv-x="576" d="M24 242q0 106 72 179.5t191 73.5q120 0 192 -73.5t72 -179.5t-72 -180t-192 -74q-119 0 -191 74t-72 180zM183 242q0 -51 27.5 -84.5t76.5 -33.5t77.5 33.5t28.5 84.5q0 50 -28.5 83.5t-77.5 33.5t-76.5 -33.5t-27.5 -83.5z" />
+<glyph unicode="p" d="M56 -184v667h154v-56q56 68 143 68q94 0 153 -67t59 -186q0 -120 -59 -187t-153 -67q-85 0 -143 69v-241h-154zM210 168q14 -19 40.5 -31.5t51.5 -12.5q46 0 76 32t30 86q0 53 -30 85t-76 32q-25 0 -51.5 -12.5t-40.5 -31.5v-147z" />
+<glyph unicode="q" d="M24 242q0 119 59 186t153 67q87 0 143 -68v56h154v-667h-154v241q-57 -69 -143 -69q-94 0 -153 67t-59 187zM181 242q0 -54 30 -86t77 -32q24 0 51 12.5t40 31.5v147q-14 19 -40.5 31.5t-50.5 12.5q-47 0 -77 -32t-30 -85z" />
+<glyph unicode="r" horiz-adv-x="375" d="M56 0v483h154v-59q25 30 67 51t84 21v-148q-18 4 -38 4q-32 0 -65.5 -12.5t-47.5 -31.5v-308h-154z" />
+<glyph unicode="s" horiz-adv-x="484" d="M15 62l64 106q28 -25 78.5 -44.5t91.5 -19.5q65 0 65 37q0 17 -29 25.5t-70 15t-82.5 19.5t-70.5 47t-29 88q0 67 55 113t152 46q114 0 202 -64l-59 -102q-23 22 -62 37.5t-80 15.5q-27 0 -44 -10t-17 -25t29 -22.5t70 -15t82.5 -21.5t70.5 -49.5t29 -90.5 q0 -71 -59 -115.5t-161 -44.5q-65 0 -126.5 20t-99.5 54z" />
+<glyph unicode="t" horiz-adv-x="360" d="M8 349v134h80v132h153v-132h98v-134h-98v-176q0 -22 11.5 -35.5t31.5 -13.5q29 0 39 12l30 -116q-34 -32 -114 -32q-74 0 -112.5 36t-38.5 106v219h-80z" />
+<glyph unicode="u" horiz-adv-x="592" d="M56 139v344h154v-281q0 -78 80 -78q55 0 92 47v312h154v-483h-154v58q-62 -70 -167 -70q-80 0 -119.5 40.5t-39.5 110.5z" />
+<glyph unicode="v" horiz-adv-x="524" d="M-10 483h162l109 -306l110 306h163l-190 -483h-164z" />
+<glyph unicode="w" horiz-adv-x="787" d="M-6 483h158l78 -296l95 296h137l95 -296l77 296h159l-143 -483h-166l-91 299l-90 -299h-166z" />
+<glyph unicode="x" horiz-adv-x="512" d="M-6 0l165 248l-155 235h169l83 -131l82 131h169l-154 -235l165 -248h-169l-93 146l-94 -146h-168z" />
+<glyph unicode="y" horiz-adv-x="524" d="M-10 483h162l109 -306l110 306h163l-218 -552q-27 -71 -77 -98t-127 -29q-40 0 -66 8l22 137q16 -9 38 -9q54 0 65 27l11 26z" />
+<glyph unicode="z" horiz-adv-x="483" d="M38 0v113l194 236h-194v134h403v-109l-198 -241h202v-133h-407z" />
+<glyph unicode="{" horiz-adv-x="302" d="M3 203v82q25 0 38.5 18.5t13.5 47.5v155q0 77 50 124.5t120 47.5h60v-99h-60q-26 0 -44 -20t-18 -53v-172q0 -70 -46 -90q46 -20 46 -90v-172q0 -32 18 -52.5t44 -20.5h60v-99h-60q-70 0 -120 47t-50 124v156q0 29 -13.5 47.5t-38.5 18.5z" />
+<glyph unicode="|" horiz-adv-x="219" d="M60 -20v707h99v-707h-99z" />
+<glyph unicode="}" horiz-adv-x="302" d="M17 -91h60q26 0 44 20.5t18 52.5v172q0 70 46 90q-46 20 -46 90v172q0 33 -18 53t-44 20h-60v99h60q70 0 120 -47.5t50 -124.5v-155q0 -29 13.5 -47.5t38.5 -18.5v-82q-25 0 -38.5 -18.5t-13.5 -47.5v-156q0 -77 -50 -124t-120 -47h-60v99z" />
+<glyph unicode="~" horiz-adv-x="514" d="M25 418q4 52 12 90.5t24.5 77.5t46.5 60t72 21q45 0 72.5 -26.5t35.5 -58.5t19.5 -58.5t27.5 -26.5q40 0 53 170l100 -12q-4 -51 -11.5 -90t-23.5 -77.5t-46 -59.5t-72 -21q-45 0 -72.5 26.5t-35.5 58t-19.5 58t-27.5 26.5q-38 0 -52 -170z" />
+<glyph unicode="&#xa1;" horiz-adv-x="268" d="M40 401q0 38 27.5 65.5t65.5 27.5t65.5 -27.5t27.5 -65.5t-27.5 -66t-65.5 -28t-65.5 28t-27.5 66zM42 -184l23 434h137l24 -434h-184z" />
+<glyph unicode="&#xa2;" horiz-adv-x="500" d="M24 242q0 98 58.5 165t152.5 83v75h109v-75q95 -17 142 -84l-100 -93q-31 46 -91 46q-49 0 -81 -31.5t-32 -85.5t32 -86t81 -32q58 0 91 47l100 -94q-47 -67 -142 -84v-93h-109v93q-94 15 -152.5 82.5t-58.5 166.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="565" d="M24 269v96h52q-33 52 -33 100q0 96 78.5 154t173.5 58q183 0 248 -125l-137 -79q-11 31 -35 48t-54 17q-37 0 -61 -21.5t-24 -54.5q0 -37 34 -97h140v-96h-110v-7q0 -30 -17 -58.5t-43 -42.5q21 8 48 8q29 0 64.5 -14.5t57.5 -14.5q56 0 81 35l67 -136q-47 -51 -154 -51 q-47 0 -103.5 21.5t-78.5 21.5q-48 0 -115 -38l-57 115q97 48 97 110q0 26 -11 51h-108z" />
+<glyph unicode="&#xa4;" horiz-adv-x="635" d="M22 128l70 70q-37 62 -37 135q0 75 38 136l-71 71l90 90l75 -76q60 29 131 29q70 0 130 -29l76 76l89 -90l-71 -71q39 -62 39 -136q0 -77 -39 -137l71 -68l-89 -90l-76 73q-58 -28 -130 -28q-74 0 -132 30l-74 -75zM208 333q0 -49 29.5 -81.5t80.5 -32.5t80.5 32.5 t29.5 81.5t-29.5 81t-80.5 32t-80.5 -32.5t-29.5 -80.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="655" d="M-11 667h194l145 -246l143 246h195l-194 -306h160v-92h-218v-66h218v-92h-218v-111h-172v111h-218v92h218v66h-218v92h159z" />
+<glyph unicode="&#xa6;" horiz-adv-x="219" d="M60 -20v316h99v-316h-99zM60 371v316h99v-316h-99z" />
+<glyph unicode="&#xa7;" horiz-adv-x="492" d="M18 -2l61 97q29 -28 74 -49.5t88 -21.5q73 0 73 42q0 22 -29 34.5t-70 21t-82.5 22t-70.5 47t-29 86.5q0 45 27.5 77t61.5 46q-89 37 -89 128q0 64 58.5 106.5t147.5 42.5q128 0 202 -66l-58 -91q-56 51 -136 51q-67 0 -67 -40q0 -19 29 -29.5t70 -18t82.5 -20.5 t70.5 -46.5t29 -85.5q0 -40 -21 -74t-59 -54q80 -37 80 -123q0 -75 -61.5 -118t-158.5 -43q-131 0 -223 79zM180 302q0 -20 13.5 -33.5t29.5 -19t40 -10.5q47 19 47 61q0 47 -69 63q-61 -14 -61 -61z" />
+<glyph unicode="&#xa8;" horiz-adv-x="306" d="M-32 615q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM182 615q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5q-32 0 -55 23t-23 56z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M44 334q0 143 101 244t244 101t244 -101t101 -244t-101 -244t-244 -101t-244 101.5t-101 243.5zM83 334q0 -126 90 -216t216 -90t216 90t90 216t-90 216t-216 90t-216 -90t-90 -216zM188 335q0 90 60.5 149.5t147.5 59.5q92 0 149 -67l-35 -34q-43 58 -114 58 q-66 0 -112 -47t-46 -119q0 -71 46 -119.5t112 -48.5q71 0 115 59l35 -33q-59 -69 -150 -69q-87 0 -147.5 60t-60.5 151z" />
+<glyph unicode="&#xaa;" horiz-adv-x="389" d="M25 421q0 49 33.5 75t76.5 26q68 0 99 -35v31q0 22 -16.5 35.5t-46.5 13.5q-50 0 -89 -39l-39 71q59 49 147 49q153 0 153 -132v-190h-109v30q-33 -38 -99 -38q-43 0 -76.5 27t-33.5 76zM133 421q0 -36 48 -36q37 0 53 24v25q-16 23 -53 23q-48 0 -48 -36z" />
+<glyph unicode="&#xab;" horiz-adv-x="571" d="M30 243l160 177h139l-160 -177l160 -180h-139zM242 243l160 177h139l-160 -177l160 -180h-139z" />
+<glyph unicode="&#xac;" horiz-adv-x="521" d="M29 381v92h449v-278h-94v186h-355z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M30 178v129h240v-129h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M35 465q0 88 62 150t150 62q89 0 150.5 -61.5t61.5 -150.5q0 -88 -62 -150t-150 -62t-150 62t-62 150zM68 465q0 -74 52.5 -126.5t126.5 -52.5t126 52.5t52 126.5q0 75 -52 126.5t-126 51.5q-75 0 -127 -51.5t-52 -126.5zM165 343v243h99q32 0 56.5 -21t24.5 -53 q0 -35 -22.5 -53.5t-39.5 -18.5l65 -97h-44l-63 96h-40v-96h-36zM201 470h63q17 0 30.5 12t13.5 30q0 19 -13.5 31.5t-30.5 12.5h-63v-86z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M0 556v85h363v-85h-363z" />
+<glyph unicode="&#xb0;" horiz-adv-x="321" d="M18 535q0 59 42 100.5t100 41.5t100 -41.5t42 -100.5t-41.5 -100.5t-100.5 -41.5t-100.5 41.5t-41.5 100.5zM99 535q0 -26 18 -44t43 -18q26 0 44.5 18.5t18.5 43.5t-18.5 44t-44.5 19q-25 0 -43 -18.5t-18 -44.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="507" d="M29 0v92h449v-92h-449zM29 327v92h174v190h101v-190h174v-92h-174v-198h-101v198h-174z" />
+<glyph unicode="&#xb2;" horiz-adv-x="402" d="M29 760q62 67 168 67q77 0 123.5 -34t46.5 -94q0 -43 -35.5 -85t-122.5 -103h161v-90h-326v82q135 94 172 127.5t37 59.5q0 22 -16 34.5t-43 12.5q-31 0 -61 -15t-46 -34z" />
+<glyph unicode="&#xb3;" horiz-adv-x="402" d="M28 477l54 74q46 -47 113 -47q31 0 48 10.5t17 26.5q0 23 -20 30.5t-61 7.5t-47 -1v89q9 -1 46 -1q39 0 57 8t18 28q0 35 -65 35q-62 0 -104 -42l-51 67q60 65 167 65q80 0 123 -30t43 -80q0 -33 -25.5 -58.5t-63.5 -31.5q37 -3 66.5 -28.5t29.5 -65.5q0 -53 -47.5 -86 t-125.5 -33q-116 0 -172 63z" />
+<glyph unicode="&#xb4;" horiz-adv-x="263" d="M0 556l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xb5;" horiz-adv-x="606" d="M56 -184v667h154v-281q0 -78 80 -78q55 0 92 47v312h154v-321q0 -18 10.5 -28t26.5 -10q11 0 19 3l10 -130q-27 -9 -68 -9q-114 0 -143 87q-20 -39 -53 -63t-74 -24q-36 0 -54 18v-190h-154z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M27 495q0 71 50.5 121.5t121.5 50.5h216v-767h-71v696h-74v-696h-71v423q-71 0 -121.5 50.5t-50.5 121.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="270" d="M41 244q0 38 27.5 66t65.5 28t66 -28t28 -66t-28 -65.5t-66 -27.5t-65.5 27.5t-27.5 65.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="229" d="M0 -165l28 58q41 -30 82 -30q19 0 33 7.5t14 20.5q0 22 -25 22q-16 0 -29 -13l-53 30l31 81h71l-25 -60q17 10 34 10q28 0 48 -20.5t20 -51.5q0 -40 -33 -63.5t-82 -23.5q-73 0 -114 33z" />
+<glyph unicode="&#xb9;" horiz-adv-x="311" d="M4 675l149 146h98v-400h-114v255l-69 -69z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M25 483q0 69 48.5 117t128.5 48q81 0 129.5 -48t48.5 -117t-48.5 -117t-129.5 -48q-80 0 -128.5 48t-48.5 117zM138 483q0 -37 17 -57.5t47 -20.5q31 0 48.5 20.5t17.5 57.5t-17.5 56.5t-48.5 19.5q-64 0 -64 -76z" />
+<glyph unicode="&#xbb;" horiz-adv-x="571" d="M30 63l160 180l-160 177h139l160 -177l-160 -180h-139zM242 63l160 180l-160 177h139l160 -177l-160 -180h-139z" />
+<glyph unicode="&#xbc;" horiz-adv-x="865" d="M4 521l149 146h98v-400h-114v255l-69 -69zM153 0l426 667h88l-428 -667h-86zM487 78v77l150 245h160v-233h50v-89h-50v-78h-113v78h-197zM599 167h85v138z" />
+<glyph unicode="&#xbd;" horiz-adv-x="897" d="M4 521l149 146h98v-400h-114v255l-69 -69zM153 0l426 667h88l-428 -667h-86zM523 339q62 67 168 67q77 0 123.5 -34t46.5 -94q0 -43 -35.5 -85t-122.5 -103h161v-90h-326v82q135 94 172 127.5t37 59.5q0 22 -16 34.5t-43 12.5q-31 0 -61 -15t-46 -34z" />
+<glyph unicode="&#xbe;" horiz-adv-x="942" d="M28 323l54 74q46 -47 113 -47q31 0 48 10.5t17 26.5q0 23 -20 30.5t-61 7.5t-47 -1v89q9 -1 46 -1q39 0 57 8t18 28q0 35 -65 35q-62 0 -104 -42l-51 67q60 65 167 65q80 0 123 -30t43 -80q0 -33 -25.5 -58.5t-63.5 -31.5q37 -3 66.5 -28.5t29.5 -65.5q0 -53 -47.5 -86 t-125.5 -33q-116 0 -172 63zM230 0l426 667h88l-428 -667h-86zM564 78v77l150 245h160v-233h50v-89h-50v-78h-113v78h-197zM676 167h85v138z" />
+<glyph unicode="&#xbf;" horiz-adv-x="399" d="M14 -35q0 40 16 71t38.5 50.5t45.5 35.5t39 34t16 39q0 25 -15 40l133 33q30 -35 30 -91q0 -32 -13.5 -57.5t-32.5 -41.5t-37.5 -29t-32 -26.5t-13.5 -26.5q0 -39 59 -39q58 0 105 52l96 -110q-40 -46 -98.5 -70t-121.5 -24q-98 0 -156 44t-58 116zM132 400q0 38 28 66 t66 28t66 -28t28 -66t-28 -65.5t-66 -27.5t-66 27.5t-28 65.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="697" d="M-11 0l251 667h216l252 -667h-195l-33 96h-263l-33 -96h-195zM151 867h136l127 -144h-104zM263 246h170l-85 251z" />
+<glyph unicode="&#xc1;" horiz-adv-x="697" d="M-11 0l251 667h216l252 -667h-195l-33 96h-263l-33 -96h-195zM263 246h170l-85 251zM282 723l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xc2;" horiz-adv-x="697" d="M-11 0l251 667h216l252 -667h-195l-33 96h-263l-33 -96h-195zM191 723l90 144h135l93 -144h-92l-69 81l-66 -81h-91zM263 246h170l-85 251z" />
+<glyph unicode="&#xc3;" horiz-adv-x="697" d="M-11 0l251 667h216l252 -667h-195l-33 96h-263l-33 -96h-195zM182 727q0 134 113 134q28 0 49 -13.5t36.5 -27.5t27.5 -14q30 0 30 49h78q0 -134 -113 -134q-22 0 -40.5 8.5t-28.5 19t-22 19t-22 8.5q-30 0 -30 -49h-78zM263 246h170l-85 251z" />
+<glyph unicode="&#xc4;" horiz-adv-x="697" d="M-11 0l251 667h216l252 -667h-195l-33 96h-263l-33 -96h-195zM163 782q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM263 246h170l-85 251zM377 782q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5 t-55.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="697" d="M-11 0l251 667h216l252 -667h-195l-33 96h-263l-33 -96h-195zM241 795q0 45 32 77t77 32q44 0 75 -32t31 -77q0 -44 -31 -76t-75 -32q-45 0 -77 32t-32 76zM263 246h170l-85 251zM309 795q0 -17 12 -28.5t29 -11.5q16 0 27.5 11.5t11.5 28.5t-11.5 29t-27.5 12 q-17 0 -29 -12t-12 -29z" />
+<glyph unicode="&#xc6;" horiz-adv-x="979" d="M-17 0l400 667h560v-150h-317v-104h310v-150h-310v-113h317v-150h-489v96h-221l-54 -96h-196zM313 246h141v251z" />
+<glyph unicode="&#xc7;" horiz-adv-x="692" d="M26 333q0 153 102.5 249t258.5 96q201 0 291 -179l-148 -70q-17 41 -56.5 69t-86.5 28q-81 0 -133.5 -55.5t-52.5 -137.5t52.5 -137.5t133.5 -55.5q47 0 86.5 28t56.5 69l148 -70q-85 -169 -270 -178l-14 -34q17 10 34 10q28 0 48 -20.5t20 -51.5q0 -40 -33 -63.5 t-82 -23.5q-73 0 -114 33l28 58q41 -30 82 -30q19 0 33 7.5t14 20.5q0 22 -25 22q-16 0 -29 -13l-53 30l21 57q-137 15 -224.5 108.5t-87.5 233.5z" />
+<glyph unicode="&#xc8;" d="M60 0v667h489v-150h-317v-104h310v-150h-310v-113h317v-150h-489zM104 867h136l127 -144h-104z" />
+<glyph unicode="&#xc9;" d="M60 0v667h489v-150h-317v-104h310v-150h-310v-113h317v-150h-489zM239 723l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xca;" d="M60 0v667h489v-150h-317v-104h310v-150h-310v-113h317v-150h-489zM146 723l90 144h135l93 -144h-92l-69 81l-66 -81h-91z" />
+<glyph unicode="&#xcb;" d="M60 0v667h489v-150h-317v-104h310v-150h-310v-113h317v-150h-489zM121 782q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM335 782q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="292" d="M-50 867h136l127 -144h-104zM60 0v667h172v-667h-172z" />
+<glyph unicode="&#xcd;" horiz-adv-x="292" d="M60 0v667h172v-667h-172zM81 723l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xce;" horiz-adv-x="292" d="M-13 723l90 144h135l93 -144h-92l-69 81l-66 -81h-91zM60 0v667h172v-667h-172z" />
+<glyph unicode="&#xcf;" horiz-adv-x="292" d="M-39 782q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM60 0v667h172v-667h-172zM175 782q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="750" d="M8 266v131h75v270h280q160 0 260.5 -90t100.5 -243t-100.5 -243.5t-259.5 -90.5h-281v266h-75zM255 150h108q85 0 135 53.5t50 130.5q0 81 -48 132t-136 51h-109v-120h140v-131h-140v-116z" />
+<glyph unicode="&#xd1;" horiz-adv-x="740" d="M60 0v667h177l270 -367v367h173v-667h-166l-282 386v-386h-172zM201 727q0 134 113 134q28 0 49 -13.5t36.5 -27.5t27.5 -14q30 0 30 49h78q0 -134 -113 -134q-22 0 -40.5 8.5t-28.5 19t-22 19t-22 8.5q-30 0 -30 -49h-78z" />
+<glyph unicode="&#xd2;" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97t255 -97t101 -248t-101 -248t-255 -97t-255.5 97t-101.5 248zM186 867h136l127 -144h-104zM201 333q0 -83 50 -138t132 -55q81 0 131 55t50 138t-50 138t-131 55q-82 0 -132 -55t-50 -138z" />
+<glyph unicode="&#xd3;" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97t255 -97t101 -248t-101 -248t-255 -97t-255.5 97t-101.5 248zM201 333q0 -83 50 -138t132 -55q81 0 131 55t50 138t-50 138t-131 55q-82 0 -132 -55t-50 -138zM316 723l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xd4;" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97t255 -97t101 -248t-101 -248t-255 -97t-255.5 97t-101.5 248zM201 333q0 -83 50 -138t132 -55q81 0 131 55t50 138t-50 138t-131 55q-82 0 -132 -55t-50 -138zM227 723l90 144h135l93 -144h-92l-69 81l-66 -81h-91z" />
+<glyph unicode="&#xd5;" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97t255 -97t101 -248t-101 -248t-255 -97t-255.5 97t-101.5 248zM201 333q0 -83 50 -138t132 -55q81 0 131 55t50 138t-50 138t-131 55q-82 0 -132 -55t-50 -138zM216 727q0 134 113 134q28 0 49 -13.5t36.5 -27.5t27.5 -14q30 0 30 49h78 q0 -134 -113 -134q-22 0 -40.5 8.5t-28.5 19t-22 19t-22 8.5q-30 0 -30 -49h-78z" />
+<glyph unicode="&#xd6;" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97t255 -97t101 -248t-101 -248t-255 -97t-255.5 97t-101.5 248zM200 782q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM201 333q0 -83 50 -138t132 -55q81 0 131 55t50 138t-50 138t-131 55 q-82 0 -132 -55t-50 -138zM414 782q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5q-32 0 -55 22.5t-23 56.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="507" d="M51 196l138 138l-138 138l66 64l137 -137l137 137l65 -64l-137 -138l137 -138l-65 -64l-137 137l-137 -137z" />
+<glyph unicode="&#xd8;" horiz-adv-x="766" d="M26 333q0 151 101.5 248t255.5 97q97 0 175 -40l24 29h120l-67 -83q104 -98 104 -251q0 -151 -101 -248t-255 -97q-106 0 -190 48l-29 -36h-120l75 93q-93 95 -93 240zM201 333q0 -60 26 -106l229 284q-33 15 -73 15q-82 0 -132 -55t-50 -138zM294 161q42 -21 89 -21 q81 0 131 55t50 138q0 68 -35 119z" />
+<glyph unicode="&#xd9;" horiz-adv-x="750" d="M60 270v397h175v-391q0 -61 36.5 -98.5t104.5 -37.5q67 0 103.5 37.5t36.5 98.5v391h174v-396q0 -129 -79.5 -206t-234.5 -77q-156 0 -236 77t-80 205zM178 867h136l127 -144h-104z" />
+<glyph unicode="&#xda;" horiz-adv-x="750" d="M60 270v397h175v-391q0 -61 36.5 -98.5t104.5 -37.5q67 0 103.5 37.5t36.5 98.5v391h174v-396q0 -129 -79.5 -206t-234.5 -77q-156 0 -236 77t-80 205zM309 723l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xdb;" horiz-adv-x="750" d="M60 270v397h175v-391q0 -61 36.5 -98.5t104.5 -37.5q67 0 103.5 37.5t36.5 98.5v391h174v-396q0 -129 -79.5 -206t-234.5 -77q-156 0 -236 77t-80 205zM222 723l90 144h135l93 -144h-92l-69 81l-66 -81h-91z" />
+<glyph unicode="&#xdc;" horiz-adv-x="750" d="M60 270v397h175v-391q0 -61 36.5 -98.5t104.5 -37.5q67 0 103.5 37.5t36.5 98.5v391h174v-396q0 -129 -79.5 -206t-234.5 -77q-156 0 -236 77t-80 205zM193 782q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM407 782 q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="655" d="M-11 667h194l145 -246l143 246h195l-252 -398v-269h-172v269zM261 723l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xde;" horiz-adv-x="643" d="M60 0v667h172v-102h162q108 0 170 -64t62 -159t-61.5 -157.5t-170.5 -62.5h-162v-122h-172zM232 273h136q35 0 59 18.5t24 51.5t-24 52.5t-59 19.5h-136v-142z" />
+<glyph unicode="&#xdf;" horiz-adv-x="665" d="M57 0v463q0 90 67 152t181 62q90 0 155.5 -42.5t65.5 -111.5q0 -31 -12.5 -56.5t-30.5 -41.5t-36 -29t-30.5 -26t-12.5 -26q0 -14 25.5 -21t62 -14t73 -20.5t62 -49t25.5 -90.5q0 -72 -58 -116.5t-151 -44.5q-118 0 -202 74l61 106q21 -26 61.5 -45t79.5 -19q29 0 45 11 t16 26q0 16 -25.5 25.5t-62 17.5t-72.5 21.5t-61.5 47t-25.5 85.5q0 34 17.5 62.5t38.5 43.5t38.5 30t17.5 26q0 20 -19.5 30.5t-47.5 10.5q-41 0 -66 -20.5t-25 -57.5v-463h-154z" />
+<glyph unicode="&#xe0;" horiz-adv-x="551" d="M25 147q0 80 50 117.5t116 37.5q105 0 150 -56v58q0 32 -26 51t-72 19q-77 0 -137 -51l-55 97q88 75 219 75q46 0 84.5 -9.5t71 -30.5t51 -60t18.5 -93v-302h-154v48q-23 -27 -63.5 -43.5t-86.5 -16.5q-63 0 -114.5 41.5t-51.5 117.5zM74 700h136l127 -144h-104zM178 145 q0 -27 22 -41.5t55 -14.5q62 0 86 35v43q-25 34 -86 34q-33 0 -55 -14.5t-22 -41.5z" />
+<glyph unicode="&#xe1;" horiz-adv-x="551" d="M25 147q0 80 50 117.5t116 37.5q105 0 150 -56v58q0 32 -26 51t-72 19q-77 0 -137 -51l-55 97q88 75 219 75q46 0 84.5 -9.5t71 -30.5t51 -60t18.5 -93v-302h-154v48q-23 -27 -63.5 -43.5t-86.5 -16.5q-63 0 -114.5 41.5t-51.5 117.5zM178 145q0 -27 22 -41.5t55 -14.5 q62 0 86 35v43q-25 34 -86 34q-33 0 -55 -14.5t-22 -41.5zM204 556l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xe2;" horiz-adv-x="551" d="M25 147q0 80 50 117.5t116 37.5q105 0 150 -56v58q0 32 -26 51t-72 19q-77 0 -137 -51l-55 97q88 75 219 75q46 0 84.5 -9.5t71 -30.5t51 -60t18.5 -93v-302h-154v48q-23 -27 -63.5 -43.5t-86.5 -16.5q-63 0 -114.5 41.5t-51.5 117.5zM116 556l90 144h135l93 -144h-92 l-69 81l-66 -81h-91zM178 145q0 -27 22 -41.5t55 -14.5q62 0 86 35v43q-25 34 -86 34q-33 0 -55 -14.5t-22 -41.5z" />
+<glyph unicode="&#xe3;" horiz-adv-x="551" d="M25 147q0 80 50 117.5t116 37.5q105 0 150 -56v58q0 32 -26 51t-72 19q-77 0 -137 -51l-55 97q88 75 219 75q46 0 84.5 -9.5t71 -30.5t51 -60t18.5 -93v-302h-154v48q-23 -27 -63.5 -43.5t-86.5 -16.5q-63 0 -114.5 41.5t-51.5 117.5zM106 560q0 134 113 134q28 0 49 -14 t36.5 -27.5t27.5 -13.5q30 0 30 49h78q0 -134 -113 -134q-28 0 -49.5 14t-36.5 27.5t-27 13.5q-30 0 -30 -49h-78zM178 145q0 -27 22 -41.5t55 -14.5q62 0 86 35v43q-25 34 -86 34q-33 0 -55 -14.5t-22 -41.5z" />
+<glyph unicode="&#xe4;" horiz-adv-x="551" d="M25 147q0 80 50 117.5t116 37.5q105 0 150 -56v58q0 32 -26 51t-72 19q-77 0 -137 -51l-55 97q88 75 219 75q46 0 84.5 -9.5t71 -30.5t51 -60t18.5 -93v-302h-154v48q-23 -27 -63.5 -43.5t-86.5 -16.5q-63 0 -114.5 41.5t-51.5 117.5zM86 615q0 32 22.5 55t55.5 23 t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM178 145q0 -27 22 -41.5t55 -14.5q62 0 86 35v43q-25 34 -86 34q-33 0 -55 -14.5t-22 -41.5zM300 615q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5q-32 0 -55 23t-23 56z" />
+<glyph unicode="&#xe5;" horiz-adv-x="551" d="M25 147q0 80 50 117.5t116 37.5q105 0 150 -56v58q0 32 -26 51t-72 19q-77 0 -137 -51l-55 97q88 75 219 75q46 0 84.5 -9.5t71 -30.5t51 -60t18.5 -93v-302h-154v48q-23 -27 -63.5 -43.5t-86.5 -16.5q-63 0 -114.5 41.5t-51.5 117.5zM165 633q0 45 32 77t77 32 q44 0 75 -32t31 -77q0 -44 -31 -76t-75 -32q-45 0 -77 32t-32 76zM178 145q0 -27 22 -41.5t55 -14.5q62 0 86 35v43q-25 34 -86 34q-33 0 -55 -14.5t-22 -41.5zM233 633q0 -17 12 -28.5t29 -11.5q16 0 27.5 11.5t11.5 28.5t-11.5 29t-27.5 12q-17 0 -29 -12t-12 -29z" />
+<glyph unicode="&#xe6;" horiz-adv-x="860" d="M25 145q0 76 49 116.5t123 40.5q107 0 158 -54v56q0 31 -28 50.5t-76 19.5q-81 0 -145 -52l-55 98q88 75 221 75q116 0 162 -71q66 71 173 71q101 0 167 -74t66 -195v-33h-330q9 -36 39 -59.5t78 -23.5q67 0 108 41l68 -99q-34 -31 -87.5 -47.5t-103.5 -16.5 q-117 0 -180 77q-33 -34 -85.5 -55.5t-114.5 -21.5q-90 0 -148.5 39.5t-58.5 117.5zM178 151q0 -25 22 -37.5t53 -12.5q41 0 71.5 19.5t30.5 40.5v5q-29 35 -94 35q-35 0 -59 -13t-24 -37zM508 293h185q-4 32 -26.5 57.5t-66.5 25.5q-41 0 -64 -25t-28 -58z" />
+<glyph unicode="&#xe7;" horiz-adv-x="500" d="M24 242q0 112 75 182.5t189 70.5q72 0 122.5 -26t75.5 -63l-100 -93q-31 46 -91 46q-49 0 -81 -31.5t-32 -85.5t32 -86t81 -32q58 0 91 47l100 -94q-52 -76 -166 -87l-15 -37q17 10 34 10q28 0 48 -20.5t20 -51.5q0 -40 -33 -63.5t-82 -23.5q-73 0 -114 33l28 58 q41 -30 82 -30q19 0 33 7.5t14 20.5q0 22 -25 22q-16 0 -29 -13l-53 30l22 58q-100 11 -163 80t-63 172z" />
+<glyph unicode="&#xe8;" horiz-adv-x="548" d="M24 242q0 107 72.5 180t184.5 73q109 0 178 -73.5t69 -195.5v-33h-344q7 -36 39 -61t82 -25q28 0 64.5 11.5t55.5 29.5l65 -96q-35 -31 -89.5 -47.5t-112.5 -16.5q-114 0 -189 69.5t-75 184.5zM84 700h136l127 -144h-104zM182 293h199q-4 32 -28 57.5t-72 25.5 q-45 0 -69 -25t-30 -58z" />
+<glyph unicode="&#xe9;" horiz-adv-x="548" d="M24 242q0 107 72.5 180t184.5 73q109 0 178 -73.5t69 -195.5v-33h-344q7 -36 39 -61t82 -25q28 0 64.5 11.5t55.5 29.5l65 -96q-35 -31 -89.5 -47.5t-112.5 -16.5q-114 0 -189 69.5t-75 184.5zM182 293h199q-4 32 -28 57.5t-72 25.5q-45 0 -69 -25t-30 -58zM214 556 l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xea;" horiz-adv-x="548" d="M24 242q0 107 72.5 180t184.5 73q109 0 178 -73.5t69 -195.5v-33h-344q7 -36 39 -61t82 -25q28 0 64.5 11.5t55.5 29.5l65 -96q-35 -31 -89.5 -47.5t-112.5 -16.5q-114 0 -189 69.5t-75 184.5zM123 556l90 144h135l93 -144h-92l-69 81l-66 -81h-91zM182 293h199 q-4 32 -28 57.5t-72 25.5q-45 0 -69 -25t-30 -58z" />
+<glyph unicode="&#xeb;" horiz-adv-x="548" d="M24 242q0 107 72.5 180t184.5 73q109 0 178 -73.5t69 -195.5v-33h-344q7 -36 39 -61t82 -25q28 0 64.5 11.5t55.5 29.5l65 -96q-35 -31 -89.5 -47.5t-112.5 -16.5q-114 0 -189 69.5t-75 184.5zM97 615q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5 t-55.5 22.5t-22.5 56.5zM182 293h199q-4 32 -28 57.5t-72 25.5q-45 0 -69 -25t-30 -58zM311 615q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 23t-22.5 56z" />
+<glyph unicode="&#xec;" horiz-adv-x="266" d="M-63 700h136l127 -144h-104zM56 0v483h154v-483h-154z" />
+<glyph unicode="&#xed;" horiz-adv-x="266" d="M56 0v483h154v-483h-154zM67 556l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xee;" horiz-adv-x="266" d="M-25 556l90 144h135l93 -144h-92l-69 81l-66 -81h-91zM56 0v483h154v-483h-154z" />
+<glyph unicode="&#xef;" horiz-adv-x="266" d="M-52 615q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM56 0v483h154v-483h-154zM162 615q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5q-32 0 -55 23t-23 56z" />
+<glyph unicode="&#xf0;" horiz-adv-x="576" d="M24 220q0 101 61 165.5t151 64.5q104 0 160 -94q-28 73 -155 164l-148 -66l-28 69l103 45l-55 33l83 122q78 -48 129 -86l100 44l29 -66l-67 -30q164 -150 164 -330q0 -121 -70.5 -194t-193.5 -73q-118 0 -190.5 64.5t-72.5 167.5zM183 220q0 -42 27.5 -69t76.5 -27 q50 0 78 27t28 69q0 41 -28.5 68t-77.5 27t-76.5 -27t-27.5 -68z" />
+<glyph unicode="&#xf1;" horiz-adv-x="593" d="M56 0v483h154v-59q61 71 167 71q80 0 120 -41.5t40 -111.5v-342h-154v279q0 80 -79 80q-56 0 -94 -47v-312h-154zM131 560q0 134 113 134q28 0 49 -14t36.5 -27.5t27.5 -13.5q30 0 30 49h78q0 -134 -113 -134q-28 0 -49.5 14t-36.5 27.5t-27 13.5q-30 0 -30 -49h-78z" />
+<glyph unicode="&#xf2;" horiz-adv-x="576" d="M24 242q0 106 72 179.5t191 73.5q120 0 192 -73.5t72 -179.5t-72 -180t-192 -74q-119 0 -191 74t-72 180zM91 700h136l127 -144h-104zM183 242q0 -51 27.5 -84.5t76.5 -33.5t77.5 33.5t28.5 84.5q0 50 -28.5 83.5t-77.5 33.5t-76.5 -33.5t-27.5 -83.5z" />
+<glyph unicode="&#xf3;" horiz-adv-x="576" d="M24 242q0 106 72 179.5t191 73.5q120 0 192 -73.5t72 -179.5t-72 -180t-192 -74q-119 0 -191 74t-72 180zM183 242q0 -51 27.5 -84.5t76.5 -33.5t77.5 33.5t28.5 84.5q0 50 -28.5 83.5t-77.5 33.5t-76.5 -33.5t-27.5 -83.5zM221 556l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xf4;" horiz-adv-x="576" d="M24 242q0 106 72 179.5t191 73.5q120 0 192 -73.5t72 -179.5t-72 -180t-192 -74q-119 0 -191 74t-72 180zM130 556l90 144h135l93 -144h-92l-69 81l-66 -81h-91zM183 242q0 -51 27.5 -84.5t76.5 -33.5t77.5 33.5t28.5 84.5q0 50 -28.5 83.5t-77.5 33.5t-76.5 -33.5 t-27.5 -83.5z" />
+<glyph unicode="&#xf5;" horiz-adv-x="576" d="M24 242q0 106 72 179.5t191 73.5q120 0 192 -73.5t72 -179.5t-72 -180t-192 -74q-119 0 -191 74t-72 180zM121 560q0 134 113 134q28 0 49 -14t36.5 -27.5t27.5 -13.5q30 0 30 49h78q0 -134 -113 -134q-28 0 -49.5 14t-36.5 27.5t-27 13.5q-30 0 -30 -49h-78zM183 242 q0 -51 27.5 -84.5t76.5 -33.5t77.5 33.5t28.5 84.5q0 50 -28.5 83.5t-77.5 33.5t-76.5 -33.5t-27.5 -83.5z" />
+<glyph unicode="&#xf6;" horiz-adv-x="576" d="M24 242q0 106 72 179.5t191 73.5q120 0 192 -73.5t72 -179.5t-72 -180t-192 -74q-119 0 -191 74t-72 180zM102 615q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM183 242q0 -51 27.5 -84.5t76.5 -33.5t77.5 33.5t28.5 84.5 q0 50 -28.5 83.5t-77.5 33.5t-76.5 -33.5t-27.5 -83.5zM316 615q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5q-32 0 -55 23t-23 56z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M29 291v92h453v-92h-453zM187 163q0 29 20 49t48 20q29 0 49 -20t20 -49q0 -28 -20.5 -48t-48.5 -20t-48 20t-20 48zM187 510q0 28 19.5 48t48.5 20t49 -20t20 -48t-20 -48.5t-49 -20.5q-28 0 -48 20t-20 49z" />
+<glyph unicode="&#xf8;" horiz-adv-x="576" d="M24 242q0 106 72 179.5t191 73.5q81 0 144 -37l22 25h92l-60 -68q66 -71 66 -173q0 -106 -72 -180t-192 -74q-83 0 -145 38l-23 -26h-90l60 69q-65 71 -65 173zM183 242q0 -32 10 -55l142 161q-22 11 -48 11q-49 0 -76.5 -33.5t-27.5 -83.5zM238 135q19 -11 49 -11 q49 0 77.5 33.5t28.5 84.5q0 29 -11 56z" />
+<glyph unicode="&#xf9;" horiz-adv-x="592" d="M56 139v344h154v-281q0 -78 80 -78q55 0 92 47v312h154v-483h-154v58q-62 -70 -167 -70q-80 0 -119.5 40.5t-39.5 110.5zM99 700h136l127 -144h-104z" />
+<glyph unicode="&#xfa;" horiz-adv-x="592" d="M56 139v344h154v-281q0 -78 80 -78q55 0 92 47v312h154v-483h-154v58q-62 -70 -167 -70q-80 0 -119.5 40.5t-39.5 110.5zM229 556l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xfb;" horiz-adv-x="592" d="M56 139v344h154v-281q0 -78 80 -78q55 0 92 47v312h154v-483h-154v58q-62 -70 -167 -70q-80 0 -119.5 40.5t-39.5 110.5zM139 556l90 144h135l93 -144h-92l-69 81l-66 -81h-91z" />
+<glyph unicode="&#xfc;" horiz-adv-x="592" d="M56 139v344h154v-281q0 -78 80 -78q55 0 92 47v312h154v-483h-154v58q-62 -70 -167 -70q-80 0 -119.5 40.5t-39.5 110.5zM112 615q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM326 615q0 32 23 55t55 23q33 0 56 -23t23 -55 q0 -34 -23 -56.5t-56 -22.5q-32 0 -55 23t-23 56z" />
+<glyph unicode="&#xfd;" horiz-adv-x="524" d="M-10 483h162l109 -306l110 306h163l-218 -552q-27 -71 -77 -98t-127 -29q-40 0 -66 8l22 137q16 -9 38 -9q54 0 65 27l11 26zM195 556l127 144h136l-159 -144h-104z" />
+<glyph unicode="&#xfe;" d="M56 -184v851h154v-240q56 68 143 68q94 0 153 -67t59 -186q0 -120 -59 -187t-153 -67q-85 0 -143 69v-241h-154zM210 168q14 -19 40.5 -31.5t51.5 -12.5q46 0 76 32t30 86q0 53 -30 85t-76 32q-25 0 -51.5 -12.5t-40.5 -31.5v-147z" />
+<glyph unicode="&#xff;" horiz-adv-x="524" d="M-10 483h162l109 -306l110 306h163l-218 -552q-27 -71 -77 -98t-127 -29q-40 0 -66 8l22 137q16 -9 38 -9q54 0 65 27l11 26zM76 615q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM290 615q0 32 23 55t55 23q33 0 56 -23 t23 -55q0 -34 -23 -56.5t-56 -22.5q-32 0 -55 23t-23 56z" />
+<glyph unicode="&#x152;" horiz-adv-x="1073" d="M26 333q0 152 95.5 248t242.5 96q51 0 101.5 -17.5t82.5 -49.5v57h489v-150h-317v-104h310v-150h-310v-113h317v-150h-489v57q-31 -34 -82 -51.5t-102 -17.5q-147 0 -242.5 96t-95.5 249zM201 333q0 -84 51 -138.5t137 -54.5q53 0 95 25t64 69v199q-22 44 -63.5 68 t-95.5 24q-86 0 -137 -54t-51 -138z" />
+<glyph unicode="&#x153;" horiz-adv-x="916" d="M24 242q0 106 72 179.5t191 73.5q101 0 184 -92q73 92 179 92q109 0 177.5 -73.5t68.5 -195.5v-33h-344q10 -36 41.5 -61t83.5 -25q69 0 114 40l68 -95q-73 -64 -203 -64q-65 0 -107 24.5t-79 66.5q-76 -91 -183 -91q-119 0 -191 74t-72 180zM183 242q0 -54 29 -86.5 t75 -32.5q48 0 77 32.5t29 86.5t-29 85.5t-77 31.5q-46 0 -75 -32t-29 -85zM551 293h198q-4 32 -28 58t-72 26q-45 0 -69 -25.5t-29 -58.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="655" d="M-11 667h194l145 -246l143 246h195l-252 -398v-269h-172v269zM143 782q0 32 22.5 55t55.5 23t56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5zM357 782q0 32 23 55t55 23q33 0 56 -23t23 -55q0 -34 -23 -56.5t-56 -22.5t-55.5 22.5t-22.5 56.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="318" d="M0 556l90 144h135l93 -144h-92l-69 81l-66 -81h-91z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="334" d="M0 560q0 134 113 134q28 0 49 -14t36.5 -27.5t27.5 -13.5q30 0 30 49h78q0 -134 -113 -134q-28 0 -49.5 14t-36.5 27.5t-27 13.5q-30 0 -30 -49h-78z" />
+<glyph unicode="&#x2000;" horiz-adv-x="452" />
+<glyph unicode="&#x2001;" horiz-adv-x="904" />
+<glyph unicode="&#x2002;" horiz-adv-x="452" />
+<glyph unicode="&#x2003;" horiz-adv-x="904" />
+<glyph unicode="&#x2004;" horiz-adv-x="301" />
+<glyph unicode="&#x2005;" horiz-adv-x="226" />
+<glyph unicode="&#x2006;" horiz-adv-x="150" />
+<glyph unicode="&#x2007;" horiz-adv-x="150" />
+<glyph unicode="&#x2008;" horiz-adv-x="113" />
+<glyph unicode="&#x2009;" horiz-adv-x="180" />
+<glyph unicode="&#x200a;" horiz-adv-x="50" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M30 178v129h240v-129h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M30 178v129h240v-129h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M30 178v129h240v-129h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M30 178v129h533v-129h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M30 178v129h773v-129h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="268" d="M34 475q0 122 114 203l64 -52q-25 -12 -50.5 -40.5t-33.5 -54.5q12 3 23 3q33 0 55 -23t22 -59q0 -38 -27 -65.5t-64 -27.5q-42 0 -72.5 31.5t-30.5 84.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="268" d="M40 585q0 38 27 65t65 27q43 0 72.5 -31.5t29.5 -84.5q0 -122 -114 -203l-64 52q25 13 51 41t34 55q-10 -4 -23 -4q-33 0 -55.5 23t-22.5 60z" />
+<glyph unicode="&#x201a;" horiz-adv-x="268" d="M40 84q0 38 27 65t65 27q42 0 72 -31t30 -84q0 -123 -114 -203l-64 52q25 13 51 41t34 54q-15 -3 -23 -3q-33 0 -55.5 23t-22.5 59z" />
+<glyph unicode="&#x201c;" horiz-adv-x="493" d="M33 475q0 122 114 203l64 -52q-25 -13 -51 -41t-33 -54q12 3 23 3q32 0 54.5 -23t22.5 -59q0 -38 -27 -65.5t-65 -27.5q-42 0 -72 31.5t-30 84.5zM258 475q0 122 114 203l64 -52q-25 -12 -50.5 -40.5t-33.5 -54.5q12 3 23 3q33 0 55 -23t22 -59q0 -38 -27 -65.5 t-64 -27.5q-42 0 -72.5 31.5t-30.5 84.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="493" d="M40 585q0 38 27 65t65 27q43 0 72.5 -31.5t29.5 -84.5q0 -122 -114 -203l-64 52q25 13 51 41t34 55q-10 -4 -23 -4q-33 0 -55.5 23t-22.5 60zM266 585q0 38 27 65t64 27q43 0 73 -31.5t30 -84.5q0 -122 -114 -203l-64 52q25 13 50.5 41t33.5 55q-8 -4 -23 -4 q-33 0 -55 23t-22 60z" />
+<glyph unicode="&#x201e;" horiz-adv-x="494" d="M40 84q0 38 27 65t65 27q42 0 72 -31t30 -84q0 -123 -114 -203l-64 52q25 13 51 41t34 54q-15 -3 -23 -3q-33 0 -55.5 23t-22.5 59zM266 84q0 38 27 65t64 27q43 0 73 -31t30 -84q0 -123 -114 -203l-64 52q25 12 50.5 40.5t33.5 54.5q-12 -3 -23 -3q-33 0 -55 23t-22 59z " />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M56 242q0 52 36 88t88 36t88 -36t36 -88q0 -51 -36 -87t-88 -36t-88 36t-36 87z" />
+<glyph unicode="&#x2026;" horiz-adv-x="807" d="M41 82q0 38 27.5 66t65.5 28t65.5 -28t27.5 -66t-27.5 -65.5t-65.5 -27.5t-65.5 27.5t-27.5 65.5zM310 82q0 38 27.5 66t65.5 28t65.5 -28t27.5 -66t-27.5 -65.5t-65.5 -27.5t-65.5 27.5t-27.5 65.5zM579 82q0 38 27.5 66t65.5 28t66 -28t28 -66t-28 -65.5t-66 -27.5 t-65.5 27.5t-27.5 65.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="180" />
+<glyph unicode="&#x2039;" horiz-adv-x="359" d="M30 243l160 177h139l-160 -177l160 -180h-139z" />
+<glyph unicode="&#x203a;" horiz-adv-x="359" d="M30 63l160 180l-160 177h139l160 -177l-160 -180h-139z" />
+<glyph unicode="&#x205f;" horiz-adv-x="226" />
+<glyph unicode="&#x20ac;" horiz-adv-x="715" d="M17 222v85h34q-1 13 -1 26q0 14 1 28h-34v85h50q35 107 127.5 169.5t216.5 62.5q201 0 291 -179l-148 -70q-17 41 -56.5 69t-86.5 28q-100 0 -154 -80h214v-85h-244q-2 -18 -2 -28q0 -18 1 -26h245v-85h-215q54 -82 155 -82q47 0 86.5 28t56.5 69l148 -70 q-38 -76 -109.5 -127.5t-181.5 -51.5q-124 0 -217 63.5t-127 170.5h-50z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M17 641v26h152v-26h-62v-194h-28v194h-62zM205 447v220h43l64 -160l64 160h43v-220h-28v182l-75 -182h-8l-75 182v-182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="12" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="18" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="4" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="27" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="22" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="40" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="32" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="22" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="75" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="47" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="17" />
+<hkern g1="G" 	g2="question" 	k="17" />
+<hkern g1="G" 	g2="T" 	k="8" />
+<hkern g1="G" 	g2="W" 	k="8" />
+<hkern g1="G" 	g2="V" 	k="17" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="25" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="8" />
+<hkern g1="G" 	g2="X" 	k="8" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="44" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="5" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="37" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="55" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
+<hkern g1="K" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="24" />
+<hkern g1="K" 	g2="x" 	k="37" />
+<hkern g1="L" 	g2="question" 	k="104" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="143" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="24" />
+<hkern g1="L" 	g2="asterisk" 	k="164" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="22" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="77" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="128" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="4" />
+<hkern g1="L" 	g2="t" 	k="38" />
+<hkern g1="L" 	g2="w" 	k="32" />
+<hkern g1="L" 	g2="v" 	k="52" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="52" />
+<hkern g1="L" 	g2="ampersand" 	k="2" />
+<hkern g1="L" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="4" />
+<hkern g1="L" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="5" />
+<hkern g1="P" 	g2="J" 	k="125" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="8" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="72" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="84" />
+<hkern g1="P" 	g2="X" 	k="25" />
+<hkern g1="P" 	g2="ampersand" 	k="37" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="24" />
+<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="P" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="8" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="19" />
+<hkern g1="R" 	g2="ampersand" 	k="8" />
+<hkern g1="R" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
+<hkern g1="R" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="17" />
+<hkern g1="S" 	g2="T" 	k="17" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="10" />
+<hkern g1="S" 	g2="t" 	k="12" />
+<hkern g1="S" 	g2="w" 	k="8" />
+<hkern g1="S" 	g2="v" 	k="17" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="17" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="10" />
+<hkern g1="S" 	g2="x" 	k="18" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="22" />
+<hkern g1="T" 	g2="J" 	k="88" />
+<hkern g1="T" 	g2="S" 	k="8" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="15" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="59" />
+<hkern g1="T" 	g2="w" 	k="14" />
+<hkern g1="T" 	g2="v" 	k="14" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="14" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="62" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="98" />
+<hkern g1="T" 	g2="ampersand" 	k="52" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="69" />
+<hkern g1="T" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="89" />
+<hkern g1="T" 	g2="x" 	k="24" />
+<hkern g1="T" 	g2="s" 	k="75" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="37" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="V" 	g2="J" 	k="98" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="28" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="63" />
+<hkern g1="V" 	g2="t" 	k="18" />
+<hkern g1="V" 	g2="w" 	k="17" />
+<hkern g1="V" 	g2="v" 	k="18" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="17" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="44" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="45" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="58" />
+<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="68" />
+<hkern g1="V" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="28" />
+<hkern g1="V" 	g2="s" 	k="55" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="63" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
+<hkern g1="W" 	g2="J" 	k="70" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="18" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="18" />
+<hkern g1="W" 	g2="v" 	k="8" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="8" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="42" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="62" />
+<hkern g1="W" 	g2="ampersand" 	k="20" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="38" />
+<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="40" />
+<hkern g1="W" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="28" />
+<hkern g1="W" 	g2="s" 	k="35" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="40" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="118" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="20" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="65" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="37" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="68" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="127" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="105" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="122" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="78" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="75" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="question" 	k="47" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="17" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="T" 	k="87" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="W" 	k="48" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="V" 	k="77" />
+<hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="ampersand" 	g2="T" 	k="64" />
+<hkern g1="ampersand" 	g2="W" 	k="27" />
+<hkern g1="ampersand" 	g2="V" 	k="50" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="75" />
+<hkern g1="asterisk" 	g2="J" 	k="127" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="85" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="57" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="89" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="114" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="32" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="28" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="8" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="65" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="28" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="47" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="75" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="47" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="8" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="85" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="58" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="2" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="2" />
+<hkern g1="f" 	g2="question" 	k="-52" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-62" />
+<hkern g1="f" 	g2="asterisk" 	k="-62" />
+<hkern g1="f" 	g2="S" 	k="-28" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-68" />
+<hkern g1="f" 	g2="V" 	k="-68" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-67" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="48" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="8" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-64" />
+<hkern g1="g,j,q" 	g2="question" 	k="28" />
+<hkern g1="g,j,q" 	g2="T" 	k="59" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="63" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-57" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="38" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="58" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="125" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="48" />
+<hkern g1="k" 	g2="T" 	k="32" />
+<hkern g1="k" 	g2="W" 	k="28" />
+<hkern g1="k" 	g2="V" 	k="28" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="77" />
+<hkern g1="k" 	g2="bullet" 	k="22" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="22" />
+<hkern g1="k" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="8" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="87" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="98" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="62" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="82" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="28" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="28" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="34" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="62" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="52" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="2" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="77" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="110" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="15" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="113" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="94" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="87" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="27" />
+<hkern g1="r" 	g2="W" 	k="17" />
+<hkern g1="r" 	g2="V" 	k="28" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="88" />
+<hkern g1="r" 	g2="X" 	k="25" />
+<hkern g1="s" 	g2="question" 	k="48" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="67" />
+<hkern g1="s" 	g2="W" 	k="55" />
+<hkern g1="s" 	g2="V" 	k="48" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="98" />
+<hkern g1="s" 	g2="X" 	k="8" />
+<hkern g1="t" 	g2="T" 	k="21" />
+<hkern g1="t" 	g2="W" 	k="18" />
+<hkern g1="t" 	g2="V" 	k="37" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="38" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="28" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="T" 	k="59" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="W" 	k="30" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="V" 	k="63" />
+<hkern g1="u,z,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="14" />
+<hkern g1="v" 	g2="W" 	k="8" />
+<hkern g1="v" 	g2="V" 	k="18" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="62" />
+<hkern g1="v" 	g2="X" 	k="32" />
+<hkern g1="w" 	g2="T" 	k="14" />
+<hkern g1="w" 	g2="V" 	k="17" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="12" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="34" />
+<hkern g1="w" 	g2="X" 	k="33" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="8" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="14" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="8" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="17" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="52" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="32" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="33" />
+<hkern g1="X" 	g2="v" 	k="32" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="32" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="48" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="15" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="92" />
+<hkern g1="x" 	g2="T" 	k="24" />
+<hkern g1="x" 	g2="W" 	k="28" />
+<hkern g1="x" 	g2="V" 	k="28" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="x" 	g2="c,d,e,g,o,q,cent,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="32" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..878327377ac142822147537342f46cb2ef1ec9e1
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.woff
new file mode 100755
index 0000000000000000000000000000000000000000..98e42c3d2b91cfca2dc01772a3e8e2edcbbeaef3
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-Xbold.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.eot b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.eot
new file mode 100755
index 0000000000000000000000000000000000000000..8b66f883f7cc840860b992e9ea6b4999f5084112
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.eot differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..eaf0118b1ff7a2e99437c3dd2951eb84b50b0f89
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.svg b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.svg
new file mode 100755
index 0000000000000000000000000000000000000000..caa6630a59d37da3eeb9a5e619092991adc1d318
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.svg
@@ -0,0 +1,578 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="proxima_novaextrabold_italic" horiz-adv-x="591" >
+<font-face units-per-em="1000" ascent="790" descent="-210" />
+<missing-glyph horiz-adv-x="256" />
+<glyph unicode="&#xfb01;" horiz-adv-x="615" d="M32 349l30 134h79l6 26q18 76 68 122t126 46q70 0 114 -27l-51 -102q-17 12 -43 12q-48 0 -60 -51l-6 -26h99l-30 -134h-98l-77 -349h-154l77 349h-80zM351 0l107 483h154l-107 -483h-154zM474 602q0 46 31.5 73.5t68.5 27.5q34 0 56.5 -22t22.5 -53q0 -46 -31 -74 t-68 -28q-35 0 -57.5 22.5t-22.5 53.5z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="615" d="M32 349l30 134h79l6 26q18 76 68 122t126 46q70 0 114 -27l-51 -102q-17 12 -43 12q-48 0 -60 -51l-6 -26h99l-30 -134h-98l-77 -349h-154l77 349h-80zM351 0l147 667h154l-147 -667h-154z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="965" d="M32 350l30 133h79l6 26q17 75 66.5 121.5t131.5 46.5q89 0 138 -50l-73 -87q-20 20 -52 20q-46 0 -57 -54l-6 -23h99l-30 -133h-98l-77 -350h-154l77 350h-80zM381 349l30 134h79l6 26q18 76 68 122t126 46q70 0 114 -27l-51 -102q-17 12 -43 12q-48 0 -60 -51l-6 -26h99 l-30 -134h-98l-77 -349h-154l77 349h-80zM700 0l107 483h154l-107 -483h-154zM823 602q0 46 31.5 73.5t68.5 27.5q34 0 56.5 -22t22.5 -53q0 -46 -31 -74t-68 -28q-35 0 -57.5 22.5t-22.5 53.5z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="965" d="M32 350l30 133h79l6 26q17 75 66.5 121.5t131.5 46.5q89 0 138 -50l-73 -87q-20 20 -52 20q-46 0 -57 -54l-6 -23h99l-30 -133h-98l-77 -350h-154l77 350h-80zM381 349l30 134h79l6 26q18 76 68 122t126 46q70 0 114 -27l-51 -102q-17 12 -43 12q-48 0 -60 -51l-6 -26h99 l-30 -134h-98l-77 -349h-154l77 349h-80zM700 0l147 667h154l-147 -667h-154z" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="333" />
+<glyph unicode="&#xd;" horiz-adv-x="0" />
+<glyph unicode=" "  horiz-adv-x="256" />
+<glyph unicode="&#x09;" horiz-adv-x="256" />
+<glyph unicode="&#xa0;" horiz-adv-x="256" />
+<glyph unicode="!" horiz-adv-x="270" d="M5 74q0 42 30.5 72t72.5 30q35 0 60 -25.5t25 -61.5q0 -41 -31 -71t-72 -30q-36 0 -60.5 25t-24.5 61zM62 233l73 434h184l-119 -434h-138z" />
+<glyph unicode="&#x22;" horiz-adv-x="438" d="M111 357q3 205 3 227q1 40 28 66.5t65 26.5q29 0 50 -21t21 -52q0 -17 -8 -33l-94 -214h-65zM312 357q2 205 3 227q0 40 26.5 66.5t65.5 26.5q29 0 50 -21t21 -52q0 -17 -8 -33l-94 -214h-64z" />
+<glyph unicode="#" horiz-adv-x="632" d="M-4 164l52 95h93l82 148h-93l51 94h94l92 166h110l-91 -166h86l91 166h111l-92 -166h93l-50 -94h-95l-83 -148h96l-51 -95h-98l-90 -164h-111l91 164h-87l-90 -164h-110l91 164h-92zM251 259h85l83 148h-86z" />
+<glyph unicode="$" horiz-adv-x="625" d="M2 115l105 124q35 -46 97 -74.5t130 -28.5q38 0 57.5 16t19.5 37q0 17 -24 31.5t-59.5 25.5t-77.5 28t-77.5 37.5t-59.5 56t-24 81.5q0 90 73 158.5t197 69.5l21 91h111l-24 -104q107 -27 174 -97l-105 -120q-37 40 -92.5 61.5t-108.5 21.5q-29 0 -47 -13.5t-18 -33.5 q0 -19 33.5 -35t80.5 -32t94.5 -37.5t81 -61.5t33.5 -94q0 -101 -74.5 -168t-198.5 -67h-3l-19 -88h-111l22 100q-137 28 -207 115z" />
+<glyph unicode="%" horiz-adv-x="771" d="M76 0l573 667h87l-574 -667h-86zM79 483q0 85 55 139.5t133 54.5q69 0 117.5 -38t48.5 -102q0 -85 -55.5 -139.5t-133.5 -54.5q-68 0 -116.5 38t-48.5 102zM185 493q0 -26 17.5 -42t45.5 -16q33 0 55.5 25t22.5 67q0 25 -17.5 41.5t-44.5 16.5q-33 0 -56 -25.5t-23 -66.5 zM377 128q0 85 55 139.5t133 54.5q69 0 117.5 -38t48.5 -102q0 -84 -55.5 -139t-133.5 -55q-68 0 -116.5 38t-48.5 102zM483 138q0 -25 17.5 -41.5t45.5 -16.5q33 0 55.5 25.5t22.5 66.5q0 25 -17.5 41.5t-44.5 16.5q-33 0 -56 -25t-23 -67z" />
+<glyph unicode="&#x26;" horiz-adv-x="649" d="M0 168q0 88 51 138t138 81q-15 57 -15 100q0 81 61 135.5t151 54.5q79 0 133.5 -37.5t54.5 -105.5q0 -42 -16 -73.5t-50 -53.5t-62 -34t-77 -28l30 -56q31 -56 38 -69q49 50 82 110l108 -68q-66 -89 -127 -145q41 -62 81 -117h-179q-8 10 -22 30q-79 -42 -157 -42 q-101 0 -162 44t-61 136zM167 187q0 -38 23.5 -59t58.5 -21q30 0 66 17q-62 98 -89 163q-59 -38 -59 -100zM327 488q0 -25 8 -55q51 17 77.5 36.5t26.5 49.5q0 24 -13 36.5t-34 12.5q-26 0 -45.5 -21t-19.5 -59z" />
+<glyph unicode="'" horiz-adv-x="239" d="M111 357q3 205 3 227q1 40 28 66.5t65 26.5q29 0 50 -21t21 -52q0 -17 -8 -33l-94 -214h-65z" />
+<glyph unicode="(" horiz-adv-x="322" d="M23 115q0 156 76 310t205 260l81 -82q-95 -110 -148.5 -247t-53.5 -280q0 -102 40 -211l-113 -64q-42 57 -64.5 141t-22.5 173z" />
+<glyph unicode=")" horiz-adv-x="322" d="M-64 -117q95 109 148 246t53 280q0 101 -39 212l112 64q43 -57 65.5 -140.5t22.5 -173.5q0 -156 -76.5 -309.5t-204.5 -260.5z" />
+<glyph unicode="*" horiz-adv-x="357" d="M71 485l105 38l-84 58l50 57l76 -66l19 105h74l-31 -112l103 47l22 -65l-104 -38l83 -58l-51 -57l-77 65l-17 -104h-74l30 111l-104 -46z" />
+<glyph unicode="+" horiz-adv-x="507" d="M39 291l21 92h174l42 191h101l-42 -191h174l-20 -92h-174l-44 -198h-102l44 198h-174z" />
+<glyph unicode="," horiz-adv-x="270" d="M-18 -81q79 34 105 84q-3 -1 -12 -1q-30 0 -50.5 19.5t-20.5 55.5q0 40 31.5 69.5t71.5 29.5q37 0 63.5 -24.5t26.5 -68.5q0 -62 -46 -123.5t-116 -95.5z" />
+<glyph unicode="-" horiz-adv-x="300" d="M15 178l29 129h240l-29 -129h-240z" />
+<glyph unicode="." horiz-adv-x="270" d="M5 74q0 42 30.5 72t72.5 30q35 0 60 -25.5t25 -61.5q0 -41 -31 -71t-72 -30q-36 0 -60.5 25t-24.5 61z" />
+<glyph unicode="/" horiz-adv-x="346" d="M-61 -20l393 707h114l-394 -707h-113z" />
+<glyph unicode="0" horiz-adv-x="624" d="M36 261q0 171 97 293.5t243 122.5q113 0 181.5 -71t68.5 -201q0 -171 -96.5 -294t-242.5 -123q-113 0 -182 71.5t-69 201.5zM208 254q0 -53 23.5 -83.5t71.5 -30.5q46 0 81.5 44.5t52 105.5t16.5 123q0 52 -23 82t-71 30q-46 0 -82 -44.5t-52.5 -105t-16.5 -121.5z" />
+<glyph unicode="1" horiz-adv-x="447" d="M47 437l284 230h149l-147 -667h-172l98 447l-136 -113z" />
+<glyph unicode="2" horiz-adv-x="607" d="M-10 0l34 157q241 131 326 190.5t85 113.5q0 30 -30 48t-78 18q-89 0 -164 -58l-69 124q46 39 112 61.5t135 22.5q115 0 194.5 -55t79.5 -149q0 -88 -78 -166t-235 -157h245l-34 -150h-523z" />
+<glyph unicode="3" horiz-adv-x="602" d="M-17 127l111 105q33 -44 88.5 -68t108.5 -24q49 0 73.5 19t24.5 50q0 52 -109 52q-79 0 -89 -1l35 153q11 -1 94 -1q115 0 115 56q0 28 -31.5 43t-88.5 15q-92 0 -159 -49l-59 116q94 84 235 84q130 0 205.5 -47t75.5 -130q0 -60 -55.5 -106t-124.5 -56q126 -31 126 -148 q0 -88 -78.5 -145t-188.5 -57q-99 0 -183.5 36t-125.5 103z" />
+<glyph unicode="4" horiz-adv-x="616" d="M-6 122l33 148l332 397h248l-88 -394h81l-33 -151h-81l-26 -122h-173l27 122h-320zM194 273h153l55 244z" />
+<glyph unicode="5" horiz-adv-x="617" d="M10 114l120 110q59 -84 176 -84q50 0 78 24t28 59q0 33 -31 52t-83 19q-66 0 -114 -37l-110 42l80 368h484l-33 -150h-312l-27 -126q52 42 129 42q85 0 140.5 -51t55.5 -139q0 -107 -80 -181t-207 -74q-198 0 -294 126z" />
+<glyph unicode="6" horiz-adv-x="617" d="M32 253q0 178 101.5 301t271.5 123q142 0 234 -86l-103 -122q-51 56 -142 56q-58 0 -103 -35t-64 -85q-6 -10 -10 -30q27 28 71.5 45.5t92.5 17.5q92 0 153.5 -51.5t61.5 -136.5q0 -108 -84.5 -185t-201.5 -77q-130 0 -204 70t-74 195zM199 239q0 -46 32 -72.5t79 -26.5 q45 0 75.5 25t30.5 64q0 32 -34.5 52t-83.5 20q-54 0 -97 -34q-2 -14 -2 -28z" />
+<glyph unicode="7" horiz-adv-x="560" d="M60 0l337 517h-316l33 150h523l-27 -119l-353 -548h-197z" />
+<glyph unicode="8" horiz-adv-x="618" d="M7 171q0 62 45.5 113.5t130.5 76.5q-41 20 -67 54.5t-26 76.5q0 62 42.5 105.5t102.5 61.5t130 18t130.5 -17.5t103 -58t42.5 -98.5q0 -63 -45 -110.5t-120 -64.5q104 -58 104 -148q0 -89 -85.5 -140.5t-202.5 -51.5q-119 0 -202 46t-83 137zM189 195q0 -31 29 -47.5 t80 -16.5q45 0 76 18t31 46q0 51 -92 73q-53 -2 -88.5 -21.5t-35.5 -51.5zM263 474q0 -22 25 -39t58 -25q49 3 80 20t31 42q0 27 -29 44.5t-73 17.5q-38 0 -65 -17t-27 -43z" />
+<glyph unicode="9" horiz-adv-x="617" d="M16 75l103 123q51 -57 142 -57q58 0 102.5 34.5t64.5 85.5q7 17 9 29q-27 -28 -71 -45t-92 -17q-92 0 -154 51.5t-62 136.5q0 108 85 185t202 77q130 0 204 -70t74 -195q0 -179 -101.5 -301.5t-271.5 -122.5q-143 0 -234 86zM238 437q0 -32 34.5 -52t83.5 -20q54 0 98 34 q1 7 1 28q0 45 -32 72t-78 27t-76.5 -25t-30.5 -64z" />
+<glyph unicode=":" horiz-adv-x="270" d="M5 74q0 42 30.5 72t72.5 30q35 0 60 -25.5t25 -61.5q0 -41 -31 -71t-72 -30q-36 0 -60.5 25t-24.5 61zM73 389q0 41 31 71.5t72 30.5q36 0 61 -25.5t25 -61.5q0 -42 -30.5 -72t-72.5 -30q-36 0 -61 25.5t-25 61.5z" />
+<glyph unicode=";" horiz-adv-x="270" d="M-18 -81q79 34 105 84q-3 -1 -12 -1q-30 0 -50.5 19.5t-20.5 55.5q0 40 31.5 69.5t71.5 29.5q37 0 63.5 -24.5t26.5 -68.5q0 -62 -46 -123.5t-116 -95.5zM73 389q0 41 31 71.5t72 30.5q36 0 61 -25.5t25 -61.5q0 -42 -30.5 -72t-72.5 -30q-36 0 -61 25.5t-25 61.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="507" d="M36 279l25 111l491 190l-25 -114l-375 -137l315 -134l-24 -105z" />
+<glyph unicode="=" horiz-adv-x="507" d="M18 195l20 92h449l-20 -92h-449zM59 381l20 92h449l-20 -92h-449z" />
+<glyph unicode="&#x3e;" horiz-adv-x="507" d="M-6 90l26 114l375 134l-315 137l23 105l407 -190l-25 -111z" />
+<glyph unicode="?" horiz-adv-x="453" d="M79 606q89 71 204 71q91 0 154 -40t63 -108q0 -42 -15.5 -74t-38.5 -50t-50 -35t-50 -29t-38.5 -30t-15.5 -41q0 -13 8 -22l-141 -34q-14 30 -14 70q0 41 18 71.5t43 48t50.5 30.5t43.5 26.5t18 29.5q0 37 -62 37q-57 0 -105 -40zM97 74q0 42 30.5 72t72.5 30 q35 0 60 -25.5t25 -61.5q0 -41 -30.5 -71t-72.5 -30q-35 0 -60 25.5t-25 60.5z" />
+<glyph unicode="@" horiz-adv-x="783" d="M55 244q0 158 120 276t277 118q141 0 228 -87.5t87 -213.5q0 -62 -20 -112t-52 -79.5t-68 -45t-70 -15.5q-46 0 -71.5 21.5t-30.5 55.5q-26 -37 -62.5 -57t-74.5 -20q-72 0 -114 48t-42 123q0 97 67.5 169t154.5 72q86 0 123 -61l10 48h136l-49 -230q-2 -10 -2 -26 q0 -41 32 -41q33 0 60 39.5t27 110.5q0 118 -74 188.5t-199 70.5q-141 0 -246 -104.5t-105 -244.5q0 -118 79.5 -197t200.5 -79q94 0 180 54l23 -32q-98 -63 -208 -63q-136 0 -226.5 90.5t-90.5 223.5zM302 268q0 -35 19.5 -55.5t53.5 -20.5q52 0 92 53l22 106 q-22 40 -70 40q-51 0 -84 -37t-33 -86z" />
+<glyph unicode="A" horiz-adv-x="697" d="M-65 0l398 667h216l105 -667h-187l-12 96h-263l-53 -96h-204zM272 246h170l-30 251z" />
+<glyph unicode="B" horiz-adv-x="680" d="M6 0l147 667h348q89 0 138 -48t49 -115q0 -65 -45.5 -116t-105.5 -56q45 -12 70 -50t25 -83q0 -36 -13 -70t-39.5 -63.5t-73.5 -47.5t-109 -18h-391zM210 145h172q36 0 57 19.5t21 48.5q0 23 -15 37.5t-40 14.5h-168zM269 411h165q37 0 53.5 18.5t16.5 44.5 q0 21 -14.5 34.5t-37.5 13.5h-158z" />
+<glyph unicode="C" horiz-adv-x="692" d="M36 291q0 171 114.5 279t279.5 108q125 0 202 -58.5t107 -146.5l-166 -54q-14 50 -54.5 78.5t-96.5 28.5q-87 0 -147 -65.5t-60 -158.5q0 -69 46.5 -115.5t122.5 -46.5q41 0 82 21.5t63 55.5l134 -88q-55 -75 -133 -108t-156 -33q-145 0 -241.5 83.5t-96.5 219.5z" />
+<glyph unicode="D" horiz-adv-x="727" d="M6 0l147 667h275q117 0 206.5 -81t89.5 -206q0 -54 -14 -105.5t-47 -102t-82 -88.5t-125.5 -61t-170.5 -23h-279zM211 150h106q104 0 166.5 63t62.5 155q0 63 -42 106t-107 43h-105z" />
+<glyph unicode="E" horiz-adv-x="589" d="M6 0l147 667h489l-34 -150h-316l-23 -104h310l-33 -150h-310l-25 -113h317l-33 -150h-489z" />
+<glyph unicode="F" horiz-adv-x="582" d="M6 0l147 667h489l-34 -150h-316l-23 -104h310l-33 -150h-310l-58 -263h-172z" />
+<glyph unicode="G" horiz-adv-x="723" d="M36 291q0 167 115.5 277t295.5 110q105 0 177.5 -51t103.5 -124l-158 -66q-13 37 -54.5 63t-93.5 26q-85 0 -146 -65t-61 -159q0 -68 45.5 -115t123.5 -47q60 0 112 40l11 53h-150l34 150h321l-59 -266q-49 -61 -121 -95t-158 -34q-143 0 -240.5 82.5t-97.5 220.5z" />
+<glyph unicode="H" horiz-adv-x="741" d="M6 0l147 667h172l-55 -249h277l55 249h172l-147 -667h-172l59 268h-277l-59 -268h-172z" />
+<glyph unicode="I" horiz-adv-x="292" d="M6 0l147 667h172l-147 -667h-172z" />
+<glyph unicode="J" horiz-adv-x="492" d="M-33 59l91 129q36 -48 97 -48q83 0 102 91l96 436h172l-97 -438q-27 -125 -89 -183t-171 -58q-133 0 -201 71z" />
+<glyph unicode="K" horiz-adv-x="654" d="M6 0l147 667h172l-57 -261l253 261h221l-327 -312l194 -355h-202l-124 257l-62 -62l-43 -195h-172z" />
+<glyph unicode="L" horiz-adv-x="529" d="M6 0l147 667h172l-114 -517h268l-33 -150h-440z" />
+<glyph unicode="M" horiz-adv-x="877" d="M6 0l147 667h233l58 -369l221 369h245l-147 -667h-172l97 441l-266 -441h-76l-71 441l-97 -441h-172z" />
+<glyph unicode="N" horiz-adv-x="740" d="M6 0l147 667h177l186 -379l84 379h173l-147 -667h-166l-194 398l-88 -398h-172z" />
+<glyph unicode="O" horiz-adv-x="766" d="M36 291q0 162 113 274.5t281 112.5q145 0 241.5 -83.5t96.5 -217.5q0 -163 -113 -276t-281 -113q-146 0 -242 84t-96 219zM215 302q0 -72 47 -117t122 -45q87 0 146 65.5t59 158.5q0 72 -47 117t-122 45q-87 0 -146 -65.5t-59 -158.5z" />
+<glyph unicode="P" horiz-adv-x="643" d="M6 0l147 667h323q86 0 141 -55.5t55 -135.5q0 -40 -14.5 -81t-45 -81t-89 -65t-136.5 -25h-160l-49 -224h-172zM260 374h136q42 0 70 23.5t28 59.5q0 28 -19 44t-50 16h-133z" />
+<glyph unicode="Q" horiz-adv-x="766" d="M36 291q0 162 113 274.5t281 112.5q145 0 241.5 -83.5t96.5 -217.5q0 -93 -39.5 -173.5t-109.5 -134.5l31 -51l-137 -63l-29 47q-54 -14 -110 -14q-146 0 -242 84t-96 219zM215 302q0 -72 47 -117t122 -45h17l-47 78l138 64l42 -72q55 65 55 154q0 72 -47 117t-122 45 q-87 0 -146 -65.5t-59 -158.5z" />
+<glyph unicode="R" horiz-adv-x="661" d="M6 0l147 667h304q89 0 152.5 -54t63.5 -141t-51 -151.5t-127 -84.5l80 -236h-190l-62 224h-96l-49 -224h-172zM260 374h137q44 0 70.5 21.5t26.5 58.5q0 27 -21 45t-50 18h-131z" />
+<glyph unicode="S" horiz-adv-x="606" d="M-10 115l105 124q35 -46 97 -74.5t130 -28.5q38 0 57.5 16t19.5 37q0 17 -24 31.5t-59.5 25.5t-77.5 28t-77.5 37.5t-59.5 56t-24 81.5q0 91 73.5 159.5t199.5 68.5q82 0 155.5 -28.5t123.5 -81.5l-105 -120q-37 40 -92.5 61.5t-108.5 21.5q-29 0 -47 -13.5t-18 -33.5 q0 -19 33.5 -35t80.5 -32t94.5 -37.5t81 -61.5t33.5 -94q0 -101 -74.5 -168t-198.5 -67q-101 0 -186 34.5t-132 92.5z" />
+<glyph unicode="T" horiz-adv-x="589" d="M81 517l34 150h545l-33 -150h-187l-113 -517h-172l113 517h-187z" />
+<glyph unicode="U" horiz-adv-x="750" d="M60 226q0 19 5 44l88 397h175l-87 -393q-3 -7 -3 -28q1 -45 34.5 -76.5t93.5 -31.5q126 0 156 136l87 393h174l-87 -396q-30 -133 -107.5 -208t-222.5 -75q-149 0 -227.5 64.5t-78.5 173.5z" />
+<glyph unicode="V" horiz-adv-x="697" d="M82 667h186l59 -481l270 481h204l-399 -667h-216z" />
+<glyph unicode="W" horiz-adv-x="936" d="M87 667h189l3 -445l212 445h131l16 -445l199 445h198l-338 -667h-182l-9 418l-193 -418h-182z" />
+<glyph unicode="X" horiz-adv-x="676" d="M-65 0l315 352l-153 315h194l92 -200l168 200h213l-295 -335l163 -332h-194l-103 214l-187 -214h-213z" />
+<glyph unicode="Y" horiz-adv-x="655" d="M82 667h185l91 -246l197 246h204l-340 -398l-59 -269h-172l59 269z" />
+<glyph unicode="Z" horiz-adv-x="596" d="M-15 0l30 137l359 380h-275l33 150h511l-30 -137l-360 -380h283l-33 -150h-518z" />
+<glyph unicode="[" horiz-adv-x="298" d="M-47 -190l194 868h230l-22 -99h-122l-148 -670h121l-22 -99h-231z" />
+<glyph unicode="\" horiz-adv-x="346" d="M98 687h109l80 -707h-109z" />
+<glyph unicode="]" horiz-adv-x="298" d="M-78 -190l21 99h122l149 670h-122l22 99h230l-193 -868h-229z" />
+<glyph unicode="^" horiz-adv-x="445" d="M38 333l223 334h111l73 -334h-104l-43 231l-144 -231h-116z" />
+<glyph unicode="_" horiz-adv-x="564" d="M-88 -139l23 99h569l-23 -99h-569z" />
+<glyph unicode="`" horiz-adv-x="263" d="M101 700h136l95 -144h-104z" />
+<glyph unicode="a" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-107 -483h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5z" />
+<glyph unicode="b" d="M2 0l147 667h154l-53 -240q60 68 138 68q83 0 132.5 -53t49.5 -148q0 -73 -27.5 -141t-87.5 -116.5t-140 -48.5q-98 0 -147 69l-12 -57h-154zM193 168q34 -44 96 -44q52 0 87 40.5t35 97.5q0 43 -27 70t-67 27q-50 0 -92 -45z" />
+<glyph unicode="c" horiz-adv-x="500" d="M21 210q0 120 82.5 202.5t203.5 82.5q146 0 205 -98l-115 -87q-30 49 -91 49q-56 0 -92.5 -40.5t-36.5 -99.5q0 -44 30 -69.5t75 -25.5q53 0 91 43l83 -101q-30 -32 -79 -55t-110 -23q-112 0 -179 61.5t-67 160.5z" />
+<glyph unicode="d" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l54 241h153l-148 -667h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5z" />
+<glyph unicode="e" horiz-adv-x="548" d="M21 207q0 119 80.5 203.5t202.5 84.5q95 0 158.5 -58t63.5 -160q0 -41 -10 -84h-342v-6q0 -24 31.5 -52t84.5 -28q72 0 113 30l47 -102q-69 -47 -172 -47q-117 0 -187 58t-70 161zM189 293h200q1 1 1 7q0 28 -23.5 52t-69.5 24q-41 0 -71 -26t-37 -57z" />
+<glyph unicode="f" horiz-adv-x="349" d="M32 350l30 133h79l6 26q17 75 66.5 121.5t131.5 46.5q89 0 138 -50l-73 -87q-20 20 -52 20q-46 0 -57 -54l-6 -23h99l-30 -133h-98l-77 -350h-154l77 350h-80z" />
+<glyph unicode="g" horiz-adv-x="590" d="M-30 -111l87 102q22 -29 64.5 -45t87.5 -16q100 0 126 113l8 35q-57 -70 -140 -70q-79 0 -131 48t-52 147q0 115 69 203.5t182 88.5q41 0 81.5 -18.5t66.5 -50.5l14 57h153l-98 -440q-15 -70 -45.5 -119.5t-70.5 -74t-78.5 -35t-81.5 -10.5q-157 0 -242 85zM179 233 q0 -39 27 -64t70 -25q51 0 91 45l27 121q-32 49 -102 49q-49 0 -81 -35t-32 -91z" />
+<glyph unicode="h" horiz-adv-x="594" d="M3 0l147 667h154l-55 -243q77 71 157 71q72 0 113.5 -34.5t41.5 -90.5q0 -15 -5 -40l-72 -330h-154l59 274q5 23 5 32q0 53 -73 53q-49 0 -96 -47l-68 -312h-154z" />
+<glyph unicode="i" horiz-adv-x="266" d="M2 0l107 483h154l-107 -483h-154zM125 602q0 46 31.5 73.5t68.5 27.5q34 0 56.5 -22t22.5 -53q0 -46 -31 -74t-68 -28q-35 0 -57.5 22.5t-22.5 53.5z" />
+<glyph unicode="j" horiz-adv-x="266" d="M-190 -156l62 110q21 -24 59 -24q54 0 71 74l107 479h154l-107 -479q-43 -200 -202 -200q-98 0 -144 40zM125 602q0 46 31.5 73.5t68.5 27.5q34 0 56.5 -22t22.5 -53q0 -46 -31 -74t-68 -28q-35 0 -57.5 22.5t-22.5 53.5z" />
+<glyph unicode="k" horiz-adv-x="546" d="M2 0l147 667h154l-82 -369l183 185h192l-227 -220l129 -263h-185l-70 174l-62 -58l-25 -116h-154z" />
+<glyph unicode="l" horiz-adv-x="266" d="M2 0l147 667h154l-147 -667h-154z" />
+<glyph unicode="m" horiz-adv-x="875" d="M2 0l107 483h154l-14 -59q68 71 145 71q35 0 63.5 -11.5t44 -27.5t24 -29.5t8.5 -21.5v-1q75 91 165 91q60 0 102 -33.5t42 -91.5q0 -5 -5 -40l-74 -330h-153l60 273q0 1 2.5 14t2.5 20q0 25 -18 38.5t-45 13.5q-45 0 -84 -47l-69 -312h-154l60 273q6 30 6 36 q0 23 -16.5 36.5t-46.5 13.5q-43 0 -84 -47l-69 -312h-154z" />
+<glyph unicode="n" horiz-adv-x="593" d="M2 0l107 483h154l-14 -59q77 71 157 71q72 0 113.5 -34.5t41.5 -90.5q0 -15 -5 -40l-73 -330h-154l60 271q5 23 5 35q0 27 -19 40t-47 13q-56 0 -103 -47l-69 -312h-154z" />
+<glyph unicode="o" horiz-adv-x="576" d="M20 210q0 115 81 200t203 85q118 0 183.5 -62.5t65.5 -160.5q0 -115 -81 -199.5t-203 -84.5q-118 0 -183.5 62.5t-65.5 159.5zM178 218q0 -44 26 -69t71 -25q52 0 86.5 42t34.5 99q0 44 -26 69t-71 25q-53 0 -87 -42t-34 -99z" />
+<glyph unicode="p" horiz-adv-x="589" d="M-39 -184l148 667h154l-13 -56q60 68 138 68q83 0 132.5 -53t49.5 -148q0 -73 -27.5 -141t-87.5 -116.5t-140 -48.5q-98 0 -147 69l-53 -241h-154zM193 168q34 -44 96 -44q52 0 87 40.5t35 97.5q0 43 -27 70t-67 27q-50 0 -92 -45z" />
+<glyph unicode="q" horiz-adv-x="589" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-148 -667h-153l53 240q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5z" />
+<glyph unicode="r" horiz-adv-x="375" d="M2 0l107 483h154l-13 -58q66 71 167 71l-34 -151q-28 7 -50 7q-64 0 -110 -48l-67 -304h-154z" />
+<glyph unicode="s" horiz-adv-x="484" d="M-14 76l81 99q26 -27 75.5 -51t96.5 -24q23 0 37 10t14 25q0 20 -37.5 35t-82.5 26.5t-82.5 44.5t-37.5 84q0 70 55.5 120t151.5 50q61 0 118 -20.5t97 -57.5l-74 -95q-21 23 -61 41.5t-80 18.5q-25 0 -39.5 -10t-14.5 -24t25 -24.5t60.5 -20.5t70.5 -25t60 -44.5 t25 -71.5q0 -75 -59.5 -124.5t-159.5 -49.5q-68 0 -131.5 23t-107.5 65z" />
+<glyph unicode="t" horiz-adv-x="360" d="M31 350l30 133h80l29 132h154l-29 -132h98l-30 -133h-98l-36 -164q-3 -12 -3 -22q0 -40 46 -40q20 0 30 8l2 -123q-27 -21 -83 -21q-73 0 -116.5 28.5t-43.5 85.5q0 15 3 35l47 213h-80z" />
+<glyph unicode="u" horiz-adv-x="592" d="M30 113q0 15 5 40l74 330h153l-61 -279q-4 -18 -4 -26q0 -54 71 -54q49 0 99 48l68 311h154l-107 -483h-154l14 59q-77 -71 -157 -71q-72 0 -113.5 34.5t-41.5 90.5z" />
+<glyph unicode="v" horiz-adv-x="524" d="M43 483h158l40 -306l179 306h167l-297 -483h-164z" />
+<glyph unicode="w" horiz-adv-x="787" d="M47 483h154l11 -296l162 296h137l29 -296l143 296h163l-250 -483h-166l-25 299l-156 -299h-166z" />
+<glyph unicode="x" horiz-adv-x="512" d="M-60 0l219 248l-102 235h165l53 -131l111 131h174l-207 -235l111 -248h-164l-61 146l-126 -146h-173z" />
+<glyph unicode="y" horiz-adv-x="524" d="M-48 -184l49 132q17 -7 50 -7q37 0 55 26l19 31l-82 485h158l40 -306l179 306h167l-341 -552q-43 -70 -90 -98.5t-115 -28.5q-51 0 -89 12z" />
+<glyph unicode="z" horiz-adv-x="483" d="M-16 0l24 113l242 236h-189l30 134h403l-25 -109l-246 -241h197l-29 -133h-407z" />
+<glyph unicode="{" horiz-adv-x="302" d="M-8 -51q0 17 4 32l35 156q2 12 2 18q0 21 -11 34.5t-29 13.5l19 82q52 0 66 66l35 155q38 172 208 172h60l-22 -99h-60q-61 0 -78 -73l-41 -183q-16 -76 -65 -90q29 -17 29 -57q0 -18 -4 -34l-36 -160q-2 -12 -2 -18q0 -24 15.5 -39.5t39.5 -15.5h54l-23 -99h-44 q-63 0 -107.5 39.5t-44.5 99.5z" />
+<glyph unicode="|" horiz-adv-x="219" d="M80 -20v707h99v-707h-99z" />
+<glyph unicode="}" horiz-adv-x="302" d="M-80 -190l22 99h60q61 0 78 72l41 184q16 76 65 90q-29 17 -29 57q0 18 4 34l36 160q2 12 2 17q0 25 -15.5 40.5t-39.5 15.5h-54l23 99h44q63 0 107.5 -39.5t44.5 -99.5q0 -18 -4 -33l-35 -155q-2 -12 -2 -18q0 -22 10.5 -35t29.5 -13l-19 -82q-52 0 -66 -66l-34 -155 q-39 -172 -209 -172h-60z" />
+<glyph unicode="~" horiz-adv-x="514" d="M63 418q51 249 195 249q41 0 65 -17.5t31 -42.5t9.5 -50t8 -42.5t19.5 -17.5q26 0 52.5 53.5t37.5 116.5l98 -12q-54 -248 -194 -248q-35 0 -57.5 12.5t-31 31.5t-13.5 40.5t-6 40.5t-7 31.5t-18 12.5q-25 0 -51 -52.5t-38 -117.5z" />
+<glyph unicode="&#xa1;" horiz-adv-x="270" d="M-53 -184l119 434h138l-73 -434h-184zM73 393q0 42 30.5 72t72.5 30q36 0 61 -25.5t25 -61.5q0 -41 -31 -71t-72 -30q-36 0 -61 25.5t-25 60.5z" />
+<glyph unicode="&#xa2;" horiz-adv-x="500" d="M21 210q0 115 77 196.5t192 87.5l16 71h109l-18 -83q76 -23 115 -85l-115 -87q-30 49 -91 49q-56 0 -92.5 -40.5t-36.5 -99.5q0 -44 30 -69.5t75 -25.5q53 0 91 43l83 -101q-66 -70 -170 -77l-19 -89h-109l22 100q-75 21 -117 77t-42 133z" />
+<glyph unicode="&#xa3;" horiz-adv-x="565" d="M15 108q56 25 90.5 66.5t34.5 88.5v6h-111l22 96h61q-23 54 -23 95q0 91 80 154t192 63q94 0 161 -36.5t89 -104.5l-155 -63q-6 31 -29.5 48t-57.5 17q-40 0 -66.5 -28t-26.5 -71q0 -20 18 -74h139l-22 -96h-112q-10 -36 -34 -65.5t-48 -41.5q25 7 43 7q28 0 69 -14.5 t67 -14.5q43 0 76 35l36 -136q-44 -51 -127 -51q-47 0 -124 21.5t-100 21.5q-50 0 -110 -38z" />
+<glyph unicode="&#xa4;" horiz-adv-x="635" d="M0 137l88 72q-20 43 -20 95q0 102 68 181l-55 72l101 81l60 -79q53 22 112 22q83 0 145 -36l94 76l78 -95l-88 -72q21 -47 21 -94q0 -102 -69 -181l55 -68l-101 -81l-60 75q-52 -20 -110 -20q-81 0 -142 33l-98 -79zM224 314q0 -41 27.5 -67.5t75.5 -26.5q52 0 87 37.5 t35 90.5q0 42 -27 69.5t-78 27.5q-53 0 -86.5 -38.5t-33.5 -92.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="655" d="M-6 111l20 92h219l15 66h-219l21 92h160l-127 306h185l91 -246l197 246h204l-262 -306h160l-21 -92h-217l-15 -66h217l-20 -92h-217l-24 -111h-172l24 111h-219z" />
+<glyph unicode="&#xa6;" horiz-adv-x="219" d="M80 -20v316h99v-316h-99zM80 371v316h99v-316h-99z" />
+<glyph unicode="&#xa7;" horiz-adv-x="492" d="M-37 4l82 91q29 -32 75 -51.5t93 -19.5q27 0 44 13t17 30q0 19 -24.5 33t-59 25t-69 26t-59 44t-24.5 71q0 104 118 144q-64 32 -64 104q0 73 59 118t149 45q145 0 221 -73l-77 -84q-22 23 -60 37t-78 14q-31 0 -46.5 -11.5t-15.5 -29.5t24.5 -30.5t59.5 -23t70 -25 t59.5 -43.5t24.5 -70q0 -49 -31.5 -90t-80.5 -59q57 -34 57 -98q0 -75 -60.5 -123.5t-153.5 -48.5q-160 0 -250 85zM192 296q0 -39 70 -60q30 8 45.5 26.5t15.5 40.5q0 42 -57 58q-74 -12 -74 -65z" />
+<glyph unicode="&#xa8;" horiz-adv-x="306" d="M49 606q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM263 606q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xa9;" horiz-adv-x="778" d="M64 334q0 143 100.5 244t243.5 101t244.5 -101t101.5 -244t-101.5 -244t-244.5 -101q-142 0 -243 101t-101 244zM103 334q0 -126 89.5 -216t215.5 -90t216.5 90t90.5 216t-90.5 216t-216.5 90t-215.5 -90t-89.5 -216zM203 307q0 100 69.5 168.5t162.5 68.5q110 0 161 -81 l-42 -29q-37 67 -122 67q-68 0 -123.5 -56t-55.5 -136q0 -59 38.5 -100.5t103.5 -41.5q61 0 112 49l28 -37q-64 -55 -141 -55q-86 0 -138.5 51.5t-52.5 131.5z" />
+<glyph unicode="&#xaa;" horiz-adv-x="415" d="M73 450q0 84 49 141t118 57q68 0 100 -43l8 35h109l-69 -314h-110l7 35q-37 -43 -89 -43t-87.5 35t-35.5 97zM186 464q0 -29 16.5 -44t42.5 -15q33 0 56 25l25 111q-19 21 -56 21q-35 0 -59.5 -29t-24.5 -69z" />
+<glyph unicode="&#xab;" horiz-adv-x="571" d="M29 243l200 177h143l-204 -182l116 -175h-135zM241 243l200 177h143l-204 -182l116 -175h-135z" />
+<glyph unicode="&#xac;" horiz-adv-x="521" d="M59 381l20 92h449l-61 -278h-94l40 186h-354z" />
+<glyph unicode="&#xad;" horiz-adv-x="300" d="M15 178l29 129h240l-29 -129h-240z" />
+<glyph unicode="&#xae;" horiz-adv-x="494" d="M84 465q0 88 62 150t150 62t150 -61.5t62 -150.5q0 -88 -62.5 -150t-150.5 -62t-149.5 62t-61.5 150zM117 465q0 -74 52 -126.5t126 -52.5t126.5 52.5t52.5 126.5q0 75 -52 126.5t-127 51.5q-74 0 -126 -51.5t-52 -126.5zM187 343l53 243h94q32 0 52 -18.5t20 -45.5 q0 -34 -24.5 -58t-55.5 -24l44 -97h-42l-42 96h-42l-21 -96h-36zM251 470h63q25 0 39.5 14.5t14.5 35.5q0 36 -42 36h-56z" />
+<glyph unicode="&#xaf;" horiz-adv-x="363" d="M69 556l19 85h362l-19 -85h-362z" />
+<glyph unicode="&#xb0;" horiz-adv-x="321" d="M83 535q0 59 41.5 100.5t99.5 41.5q59 0 101 -41.5t42 -100.5t-42 -100.5t-101 -41.5t-100 41.5t-41 100.5zM163 535q0 -26 17.5 -44t42.5 -18q26 0 45 18.5t19 43.5t-18.5 44t-44.5 19q-25 0 -43 -18.5t-18 -44.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="507" d="M-25 0l20 92h449l-20 -92h-449zM47 327l20 92h174l43 190h101l-43 -190h174l-20 -92h-174l-44 -198h-101l44 198h-174z" />
+<glyph unicode="&#xb2;" horiz-adv-x="402" d="M83 421l19 86q158 91 203.5 125.5t45.5 63.5q0 19 -16 30t-43 11q-67 0 -112 -43l-46 76q30 27 75 42t88 15q76 0 124 -33t48 -87q0 -49 -47 -94t-153 -102h160l-20 -90h-326z" />
+<glyph unicode="&#xb3;" horiz-adv-x="402" d="M87 488l69 70q40 -54 113 -54q28 0 42 12t14 29q0 34 -84 34q-29 0 -35 -1l19 89q10 -1 67 -1q62 0 62 36q0 17 -21 26t-52 9q-59 0 -102 -34l-36 71q61 53 150 53q82 0 129.5 -29t47.5 -80q0 -38 -28.5 -66.5t-81.5 -32.5q35 -9 56.5 -31t21.5 -56q0 -47 -44.5 -82.5 t-118.5 -35.5q-63 0 -114 20t-74 54z" />
+<glyph unicode="&#xb4;" horiz-adv-x="263" d="M67 556l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xb5;" horiz-adv-x="606" d="M-40 -184l151 667h154l-63 -280q-9 -38 8 -58.5t53 -20.5q56 0 103 47l69 312h153l-70 -321q-4 -18 4 -28t24 -10q12 0 20 3l-19 -130q-29 -9 -71 -9q-113 0 -123 87q-63 -87 -146 -87q-37 0 -51 17l-43 -189h-153z" />
+<glyph unicode="&#xb6;" horiz-adv-x="449" d="M79 479q0 73 56.5 130.5t137.5 57.5h235l-170 -767h-71l154 696h-73l-155 -696h-71l94 423q-57 0 -97 44.5t-40 111.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="270" d="M40 238q0 41 31 71.5t72 30.5q36 0 60.5 -25.5t24.5 -61.5q0 -42 -30.5 -72t-71.5 -30q-36 0 -61 25.5t-25 61.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="229" d="M-89 -155l39 54q39 -36 85 -36q44 0 44 30q0 20 -26 20q-16 0 -27 -13l-46 30l49 81h71l-39 -60q16 10 30 10q26 0 43 -17.5t17 -46.5q0 -43 -33.5 -69t-82.5 -26q-81 0 -124 43z" />
+<glyph unicode="&#xb9;" horiz-adv-x="311" d="M98 675l182 146h98l-88 -400h-114l55 251l-82 -66z" />
+<glyph unicode="&#xba;" horiz-adv-x="405" d="M73 465q0 78 58 130.5t136 52.5q77 0 122.5 -41.5t45.5 -106.5q0 -78 -58 -130t-136 -52q-77 0 -122.5 41.5t-45.5 105.5zM186 462q0 -27 15.5 -42t42.5 -15q38 0 58 29.5t20 67.5q0 27 -15.5 42t-42.5 15q-38 0 -58 -29.5t-20 -67.5z" />
+<glyph unicode="&#xbb;" horiz-adv-x="571" d="M-11 63l204 182l-116 175h135l120 -180l-200 -177h-143zM201 63l204 182l-116 175h135l120 -180l-200 -177h-143z" />
+<glyph unicode="&#xbc;" horiz-adv-x="865" d="M64 521l182 146h98l-88 -400h-114l55 251l-82 -66zM99 0l573 667h88l-575 -667h-86zM450 78l17 77l204 245h160l-52 -233h50l-20 -89h-50l-16 -78h-113l16 78h-196zM582 167h84l30 134z" />
+<glyph unicode="&#xbd;" horiz-adv-x="897" d="M64 521l182 146h98l-88 -400h-114l55 251l-82 -66zM99 0l573 667h88l-575 -667h-86zM484 0l19 86q158 91 203.5 125.5t45.5 63.5q0 19 -16 30t-43 11q-67 0 -112 -43l-46 76q30 27 75 42t88 15q76 0 124 -33t48 -87q0 -49 -47 -94t-153 -102h160l-20 -90h-326z" />
+<glyph unicode="&#xbe;" horiz-adv-x="942" d="M53 334l69 70q40 -54 113 -54q28 0 42 12t14 29q0 34 -84 34q-29 0 -35 -1l19 89q10 -1 67 -1q62 0 62 36q0 17 -21 26t-52 9q-59 0 -102 -34l-36 71q61 53 150 53q82 0 129.5 -29t47.5 -80q0 -38 -28.5 -66.5t-81.5 -32.5q35 -9 56.5 -31t21.5 -56q0 -47 -44.5 -82.5 t-118.5 -35.5q-63 0 -114 20t-74 54zM176 0l573 667h88l-575 -667h-86zM527 78l17 77l204 245h160l-52 -233h50l-20 -89h-50l-16 -78h-113l16 78h-196zM659 167h84l30 134z" />
+<glyph unicode="&#xbf;" horiz-adv-x="399" d="M-48 -47q0 42 15.5 74t38.5 50t50 35t50 29t38.5 30t15.5 41q0 13 -8 22l141 34q13 -27 13 -70q0 -41 -17.5 -71.5t-43 -48t-51 -30.5t-43 -26.5t-17.5 -29.5q0 -37 62 -37q57 0 105 40l72 -119q-89 -71 -204 -71q-91 0 -154 39.5t-63 108.5zM167 393q0 41 30.5 71 t71.5 30q36 0 61 -25.5t25 -60.5q0 -42 -30.5 -72t-72.5 -30q-36 0 -60.5 25.5t-24.5 61.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="697" d="M-65 0l398 667h216l105 -667h-187l-12 96h-263l-53 -96h-204zM272 246h170l-30 251zM290 867h136l95 -144h-104z" />
+<glyph unicode="&#xc1;" horiz-adv-x="697" d="M-65 0l398 667h216l105 -667h-187l-12 96h-263l-53 -96h-204zM272 246h170l-30 251zM386 723l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xc2;" horiz-adv-x="697" d="M-65 0l398 667h216l105 -667h-187l-12 96h-263l-53 -96h-204zM272 246h170l-30 251zM296 723l122 144h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xc3;" horiz-adv-x="697" d="M-65 0l398 667h216l105 -667h-187l-12 96h-263l-53 -96h-204zM272 246h170l-30 251zM288 727q13 69 41.5 101.5t82.5 32.5q23 0 42 -8.5t29.5 -19t24 -19t26.5 -8.5q25 0 37 49h79q-15 -69 -43.5 -101.5t-81.5 -32.5q-38 0 -71 27.5t-51 27.5q-26 0 -36 -49h-79z" />
+<glyph unicode="&#xc4;" horiz-adv-x="697" d="M-65 0l398 667h216l105 -667h-187l-12 96h-263l-53 -96h-204zM272 246h170l-30 251zM281 773q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM495 773q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5 q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xc5;" horiz-adv-x="697" d="M-65 0l398 667h216l105 -667h-187l-12 96h-263l-53 -96h-204zM272 246h170l-30 251zM360 786q0 48 35.5 83t83.5 35q44 0 71.5 -27.5t27.5 -71.5q0 -48 -35.5 -83t-83.5 -35q-44 0 -71.5 27.5t-27.5 71.5zM429 793q0 -17 10.5 -27t26.5 -10q17 0 30 12.5t13 30.5 q0 17 -10.5 27t-26.5 10q-17 0 -30 -13t-13 -30z" />
+<glyph unicode="&#xc6;" horiz-adv-x="979" d="M-71 0l547 667h560l-34 -150h-316l-23 -104h310l-34 -150h-309l-25 -113h317l-33 -150h-489l21 96h-217l-74 -96h-201zM318 246h136l53 243z" />
+<glyph unicode="&#xc7;" horiz-adv-x="692" d="M36 291q0 171 114.5 279t279.5 108q125 0 202 -58.5t107 -146.5l-166 -54q-14 50 -54.5 78.5t-96.5 28.5q-87 0 -147 -65.5t-60 -158.5q0 -69 46.5 -115.5t122.5 -46.5q41 0 82 21.5t63 55.5l134 -88q-55 -75 -133 -108t-156 -33q-15 0 -22 1l-24 -38q16 10 30 10 q26 0 43 -17.5t17 -46.5q0 -43 -33.5 -69t-82.5 -26q-81 0 -124 43l39 54q39 -36 85 -36q44 0 44 30q0 20 -26 20q-16 0 -27 -13l-46 30l40 67q-112 23 -181.5 101t-69.5 193z" />
+<glyph unicode="&#xc8;" horiz-adv-x="589" d="M6 0l147 667h489l-34 -150h-316l-23 -104h310l-33 -150h-310l-25 -113h317l-33 -150h-489zM245 867h136l95 -144h-104z" />
+<glyph unicode="&#xc9;" horiz-adv-x="589" d="M6 0l147 667h489l-34 -150h-316l-23 -104h310l-33 -150h-310l-25 -113h317l-33 -150h-489zM341 723l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xca;" horiz-adv-x="589" d="M6 0l147 667h489l-34 -150h-316l-23 -104h310l-33 -150h-310l-25 -113h317l-33 -150h-489zM250 723l122 144h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xcb;" horiz-adv-x="589" d="M6 0l147 667h489l-34 -150h-316l-23 -104h310l-33 -150h-310l-25 -113h317l-33 -150h-489zM237 773q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM451 773q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5 t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xcc;" horiz-adv-x="292" d="M6 0l147 667h172l-147 -667h-172zM87 867h136l95 -144h-104z" />
+<glyph unicode="&#xcd;" horiz-adv-x="292" d="M6 0l147 667h172l-147 -667h-172zM182 723l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xce;" horiz-adv-x="292" d="M6 0l147 667h172l-147 -667h-172zM92 723l122 144h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xcf;" horiz-adv-x="292" d="M6 0l147 667h172l-147 -667h-172zM78 773q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM292 773q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xd0;" horiz-adv-x="750" d="M12 265l30 137h75l59 265h275q117 0 206.5 -81t89.5 -206q0 -54 -14 -105.5t-47 -102t-82 -88.5t-125.5 -61t-170.5 -23h-279l58 265h-75zM234 150h109q103 1 164.5 64t61.5 154q0 63 -42 106t-107 43h-105l-26 -115h139l-30 -137h-139z" />
+<glyph unicode="&#xd1;" horiz-adv-x="740" d="M6 0l147 667h177l186 -379l84 379h173l-147 -667h-166l-194 398l-88 -398h-172zM309 727q13 69 41.5 101.5t82.5 32.5q23 0 42 -8.5t29.5 -19t24 -19t26.5 -8.5q25 0 37 49h79q-15 -69 -43.5 -101.5t-81.5 -32.5q-38 0 -71 27.5t-51 27.5q-26 0 -36 -49h-79z" />
+<glyph unicode="&#xd2;" horiz-adv-x="766" d="M36 291q0 162 113 274.5t281 112.5q145 0 241.5 -83.5t96.5 -217.5q0 -163 -113 -276t-281 -113q-146 0 -242 84t-96 219zM215 302q0 -72 47 -117t122 -45q87 0 146 65.5t59 158.5q0 72 -47 117t-122 45q-87 0 -146 -65.5t-59 -158.5zM325 867h136l95 -144h-104z" />
+<glyph unicode="&#xd3;" horiz-adv-x="766" d="M36 291q0 162 113 274.5t281 112.5q145 0 241.5 -83.5t96.5 -217.5q0 -163 -113 -276t-281 -113q-146 0 -242 84t-96 219zM215 302q0 -72 47 -117t122 -45q87 0 146 65.5t59 158.5q0 72 -47 117t-122 45q-87 0 -146 -65.5t-59 -158.5zM419 723l159 144h138l-191 -144 h-106z" />
+<glyph unicode="&#xd4;" horiz-adv-x="766" d="M36 291q0 162 113 274.5t281 112.5q145 0 241.5 -83.5t96.5 -217.5q0 -163 -113 -276t-281 -113q-146 0 -242 84t-96 219zM215 302q0 -72 47 -117t122 -45q87 0 146 65.5t59 158.5q0 72 -47 117t-122 45q-87 0 -146 -65.5t-59 -158.5zM330 723l122 144h135l61 -144h-90 l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xd5;" horiz-adv-x="766" d="M36 291q0 162 113 274.5t281 112.5q145 0 241.5 -83.5t96.5 -217.5q0 -163 -113 -276t-281 -113q-146 0 -242 84t-96 219zM215 302q0 -72 47 -117t122 -45q87 0 146 65.5t59 158.5q0 72 -47 117t-122 45q-87 0 -146 -65.5t-59 -158.5zM323 727q13 69 41.5 101.5 t82.5 32.5q23 0 42 -8.5t29.5 -19t24 -19t26.5 -8.5q25 0 37 49h79q-15 -69 -43.5 -101.5t-81.5 -32.5q-38 0 -71 27.5t-51 27.5q-26 0 -36 -49h-79z" />
+<glyph unicode="&#xd6;" horiz-adv-x="766" d="M36 291q0 162 113 274.5t281 112.5q145 0 241.5 -83.5t96.5 -217.5q0 -163 -113 -276t-281 -113q-146 0 -242 84t-96 219zM215 302q0 -72 47 -117t122 -45q87 0 146 65.5t59 158.5q0 72 -47 117t-122 45q-87 0 -146 -65.5t-59 -158.5zM315 773q0 34 27 60.5t62 26.5 q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM529 773q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xd7;" horiz-adv-x="507" d="M37 199l173 141l-105 134l73 60l103 -134l171 139l57 -70l-171 -141l104 -134l-73 -60l-104 134l-171 -139z" />
+<glyph unicode="&#xd8;" horiz-adv-x="766" d="M-10 0l109 106q-63 77 -63 185q0 162 113 274.5t281 112.5q115 0 201 -54l44 43h120l-99 -97q72 -80 72 -193q0 -163 -113 -276t-281 -113q-124 0 -213 61l-51 -49h-120zM215 302q0 -38 14 -69l279 272q-40 21 -88 21q-87 0 -146 -65.5t-59 -158.5zM283 168 q42 -28 101 -28q87 0 146 65.5t59 158.5q0 45 -21 82z" />
+<glyph unicode="&#xd9;" horiz-adv-x="750" d="M60 226q0 19 5 44l88 397h175l-87 -393q-3 -7 -3 -28q1 -45 34.5 -76.5t93.5 -31.5q126 0 156 136l87 393h174l-87 -396q-30 -133 -107.5 -208t-222.5 -75q-149 0 -227.5 64.5t-78.5 173.5zM316 867h136l95 -144h-104z" />
+<glyph unicode="&#xda;" horiz-adv-x="750" d="M60 226q0 19 5 44l88 397h175l-87 -393q-3 -7 -3 -28q1 -45 34.5 -76.5t93.5 -31.5q126 0 156 136l87 393h174l-87 -396q-30 -133 -107.5 -208t-222.5 -75q-149 0 -227.5 64.5t-78.5 173.5zM410 723l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xdb;" horiz-adv-x="750" d="M60 226q0 19 5 44l88 397h175l-87 -393q-3 -7 -3 -28q1 -45 34.5 -76.5t93.5 -31.5q126 0 156 136l87 393h174l-87 -396q-30 -133 -107.5 -208t-222.5 -75q-149 0 -227.5 64.5t-78.5 173.5zM320 723l122 144h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xdc;" horiz-adv-x="750" d="M60 226q0 19 5 44l88 397h175l-87 -393q-3 -7 -3 -28q1 -45 34.5 -76.5t93.5 -31.5q126 0 156 136l87 393h174l-87 -396q-30 -133 -107.5 -208t-222.5 -75q-149 0 -227.5 64.5t-78.5 173.5zM307 773q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5 q-30 0 -50 20t-20 50zM521 773q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xdd;" horiz-adv-x="655" d="M82 667h185l91 -246l197 246h204l-340 -398l-59 -269h-172l59 269zM364 723l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xde;" horiz-adv-x="643" d="M6 0l147 667h172l-22 -102h156q82 0 136.5 -56.5t54.5 -134.5q0 -44 -16 -87t-48 -81t-89 -61t-131 -23h-161l-27 -122h-172zM238 273h136q44 0 70.5 24t26.5 58q0 28 -19 44t-50 16h-133z" />
+<glyph unicode="&#xdf;" horiz-adv-x="665" d="M3 0l102 463q21 95 87 154.5t181 59.5q88 0 153 -41.5t65 -107.5q0 -37 -17 -66t-41 -46t-48 -30.5t-41 -26.5t-17 -27q0 -11 21.5 -19.5t52 -18t61 -23t52 -42t21.5 -68.5q0 -71 -60.5 -122t-150.5 -51q-138 0 -220 86l81 95q58 -65 142 -65q23 0 39 11t16 26 q0 17 -32.5 30.5t-71 23t-71 38.5t-32.5 75q0 47 23.5 81.5t52.5 50t52.5 32.5t23.5 34q0 19 -20 32t-49 13q-80 0 -99 -88l-102 -463h-154z" />
+<glyph unicode="&#xe0;" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-107 -483h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5zM196 700h136l95 -144h-104z " />
+<glyph unicode="&#xe1;" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-107 -483h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5zM290 556l159 144h138 l-191 -144h-106z" />
+<glyph unicode="&#xe2;" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-107 -483h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5zM200 556l122 144h135 l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xe3;" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-107 -483h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5zM194 560q13 69 41.5 101.5 t82.5 32.5q30 0 51.5 -14t38 -27.5t32.5 -13.5q25 0 37 49h79q-15 -69 -43.5 -101.5t-81.5 -32.5q-38 0 -71 27.5t-51 27.5q-26 0 -36 -49h-79z" />
+<glyph unicode="&#xe4;" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-107 -483h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5zM185 606q0 34 27 60.5 t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM399 606q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xe5;" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-107 -483h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5zM267 619q0 48 35.5 83 t83.5 35q44 0 71.5 -27.5t27.5 -71.5q0 -48 -35.5 -83t-83.5 -35q-44 0 -71.5 27.5t-27.5 71.5zM336 626q0 -16 10 -26.5t27 -10.5t30 12.5t13 30.5q0 16 -10 26.5t-27 10.5t-30 -13t-13 -30z" />
+<glyph unicode="&#xe6;" horiz-adv-x="902" d="M20 188q0 73 27.5 141.5t87 117t139.5 48.5q99 0 147 -69l13 57h153l-10 -47q59 59 133 59q171 0 171 -206q0 -49 -11 -96h-341v-6q0 -23 33.5 -50t89.5 -27q65 0 106 30l47 -105q-73 -47 -150 -47q-117 0 -160 78l-15 -66h-153l12 56q-59 -68 -138 -68q-83 0 -132 52.5 t-49 147.5zM179 220q0 -43 27 -69.5t67 -26.5q53 0 91 45l33 146q-34 44 -96 44q-53 0 -87.5 -40.5t-34.5 -98.5zM545 293h199v6q0 29 -23 53t-68 24q-41 0 -70.5 -26t-37.5 -57z" />
+<glyph unicode="&#xe7;" horiz-adv-x="500" d="M21 210q0 120 82.5 202.5t203.5 82.5q146 0 205 -98l-115 -87q-30 49 -91 49q-56 0 -92.5 -40.5t-36.5 -99.5q0 -44 30 -69.5t75 -25.5q53 0 91 43l83 -101q-30 -32 -79 -55t-110 -23h-4l-24 -37q16 10 30 10q26 0 43 -17.5t17 -46.5q0 -43 -33.5 -69t-82.5 -26 q-81 0 -124 43l39 54q39 -36 85 -36q44 0 44 30q0 20 -26 20q-16 0 -27 -13l-46 30l39 65q-82 18 -129 75.5t-47 139.5z" />
+<glyph unicode="&#xe8;" horiz-adv-x="548" d="M21 207q0 119 80.5 203.5t202.5 84.5q95 0 158.5 -58t63.5 -160q0 -41 -10 -84h-342v-6q0 -24 31.5 -52t84.5 -28q72 0 113 30l47 -102q-69 -47 -172 -47q-117 0 -187 58t-70 161zM189 293h200q1 1 1 7q0 28 -23.5 52t-69.5 24q-41 0 -71 -26t-37 -57zM194 700h136 l95 -144h-104z" />
+<glyph unicode="&#xe9;" horiz-adv-x="548" d="M21 207q0 119 80.5 203.5t202.5 84.5q95 0 158.5 -58t63.5 -160q0 -41 -10 -84h-342v-6q0 -24 31.5 -52t84.5 -28q72 0 113 30l47 -102q-69 -47 -172 -47q-117 0 -187 58t-70 161zM189 293h200q1 1 1 7q0 28 -23.5 52t-69.5 24q-41 0 -71 -26t-37 -57zM288 556l159 144 h138l-191 -144h-106z" />
+<glyph unicode="&#xea;" horiz-adv-x="548" d="M21 207q0 119 80.5 203.5t202.5 84.5q95 0 158.5 -58t63.5 -160q0 -41 -10 -84h-342v-6q0 -24 31.5 -52t84.5 -28q72 0 113 30l47 -102q-69 -47 -172 -47q-117 0 -187 58t-70 161zM189 293h200q1 1 1 7q0 28 -23.5 52t-69.5 24q-41 0 -71 -26t-37 -57zM198 556l122 144 h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xeb;" horiz-adv-x="548" d="M21 207q0 119 80.5 203.5t202.5 84.5q95 0 158.5 -58t63.5 -160q0 -41 -10 -84h-342v-6q0 -24 31.5 -52t84.5 -28q72 0 113 30l47 -102q-69 -47 -172 -47q-117 0 -187 58t-70 161zM184 606q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5 q-30 0 -50 20t-20 50zM189 293h200q1 1 1 7q0 28 -23.5 52t-69.5 24q-41 0 -71 -26t-37 -57zM398 606q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xec;" horiz-adv-x="266" d="M2 0l107 483h154l-107 -483h-154zM39 700h136l95 -144h-104z" />
+<glyph unicode="&#xed;" horiz-adv-x="266" d="M2 0l107 483h154l-107 -483h-154zM132 556l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xee;" horiz-adv-x="266" d="M2 0l107 483h154l-107 -483h-154zM43 556l122 144h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xef;" horiz-adv-x="266" d="M2 0l107 483h154l-107 -483h-154zM29 606q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM243 606q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xf0;" horiz-adv-x="576" d="M17 200q0 105 69 177.5t171 72.5q119 0 163 -109q-12 77 -117 178l-162 -48l-16 69l117 34q-5 5 -47 38l107 111q64 -49 111 -99l107 32l17 -67l-74 -22q98 -124 98 -260q0 -134 -78.5 -226.5t-210.5 -92.5q-115 0 -185 57.5t-70 154.5zM175 206q0 -39 26 -60.5t74 -21.5 q50 0 82 31t32 79q0 35 -27.5 58t-75.5 23q-49 0 -80 -31.5t-31 -77.5z" />
+<glyph unicode="&#xf1;" horiz-adv-x="593" d="M2 0l107 483h154l-14 -59q77 71 157 71q72 0 113.5 -34.5t41.5 -90.5q0 -15 -5 -40l-73 -330h-154l60 271q5 23 5 35q0 27 -19 40t-47 13q-56 0 -103 -47l-69 -312h-154zM199 560q13 69 41.5 101.5t82.5 32.5q30 0 51.5 -14t38 -27.5t32.5 -13.5q25 0 37 49h79 q-15 -69 -43.5 -101.5t-81.5 -32.5q-38 0 -71 27.5t-51 27.5q-26 0 -36 -49h-79z" />
+<glyph unicode="&#xf2;" horiz-adv-x="576" d="M20 210q0 115 81 200t203 85q118 0 183.5 -62.5t65.5 -160.5q0 -115 -81 -199.5t-203 -84.5q-118 0 -183.5 62.5t-65.5 159.5zM178 218q0 -44 26 -69t71 -25q52 0 86.5 42t34.5 99q0 44 -26 69t-71 25q-53 0 -87 -42t-34 -99zM195 700h136l95 -144h-104z" />
+<glyph unicode="&#xf3;" horiz-adv-x="576" d="M20 210q0 115 81 200t203 85q118 0 183.5 -62.5t65.5 -160.5q0 -115 -81 -199.5t-203 -84.5q-118 0 -183.5 62.5t-65.5 159.5zM178 218q0 -44 26 -69t71 -25q52 0 86.5 42t34.5 99q0 44 -26 69t-71 25q-53 0 -87 -42t-34 -99zM287 556l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xf4;" horiz-adv-x="576" d="M20 210q0 115 81 200t203 85q118 0 183.5 -62.5t65.5 -160.5q0 -115 -81 -199.5t-203 -84.5q-118 0 -183.5 62.5t-65.5 159.5zM178 218q0 -44 26 -69t71 -25q52 0 86.5 42t34.5 99q0 44 -26 69t-71 25q-53 0 -87 -42t-34 -99zM198 556l122 144h135l61 -144h-90l-51 81 l-84 -81h-93z" />
+<glyph unicode="&#xf5;" horiz-adv-x="576" d="M20 210q0 115 81 200t203 85q118 0 183.5 -62.5t65.5 -160.5q0 -115 -81 -199.5t-203 -84.5q-118 0 -183.5 62.5t-65.5 159.5zM178 218q0 -44 26 -69t71 -25q52 0 86.5 42t34.5 99q0 44 -26 69t-71 25q-53 0 -87 -42t-34 -99zM192 560q13 69 41.5 101.5t82.5 32.5 q30 0 51.5 -14t38 -27.5t32.5 -13.5q25 0 37 49h79q-15 -69 -43.5 -101.5t-81.5 -32.5q-38 0 -71 27.5t-51 27.5q-26 0 -36 -49h-79z" />
+<glyph unicode="&#xf6;" horiz-adv-x="576" d="M20 210q0 115 81 200t203 85q118 0 183.5 -62.5t65.5 -160.5q0 -115 -81 -199.5t-203 -84.5q-118 0 -183.5 62.5t-65.5 159.5zM178 218q0 -44 26 -69t71 -25q52 0 86.5 42t34.5 99q0 44 -26 69t-71 25q-53 0 -87 -42t-34 -99zM183 606q0 34 27 60.5t62 26.5q30 0 50 -20 t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM397 606q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xf7;" horiz-adv-x="511" d="M39 291l21 92h453l-21 -92h-453zM168 158q0 30 22 52t53 22q25 0 43.5 -18.5t18.5 -44.5q0 -30 -22.5 -52t-52.5 -22q-25 0 -43.5 18.5t-18.5 44.5zM245 504q0 30 22 52t53 22q25 0 43.5 -18.5t18.5 -44.5q0 -30 -22.5 -52t-52.5 -22q-25 0 -43.5 18.5t-18.5 44.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="576" d="M-28 0l87 80q-39 54 -39 130q0 115 81 200t203 85q98 0 162 -45l37 33h98l-88 -80q40 -53 40 -131q0 -115 -81 -199.5t-203 -84.5q-99 0 -164 46l-38 -34h-95zM178 218q0 -14 3 -28l172 156q-24 13 -54 13q-53 0 -87 -42t-34 -99zM219 137q22 -13 56 -13q52 0 86.5 42 t34.5 99q0 17 -4 29z" />
+<glyph unicode="&#xf9;" horiz-adv-x="592" d="M30 113q0 15 5 40l74 330h153l-61 -279q-4 -18 -4 -26q0 -54 71 -54q49 0 99 48l68 311h154l-107 -483h-154l14 59q-77 -71 -157 -71q-72 0 -113.5 34.5t-41.5 90.5zM201 700h136l95 -144h-104z" />
+<glyph unicode="&#xfa;" horiz-adv-x="592" d="M30 113q0 15 5 40l74 330h153l-61 -279q-4 -18 -4 -26q0 -54 71 -54q49 0 99 48l68 311h154l-107 -483h-154l14 59q-77 -71 -157 -71q-72 0 -113.5 34.5t-41.5 90.5zM296 556l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xfb;" horiz-adv-x="592" d="M30 113q0 15 5 40l74 330h153l-61 -279q-4 -18 -4 -26q0 -54 71 -54q49 0 99 48l68 311h154l-107 -483h-154l14 59q-77 -71 -157 -71q-72 0 -113.5 34.5t-41.5 90.5zM205 556l122 144h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#xfc;" horiz-adv-x="592" d="M30 113q0 15 5 40l74 330h153l-61 -279q-4 -18 -4 -26q0 -54 71 -54q49 0 99 48l68 311h154l-107 -483h-154l14 59q-77 -71 -157 -71q-72 0 -113.5 34.5t-41.5 90.5zM192 606q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50z M406 606q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#xfd;" horiz-adv-x="524" d="M-48 -184l49 132q17 -7 50 -7q37 0 55 26l19 31l-82 485h158l40 -306l179 306h167l-341 -552q-43 -70 -90 -98.5t-115 -28.5q-51 0 -89 12zM256 556l159 144h138l-191 -144h-106z" />
+<glyph unicode="&#xfe;" horiz-adv-x="589" d="M-39 -184l188 851h154l-53 -240q60 68 138 68q83 0 132.5 -53t49.5 -148q0 -73 -27.5 -141t-87.5 -116.5t-140 -48.5q-98 0 -147 69l-53 -241h-154zM193 168q34 -44 96 -44q52 0 87 40.5t35 97.5q0 43 -27 70t-67 27q-50 0 -92 -45z" />
+<glyph unicode="&#xff;" horiz-adv-x="524" d="M-48 -184l49 132q17 -7 50 -7q37 0 55 26l19 31l-82 485h158l40 -306l179 306h167l-341 -552q-43 -70 -90 -98.5t-115 -28.5q-51 0 -89 12zM153 606q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM367 606q0 34 27 60.5 t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20t-20 50z" />
+<glyph unicode="&#x152;" horiz-adv-x="1073" d="M36 291q0 170 111 278t268 108q140 0 208 -94l18 84h489l-33 -150h-317l-22 -104h309l-33 -150h-310l-25 -113h317l-33 -150h-489l13 62q-71 -74 -192 -74q-116 0 -197.5 86t-81.5 217zM215 302q0 -73 45.5 -117.5t115.5 -44.5q104 0 168 88l42 190q-18 51 -59.5 79 t-98.5 28q-94 0 -153.5 -65.5t-59.5 -157.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="916" d="M20 210q0 112 79 198.5t203 86.5q63 0 112 -27.5t74 -64.5q27 27 48.5 44t60 32.5t80.5 15.5q92 0 155.5 -56.5t63.5 -161.5q0 -34 -10 -84h-338v-6q0 -26 31.5 -53t82.5 -27q71 0 112 30l46 -102q-68 -47 -170 -47q-67 0 -118 27t-75 64q-31 -29 -50.5 -44.5t-58 -31 t-81.5 -15.5q-111 0 -179 59t-68 163zM178 218q0 -45 25 -69.5t70 -24.5q51 0 85 41.5t34 99.5q0 47 -26.5 70.5t-68.5 23.5q-50 0 -84.5 -40.5t-34.5 -100.5zM563 293h196q1 2 1 6q0 30 -22.5 53.5t-67.5 23.5q-41 0 -71 -26.5t-36 -56.5z" />
+<glyph unicode="&#x178;" horiz-adv-x="655" d="M82 667h185l91 -246l197 246h204l-340 -398l-59 -269h-172l59 269zM261 773q0 34 27 60.5t62 26.5q30 0 50 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-30 0 -50 20t-20 50zM475 773q0 34 27 60.5t62 26.5q29 0 49 -20t20 -50q0 -34 -27 -60.5t-62 -26.5q-29 0 -49 20 t-20 50z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="318" d="M69 556l122 144h135l61 -144h-90l-51 81l-84 -81h-93z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="334" d="M70 560q13 69 41.5 101.5t82.5 32.5q30 0 51.5 -14t38 -27.5t32.5 -13.5q25 0 37 49h79q-15 -69 -43.5 -101.5t-81.5 -32.5q-38 0 -71 27.5t-51 27.5q-26 0 -36 -49h-79z" />
+<glyph unicode="&#x2000;" horiz-adv-x="452" />
+<glyph unicode="&#x2001;" horiz-adv-x="904" />
+<glyph unicode="&#x2002;" horiz-adv-x="452" />
+<glyph unicode="&#x2003;" horiz-adv-x="904" />
+<glyph unicode="&#x2004;" horiz-adv-x="301" />
+<glyph unicode="&#x2005;" horiz-adv-x="226" />
+<glyph unicode="&#x2006;" horiz-adv-x="150" />
+<glyph unicode="&#x2007;" horiz-adv-x="150" />
+<glyph unicode="&#x2008;" horiz-adv-x="113" />
+<glyph unicode="&#x2009;" horiz-adv-x="180" />
+<glyph unicode="&#x200a;" horiz-adv-x="50" />
+<glyph unicode="&#x2010;" horiz-adv-x="300" d="M15 178l29 129h240l-29 -129h-240z" />
+<glyph unicode="&#x2011;" horiz-adv-x="300" d="M15 178l29 129h240l-29 -129h-240z" />
+<glyph unicode="&#x2012;" horiz-adv-x="300" d="M15 178l29 129h240l-29 -129h-240z" />
+<glyph unicode="&#x2013;" horiz-adv-x="593" d="M15 178l29 129h533l-29 -129h-533z" />
+<glyph unicode="&#x2014;" horiz-adv-x="833" d="M15 178l29 129h773l-29 -129h-773z" />
+<glyph unicode="&#x2018;" horiz-adv-x="268" d="M82 459q0 62 46 123.5t116 95.5l53 -55q-79 -34 -105 -84q3 1 12 1q30 0 50.5 -19.5t20.5 -55.5q0 -40 -31.5 -70t-71.5 -30q-38 0 -64 25t-26 69z" />
+<glyph unicode="&#x2019;" horiz-adv-x="268" d="M93 419q78 34 105 84q-4 -1 -12 -1q-30 0 -51 19.5t-21 55.5q0 40 32 70t72 30q37 0 63.5 -25t26.5 -68q0 -62 -46 -124t-117 -96z" />
+<glyph unicode="&#x201a;" horiz-adv-x="268" d="M-18 -81q79 34 105 84q-3 -1 -12 -1q-30 0 -50.5 19.5t-20.5 55.5q0 40 31.5 69.5t71.5 29.5q37 0 63.5 -24.5t26.5 -68.5q0 -62 -46 -123.5t-116 -95.5z" />
+<glyph unicode="&#x201c;" horiz-adv-x="493" d="M81 459q0 62 46 123.5t116 95.5l53 -55q-80 -34 -105 -84q3 1 11 1q31 0 51.5 -19.5t20.5 -55.5q0 -40 -32 -70t-72 -30q-37 0 -63 25t-26 69zM306 459q0 62 46 123.5t116 95.5l53 -55q-80 -34 -105 -84q3 1 12 1q30 0 50.5 -19.5t20.5 -55.5q0 -40 -31.5 -70t-71.5 -30 q-38 0 -64 25t-26 69z" />
+<glyph unicode="&#x201d;" horiz-adv-x="493" d="M93 419q78 34 105 84q-4 -1 -12 -1q-30 0 -51 19.5t-21 55.5q0 40 32 70t72 30q37 0 63.5 -25t26.5 -68q0 -62 -46 -124t-117 -96zM318 419q78 34 105 84q-3 -1 -12 -1q-30 0 -50.5 19.5t-20.5 55.5q0 40 31.5 70t71.5 30q37 0 63.5 -25t26.5 -68q0 -62 -46 -124 t-116 -96z" />
+<glyph unicode="&#x201e;" horiz-adv-x="493" d="M-18 -81q79 34 105 84q-3 -1 -12 -1q-30 0 -50.5 19.5t-20.5 55.5q0 40 31.5 69.5t71.5 29.5q37 0 63.5 -24.5t26.5 -68.5q0 -62 -46 -123.5t-116 -95.5zM207 -81q79 34 105 84q-2 -1 -12 -1q-30 0 -50.5 19.5t-20.5 55.5q0 40 31.5 69.5t71.5 29.5q37 0 63.5 -24.5 t26.5 -68.5q0 -62 -46 -123.5t-116 -95.5z" />
+<glyph unicode="&#x2022;" horiz-adv-x="358" d="M54 230q0 56 41 96t97 40q49 0 80.5 -31.5t31.5 -80.5q0 -55 -41.5 -95t-97.5 -40q-47 0 -79 32t-32 79z" />
+<glyph unicode="&#x2026;" horiz-adv-x="807" d="M5 74q0 42 30.5 72t72.5 30q35 0 60 -25.5t25 -61.5q0 -41 -31 -71t-72 -30q-36 0 -60.5 25t-24.5 61zM274 74q0 42 30.5 72t72.5 30q35 0 60 -25.5t25 -61.5q0 -41 -31 -71t-72 -30q-36 0 -60.5 25t-24.5 61zM543 74q0 42 30.5 72t72.5 30q35 0 60 -25.5t25 -61.5 q0 -41 -31 -71t-72 -30q-36 0 -60.5 25t-24.5 61z" />
+<glyph unicode="&#x202f;" horiz-adv-x="180" />
+<glyph unicode="&#x2039;" horiz-adv-x="359" d="M29 243l200 177h143l-204 -182l116 -175h-135z" />
+<glyph unicode="&#x203a;" horiz-adv-x="359" d="M-11 63l204 182l-116 175h135l120 -180l-200 -177h-143z" />
+<glyph unicode="&#x205f;" horiz-adv-x="226" />
+<glyph unicode="&#x20ac;" horiz-adv-x="715" d="M11 219l20 92h34q1 14 5 47h-29l21 92h34q46 105 144 166.5t219 61.5q125 0 202 -58.5t107 -146.5l-166 -54q-14 50 -54.5 78.5t-96.5 28.5q-93 0 -156 -76h222l-21 -92h-246q-6 -30 -6 -47h242l-21 -92h-200q44 -79 148 -79q41 0 82 21.5t63 55.5l134 -88 q-55 -75 -133 -108t-156 -33q-124 0 -215 62t-115 169h-62z" />
+<glyph unicode="&#x2122;" horiz-adv-x="454" d="M105 641l5 26h152l-5 -26h-62l-43 -194h-28l43 194h-62zM250 447l48 220h43l29 -160l99 160h43l-48 -220h-28l40 182l-115 -182h-8l-35 182l-40 -182h-28z" />
+<glyph unicode="&#xe000;" horiz-adv-x="485" d="M0 0v485h485v-485h-485z" />
+<hkern u1="K" u2="a" k="12" />
+<hkern u1="L" u2="a" k="4" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="T" u2="a" k="69" />
+<hkern u1="V" u2="a" k="68" />
+<hkern u1="W" u2="a" k="40" />
+<hkern u1="Y" u2="a" k="105" />
+<hkern u1="a" u2="&#x2122;" k="17" />
+<hkern u1="a" u2="&#x201d;" k="17" />
+<hkern u1="a" u2="&#x201c;" k="17" />
+<hkern u1="a" u2="&#x2019;" k="17" />
+<hkern u1="a" u2="&#x2018;" k="17" />
+<hkern u1="a" u2="&#x178;" k="110" />
+<hkern u1="a" u2="&#xdd;" k="110" />
+<hkern u1="a" u2="&#xae;" k="17" />
+<hkern u1="a" u2="Y" k="110" />
+<hkern u1="a" u2="W" k="48" />
+<hkern u1="a" u2="V" k="77" />
+<hkern u1="a" u2="T" k="87" />
+<hkern u1="a" u2="&#x3f;" k="47" />
+<hkern u1="a" u2="&#x27;" k="17" />
+<hkern u1="a" u2="&#x22;" k="17" />
+<hkern u1="&#xdd;" u2="a" k="105" />
+<hkern u1="&#x178;" u2="a" k="105" />
+<hkern g1="B" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="B" 	g2="T" 	k="12" />
+<hkern g1="B" 	g2="W" 	k="10" />
+<hkern g1="B" 	g2="V" 	k="18" />
+<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="30" />
+<hkern g1="C,Ccedilla" 	g2="question" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="S" 	k="-8" />
+<hkern g1="C,Ccedilla" 	g2="T" 	k="8" />
+<hkern g1="C,Ccedilla" 	g2="W" 	k="10" />
+<hkern g1="C,Ccedilla" 	g2="V" 	k="14" />
+<hkern g1="C,Ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="37" />
+<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="8" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="question" 	k="27" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="J" 	k="20" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="T" 	k="36" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="W" 	k="34" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="V" 	k="38" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Y,Yacute,Ydieresis" 	k="67" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="14" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="Z" 	k="12" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="22" />
+<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn" 	g2="X" 	k="30" />
+<hkern g1="F" 	g2="J" 	k="75" />
+<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="47" />
+<hkern g1="F" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="50" />
+<hkern g1="F" 	g2="ampersand" 	k="17" />
+<hkern g1="G" 	g2="question" 	k="17" />
+<hkern g1="G" 	g2="T" 	k="20" />
+<hkern g1="G" 	g2="W" 	k="18" />
+<hkern g1="G" 	g2="V" 	k="28" />
+<hkern g1="G" 	g2="Y,Yacute,Ydieresis" 	k="45" />
+<hkern g1="G" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="8" />
+<hkern g1="G" 	g2="X" 	k="8" />
+<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="44" />
+<hkern g1="K" 	g2="Y,Yacute,Ydieresis" 	k="5" />
+<hkern g1="K" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="37" />
+<hkern g1="K" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
+<hkern g1="K" 	g2="t" 	k="55" />
+<hkern g1="K" 	g2="w" 	k="40" />
+<hkern g1="K" 	g2="v" 	k="60" />
+<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="K" 	g2="hyphen,periodcentered,endash,emdash" 	k="50" />
+<hkern g1="K" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="24" />
+<hkern g1="K" 	g2="x" 	k="37" />
+<hkern g1="L" 	g2="question" 	k="104" />
+<hkern g1="L" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="143" />
+<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="24" />
+<hkern g1="L" 	g2="asterisk" 	k="164" />
+<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="22" />
+<hkern g1="L" 	g2="T" 	k="100" />
+<hkern g1="L" 	g2="W" 	k="77" />
+<hkern g1="L" 	g2="V" 	k="90" />
+<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="128" />
+<hkern g1="L" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="4" />
+<hkern g1="L" 	g2="t" 	k="38" />
+<hkern g1="L" 	g2="w" 	k="32" />
+<hkern g1="L" 	g2="v" 	k="52" />
+<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="52" />
+<hkern g1="L" 	g2="ampersand" 	k="2" />
+<hkern g1="L" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="5" />
+<hkern g1="P" 	g2="J" 	k="125" />
+<hkern g1="P" 	g2="W" 	k="8" />
+<hkern g1="P" 	g2="V" 	k="8" />
+<hkern g1="P" 	g2="Y,Yacute,Ydieresis" 	k="20" />
+<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="72" />
+<hkern g1="P" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="84" />
+<hkern g1="P" 	g2="X" 	k="25" />
+<hkern g1="P" 	g2="ampersand" 	k="37" />
+<hkern g1="P" 	g2="hyphen,periodcentered,endash,emdash" 	k="24" />
+<hkern g1="P" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="18" />
+<hkern g1="R" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="8" />
+<hkern g1="R" 	g2="T" 	k="10" />
+<hkern g1="R" 	g2="V" 	k="10" />
+<hkern g1="R" 	g2="Y,Yacute,Ydieresis" 	k="27" />
+<hkern g1="R" 	g2="ampersand" 	k="8" />
+<hkern g1="R" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="30" />
+<hkern g1="R" 	g2="s" 	k="17" />
+<hkern g1="S" 	g2="T" 	k="27" />
+<hkern g1="S" 	g2="W" 	k="10" />
+<hkern g1="S" 	g2="V" 	k="14" />
+<hkern g1="S" 	g2="Y,Yacute,Ydieresis" 	k="38" />
+<hkern g1="S" 	g2="t" 	k="12" />
+<hkern g1="S" 	g2="w" 	k="8" />
+<hkern g1="S" 	g2="v" 	k="17" />
+<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="17" />
+<hkern g1="S" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="2" />
+<hkern g1="S" 	g2="x" 	k="18" />
+<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
+<hkern g1="T" 	g2="J" 	k="88" />
+<hkern g1="T" 	g2="S" 	k="-2" />
+<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="15" />
+<hkern g1="T" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="59" />
+<hkern g1="T" 	g2="w" 	k="14" />
+<hkern g1="T" 	g2="v" 	k="14" />
+<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="14" />
+<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="52" />
+<hkern g1="T" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="98" />
+<hkern g1="T" 	g2="ampersand" 	k="40" />
+<hkern g1="T" 	g2="hyphen,periodcentered,endash,emdash" 	k="60" />
+<hkern g1="T" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="89" />
+<hkern g1="T" 	g2="x" 	k="24" />
+<hkern g1="T" 	g2="s" 	k="75" />
+<hkern g1="T" 	g2="colon,semicolon" 	k="50" />
+<hkern g1="T" 	g2="m,n,p,r,z,ntilde" 	k="59" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="J" 	k="33" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="27" />
+<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="30" />
+<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="2" />
+<hkern g1="V" 	g2="J" 	k="98" />
+<hkern g1="V" 	g2="S" 	k="-14" />
+<hkern g1="V" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="28" />
+<hkern g1="V" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="63" />
+<hkern g1="V" 	g2="t" 	k="18" />
+<hkern g1="V" 	g2="w" 	k="17" />
+<hkern g1="V" 	g2="v" 	k="18" />
+<hkern g1="V" 	g2="y,yacute,ydieresis" 	k="17" />
+<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="34" />
+<hkern g1="V" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="V" 	g2="ampersand" 	k="33" />
+<hkern g1="V" 	g2="hyphen,periodcentered,endash,emdash" 	k="58" />
+<hkern g1="V" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="60" />
+<hkern g1="V" 	g2="x" 	k="28" />
+<hkern g1="V" 	g2="s" 	k="55" />
+<hkern g1="V" 	g2="m,n,p,r,z,ntilde" 	k="63" />
+<hkern g1="W" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="6" />
+<hkern g1="W" 	g2="J" 	k="70" />
+<hkern g1="W" 	g2="S" 	k="-10" />
+<hkern g1="W" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="18" />
+<hkern g1="W" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
+<hkern g1="W" 	g2="t" 	k="18" />
+<hkern g1="W" 	g2="v" 	k="8" />
+<hkern g1="W" 	g2="y,yacute,ydieresis" 	k="8" />
+<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="36" />
+<hkern g1="W" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="62" />
+<hkern g1="W" 	g2="ampersand" 	k="10" />
+<hkern g1="W" 	g2="hyphen,periodcentered,endash,emdash" 	k="38" />
+<hkern g1="W" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="40" />
+<hkern g1="W" 	g2="x" 	k="28" />
+<hkern g1="W" 	g2="s" 	k="35" />
+<hkern g1="W" 	g2="m,n,p,r,z,ntilde" 	k="30" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="14" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="118" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="9" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="65" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="u,uni00B5,ugrave,uacute,ucircumflex,udieresis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="37" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="60" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="58" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="90" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="44" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,periodcentered,endash,emdash" 	k="127" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="122" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="78" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="100" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="colon,semicolon" 	k="75" />
+<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,r,z,ntilde" 	k="90" />
+<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
+<hkern g1="ampersand" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="5" />
+<hkern g1="ampersand" 	g2="T" 	k="75" />
+<hkern g1="ampersand" 	g2="W" 	k="37" />
+<hkern g1="ampersand" 	g2="V" 	k="62" />
+<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="91" />
+<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="20" />
+<hkern g1="asterisk" 	g2="J" 	k="127" />
+<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="85" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="question" 	k="57" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="10" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="T" 	k="89" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="W" 	k="40" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="V" 	k="60" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="Y,Yacute,Ydieresis" 	k="114" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="2" />
+<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" 	g2="x" 	k="32" />
+<hkern g1="c,cent,ccedilla" 	g2="question" 	k="28" />
+<hkern g1="c,cent,ccedilla" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="8" />
+<hkern g1="c,cent,ccedilla" 	g2="T" 	k="65" />
+<hkern g1="c,cent,ccedilla" 	g2="W" 	k="28" />
+<hkern g1="c,cent,ccedilla" 	g2="V" 	k="47" />
+<hkern g1="c,cent,ccedilla" 	g2="Y,Yacute,Ydieresis" 	k="68" />
+<hkern g1="colon,semicolon" 	g2="T" 	k="50" />
+<hkern g1="colon,semicolon" 	g2="Y,Yacute,Ydieresis" 	k="75" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="47" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="8" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="asterisk" 	k="12" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="T" 	k="85" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="W" 	k="40" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="V" 	k="58" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="Y,Yacute,Ydieresis" 	k="110" />
+<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="2" />
+<hkern g1="eth" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="2" />
+<hkern g1="f" 	g2="question" 	k="-52" />
+<hkern g1="f" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="-62" />
+<hkern g1="f" 	g2="asterisk" 	k="-62" />
+<hkern g1="f" 	g2="S" 	k="-28" />
+<hkern g1="f" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-40" />
+<hkern g1="f" 	g2="T" 	k="-40" />
+<hkern g1="f" 	g2="W" 	k="-68" />
+<hkern g1="f" 	g2="V" 	k="-68" />
+<hkern g1="f" 	g2="Y,Yacute,Ydieresis" 	k="-67" />
+<hkern g1="f" 	g2="Z" 	k="-40" />
+<hkern g1="f" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="48" />
+<hkern g1="f" 	g2="X" 	k="-40" />
+<hkern g1="f" 	g2="ampersand" 	k="8" />
+<hkern g1="f" 	g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde" 	k="-40" />
+<hkern g1="f" 	g2="parenright,bracketright,braceright" 	k="-64" />
+<hkern g1="g,j,q" 	g2="question" 	k="28" />
+<hkern g1="g,j,q" 	g2="T" 	k="59" />
+<hkern g1="g,j,q" 	g2="W" 	k="30" />
+<hkern g1="g,j,q" 	g2="V" 	k="63" />
+<hkern g1="g,j,q" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="g,j,q" 	g2="j" 	k="-57" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="W" 	k="38" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="V" 	k="58" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="125" />
+<hkern g1="hyphen,periodcentered,endash,emdash" 	g2="X" 	k="48" />
+<hkern g1="k" 	g2="T" 	k="32" />
+<hkern g1="k" 	g2="W" 	k="28" />
+<hkern g1="k" 	g2="V" 	k="28" />
+<hkern g1="k" 	g2="Y,Yacute,Ydieresis" 	k="77" />
+<hkern g1="k" 	g2="bullet" 	k="22" />
+<hkern g1="k" 	g2="hyphen,periodcentered,endash,emdash" 	k="22" />
+<hkern g1="k" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="8" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="87" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="30" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="T" 	k="98" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="W" 	k="62" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="V" 	k="82" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="28" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="t" 	k="28" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="w" 	k="34" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="v" 	k="62" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="y,yacute,ydieresis" 	k="52" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="2" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="j" 	k="-40" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="seven" 	k="77" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="one" 	k="110" />
+<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" 	g2="zero,six" 	k="15" />
+<hkern g1="questiondown" 	g2="j" 	k="-160" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="8" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="J" 	k="113" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="94" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="87" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="ampersand" 	k="-2" />
+<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	g2="s" 	k="30" />
+<hkern g1="r" 	g2="T" 	k="27" />
+<hkern g1="r" 	g2="W" 	k="17" />
+<hkern g1="r" 	g2="V" 	k="28" />
+<hkern g1="r" 	g2="Y,Yacute,Ydieresis" 	k="50" />
+<hkern g1="r" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="88" />
+<hkern g1="r" 	g2="X" 	k="25" />
+<hkern g1="s" 	g2="question" 	k="48" />
+<hkern g1="s" 	g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark" 	k="20" />
+<hkern g1="s" 	g2="T" 	k="67" />
+<hkern g1="s" 	g2="W" 	k="55" />
+<hkern g1="s" 	g2="V" 	k="48" />
+<hkern g1="s" 	g2="Y,Yacute,Ydieresis" 	k="98" />
+<hkern g1="s" 	g2="X" 	k="8" />
+<hkern g1="t" 	g2="T" 	k="21" />
+<hkern g1="t" 	g2="W" 	k="18" />
+<hkern g1="t" 	g2="V" 	k="37" />
+<hkern g1="t" 	g2="Y,Yacute,Ydieresis" 	k="38" />
+<hkern g1="a,u,z,uni00B5" 	g2="question" 	k="28" />
+<hkern g1="a,u,z,uni00B5" 	g2="T" 	k="59" />
+<hkern g1="a,u,z,uni00B5" 	g2="W" 	k="30" />
+<hkern g1="a,u,z,uni00B5" 	g2="V" 	k="63" />
+<hkern g1="a,u,z,uni00B5" 	g2="Y,Yacute,Ydieresis" 	k="90" />
+<hkern g1="v" 	g2="T" 	k="14" />
+<hkern g1="v" 	g2="W" 	k="8" />
+<hkern g1="v" 	g2="V" 	k="18" />
+<hkern g1="v" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="v" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="62" />
+<hkern g1="v" 	g2="X" 	k="32" />
+<hkern g1="w" 	g2="T" 	k="14" />
+<hkern g1="w" 	g2="V" 	k="17" />
+<hkern g1="w" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="12" />
+<hkern g1="w" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="34" />
+<hkern g1="w" 	g2="X" 	k="33" />
+<hkern g1="y,yacute,ydieresis" 	g2="question" 	k="8" />
+<hkern g1="y,yacute,ydieresis" 	g2="T" 	k="14" />
+<hkern g1="y,yacute,ydieresis" 	g2="W" 	k="8" />
+<hkern g1="y,yacute,ydieresis" 	g2="V" 	k="17" />
+<hkern g1="y,yacute,ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="60" />
+<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="20" />
+<hkern g1="y,yacute,ydieresis" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="52" />
+<hkern g1="y,yacute,ydieresis" 	g2="X" 	k="32" />
+<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
+<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="30" />
+<hkern g1="X" 	g2="t" 	k="30" />
+<hkern g1="X" 	g2="w" 	k="33" />
+<hkern g1="X" 	g2="v" 	k="32" />
+<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="32" />
+<hkern g1="X" 	g2="hyphen,periodcentered,endash,emdash" 	k="48" />
+<hkern g1="zero,nine" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="15" />
+<hkern g1="seven" 	g2="comma,period,quotesinglbase,quotedblbase,ellipsis" 	k="92" />
+<hkern g1="x" 	g2="T" 	k="24" />
+<hkern g1="x" 	g2="W" 	k="28" />
+<hkern g1="x" 	g2="V" 	k="28" />
+<hkern g1="x" 	g2="Y,Yacute,Ydieresis" 	k="78" />
+<hkern g1="x" 	g2="a,c,d,e,g,o,q,ccedilla,eacute,ograve,oacute,oslash,oe" 	k="32" />
+<hkern g1="parenleft,bracketleft,braceleft" 	g2="j" 	k="-110" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.ttf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..a36b6f9dd49413f7792ffff96ff899be73ac0202
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.ttf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.woff b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.woff
new file mode 100755
index 0000000000000000000000000000000000000000..bb7420b999f8140de5b4fb47f4e47a3af6e3ff99
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNova-XboldIt.woff differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Black.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Black.otf
new file mode 100755
index 0000000000000000000000000000000000000000..80980142919156e7f3a08fa4d7cc7c4bb8694bec
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Black.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-BlackIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-BlackIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..9f22c3a69175b137449be7098fcffc465c9f1ff2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-BlackIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Bold.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Bold.otf
new file mode 100755
index 0000000000000000000000000000000000000000..8843bfb88682d7ca484a135d46d2797bb502f231
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Bold.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-BoldIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-BoldIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..3c238b1fde69820c1071de0cc6b61d84d24e7856
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-BoldIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Light.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Light.otf
new file mode 100755
index 0000000000000000000000000000000000000000..26c1a620c28636717a8bd78f0de5d1721e5bf87c
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Light.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-LightIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-LightIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..9b07862ccff492c1dfde69e0813ee5f9f5fa4242
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-LightIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Reg.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Reg.otf
new file mode 100755
index 0000000000000000000000000000000000000000..5913bbdc9b78df2a21cbaf1c71bbda3ffda29a80
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Reg.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-RegIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-RegIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..4c036bffe82ef67180ea23fa9a9be21bb01a9e11
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-RegIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Sbold.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Sbold.otf
new file mode 100755
index 0000000000000000000000000000000000000000..e5e5f11d636a7ef85131d021991d47b1d189afdb
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Sbold.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-SboldIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-SboldIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..f368d86b3d047b9b7d831c1a8e69c8e9d1fbf8ba
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-SboldIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Thin.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Thin.otf
new file mode 100755
index 0000000000000000000000000000000000000000..0f57ff7eb0920df4307ce8478263339859c818ec
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Thin.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-ThinIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-ThinIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..d7b97cb956983296430799dc400b2ab26a8dc342
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-ThinIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Xbold.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Xbold.otf
new file mode 100755
index 0000000000000000000000000000000000000000..367e842c0e11e8954708a5b9ddde536277c46b32
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-Xbold.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-XboldIt.otf b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-XboldIt.otf
new file mode 100755
index 0000000000000000000000000000000000000000..42fd617fabd8b2761e8c494f04772a5851b158c1
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/ProximaNovaCond-XboldIt.otf differ
diff --git a/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/webfonts.css b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/webfonts.css
new file mode 100755
index 0000000000000000000000000000000000000000..b81ce0d54b461cfddb8ceef9a09dca30dc804c34
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/fonts/osu-fonts/webfonts.css
@@ -0,0 +1,410 @@
+/* ====================================================================
+Capita - Serif font
+==================================================================== */
+/*
+ * Web Fonts from fontspring.com
+ *
+ * All OpenType features and all extended glyphs have been removed.
+ * Fully installable fonts can be purchased at http://www.fontspring.com
+ *
+ * The fonts included in this stylesheet are subject to the End User License you purchased
+ * from Fontspring. The fonts are protected under domestic and international trademark and 
+ * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
+ * distributing this font software.
+ *
+ * (c) 2010-2012 Fontspring
+ *
+ * The fonts included are copyrighted by the vendor listed below.
+ *
+ * Vendor:      Hoftype
+ * License URL: http://www.fontspring.com/fflicense/hoftype
+ */
+
+/* Capita font-weights that can be specified in CSS
+=======================================================
+
+100 = Extra light
+300 = Light
+400 = Normal
+600 = Medium
+700 = Bold
+900 = Extra bold
+
+*/
+
+
+
+/* Extra light */
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaXLig.eot');
+    src: url('CapitaXLig.eot?#iefix') format('embedded-opentype'),
+         url('CapitaXLig.woff') format('woff'),
+         url('CapitaXLig.ttf') format('truetype'),
+         url('CapitaXLig.svg#capita') format('svg');
+    font-weight:lighter;
+    font-weight: 100;
+    font-style: normal;
+}
+/* Extra light italic*/
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaXLigIta.eot');
+    src: url('CapitaXLigIta.eot?#iefix') format('embedded-opentype'),
+         url('CapitaXLigIta.woff') format('woff'),
+         url('CapitaXLigIta.ttf') format('truetype'),
+         url('CapitaXLigIta.svg#capita') format('svg');
+    font-weight:lighter;
+    font-weight: 100;
+    font-style: italic;
+}
+
+/* Light */
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaLig.eot');
+    src: url('CapitaLig.eot?#iefix') format('embedded-opentype'),
+         url('CapitaLig.woff') format('woff'),
+         url('CapitaLig.ttf') format('truetype'),
+         url('CapitaLig.svg#capita') format('svg');
+    font-weight:light;
+    font-weight: 300;
+    font-style: normal;
+}
+
+/* Light italic */
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaLigIta.eot');
+    src: url('CapitaLigIta.eot?#iefix') format('embedded-opentype'),
+         url('CapitaLigIta.woff') format('woff'),
+         url('CapitaLigIta.ttf') format('truetype'),
+         url('CapitaLigIta.svg#capita') format('svg');
+    font-weight:light;
+    font-weight: 300;
+    font-style: italic;
+}
+
+/* Regular */
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaReg.eot');
+    src: url('CapitaReg.eot?#iefix') format('embedded-opentype'),
+         url('CapitaReg.woff') format('woff'),
+         url('CapitaReg.ttf') format('truetype'),
+         url('CapitaReg.svg#capita') format('svg');
+    font-weight: normal;
+    font-weight: 400;
+    font-style: normal;
+}
+
+/* Regular italic*/
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaIta.eot');
+    src: url('CapitaIta.eot?#iefix') format('embedded-opentype'),
+         url('CapitaIta.woff') format('woff'),
+         url('CapitaIta.ttf') format('truetype'),
+         url('CapitaIta.svg#capita') format('svg');
+    font-weight: normal;
+    font-weight: 400;
+    font-style: italic;
+}
+
+/* Medium */
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaMed.eot');
+    src: url('CapitaMed.eot?#iefix') format('embedded-opentype'),
+         url('CapitaMed.woff') format('woff'),
+         url('CapitaMed.ttf') format('truetype'),
+         url('CapitaMed.svg#capita') format('svg');
+    font-weight: 600;
+    font-style: normal;
+}
+
+/* Medium italic*/
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaMedIta.eot');
+    src: url('CapitaMedIta.eot?#iefix') format('embedded-opentype'),
+         url('CapitaMedIta.woff') format('woff'),
+         url('CapitaMedIta.ttf') format('truetype'),
+         url('CapitaMedIta.svg#capita') format('svg');
+    font-weight: 600;
+    font-style: italic;
+}
+
+
+/* Bold */
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaBol.eot');
+    src: url('CapitaBol.eot?#iefix') format('embedded-opentype'),
+         url('CapitaBol.woff') format('woff'),
+         url('CapitaBol.ttf') format('truetype'),
+         url('CapitaBol.svg#capita') format('svg');
+    font-weight: bold;
+    font-weight: 700;
+    font-style: normal;
+} 
+
+/* Bold italic*/
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaBolIta.eot');
+    src: url('CapitaBolIta.eot?#iefix') format('embedded-opentype'),
+         url('CapitaBolIta.woff') format('woff'),
+         url('CapitaBolIta.ttf') format('truetype'),
+         url('CapitaBolIta.svg#capita') format('svg');
+    font-weight: bold;
+    font-weight: 700;
+    font-style: italic;
+} 
+
+
+/* Extra bold */
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaXBold.eot');
+    src: url('CapitaXBold.eot?#iefix') format('embedded-opentype'),
+         url('CapitaXBold.woff') format('woff'),
+         url('CapitaXBold.ttf') format('truetype'),
+         url('CapitaXBold.svg#capita') format('svg');
+    font-weight: bolder;
+    font-weight: 900;
+    font-style: normal;
+} 
+
+/* Extra bold italic*/
+@font-face {
+    font-family: 'capita';
+    src: url('CapitaXBoldIta.eot');
+    src: url('CapitaXBoldIta.eot?#iefix') format('embedded-opentype'),
+         url('CapitaXBoldIta.woff') format('woff'),
+         url('CapitaXBoldIta.ttf') format('truetype'),
+         url('CapitaXBoldIta.svg#capita') format('svg');
+	font-weight: bolder;
+    font-weight: 900;
+    font-style: italic;
+}
+
+
+
+
+
+
+/* ====================================================================
+ Proxima Nova - Sans-serif font
+==================================================================== */
+/*
+ * Web Fonts from fontspring.com
+ *
+ * All OpenType features and all extended glyphs have been removed.
+ * Fully installable fonts can be purchased at http://www.fontspring.com
+ *
+ * The fonts included in this stylesheet are subject to the End User License you purchased
+ * from Fontspring. The fonts are protected under domestic and international trademark and 
+ * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
+ * distributing this font software.
+ *
+ * (c) 2010-2012 Fontspring
+ *
+ * The fonts included are copyrighted by the vendor listed below.
+ *
+ * Vendor:      Mark Simonson Studio
+ * License URL: http://www.fontspring.com/fflicense/mark-simonson-studio
+ */
+
+/* Proxima Nova font-weights that can be specified in CSS
+=======================================================
+
+100 = Thin
+300 = Light
+400 = Normal
+600 = Semibold
+700 = Bold
+800 = Extra bold
+900 = Black
+
+*/
+
+/* Thin */
+ @font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-Thin.eot');
+    src: url('ProximaNova-Thin.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-Thin.woff') format('woff'),
+         url('ProximaNova-Thin.ttf') format('truetype'),
+         url('ProximaNova-Thin.svg#proximanova') format('svg');
+    font-weight:lighter;
+    font-weight: 100;
+    font-style: normal;
+}
+
+/* Thin italic*/
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-ThinIt.eot');
+    src: url('ProximaNova-ThinIt.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-ThinIt.woff') format('woff'),
+         url('ProximaNova-ThinIt.ttf') format('truetype'),
+         url('ProximaNova-ThinIt.svg#proximanova') format('svg');
+    font-weight:lighter;
+    font-weight: 100;
+    font-style: italic;
+}
+
+/* Light */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-Light.eot');
+    src: url('ProximaNova-Light.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-Light.woff') format('woff'),
+         url('ProximaNova-Light.ttf') format('truetype'),
+         url('ProximaNova-Light.svg#proximanova') format('svg');
+    font-weight:light;
+    font-weight: 300;
+    font-style: normal;
+}
+
+/* Light italic */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-LightIt.eot');
+    src: url('ProximaNova-LightIt.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-LightIt.woff') format('woff'),
+         url('ProximaNova-LightIt.ttf') format('truetype'),
+         url('ProximaNova-LightIt.svg#proximanova') format('svg');
+    font-weight:light;
+    font-weight: 300;
+    font-style: italic;
+}
+
+/* Regular */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-Reg.eot');
+    src: url('ProximaNova-Reg.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-Reg.woff') format('woff'),
+         url('ProximaNova-Reg.ttf') format('truetype'),
+         url('ProximaNova-Reg.svg#proximanova') format('svg');
+    font-weight:normal;
+    font-weight: 400;
+    font-style: normal;
+}
+
+/* Regular italic*/
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-RegIt.eot');
+    src: url('ProximaNova-RegIt.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-RegIt.woff') format('woff'),
+         url('ProximaNova-RegIt.ttf') format('truetype'),
+         url('ProximaNova-RegIt.svg#proximanova') format('svg');
+    font-weight:normal;
+    font-weight: 400;
+    font-style: italic;
+}  
+
+/* Semibold */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-Sbold.eot');
+    src: url('ProximaNova-Sbold.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-Sbold.woff') format('woff'),
+         url('ProximaNova-Sbold.ttf') format('truetype'),
+         url('ProximaNova-Sbold.svg#proximanova') format('svg');
+    font-weight: 600;
+    font-style: normal;
+}
+
+/* Semibold italic*/
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-SboldIt.eot');
+    src: url('ProximaNova-SboldIt.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-SboldIt.woff') format('woff'),
+         url('ProximaNova-SboldIt.ttf') format('truetype'),
+         url('ProximaNova-SboldIt.svg#proximanova') format('svg');
+    font-weight: 600;
+    font-style: italic;
+}
+
+/* Bold */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-Bold.eot');
+    src: url('ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-Bold.woff') format('woff'),
+         url('ProximaNova-Bold.ttf') format('truetype'),
+         url('ProximaNova-Bold.svg#proximanova') format('svg');
+    font-weight:bold;
+    font-weight: 700;
+    font-style: normal;
+}
+
+/* Bold italic*/
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-BoldIt.eot');
+    src: url('ProximaNova-BoldIt.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-BoldIt.woff') format('woff'),
+         url('ProximaNova-BoldIt.ttf') format('truetype'),
+         url('ProximaNova-BoldIt.svg#proximanova') format('svg');
+    font-weight:bold;
+    font-weight: 700;
+    font-style: italic;
+}
+
+
+/* Extra Bold */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-Xbold.eot');
+    src: url('ProximaNova-Xbold.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-Xbold.woff') format('woff'),
+         url('ProximaNova-Xbold.ttf') format('truetype'),
+         url('ProximaNova-Xbold.svg#proximanova') format('svg');
+    font-weight: 800;
+    font-style: normal;
+}
+
+/* Extra Bold italic*/
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-XboldIt.eot');
+    src: url('ProximaNova-XboldIt.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-XboldIt.woff') format('woff'),
+         url('ProximaNova-XboldIt.ttf') format('truetype'),
+         url('ProximaNova-XboldIt.svg#proximanova') format('svg');
+    font-weight: 800;
+    font-style: italic;
+}
+
+
+/* Black */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-Black.eot');
+    src: url('ProximaNova-Black.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-Black.woff') format('woff'),
+         url('ProximaNova-Black.ttf') format('truetype'),
+         url('ProximaNova-Black.svg#proximanova') format('svg');
+    font-weight:bolder;
+    font-weight: 900;
+    font-style: normal;
+}
+
+/* Black italic */
+@font-face {
+    font-family: 'proximanova';
+    src: url('ProximaNova-BlackIt.eot');
+    src: url('ProximaNova-BlackIt.eot?#iefix') format('embedded-opentype'),
+         url('ProximaNova-BlackIt.woff') format('woff'),
+         url('ProximaNova-BlackIt.ttf') format('truetype'),
+         url('ProximaNova-BlackIt.svg#proximanova') format('svg');
+    font-weight:bolder;
+    font-weight: 900;
+    font-style: italic;
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/gulpfile.default.js b/profiles/wcm_base/themes/wcm_omega/gulpfile.default.js
new file mode 100644
index 0000000000000000000000000000000000000000..f04d199aa42653edbefda2dc9b9edbdae11a1066
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/gulpfile.default.js
@@ -0,0 +1,50 @@
+/***
+For local development:
+1. make a copy of this file
+2. rename to gulpfile.js (will be ignored by git)
+3. update your proxy settings
+***/
+
+
+'use strict';
+
+var gulp = require('gulp');
+var sass = require('gulp-sass');
+var sourcemaps = require('gulp-sourcemaps');
+var autoprefixer = require('gulp-autoprefixer');
+var importer = require('node-sass-globbing');
+var plumber = require('gulp-plumber');
+var cssmin = require('gulp-cssmin');
+var browserSync = require('browser-sync').create();
+
+var sass_config = {
+  importer: importer,
+  includePaths: [
+    'node_modules/breakpoint-sass/stylesheets/',
+    'node_modules/singularitygs/stylesheets/',
+    'node_modules/sassier-buttons/scss/'
+  ]
+};
+
+gulp.task('browser-sync', function() {
+    browserSync.init({
+        //injectChanges: true,
+        proxy: "local.web.address"
+    });
+    gulp.watch("./sass/**/*.scss", ['sass']).on('change', browserSync.reload);
+});
+
+gulp.task('sass', function () {
+  gulp.src('./sass/**/*.scss')
+    .pipe(plumber())
+    //.pipe(sourcemaps.init())
+    .pipe(sass(sass_config).on('error', sass.logError))
+    .pipe(autoprefixer({
+      browsers: ['last 2 version']
+    }))
+    //.pipe(sourcemaps.write('.'))
+    .pipe(cssmin())
+    .pipe(gulp.dest('./css'));
+});
+
+gulp.task('default', [ 'browser-sync']);
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/images/README.txt b/profiles/wcm_base/themes/wcm_omega/images/README.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a782f11e1ddb42253a1e71d2151331eab38da300
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/images/README.txt
@@ -0,0 +1,5 @@
+# Images
+All image assets for the theme should be declared here and organized into sub
+directories. The Compass generated images directory (see config.rb) is set to
+use a sub directory within this folder to store generated images such as
+sprites.
diff --git a/profiles/wcm_base/themes/wcm_omega/images/calendar.svg b/profiles/wcm_base/themes/wcm_omega/images/calendar.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7090a85c335373627ce627dffbc90533d766abdc
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/images/calendar.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="21px" height="21px" viewBox="25.5 25.5 21 21" enable-background="new 25.5 25.5 21 21" xml:space="preserve">
+<g>
+	<path fill="#333333" d="M45.286,44.068c0,0.784-0.647,1.432-1.429,1.432H28.141c-0.78,0-1.427-0.647-1.427-1.432V29.786
+		c0-0.781,0.647-1.429,1.427-1.429h1.43v-1.072c0-0.982,0.804-1.785,1.786-1.785h0.714c0.982,0,1.786,0.803,1.786,1.785v1.072h4.286
+		v-1.072c0-0.982,0.803-1.785,1.786-1.785h0.714c0.982,0,1.785,0.803,1.785,1.785v1.072h1.429c0.782,0,1.43,0.647,1.43,1.429V44.068
+		L45.286,44.068z M31.357,35.856v-3.213h-3.216v3.213H31.357z M31.357,40.143V36.57h-3.216v3.572H31.357L31.357,40.143z
+		 M31.357,44.068v-3.211h-3.216v3.211H31.357z M32.429,27.285c0-0.189-0.168-0.356-0.357-0.356h-0.714
+		c-0.19,0-0.357,0.167-0.357,0.356v3.214c0,0.19,0.167,0.358,0.357,0.358h0.714c0.189,0,0.357-0.168,0.357-0.358V27.285z
+		 M35.644,35.856v-3.213h-3.572v3.213H35.644z M35.644,40.143V36.57h-3.572v3.572H35.644L35.644,40.143z M35.644,44.068v-3.211
+		h-3.572v3.211H35.644z M39.929,35.856v-3.213h-3.572v3.213H39.929z M39.929,40.143V36.57h-3.572v3.572H39.929L39.929,40.143z
+		 M39.929,44.068v-3.211h-3.572v3.211H39.929z M41,27.285c0-0.189-0.168-0.356-0.357-0.356h-0.714c-0.189,0-0.356,0.167-0.356,0.356
+		v3.214c0,0.19,0.167,0.358,0.356,0.358h0.714c0.189,0,0.357-0.168,0.357-0.358V27.285z M43.857,35.856v-3.213h-3.215v3.213H43.857z
+		 M43.857,40.143V36.57h-3.215v3.572H43.857L43.857,40.143z M43.857,44.068v-3.211h-3.215v3.211H43.857z"/>
+</g>
+</svg>
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-illustrator.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-illustrator.png
new file mode 100644
index 0000000000000000000000000000000000000000..222c21e4ec1dd338ac90e4b215aba76f7af63730
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-illustrator.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-octet-stream.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-octet-stream.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a3f8f6d20190798750128c68c68d1ae39efb0b8
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-octet-stream.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-pdf.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-pdf.png
new file mode 100644
index 0000000000000000000000000000000000000000..97c8e652c7e82f3d2a0fbdab2a823f505ae1c9d7
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-pdf.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-photoshop.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-photoshop.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f56e03c4c076018aa6d5e1a8c4977d13c77d21f
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-photoshop.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.keynote.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.keynote.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5c843805c2e7aca72fdfd6507595ccd5924351b
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.keynote.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.numbers.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.numbers.png
new file mode 100644
index 0000000000000000000000000000000000000000..76a1d6da8f2738386b2953553d75bea550a19ffa
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.numbers.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.pages.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.pages.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea66e272bc6767ff4af57e74010f418890bf7d26
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.apple.pages.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.openxmlformats-officedocument.presentationml.template.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.openxmlformats-officedocument.presentationml.template.png
new file mode 100644
index 0000000000000000000000000000000000000000..462a3e041c86ffe36e2e3506bea0c595c5820892
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.openxmlformats-officedocument.presentationml.template.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png
new file mode 100644
index 0000000000000000000000000000000000000000..1658d3154102673464748ccc4f25fc10adb10517
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-vnd.openxmlformats-officedocument.wordprocessingml.template.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-x-executable.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-x-executable.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a3f8f6d20190798750128c68c68d1ae39efb0b8
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-x-executable.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-x-indesign.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-x-indesign.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8cabfc689ae1c45928f6a385bc3293ff026adb2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/application-x-indesign.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/audio-x-generic.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/audio-x-generic.png
new file mode 100644
index 0000000000000000000000000000000000000000..b34aa8041a49e1fcee5736c486ef55c7a8c72256
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/audio-x-generic.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/icon-assets/Document-Icons.eps b/profiles/wcm_base/themes/wcm_omega/images/file-icons/icon-assets/Document-Icons.eps
new file mode 100755
index 0000000000000000000000000000000000000000..10d98b80d46ff25315376cc08460e2694f9a549e
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/icon-assets/Document-Icons.eps differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/icon-assets/document-icons.psd b/profiles/wcm_base/themes/wcm_omega/images/file-icons/icon-assets/document-icons.psd
new file mode 100644
index 0000000000000000000000000000000000000000..0dce5f9f35d9f93f4f0490132882eb7a8d9aac22
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/icon-assets/document-icons.psd differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/image-eps.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/image-eps.png
new file mode 100644
index 0000000000000000000000000000000000000000..30f3d907a84244b4e383d23022dc47002a9f75fc
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/image-eps.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/image-x-generic.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/image-x-generic.png
new file mode 100644
index 0000000000000000000000000000000000000000..2829afcbe689ca3c37f860d07f126ebaac7826dd
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/image-x-generic.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/package-x-generic.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/package-x-generic.png
new file mode 100644
index 0000000000000000000000000000000000000000..582a2c4b0ff82cd9041eb9c6efffe11cee21cca2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/package-x-generic.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-html.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-html.png
new file mode 100644
index 0000000000000000000000000000000000000000..25ee03356fea451586a5b8a0f096c0d0ab693db1
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-html.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-plain.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-plain.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c328ad913bbd0ab9614902c2214ad3f18bcda5f
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-plain.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-x-generic.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-x-generic.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c328ad913bbd0ab9614902c2214ad3f18bcda5f
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-x-generic.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-x-script.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-x-script.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d8dda3fb887f14fa75d1f5a61541e58b618c2c8
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/text-x-script.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/video-x-generic.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/video-x-generic.png
new file mode 100644
index 0000000000000000000000000000000000000000..2184fe981d343f2f8792ec8b582b8c1c1230c6e3
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/video-x-generic.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-document.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-document.png
new file mode 100644
index 0000000000000000000000000000000000000000..1658d3154102673464748ccc4f25fc10adb10517
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-document.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-presentation.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-presentation.png
new file mode 100644
index 0000000000000000000000000000000000000000..462a3e041c86ffe36e2e3506bea0c595c5820892
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-presentation.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-spreadsheet.png b/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-spreadsheet.png
new file mode 100644
index 0000000000000000000000000000000000000000..38a7483d00bd2432c9c93cbe595113d8dfddb052
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/file-icons/x-office-spreadsheet.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_0_aaaaaa_40x100.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_0_aaaaaa_40x100.png
new file mode 100755
index 0000000000000000000000000000000000000000..1088204cacdfad011230d5ae2da386b3df477250
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_0_aaaaaa_40x100.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_55_bb0000_40x100.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_55_bb0000_40x100.png
new file mode 100755
index 0000000000000000000000000000000000000000..8294d419d2cfd113a21dd6b1b37131ca7cb2edb6
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_55_bb0000_40x100.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_65_ffffff_40x100.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_65_ffffff_40x100.png
new file mode 100755
index 0000000000000000000000000000000000000000..6b0a624756f3fe73825ccbd8f1567913c430188a
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_65_ffffff_40x100.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_2d2d2d_40x100.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_2d2d2d_40x100.png
new file mode 100755
index 0000000000000000000000000000000000000000..ba49eec8bcaeb2bfb56e7b0b39b99080a9ee6fdf
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_2d2d2d_40x100.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_666666_40x100.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_666666_40x100.png
new file mode 100755
index 0000000000000000000000000000000000000000..4d4ce400dee5cdc5cedab0d6ceb88f662ff00213
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_666666_40x100.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_cccccc_40x100.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_cccccc_40x100.png
new file mode 100755
index 0000000000000000000000000000000000000000..ad181f78fbe159ae28afb02801159a6ea83f520c
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_cccccc_40x100.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_ececec_40x100.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_ececec_40x100.png
new file mode 100755
index 0000000000000000000000000000000000000000..e6005970bde9f12ee2043b15ea90d0b68824da10
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_flat_75_ececec_40x100.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_glass_95_fef1ec_1x400.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_glass_95_fef1ec_1x400.png
new file mode 100755
index 0000000000000000000000000000000000000000..719723abb009824bcc2bfc71746f1d746296fe87
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-bg_glass_95_fef1ec_1x400.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_222222_256x240.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_222222_256x240.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9c8e16ac5e7f61c843fbac290ce30c5de7e40b6
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_222222_256x240.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_2d2d2d_256x240.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_2d2d2d_256x240.png
new file mode 100755
index 0000000000000000000000000000000000000000..e76e1346690836a833a857002aaa5f982c483fc9
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_2d2d2d_256x240.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_454545_256x240.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_454545_256x240.png
new file mode 100755
index 0000000000000000000000000000000000000000..b6db1acdd433be80a472b045018f25c7f2cf7e08
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_454545_256x240.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_888888_256x240.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_888888_256x240.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3e6e02a03d4cfdc6a2114f736aa57e8a898b98b
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_888888_256x240.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_cd0a0a_256x240.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_cd0a0a_256x240.png
new file mode 100755
index 0000000000000000000000000000000000000000..ed5b6b0930f672fa08e9b9bdbe5e55370fd1dc30
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_cd0a0a_256x240.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_ffffff_256x240.png b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_ffffff_256x240.png
new file mode 100755
index 0000000000000000000000000000000000000000..4f624bb2b193750f1a5b36c8c307168c6681a861
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/jquery-images/ui-icons_ffffff_256x240.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-footer-wordmark.png b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-footer-wordmark.png
new file mode 100644
index 0000000000000000000000000000000000000000..212662178dc8bfbd13efe2272632447c23c548bc
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-footer-wordmark.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-footer-wordmark.svg b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-footer-wordmark.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2aabc7a18ad56ccd1857b12d8a80c640828310e8
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-footer-wordmark.svg
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="290px" height="40px" viewBox="0 0 290 40" enable-background="new 0 0 290 40" xml:space="preserve">
+<g>
+	<polygon fill="#FFFFFF" points="11.782,10.949 11.51,9.07 8.07,9.07 8.07,21.227 9.903,21.498 9.903,22.652 3.384,22.652 
+		3.384,21.498 5.217,21.227 5.217,9.07 1.777,9.07 1.505,10.949 0.282,10.949 0.282,7.486 13.005,7.486 13.005,10.949 
+		11.782,10.949 	"/>
+	<polygon fill="#FFFFFF" points="21.221,22.652 21.221,21.565 22.918,21.293 22.918,17.151 18.392,17.151 18.392,21.293 
+		20.089,21.565 20.089,22.652 13.91,22.652 13.91,21.565 15.676,21.293 15.676,12.126 13.91,11.854 13.91,10.768 20.089,10.768 
+		20.089,11.854 18.392,12.126 18.392,15.702 22.918,15.702 22.918,12.126 21.221,11.854 21.221,10.768 27.4,10.768 27.4,11.854 
+		25.636,12.126 25.636,21.293 27.4,21.565 27.4,22.652 21.221,22.652 	"/>
+	<polygon fill="#FFFFFF" points="38.967,22.652 28.713,22.652 28.713,21.565 30.479,21.293 30.479,12.126 28.713,11.854 
+		28.713,10.768 38.967,10.768 38.967,13.915 37.813,13.915 37.541,12.217 33.195,12.217 33.195,15.749 35.912,15.749 36.184,14.232 
+		37.202,14.232 37.202,18.623 36.184,18.623 35.912,17.106 33.195,17.106 33.195,21.203 37.541,21.203 37.813,19.505 38.967,19.505 
+		38.967,22.652 	"/>
+	<path fill="#FFFFFF" d="M53.409,8.867c-2.513,0-3.803,2.015-3.803,6.179c0,4.188,1.245,6.226,3.757,6.226
+		c2.514,0,3.803-2.015,3.803-6.179C57.167,10.904,55.922,8.867,53.409,8.867L53.409,8.867z M53.386,22.924
+		c-4.708,0-6.768-2.807-6.768-7.899c0-5.071,2.082-7.811,6.791-7.811c4.708,0,6.769,2.808,6.769,7.9
+		C60.178,20.185,58.095,22.924,53.386,22.924L53.386,22.924z"/>
+	<polygon fill="#FFFFFF" points="68.711,22.652 68.711,21.565 70.408,21.293 70.408,17.151 65.881,17.151 65.881,21.293 
+		67.579,21.565 67.579,22.652 61.399,22.652 61.399,21.565 63.165,21.293 63.165,12.126 61.399,11.854 61.399,10.768 67.579,10.768 
+		67.579,11.854 65.881,12.126 65.881,15.702 70.408,15.702 70.408,12.126 68.711,11.854 68.711,10.768 74.891,10.768 74.891,11.854 
+		73.124,12.126 73.124,21.293 74.891,21.565 74.891,22.652 68.711,22.652 	"/>
+	<polygon fill="#FFFFFF" points="76.361,22.652 76.361,21.565 78.127,21.293 78.127,12.126 76.361,11.854 76.361,10.768 
+		82.609,10.768 82.609,11.854 80.843,12.126 80.843,21.293 82.609,21.565 82.609,22.652 76.361,22.652 	"/>
+	<path fill="#FFFFFF" d="M89.332,12.126c-1.902,0-2.92,1.381-2.92,4.573c0,3.213,0.973,4.617,2.875,4.617
+		c1.902,0,2.944-1.381,2.944-4.572C92.23,13.53,91.233,12.126,89.332,12.126L89.332,12.126z M89.31,22.878
+		c-4.007,0-5.75-2.241-5.75-6.179c0-3.939,1.765-6.135,5.772-6.135c4.006,0,5.749,2.242,5.749,6.18
+		C95.081,20.683,93.316,22.878,89.31,22.878L89.31,22.878z"/>
+	<path fill="#FFFFFF" d="M107.463,22.924c-2.625,0-4.731-0.905-4.731-0.905v-3.237h1.29l0.294,2.083c0,0,0.973,0.339,2.694,0.339
+		c1.765,0,3.35-0.588,3.35-2.513c0-1.742-1.223-1.991-2.717-2.49c-2.376-0.792-4.889-1.472-4.889-4.73
+		c0-2.649,1.653-4.256,5.116-4.256c1.584,0,3.236,0.363,4.526,0.86v3.034h-1.29l-0.294-1.947c0,0-1.358-0.294-2.672-0.294
+		c-1.312,0-2.671,0.453-2.671,2.196c0,3.78,7.607,1.29,7.607,7.334C113.077,21.248,111.221,22.924,107.463,22.924L107.463,22.924z"
+		/>
+	<polygon fill="#FFFFFF" points="123.806,14.051 123.535,12.217 120.908,12.217 120.908,21.293 122.674,21.565 122.674,22.652 
+		116.427,22.652 116.427,21.565 118.192,21.293 118.192,12.217 115.566,12.217 115.295,14.051 114.14,14.051 114.14,10.768 
+		124.96,10.768 124.96,14.051 123.806,14.051 	"/>
+	<path fill="#FFFFFF" d="M130.821,13.054l-1.72,4.709h3.44L130.821,13.054L130.821,13.054z M132.226,22.652v-1.087l1.696-0.272
+		l-0.836-2.149h-4.527l-0.838,2.149l1.698,0.272v1.087h-5.184v-1.087l1.698-0.272l4.074-10.525h2.603l4.075,10.525l1.698,0.272
+		v1.087H132.226L132.226,22.652z"/>
+	<polygon fill="#FFFFFF" points="147.321,14.051 147.05,12.217 144.425,12.217 144.425,21.293 146.19,21.565 146.19,22.652 
+		139.942,22.652 139.942,21.565 141.708,21.293 141.708,12.217 139.082,12.217 138.81,14.051 137.656,14.051 137.656,10.768 
+		148.477,10.768 148.477,14.051 147.321,14.051 	"/>
+	<polygon fill="#FFFFFF" points="159.771,22.652 149.518,22.652 149.518,21.565 151.283,21.293 151.283,12.126 149.518,11.854 
+		149.518,10.768 159.771,10.768 159.771,13.915 158.617,13.915 158.345,12.217 154,12.217 154,15.749 156.715,15.749 
+		156.987,14.232 158.005,14.232 158.005,18.623 156.987,18.623 156.715,17.106 154,17.106 154,21.203 158.345,21.203 
+		158.617,19.505 159.771,19.505 159.771,22.652 	"/>
+	<path fill="#FFFFFF" d="M180.438,8.912v7.742c0,2.603-0.158,3.734-1.38,4.957c-0.884,0.883-2.332,1.313-4.482,1.313
+		c-2.128,0-3.713-0.589-4.709-1.584c-1.289-1.291-1.153-3.215-1.153-4.89V8.912l-1.835-0.271V7.486h6.521v1.155l-1.834,0.271v8.874
+		c0,2.49,1.38,3.486,3.508,3.486c1.133,0,2.061-0.226,2.671-0.884c0.543-0.565,0.839-1.447,0.839-2.602V8.912l-1.834-0.271V7.486
+		h5.522v1.155L180.438,8.912L180.438,8.912z"/>
+	<polygon fill="#FFFFFF" points="194.721,12.126 194.721,22.652 192.594,22.652 186.549,14.164 186.549,21.293 188.315,21.565 
+		188.315,22.652 182.995,22.652 182.995,21.565 184.762,21.293 184.762,12.126 182.995,11.854 182.995,10.768 187.139,10.768 
+		192.933,18.872 192.933,12.126 191.168,11.854 191.168,10.768 196.486,10.768 196.486,11.854 194.721,12.126 	"/>
+	<polygon fill="#FFFFFF" points="197.889,22.652 197.889,21.565 199.655,21.293 199.655,12.126 197.889,11.854 197.889,10.768 
+		204.136,10.768 204.136,11.854 202.371,12.126 202.371,21.293 204.136,21.565 204.136,22.652 197.889,22.652 	"/>
+	<polygon fill="#FFFFFF" points="217.402,12.126 213.441,22.652 210.814,22.652 206.854,12.126 205.156,11.854 205.156,10.768 
+		211.312,10.768 211.312,11.854 209.615,12.126 212.625,20.275 215.613,12.126 213.916,11.854 213.916,10.768 219.1,10.768 
+		219.1,11.854 217.402,12.126 	"/>
+	<polygon fill="#FFFFFF" points="230.282,22.652 220.027,22.652 220.027,21.565 221.792,21.293 221.792,12.126 220.027,11.854 
+		220.027,10.768 230.282,10.768 230.282,13.915 229.126,13.915 228.855,12.217 224.509,12.217 224.509,15.749 227.225,15.749 
+		227.496,14.232 228.517,14.232 228.517,18.623 227.496,18.623 227.225,17.106 224.509,17.106 224.509,21.203 228.855,21.203 
+		229.126,19.505 230.282,19.505 230.282,22.652 	"/>
+	<path fill="#FFFFFF" d="M239.426,12.579c-0.453-0.475-1.428-0.43-2.037-0.43h-0.792v3.803h0.475c0.77,0,1.834,0.091,2.4-0.543
+		c0.361-0.407,0.452-0.882,0.452-1.402C239.924,13.484,239.812,12.987,239.426,12.579L239.426,12.579z M240.693,22.652l-1.11-2.716
+		c-0.746-1.811-1.198-2.649-2.782-2.649h-0.204v4.006l1.698,0.272v1.087h-6.182v-1.087l1.766-0.272v-9.167l-1.766-0.272v-1.087h6
+		c1.223,0,2.647,0.068,3.576,0.929c0.611,0.566,0.951,1.335,0.951,2.218c0,1.381-0.907,2.625-2.151,3.011
+		c0.996,0.746,1.856,3.191,2.354,4.367l1.699,0.272v1.087H240.693L240.693,22.652z"/>
+	<path fill="#FFFFFF" d="M249.905,22.878c-2.217,0-4.074-0.746-4.074-0.746v-3.079h1.224L247.348,21c0,0,0.86,0.248,2.197,0.248
+		c1.448,0,2.557-0.475,2.557-1.765c0-0.905-0.498-1.222-1.244-1.471c-2.197-0.748-5.004-1.063-5.004-4.029
+		c0-2.128,1.472-3.418,4.392-3.418c1.337,0,2.717,0.272,3.917,0.702v2.942h-1.224l-0.293-1.856c0,0-0.996-0.226-2.105-0.226
+		s-2.083,0.385-2.083,1.539c0,2.648,6.271,0.883,6.271,5.591C254.728,21.565,253.053,22.878,249.905,22.878L249.905,22.878z"/>
+	<polygon fill="#FFFFFF" points="256.312,22.652 256.312,21.565 258.078,21.293 258.078,12.126 256.312,11.854 256.312,10.768 
+		262.561,10.768 262.561,11.854 260.794,12.126 260.794,21.293 262.561,21.565 262.561,22.652 256.312,22.652 	"/>
+	<polygon fill="#FFFFFF" points="273.516,14.051 273.243,12.217 270.617,12.217 270.617,21.293 272.384,21.565 272.384,22.652 
+		266.135,22.652 266.135,21.565 267.901,21.293 267.901,12.217 265.275,12.217 265.004,14.051 263.849,14.051 263.849,10.768 
+		274.67,10.768 274.67,14.051 273.516,14.051 	"/>
+	<polygon fill="#FFFFFF" points="287.164,12.126 283.701,17.492 283.701,21.293 285.467,21.565 285.467,22.652 279.22,22.652 
+		279.22,21.565 280.985,21.293 280.985,17.492 277.477,12.126 275.778,11.854 275.778,10.768 282.071,10.768 282.071,11.854 
+		280.374,12.126 282.818,15.975 285.24,12.126 283.61,11.854 283.61,10.768 288.862,10.768 288.862,11.854 287.164,12.126 	"/>
+	<polygon fill="#FFFFFF" points="0.25,30.93 0.25,31.79 289.75,31.79 289.75,30.93 0.25,30.93 0.25,30.93 	"/>
+</g>
+</svg>
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-h-rev.svg b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-h-rev.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a303329c2fee3268bb70579742dfb275330408ec
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-h-rev.svg
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="504px" height="72px" viewBox="0 0 504 72" style="enable-background:new 0 0 504 72;" xml:space="preserve">
+<style type="text/css">
+<![CDATA[
+	.st0{fill:#BB0000;}
+	.st1{fill:#FFFFFF;}
+]]>
+</style>
+<g>
+	<polygon class="st1" points="74.1,52.7 74.1,54 497,54 497,52.7 74.1,52.7 	"/>
+	<path class="st0" d="M16.7,20.4l4.7-4.7h15.3l4.7,4.7v31.4l-4.7,4.7H21.4l-4.7-4.7V20.4L16.7,20.4z M53.4,15.2L41.7,3.6H16.4
+		L4.7,15.3v41.5l11.7,11.7h25.2L53.4,57V15.2L53.4,15.2z"/>
+	<path class="st1" d="M3.2,57.5V14.4L15.9,1.7l26.5,0l12.5,12.5l0,43.4L42.3,70.2l-26.4,0L3.2,57.5L3.2,57.5z M15.4,0.5L2,13.9v44.2
+		l13.3,13.4h27.6l13.3-13.4V13.9L43,0.5H15.4L15.4,0.5z"/>
+	<path class="st1" d="M22.8,18.7h12.5l3,3v28.9l-2.9,2.9H22.7l-2.8-2.8v-29L22.8,18.7L22.8,18.7z M39.6,21.2l-3.7-3.7H22.3l-3.7,3.7
+		V51l3.6,3.6H36l3.6-3.6V21.2L39.6,21.2z"/>
+	<g>
+		<path class="st1" d="M90.9,23.6l-0.4-2.7h-5v17.8l2.7,0.4v1.7h-9.5V39l2.7-0.4V20.9h-5l-0.4,2.7h-1.8v-5.1h18.6v5.1H90.9z"/>
+		<path class="st1" d="M104.7,40.7v-1.6l2.5-0.4v-6.1h-6.6v6.1l2.5,0.4v1.6h-9v-1.6l2.6-0.4V25.3L94,24.9v-1.6h9v1.6l-2.5,0.4v5.2
+			h6.6v-5.2l-2.5-0.4v-1.6h9v1.6l-2.6,0.4v13.4l2.6,0.4v1.6H104.7z"/>
+		<path class="st1" d="M130.6,40.7h-15v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h15v4.6h-1.7l-0.4-2.5h-6.4v5.2h4l0.4-2.2h1.5v6.4h-1.5
+			l-0.4-2.2h-4v6h6.4l0.4-2.5h1.7V40.7z"/>
+		<path class="st1" d="M151.7,41.1c-6.9,0-9.9-4.1-9.9-11.5c0-7.4,3-11.4,9.9-11.4c6.9,0,9.9,4.1,9.9,11.5
+			C161.6,37.1,158.6,41.1,151.7,41.1z M151.7,20.6c-3.7,0-5.6,2.9-5.6,9c0,6.1,1.8,9.1,5.5,9.1c3.7,0,5.6-2.9,5.6-9
+			C157.2,23.5,155.4,20.6,151.7,20.6z"/>
+		<path class="st1" d="M174.1,40.7v-1.6l2.5-0.4v-6.1h-6.6v6.1l2.5,0.4v1.6h-9v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h9v1.6l-2.5,0.4v5.2
+			h6.6v-5.2l-2.5-0.4v-1.6h9v1.6l-2.6,0.4v13.4l2.6,0.4v1.6H174.1z"/>
+		<path class="st1" d="M185.3,40.7v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h9.1v1.6l-2.6,0.4v13.4l2.6,0.4v1.6H185.3z"/>
+		<path class="st1" d="M204.2,41c-5.9,0-8.4-3.3-8.4-9c0-5.8,2.6-9,8.4-9c5.9,0,8.4,3.3,8.4,9C212.6,37.8,210,41,204.2,41z
+			 M204.2,25.3c-2.8,0-4.3,2-4.3,6.7c0,4.7,1.4,6.7,4.2,6.7c2.8,0,4.3-2,4.3-6.7C208.4,27.4,207,25.3,204.2,25.3z"/>
+		<path class="st1" d="M230.7,41.1c-3.8,0-6.9-1.3-6.9-1.3V35h1.9l0.4,3c0,0,1.4,0.5,3.9,0.5c2.6,0,4.9-0.9,4.9-3.7
+			c0-2.5-1.8-2.9-4-3.6c-3.5-1.2-7.1-2.1-7.1-6.9c0-3.9,2.4-6.2,7.5-6.2c2.3,0,4.7,0.5,6.6,1.3v4.4H236l-0.4-2.8c0,0-2-0.4-3.9-0.4
+			c-1.9,0-3.9,0.7-3.9,3.2c0,5.5,11.1,1.9,11.1,10.7C238.9,38.7,236.2,41.1,230.7,41.1z"/>
+		<path class="st1" d="M254.6,28.1l-0.4-2.7h-3.8v13.3l2.6,0.4v1.6h-9.1v-1.6l2.6-0.4V25.5h-3.8l-0.4,2.7h-1.7v-4.8h15.8v4.8H254.6z
+			"/>
+		<path class="st1" d="M266.9,40.7v-1.6l2.5-0.4l-1.2-3.1h-6.6l-1.2,3.1l2.5,0.4v1.6h-7.6v-1.6l2.5-0.4l6-15.4h3.8l6,15.4l2.5,0.4
+			v1.6H266.9z M264.8,26.7l-2.5,6.9h5L264.8,26.7z"/>
+		<path class="st1" d="M288.9,28.1l-0.4-2.7h-3.8v13.3l2.6,0.4v1.6h-9.1v-1.6l2.6-0.4V25.5h-3.8l-0.4,2.7h-1.7v-4.8h15.8v4.8H288.9z
+			"/>
+		<path class="st1" d="M307.1,40.7h-15v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h15v4.6h-1.7l-0.4-2.5h-6.4v5.2h4l0.4-2.2h1.5v6.4H303
+			l-0.4-2.2h-4v6h6.4l0.4-2.5h1.7V40.7z"/>
+		<path class="st1" d="M337.3,20.6v11.3c0,3.8-0.2,5.5-2,7.2c-1.3,1.3-3.4,1.9-6.5,1.9c-3.1,0-5.4-0.9-6.9-2.3
+			c-1.9-1.9-1.7-4.7-1.7-7.1v-11l-2.7-0.4v-1.7h9.5v1.7l-2.7,0.4v13c0,3.6,2,5.1,5.1,5.1c1.7,0,3-0.3,3.9-1.3
+			c0.8-0.8,1.2-2.1,1.2-3.8v-13l-2.7-0.4v-1.7h8.1v1.7L337.3,20.6z"/>
+		<path class="st1" d="M358.2,25.3v15.4h-3.1l-8.8-12.4v10.4l2.6,0.4v1.6H341v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h6.1l8.5,11.8v-9.9
+			l-2.6-0.4v-1.6h7.8v1.6L358.2,25.3z"/>
+		<path class="st1" d="M362.8,40.7v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h9.1v1.6l-2.6,0.4v13.4l2.6,0.4v1.6H362.8z"/>
+		<path class="st1" d="M391.3,25.3l-5.8,15.4h-3.8l-5.8-15.4l-2.5-0.4v-1.6h9v1.6l-2.5,0.4l4.4,11.9l4.4-11.9l-2.5-0.4v-1.6h7.6v1.6
+			L391.3,25.3z"/>
+		<path class="st1" d="M410.1,40.7h-15v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h15v4.6h-1.7l-0.4-2.5h-6.4v5.2h4l0.4-2.2h1.5v6.4h-1.5
+			l-0.4-2.2h-4v6h6.4l0.4-2.5h1.7V40.7z"/>
+		<path class="st1" d="M425.3,40.7l-1.6-4c-1.1-2.6-1.8-3.9-4.1-3.9h-0.3v5.9l2.5,0.4v1.6h-9v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h8.8
+			c1.8,0,3.9,0.1,5.2,1.4c0.9,0.8,1.4,2,1.4,3.2c0,2-1.3,3.8-3.1,4.4c1.5,1.1,2.7,4.7,3.4,6.4l2.5,0.4v1.6H425.3z M423.5,26
+			c-0.7-0.7-2.1-0.6-3-0.6h-1.2v5.6h0.7c1.1,0,2.7,0.1,3.5-0.8c0.5-0.6,0.7-1.3,0.7-2.1C424.2,27.3,424.1,26.6,423.5,26z"/>
+		<path class="st1" d="M438.8,41c-3.2,0-6-1.1-6-1.1v-4.5h1.8l0.4,2.8c0,0,1.3,0.4,3.2,0.4c2.1,0,3.7-0.7,3.7-2.6
+			c0-1.3-0.7-1.8-1.8-2.2c-3.2-1.1-7.3-1.6-7.3-5.9c0-3.1,2.2-5,6.4-5c2,0,4,0.4,5.7,1v4.3h-1.8l-0.4-2.7c0,0-1.5-0.3-3.1-0.3
+			c-1.6,0-3,0.6-3,2.2c0,3.9,9.2,1.3,9.2,8.2C445.8,39.1,443.4,41,438.8,41z"/>
+		<path class="st1" d="M448.2,40.7v-1.6l2.6-0.4V25.3l-2.6-0.4v-1.6h9.1v1.6l-2.6,0.4v13.4l2.6,0.4v1.6H448.2z"/>
+		<path class="st1" d="M473.3,28.1l-0.4-2.7h-3.8v13.3l2.6,0.4v1.6h-9.1v-1.6l2.6-0.4V25.5h-3.8l-0.4,2.7h-1.7v-4.8H475v4.8H473.3z"
+			/>
+		<path class="st1" d="M493.2,25.3l-5.1,7.8v5.6l2.6,0.4v1.6h-9.1v-1.6l2.6-0.4v-5.6l-5.1-7.8l-2.5-0.4v-1.6h9.2v1.6l-2.5,0.4
+			l3.6,5.6l3.5-5.6l-2.4-0.4v-1.6h7.7v1.6L493.2,25.3z"/>
+	</g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+</svg>
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-dk-gray.png b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-dk-gray.png
new file mode 100644
index 0000000000000000000000000000000000000000..97e9aed0e12149b608608990436f2423a5befde9
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-dk-gray.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-dk-gray.svg b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-dk-gray.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c085faf8e6a05aaa2b3e0a4654cbdd100402dd1c
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-dk-gray.svg
@@ -0,0 +1,81 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="288px" height="216px" viewBox="143.78 36 288 216" enable-background="new 143.78 36 288 216" xml:space="preserve">
+<g>
+	<path fill="#BB0000" d="M274.167,79.29l5.183-5.184h16.795l5.182,5.184v34.538l-5.182,5.182h-16.795l-5.183-5.182V79.29
+		L274.167,79.29z M314.412,73.652l-12.811-12.776h-27.736l-12.877,12.885v45.609l12.876,12.884h27.737l12.811-12.742V73.652
+		L314.412,73.652z"/>
+	<path fill="#FFFFFF" d="M259.306,120.112V72.745l13.944-13.929l29.148-0.003l14,13.932l-0.246,47.467l-13.854,13.853l-29.048-0.001
+		L259.306,120.112L259.306,120.112z M272.661,57.488L257.99,72.154v48.56l14.569,14.753h30.345l14.566-14.667l0.1-48.646
+		l-14.566-14.666L272.661,57.488L272.661,57.488z"/>
+	<path fill="#FFFFFF" d="M280.868,77.427h13.775l3.285,3.285v31.761l-3.162,3.164h-14.023l-3.115-3.116V80.668L280.868,77.427
+		L280.868,77.427z M299.256,80.216l-4.115-4.115h-14.847l-4.058,4.059v32.834l3.97,3.969h15.115l3.938-3.937v-32.81H299.256z"/>
+	<g>
+		<path fill="#FFFFFF" d="M178.116,161.03l-0.437-3.021h-5.527v19.533l2.944,0.437v1.854h-10.475v-1.854l2.945-0.437v-19.532h-5.528
+			l-0.437,3.021h-1.966v-5.566h20.444v5.566L178.116,161.03L178.116,161.03z"/>
+		<path fill="#FFFFFF" d="M193.285,179.835v-1.746l2.728-0.438v-6.656h-7.274v6.656l2.728,0.438v1.746h-9.93v-1.746l2.837-0.438
+			v-14.73l-2.837-0.438v-1.746h9.93v1.746l-2.728,0.438v5.746h7.274v-5.746l-2.728-0.438v-1.746h9.93v1.746l-2.836,0.438v14.73
+			l2.836,0.438v1.746H193.285z"/>
+		<path fill="#FFFFFF" d="M221.801,179.835h-16.478v-1.746l2.837-0.438v-14.73l-2.837-0.438v-1.746h16.478v5.057h-1.854
+			l-0.438-2.727h-6.982v5.674h4.363l0.438-2.438h1.636v7.058h-1.636l-0.438-2.438h-4.363v6.584h6.982l0.438-2.729h1.854V179.835z"/>
+		<path fill="#FFFFFF" d="M244.97,180.272c-7.565,0-10.875-4.513-10.875-12.695c0-8.148,3.346-12.551,10.913-12.551
+			c7.565,0,10.876,4.512,10.876,12.694C255.884,175.87,252.538,180.272,244.97,180.272z M245.008,157.683
+			c-4.038,0-6.11,3.238-6.11,9.93c0,6.73,2,10.005,6.037,10.005c4.039,0,6.111-3.238,6.111-9.931
+			C251.045,160.956,249.045,157.683,245.008,157.683z"/>
+		<path fill="#FFFFFF" d="M269.596,179.835v-1.746l2.728-0.438v-6.656h-7.273v6.656l2.729,0.438v1.746h-9.932v-1.746l2.837-0.438
+			v-14.73l-2.837-0.438v-1.746h9.932v1.746l-2.729,0.438v5.746h7.273v-5.746l-2.728-0.438v-1.746h9.931v1.746l-2.837,0.438v14.73
+			l2.837,0.438v1.746H269.596z"/>
+		<path fill="#FFFFFF" d="M281.89,179.835v-1.746l2.837-0.438v-14.73l-2.837-0.438v-1.746h10.04v1.746l-2.838,0.438v14.73
+			l2.838,0.438v1.746H281.89z"/>
+		<path fill="#FFFFFF" d="M302.697,180.198c-6.439,0-9.24-3.603-9.24-9.93c0-6.328,2.836-9.857,9.275-9.857
+			c6.438,0,9.238,3.602,9.238,9.93C311.971,176.671,309.135,180.198,302.697,180.198z M302.732,162.921
+			c-3.057,0-4.691,2.219-4.691,7.348c0,5.164,1.562,7.42,4.619,7.42c3.055,0,4.729-2.219,4.729-7.348
+			C307.389,165.177,305.787,162.921,302.732,162.921z"/>
+		<path fill="#FFFFFF" d="M331.867,180.272c-4.219,0-7.602-1.455-7.602-1.455v-5.201h2.072l0.473,3.346c0,0,1.564,0.545,4.33,0.545
+			c2.836,0,5.383-0.945,5.383-4.037c0-2.801-1.965-3.201-4.365-4.002c-3.818-1.273-7.857-2.363-7.857-7.602
+			c0-4.256,2.656-6.84,8.223-6.84c2.547,0,5.199,0.584,7.273,1.383v4.875h-2.074l-0.471-3.129c0,0-2.184-0.473-4.295-0.473
+			c-2.109,0-4.291,0.729-4.291,3.528c0,6.074,12.223,2.072,12.223,11.785C340.889,177.581,337.906,180.272,331.867,180.272z"/>
+		<path fill="#FFFFFF" d="M358.129,166.013l-0.436-2.945h-4.221v14.584l2.838,0.438v1.746h-10.039v-1.746l2.838-0.438v-14.584
+			h-4.221l-0.436,2.945h-1.857v-5.275h17.389v5.275H358.129z"/>
+		<path fill="#FFFFFF" d="M371.66,179.835v-1.746l2.727-0.438l-1.344-3.453h-7.275l-1.348,3.453l2.73,0.438v1.746h-8.33v-1.746
+			l2.729-0.438l6.547-16.914h4.184l6.547,16.914l2.729,0.438v1.746H371.66z M369.402,164.413l-2.764,7.566h5.529L369.402,164.413z"
+			/>
+		<path fill="#FFFFFF" d="M395.918,166.013l-0.438-2.945h-4.219v14.584l2.838,0.438v1.746h-10.041v-1.746l2.838-0.438v-14.584
+			h-4.221l-0.436,2.945h-1.855v-5.275h17.389v5.275H395.918z"/>
+		<path fill="#FFFFFF" d="M415.924,179.835h-16.479v-1.746l2.838-0.438v-14.73l-2.838-0.438v-1.746h16.479v5.057h-1.854
+			l-0.439-2.727h-6.98v5.674h4.361l0.439-2.438h1.637v7.058h-1.637l-0.439-2.438h-4.361v6.584h6.98l0.439-2.729h1.854V179.835z"/>
+	</g>
+	<g>
+		<path fill="#FFFFFF" d="M211.56,193.778v12.44c0,4.183-0.255,6.002-2.219,7.966c-1.419,1.42-3.747,2.108-7.202,2.108
+			c-3.42,0-5.966-0.944-7.566-2.545c-2.072-2.074-1.854-5.166-1.854-7.856v-12.113l-2.946-0.437v-1.854h10.476v1.854l-2.947,0.437
+			v14.26c0,4.002,2.22,5.602,5.639,5.602c1.82,0,3.312-0.363,4.293-1.418c0.873-0.91,1.346-2.328,1.346-4.184v-14.26l-2.946-0.437
+			v-1.854h8.875v1.854L211.56,193.778z"/>
+		<path fill="#FFFFFF" d="M234.511,198.944v16.914h-3.419l-9.713-13.642v11.457l2.838,0.438v1.746h-8.548v-1.746l2.837-0.438
+			v-14.729l-2.837-0.438v-1.746h6.657l9.312,13.023v-10.841l-2.836-0.438v-1.746h8.547v1.746L234.511,198.944z"/>
+		<path fill="#FFFFFF" d="M239.603,215.858v-1.746l2.839-0.438v-14.729l-2.839-0.438v-1.746h10.039v1.746l-2.837,0.438v14.729
+			l2.837,0.438v1.746H239.603z"/>
+		<path fill="#FFFFFF" d="M270.958,198.944l-6.366,16.914h-4.22l-6.367-16.914l-2.726-0.438v-1.746h9.892v1.746l-2.728,0.438
+			l4.839,13.096l4.8-13.096l-2.727-0.438v-1.746h8.329v1.746L270.958,198.944z"/>
+		<path fill="#FFFFFF" d="M291.656,215.858h-16.479v-1.746l2.836-0.438v-14.729l-2.836-0.438v-1.746h16.479v5.058h-1.857
+			l-0.436-2.729h-6.985v5.677h4.365l0.438-2.438h1.637v7.057h-1.637l-0.438-2.438h-4.365v6.584h6.985l0.436-2.729h1.857V215.858z"/>
+		<path fill="#FFFFFF" d="M308.387,215.858l-1.783-4.365c-1.201-2.91-1.928-4.256-4.473-4.256h-0.328v6.438l2.729,0.438v1.746H294.6
+			v-1.746l2.836-0.438v-14.73l-2.836-0.438v-1.746h9.641c1.963,0,4.254,0.109,5.746,1.492c0.98,0.91,1.527,2.146,1.527,3.564
+			c0,2.219-1.455,4.219-3.455,4.838c1.6,1.199,2.982,5.129,3.783,7.02l2.729,0.438v1.746H308.387L308.387,215.858z M306.35,199.671
+			c-0.729-0.764-2.293-0.691-3.273-0.691h-1.273v6.111h0.766c1.234,0,2.945,0.146,3.854-0.873c0.582-0.654,0.729-1.418,0.729-2.254
+			C307.148,201.126,306.969,200.327,306.35,199.671z"/>
+		<path fill="#FFFFFF" d="M323.189,216.222c-3.564,0-6.547-1.199-6.547-1.199v-4.946h1.965l0.471,3.127c0,0,1.383,0.401,3.531,0.401
+			c2.328,0,4.107-0.766,4.107-2.84c0-1.453-0.799-1.963-2-2.363c-3.527-1.2-8.039-1.709-8.039-6.475c0-3.42,2.365-5.494,7.057-5.494
+			c2.146,0,4.365,0.438,6.295,1.129v4.729h-1.965l-0.473-2.981c0,0-1.602-0.363-3.383-0.363c-1.783,0-3.348,0.617-3.348,2.473
+			c0,4.258,10.076,1.42,10.076,8.984C330.938,214.112,328.246,216.222,323.189,216.222z"/>
+		<path fill="#FFFFFF" d="M333.484,215.858v-1.746l2.836-0.438v-14.729l-2.836-0.438v-1.746h10.039v1.746l-2.838,0.438v14.729
+			l2.838,0.438v1.746H333.484z"/>
+		<path fill="#FFFFFF" d="M361.129,202.036l-0.438-2.947h-4.219v14.586l2.838,0.438v1.746H349.27v-1.746l2.838-0.438v-14.586h-4.223
+			l-0.434,2.947h-1.855v-5.275h17.389v5.275H361.129z"/>
+		<path fill="#FFFFFF" d="M383.062,198.944l-5.566,8.621v6.108l2.838,0.438v1.746h-10.039v-1.746l2.838-0.438v-6.108l-5.641-8.621
+			l-2.729-0.438v-1.746h10.113v1.746l-2.729,0.438l3.928,6.184l3.893-6.184l-2.619-0.438v-1.746h8.439v1.746L383.062,198.944z"/>
+	</g>
+	<polygon fill="#FFFFFF" points="188.319,229.142 188.319,230.513 387.242,230.513 387.242,229.142 	"/>
+</g>
+</svg>
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-lt-gray.png b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-lt-gray.png
new file mode 100644
index 0000000000000000000000000000000000000000..17f05addd5893098e52bc2849c4837850727b33f
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-lt-gray.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-lt-gray.svg b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-lt-gray.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ffae0319ce13347c99069e03c53b9d1b51249575
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-lt-gray.svg
@@ -0,0 +1,81 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="288px" height="216px" viewBox="0 0 288 216" enable-background="new 0 0 288 216" xml:space="preserve">
+<g>
+	<path fill="#BB0000" d="M130.388,43.289l5.183-5.184h16.795l5.183,5.184v34.538l-5.183,5.182H135.57l-5.183-5.182V43.289
+		L130.388,43.289z M170.633,37.651l-12.811-12.776h-27.736L117.209,37.76v45.609l12.876,12.884h27.737l12.811-12.742V37.651
+		L170.633,37.651z"/>
+	<path d="M115.527,84.11V36.744l13.943-13.929l29.148-0.003l14,13.932l-0.246,47.467l-13.854,13.853h-29.048L115.527,84.11
+		L115.527,84.11z M128.882,21.487l-14.671,14.666v48.56l14.568,14.753h30.346l14.565-14.667l0.101-48.646l-14.566-14.666H128.882
+		L128.882,21.487z"/>
+	<path d="M137.089,41.426h13.774l3.285,3.285v31.761l-3.162,3.164h-14.022l-3.115-3.115V44.667L137.089,41.426L137.089,41.426z
+		 M155.477,44.215l-4.115-4.114h-14.847l-4.058,4.059v32.834l3.97,3.969h15.114l3.938-3.938v-32.81H155.477z"/>
+	<g>
+		<g>
+			<path d="M34.337,125.029l-0.437-3.021h-5.527v19.533l2.943,0.437v1.854H20.842v-1.854l2.945-0.437v-19.532h-5.528l-0.437,3.021
+				h-1.967v-5.566H36.3v5.566L34.337,125.029L34.337,125.029z"/>
+			<path d="M49.506,143.834v-1.746l2.729-0.438v-6.655H44.96v6.655l2.728,0.438v1.746h-9.93v-1.746l2.837-0.438V126.92l-2.837-0.438
+				v-1.746h9.93v1.746l-2.729,0.438v5.746h7.275v-5.746l-2.729-0.438v-1.746h9.93v1.746L56.6,126.92v14.729l2.836,0.438v1.746
+				H49.506z"/>
+			<path d="M78.021,143.834H61.544v-1.746l2.837-0.438V126.92l-2.837-0.438v-1.746h16.478v5.058h-1.854l-0.438-2.728h-6.981v5.675
+				h4.363l0.438-2.438h1.636v7.059h-1.636l-0.438-2.438h-4.363v6.584h6.981l0.438-2.729h1.854V143.834z"/>
+			<path d="M101.19,144.271c-7.564,0-10.875-4.513-10.875-12.694c0-8.147,3.347-12.552,10.913-12.552
+				c7.565,0,10.876,4.513,10.876,12.694C112.104,139.869,108.759,144.271,101.19,144.271z M101.229,121.683
+				c-4.038,0-6.109,3.237-6.109,9.93c0,6.729,2,10.005,6.037,10.005c4.039,0,6.11-3.238,6.11-9.931
+				C107.266,124.955,105.266,121.683,101.229,121.683z"/>
+			<path d="M125.816,143.834v-1.746l2.729-0.438v-6.655h-7.273v6.655l2.729,0.438v1.746h-9.933v-1.746l2.838-0.438V126.92
+				l-2.838-0.438v-1.746h9.933v1.746l-2.729,0.438v5.746h7.273v-5.746l-2.729-0.438v-1.746h9.932v1.746l-2.838,0.438v14.729
+				l2.838,0.438v1.746H125.816z"/>
+			<path d="M138.111,143.834v-1.746l2.836-0.438V126.92l-2.836-0.438v-1.746h10.039v1.746l-2.838,0.438v14.729l2.838,0.438v1.746
+				H138.111z"/>
+			<path d="M158.918,144.197c-6.439,0-9.24-3.604-9.24-9.931c0-6.328,2.836-9.856,9.275-9.856c6.438,0,9.237,3.603,9.237,9.93
+				C168.191,140.67,165.355,144.197,158.918,144.197z M158.953,126.92c-3.058,0-4.691,2.22-4.691,7.349
+				c0,5.164,1.562,7.42,4.619,7.42c3.055,0,4.729-2.219,4.729-7.349C163.609,129.176,162.008,126.92,158.953,126.92z"/>
+			<path d="M188.088,144.271c-4.219,0-7.603-1.455-7.603-1.455v-5.2h2.072l0.473,3.346c0,0,1.564,0.545,4.33,0.545
+				c2.836,0,5.384-0.944,5.384-4.037c0-2.801-1.966-3.2-4.365-4.002c-3.818-1.272-7.857-2.362-7.857-7.602
+				c0-4.257,2.656-6.841,8.224-6.841c2.547,0,5.198,0.584,7.272,1.384v4.875h-2.074l-0.471-3.13c0,0-2.184-0.473-4.295-0.473
+				c-2.109,0-4.291,0.729-4.291,3.528c0,6.074,12.223,2.072,12.223,11.785C197.109,141.58,194.127,144.271,188.088,144.271z"/>
+			<path d="M214.35,130.013l-0.436-2.945h-4.222v14.584l2.838,0.438v1.746h-10.038v-1.746l2.838-0.438v-14.584h-4.222l-0.436,2.945
+				h-1.857v-5.275h17.39v5.275H214.35z"/>
+			<path d="M227.881,143.834v-1.746l2.727-0.438l-1.344-3.452h-7.275l-1.348,3.452l2.73,0.438v1.746h-8.33v-1.746l2.729-0.438
+				l6.547-16.914h4.185l6.547,16.914l2.729,0.438v1.746H227.881z M225.623,128.412l-2.765,7.565h5.529L225.623,128.412z"/>
+			<path d="M252.139,130.013l-0.438-2.945h-4.22v14.584l2.838,0.438v1.746h-10.041v-1.746l2.839-0.438v-14.584h-4.222l-0.436,2.945
+				h-1.855v-5.275h17.39v5.275H252.139z"/>
+			<path d="M272.145,143.834h-16.479v-1.746l2.838-0.438V126.92l-2.838-0.438v-1.746h16.479v5.058h-1.854l-0.439-2.728h-6.979v5.675
+				h4.36l0.439-2.438h1.637v7.059h-1.637l-0.439-2.438h-4.36v6.584h6.979l0.439-2.729h1.854V143.834z"/>
+		</g>
+		<g>
+			<path d="M67.781,157.776v12.44c0,4.183-0.256,6.002-2.22,7.966c-1.419,1.42-3.747,2.108-7.202,2.108
+				c-3.42,0-5.966-0.944-7.565-2.545c-2.072-2.074-1.854-5.166-1.854-7.856v-12.113l-2.945-0.437v-1.854H56.47v1.854l-2.947,0.437
+				v14.261c0,4.002,2.22,5.603,5.64,5.603c1.82,0,3.312-0.363,4.293-1.418c0.873-0.91,1.346-2.328,1.346-4.185v-14.261l-2.946-0.437
+				v-1.854h8.875v1.854L67.781,157.776z"/>
+			<path d="M90.731,162.942v16.914h-3.419L77.6,166.215v11.457l2.838,0.438v1.746H71.89v-1.746l2.837-0.438v-14.729l-2.837-0.438
+				v-1.746h6.657l9.312,13.023V162.94l-2.837-0.438v-1.746h8.548v1.746L90.731,162.942z"/>
+			<path d="M95.824,179.856v-1.746l2.838-0.438v-14.729l-2.838-0.438v-1.746h10.039v1.746l-2.838,0.438v14.729l2.838,0.438v1.746
+				H95.824z"/>
+			<path d="M127.179,162.942l-6.366,16.914h-4.22l-6.367-16.914l-2.726-0.438v-1.746h9.892v1.746l-2.728,0.438l4.839,13.097
+				l4.8-13.097l-2.727-0.438v-1.746h8.328v1.746L127.179,162.942z"/>
+			<path d="M147.877,179.856h-16.479v-1.746l2.837-0.438v-14.729l-2.837-0.438v-1.746h16.479v5.058h-1.857l-0.436-2.729h-6.985
+				v5.678h4.365l0.438-2.438h1.637v7.057h-1.637l-0.438-2.438h-4.365v6.584h6.985l0.436-2.729h1.857V179.856z"/>
+			<path d="M164.607,179.856l-1.783-4.364c-1.201-2.91-1.928-4.257-4.473-4.257h-0.328v6.438l2.729,0.438v1.746h-9.933v-1.746
+				l2.836-0.438v-14.729l-2.836-0.438v-1.746h9.642c1.963,0,4.254,0.109,5.746,1.492c0.979,0.91,1.526,2.146,1.526,3.563
+				c0,2.22-1.455,4.22-3.455,4.839c1.601,1.198,2.982,5.129,3.783,7.02l2.729,0.438v1.746h-6.185V179.856z M162.57,163.67
+				c-0.729-0.764-2.293-0.69-3.272-0.69h-1.273v6.11h0.767c1.233,0,2.945,0.146,3.854-0.873c0.582-0.653,0.729-1.418,0.729-2.254
+				C163.369,165.125,163.189,164.326,162.57,163.67z"/>
+			<path d="M179.41,180.222c-3.564,0-6.548-1.199-6.548-1.199v-4.946h1.966l0.471,3.127c0,0,1.383,0.401,3.531,0.401
+				c2.328,0,4.106-0.767,4.106-2.84c0-1.453-0.799-1.964-2-2.363c-3.526-1.2-8.039-1.709-8.039-6.476
+				c0-3.42,2.365-5.493,7.058-5.493c2.146,0,4.364,0.438,6.295,1.129v4.729h-1.965l-0.474-2.98c0,0-1.602-0.363-3.383-0.363
+				c-1.783,0-3.348,0.617-3.348,2.473c0,4.258,10.075,1.42,10.075,8.984C187.158,178.11,184.467,180.222,179.41,180.222z"/>
+			<path d="M189.705,179.856v-1.746l2.836-0.438v-14.729l-2.836-0.438v-1.746h10.039v1.746l-2.839,0.438v14.729l2.839,0.438v1.746
+				H189.705z"/>
+			<path d="M217.35,166.035l-0.438-2.947h-4.22v14.586l2.839,0.438v1.746H205.49v-1.746l2.839-0.438v-14.586h-4.224l-0.434,2.947
+				h-1.855v-5.275h17.39v5.275H217.35z"/>
+			<path d="M239.283,162.942l-5.566,8.621v6.108l2.838,0.438v1.746h-10.039v-1.746l2.838-0.438v-6.108l-5.641-8.621l-2.729-0.438
+				v-1.746h10.113v1.746l-2.729,0.438l3.928,6.185l3.893-6.185l-2.619-0.438v-1.746h8.439v1.746L239.283,162.942z"/>
+		</g>
+		<polygon points="44.539,193.142 44.539,194.513 243.463,194.513 243.463,193.142 		"/>
+	</g>
+</g>
+</svg>
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-white.png b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-white.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9ff747cf03610ce0f562ca8e65951a9b30a7471
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-white.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-white.svg b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-white.svg
new file mode 100644
index 0000000000000000000000000000000000000000..84a0770d1c364d5125ab53240072ce5857603ecf
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu-stacked-white.svg
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="288px" height="216px" viewBox="143.78 36 288 216" enable-background="new 143.78 36 288 216" xml:space="preserve">
+<g>
+	<path fill="#BB0000" d="M274.167,79.29l5.183-5.184h16.795l5.182,5.184v34.538l-5.182,5.182h-16.795l-5.183-5.182V79.29
+		L274.167,79.29z M314.412,73.652l-12.811-12.776h-27.736l-12.877,12.885v45.609l12.876,12.884h27.737l12.811-12.742V73.652
+		L314.412,73.652z"/>
+	<path fill="#666666" d="M259.306,120.112V72.745l13.944-13.929l29.148-0.003l14,13.932l-0.246,47.467l-13.854,13.853l-29.048-0.001
+		L259.306,120.112L259.306,120.112z M272.661,57.488L257.99,72.154v48.56l14.569,14.753h30.345l14.566-14.667l0.1-48.646
+		l-14.566-14.666L272.661,57.488L272.661,57.488z"/>
+	<path fill="#666666" d="M280.868,77.427h13.775l3.285,3.285v31.761l-3.162,3.164h-14.023l-3.115-3.116V80.668L280.868,77.427
+		L280.868,77.427z M299.256,80.216l-4.115-4.115h-14.847l-4.058,4.059v32.834l3.97,3.969h15.115l3.938-3.937v-32.81H299.256z"/>
+	<g>
+		<g>
+			<path fill="#666666" d="M178.116,161.03l-0.437-3.021h-5.527v19.533l2.944,0.437v1.854h-10.475v-1.854l2.945-0.437v-19.532
+				h-5.528l-0.437,3.021h-1.966v-5.566h20.444v5.566L178.116,161.03L178.116,161.03z"/>
+			<path fill="#666666" d="M193.285,179.835v-1.746l2.728-0.438v-6.656h-7.274v6.656l2.728,0.438v1.746h-9.93v-1.746l2.837-0.438
+				v-14.73l-2.837-0.438v-1.746h9.93v1.746l-2.728,0.438v5.746h7.274v-5.746l-2.728-0.438v-1.746h9.93v1.746l-2.836,0.438v14.73
+				l2.836,0.438v1.746H193.285z"/>
+			<path fill="#666666" d="M221.801,179.835h-16.478v-1.746l2.837-0.438v-14.73l-2.837-0.438v-1.746h16.478v5.057h-1.854
+				l-0.438-2.727h-6.982v5.674h4.363l0.438-2.438h1.636v7.058h-1.636l-0.438-2.438h-4.363v6.584h6.982l0.438-2.729h1.854V179.835z"
+				/>
+			<path fill="#666666" d="M244.97,180.272c-7.565,0-10.875-4.513-10.875-12.695c0-8.148,3.346-12.551,10.913-12.551
+				c7.565,0,10.876,4.512,10.876,12.694C255.884,175.87,252.538,180.272,244.97,180.272z M245.008,157.683
+				c-4.038,0-6.11,3.238-6.11,9.93c0,6.73,2,10.005,6.037,10.005c4.039,0,6.111-3.238,6.111-9.931
+				C251.045,160.956,249.045,157.683,245.008,157.683z"/>
+			<path fill="#666666" d="M269.596,179.835v-1.746l2.728-0.438v-6.656h-7.273v6.656l2.729,0.438v1.746h-9.932v-1.746l2.837-0.438
+				v-14.73l-2.837-0.438v-1.746h9.932v1.746l-2.729,0.438v5.746h7.273v-5.746l-2.728-0.438v-1.746h9.931v1.746l-2.837,0.438v14.73
+				l2.837,0.438v1.746H269.596z"/>
+			<path fill="#666666" d="M281.89,179.835v-1.746l2.837-0.438v-14.73l-2.837-0.438v-1.746h10.04v1.746l-2.838,0.438v14.73
+				l2.838,0.438v1.746H281.89z"/>
+			<path fill="#666666" d="M302.697,180.198c-6.439,0-9.24-3.603-9.24-9.93c0-6.328,2.836-9.857,9.275-9.857
+				c6.438,0,9.238,3.602,9.238,9.93C311.971,176.671,309.135,180.198,302.697,180.198z M302.732,162.921
+				c-3.057,0-4.691,2.219-4.691,7.348c0,5.164,1.562,7.42,4.619,7.42c3.055,0,4.729-2.219,4.729-7.348
+				C307.389,165.177,305.787,162.921,302.732,162.921z"/>
+			<path fill="#666666" d="M331.867,180.272c-4.219,0-7.602-1.455-7.602-1.455v-5.201h2.072l0.473,3.346c0,0,1.564,0.545,4.33,0.545
+				c2.836,0,5.383-0.945,5.383-4.037c0-2.801-1.965-3.201-4.365-4.002c-3.818-1.273-7.857-2.363-7.857-7.602
+				c0-4.256,2.656-6.84,8.223-6.84c2.547,0,5.199,0.584,7.273,1.383v4.875h-2.074l-0.471-3.129c0,0-2.184-0.473-4.295-0.473
+				c-2.109,0-4.291,0.729-4.291,3.528c0,6.074,12.223,2.072,12.223,11.785C340.889,177.581,337.906,180.272,331.867,180.272z"/>
+			<path fill="#666666" d="M358.129,166.013l-0.436-2.945h-4.221v14.584l2.838,0.438v1.746h-10.039v-1.746l2.838-0.438v-14.584
+				h-4.221l-0.436,2.945h-1.857v-5.275h17.389v5.275H358.129z"/>
+			<path fill="#666666" d="M371.66,179.835v-1.746l2.727-0.438l-1.344-3.453h-7.275l-1.348,3.453l2.73,0.438v1.746h-8.33v-1.746
+				l2.729-0.438l6.547-16.914h4.184l6.547,16.914l2.729,0.438v1.746H371.66z M369.402,164.413l-2.764,7.566h5.529L369.402,164.413z"
+				/>
+			<path fill="#666666" d="M395.918,166.013l-0.438-2.945h-4.219v14.584l2.838,0.438v1.746h-10.041v-1.746l2.838-0.438v-14.584
+				h-4.221l-0.436,2.945h-1.855v-5.275h17.389v5.275H395.918z"/>
+			<path fill="#666666" d="M415.924,179.835h-16.479v-1.746l2.838-0.438v-14.73l-2.838-0.438v-1.746h16.479v5.057h-1.854
+				l-0.439-2.727h-6.98v5.674h4.361l0.439-2.438h1.637v7.058h-1.637l-0.439-2.438h-4.361v6.584h6.98l0.439-2.729h1.854V179.835z"/>
+		</g>
+		<g>
+			<path fill="#666666" d="M211.56,193.778v12.44c0,4.183-0.255,6.002-2.219,7.966c-1.419,1.42-3.747,2.108-7.202,2.108
+				c-3.42,0-5.966-0.944-7.566-2.545c-2.072-2.074-1.854-5.166-1.854-7.856v-12.113l-2.946-0.437v-1.854h10.476v1.854l-2.947,0.437
+				v14.26c0,4.002,2.22,5.602,5.639,5.602c1.82,0,3.312-0.363,4.293-1.418c0.873-0.91,1.346-2.328,1.346-4.184v-14.26l-2.946-0.437
+				v-1.854h8.875v1.854L211.56,193.778z"/>
+			<path fill="#666666" d="M234.511,198.944v16.914h-3.419l-9.713-13.642v11.457l2.838,0.438v1.746h-8.548v-1.746l2.837-0.438
+				v-14.729l-2.837-0.438v-1.746h6.657l9.312,13.023v-10.841l-2.836-0.438v-1.746h8.547v1.746L234.511,198.944z"/>
+			<path fill="#666666" d="M239.603,215.858v-1.746l2.839-0.438v-14.729l-2.839-0.438v-1.746h10.039v1.746l-2.837,0.438v14.729
+				l2.837,0.438v1.746H239.603z"/>
+			<path fill="#666666" d="M270.958,198.944l-6.366,16.914h-4.22l-6.367-16.914l-2.726-0.438v-1.746h9.892v1.746l-2.728,0.438
+				l4.839,13.096l4.8-13.096l-2.727-0.438v-1.746h8.329v1.746L270.958,198.944z"/>
+			<path fill="#666666" d="M291.656,215.858h-16.479v-1.746l2.836-0.438v-14.729l-2.836-0.438v-1.746h16.479v5.058h-1.857
+				l-0.436-2.729h-6.985v5.677h4.365l0.438-2.438h1.637v7.057h-1.637l-0.438-2.438h-4.365v6.584h6.985l0.436-2.729h1.857V215.858z"
+				/>
+			<path fill="#666666" d="M308.387,215.858l-1.783-4.365c-1.201-2.91-1.928-4.256-4.473-4.256h-0.328v6.438l2.729,0.438v1.746
+				H294.6v-1.746l2.836-0.438v-14.73l-2.836-0.438v-1.746h9.641c1.963,0,4.254,0.109,5.746,1.492c0.98,0.91,1.527,2.146,1.527,3.564
+				c0,2.219-1.455,4.219-3.455,4.838c1.6,1.199,2.982,5.129,3.783,7.02l2.729,0.438v1.746H308.387L308.387,215.858z M306.35,199.671
+				c-0.729-0.764-2.293-0.691-3.273-0.691h-1.273v6.111h0.766c1.234,0,2.945,0.146,3.854-0.873c0.582-0.654,0.729-1.418,0.729-2.254
+				C307.148,201.126,306.969,200.327,306.35,199.671z"/>
+			<path fill="#666666" d="M323.189,216.222c-3.564,0-6.547-1.199-6.547-1.199v-4.946h1.965l0.471,3.127
+				c0,0,1.383,0.401,3.531,0.401c2.328,0,4.107-0.766,4.107-2.84c0-1.453-0.799-1.963-2-2.363c-3.527-1.2-8.039-1.709-8.039-6.475
+				c0-3.42,2.365-5.494,7.057-5.494c2.146,0,4.365,0.438,6.295,1.129v4.729h-1.965l-0.473-2.981c0,0-1.602-0.363-3.383-0.363
+				c-1.783,0-3.348,0.617-3.348,2.473c0,4.258,10.076,1.42,10.076,8.984C330.938,214.112,328.246,216.222,323.189,216.222z"/>
+			<path fill="#666666" d="M333.484,215.858v-1.746l2.836-0.438v-14.729l-2.836-0.438v-1.746h10.039v1.746l-2.838,0.438v14.729
+				l2.838,0.438v1.746H333.484z"/>
+			<path fill="#666666" d="M361.129,202.036l-0.438-2.947h-4.219v14.586l2.838,0.438v1.746H349.27v-1.746l2.838-0.438v-14.586
+				h-4.223l-0.434,2.947h-1.855v-5.275h17.389v5.275H361.129z"/>
+			<path fill="#666666" d="M383.062,198.944l-5.566,8.621v6.108l2.838,0.438v1.746h-10.039v-1.746l2.838-0.438v-6.108l-5.641-8.621
+				l-2.729-0.438v-1.746h10.113v1.746l-2.729,0.438l3.928,6.184l3.893-6.184l-2.619-0.438v-1.746h8.439v1.746L383.062,198.944z"/>
+		</g>
+		<polygon fill="#666666" points="188.319,229.142 188.319,230.513 387.242,230.513 387.242,229.142 		"/>
+	</g>
+</g>
+</svg>
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu_logo_print.png b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu_logo_print.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7bd10c4109d69e700e00eee5d86de2ffc003e51
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-logos/osu_logo_print.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/apple-touch-icon.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/apple-touch-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..d31a3ccbb0223aaf03ac7f0f111af09a648d6756
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/apple-touch-icon.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/button-search.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/button-search.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e46fb2052ca95e467cdb16d7b56de7bbd5b7ff1
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/button-search.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/bg-navbar_red.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/bg-navbar_red.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7b44fafb164b4edf66e9863042d9c4e1d35aafe
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/bg-navbar_red.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/osu_name.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/osu_name.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7f70fc3edcb40536c491a7a1053a73590cb8022
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/osu_name.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/osu_name@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/osu_name@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..8174dc7a1c06ac5ebcdfc3b6f8400cce083653f1
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/osu_name@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink-network.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink-network.png
new file mode 100644
index 0000000000000000000000000000000000000000..2af63924e5e2b9e748a0cea11572e4abc5efafb1
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink-network.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink-network@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink-network@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..68ee1999b7289cb2d37c53d1e35e1bf03e79d6b3
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink-network@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink.png
new file mode 100644
index 0000000000000000000000000000000000000000..209e8153acb7e14c25ff6bb3704ddb7831bc4fda
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b23534f9ab10eac3846ca1a9196e6849316ea06
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-buckeyelink@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-findpeople.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-findpeople.png
new file mode 100644
index 0000000000000000000000000000000000000000..ebb310085ead98fa436d2a7dfeb8dc18eb05d58f
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-findpeople.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-findpeople@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-findpeople@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ac775d3f6be8c0c0c200ab11547445b30a36142
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-findpeople@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-help.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-help.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b354d6b0d1d75daddb86eca6075a902f9b9c2ec
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-help.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-help@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-help@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8d9cbf1e6800c4b817965f92cbb209eac4d3b47
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-help@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-map.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-map.png
new file mode 100644
index 0000000000000000000000000000000000000000..7aa245e4d4774462d38822203196e172bdb09b77
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-map.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-map@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-map@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..6627ebc9f7a4deae2f68cd900e10f2d9ba3576c0
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-map@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-search.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-search.png
new file mode 100644
index 0000000000000000000000000000000000000000..e976df3396b30580d54cc88ae8972d88496acc20
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-search.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-search@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-search@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..422cba6f358d17d389323168c8075cca11d6e75c
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-search@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-webmail.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-webmail.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a76443763fae200ac5fbd8316fe043aeb3f93f2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-webmail.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-webmail@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-webmail@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ed4e6b0210c867c5a2e8d42930b0983f0248580
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/dk-gray/resp-webmail@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/favicon.ico b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/favicon.ico
new file mode 100644
index 0000000000000000000000000000000000000000..5d71e3c5d341f1cab7de3bec5d755d65460f1aa2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/favicon.ico differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/bg-navbar_red.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/bg-navbar_red.png
new file mode 100644
index 0000000000000000000000000000000000000000..4596ba7c8d3a74b0b9f59aff597860e2ebd09b38
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/bg-navbar_red.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/osu_name.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/osu_name.png
new file mode 100644
index 0000000000000000000000000000000000000000..98f2d01b3631513861268141afc720d53c21b3c5
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/osu_name.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/osu_name@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/osu_name@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ce983b418d7eefc1aa3be76ba8e67ae7b75efb7
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/osu_name@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink-network.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink-network.png
new file mode 100644
index 0000000000000000000000000000000000000000..72e2df0c53a1f6d292ce56f331772fe9d76550d5
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink-network.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink-network@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink-network@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f7fde701e75281e0193a2d8567152c22c9342a2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink-network@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink.png
new file mode 100644
index 0000000000000000000000000000000000000000..5dd0ce5024ba534716fd2bf3818a027ae1fa14c2
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d19b98fc8578593b5db65abec78479d23bbb706
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-buckeyelink@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-findpeople.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-findpeople.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d22a3e18c5b63a5052eb60579607168f2e7638a
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-findpeople.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-findpeople@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-findpeople@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e1883898d7c14bbb98559f407f104e3cdae820c
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-findpeople@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-help.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-help.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c4520fac186e0accf578fcd02c37f2dd1342d3e
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-help.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-help@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-help@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d4aefa62235909f101ffab868e3b43aa286e3ae
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-help@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-map.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-map.png
new file mode 100644
index 0000000000000000000000000000000000000000..e637a2894d01fafc7e75ca2960efb751b1aec49b
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-map.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-map@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-map@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b3398dab4d1189181686e39ff28cb9173e514fa
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-map@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-search.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-search.png
new file mode 100644
index 0000000000000000000000000000000000000000..d89ed3913b1596117af1137a70803df11aa41698
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-search.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-search@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-search@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..64376e438973f22983cb7c9f20b714172a46992d
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-search@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-webmail.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-webmail.png
new file mode 100644
index 0000000000000000000000000000000000000000..097a55b91655852939346a36641bd0d7dd448896
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-webmail.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-webmail@2x.png b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-webmail@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..b91d714c48a0f44d3caf238b27427745b8b57bdc
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/images/osu-navbar/lt-gray/resp-webmail@2x.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/js/wcm-omega.behaviors.js b/profiles/wcm_base/themes/wcm_omega/js/wcm-omega.behaviors.js
new file mode 100644
index 0000000000000000000000000000000000000000..68de0e9d5fffbe26f82ff375ba210ecb28b8c2b7
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/js/wcm-omega.behaviors.js
@@ -0,0 +1,60 @@
+(function ($) {
+
+  /**
+   * The recommended way for producing HTML markup through JavaScript is to write
+   * theming functions. These are similiar to the theming functions that you might
+   * know from 'phptemplate' (the default PHP templating engine used by most
+   * Drupal themes including Omega). JavaScript theme functions accept arguments
+   * and can be overriden by sub-themes.
+   *
+   * In most cases, there is no good reason to NOT wrap your markup producing
+   * JavaScript in a theme function.
+   */
+  Drupal.theme.prototype.wcmOmegaExampleButton = function (path, title) {
+    // Create an anchor element with jQuery.
+    return $('<a href="' + path + '" title="' + title + '">' + title + '</a>');
+  };
+
+  /**
+   * Behaviors are Drupal's way of applying JavaScript to a page. In short, the
+   * advantage of Behaviors over a simple 'document.ready()' lies in how it
+   * interacts with content loaded through Ajax. Opposed to the
+   * 'document.ready()' event which is only fired once when the page is
+   * initially loaded, behaviors get re-executed whenever something is added to
+   * the page through Ajax.
+   *
+   * You can attach as many behaviors as you wish. In fact, instead of overloading
+   * a single behavior with multiple, completely unrelated tasks you should create
+   * a separate behavior for every separate task.
+   *
+   * In most cases, there is no good reason to NOT wrap your JavaScript code in a
+   * behavior.
+   *
+   * @param context
+   *   The context for which the behavior is being executed. This is either the
+   *   full page or a piece of HTML that was just added through Ajax.
+   * @param settings
+   *   An array of settings (added through drupal_add_js()). Instead of accessing
+   *   Drupal.settings directly you should use this because of potential
+   *   modifications made by the Ajax callback that also produced 'context'.
+   */
+  Drupal.behaviors.wcmOmegaExampleBehavior = {
+    attach: function (context, settings) {
+      // By using the 'context' variable we make sure that our code only runs on
+      // the relevant HTML. Furthermore, by using jQuery.once() we make sure that
+      // we don't run the same piece of code for an HTML snippet that we already
+      // processed previously. By using .once('foo') all processed elements will
+      // get tagged with a 'foo-processed' class, causing all future invocations
+      // of this behavior to ignore them.
+      $('.some-selector', context).once('foo', function () {
+        // Now, we are invoking the previously declared theme function using two
+        // settings as arguments.
+        var $anchor = Drupal.theme('wcmOmegaExampleButton', settings.myExampleLinkPath, settings.myExampleLinkTitle);
+
+        // The anchor is then appended to the current element.
+        $anchor.appendTo(this);
+      });
+    }
+  };
+
+})(jQuery);
diff --git a/profiles/wcm_base/themes/wcm_omega/logo.png b/profiles/wcm_base/themes/wcm_omega/logo.png
new file mode 100644
index 0000000000000000000000000000000000000000..995523e1ca2b56f380b0cdbb813005901e800d6f
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/logo.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/package.json b/profiles/wcm_base/themes/wcm_omega/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..762570367eb1949b66e938d1048a52025e49fa9e
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/package.json
@@ -0,0 +1,26 @@
+{
+  "name": "wcm_omega",
+  "version": "1.0.0",
+  "scripts": {
+    "sass:dev": "./node_modules/.bin/gulp",
+    "sass:prod": "./node_modules/.bin/gulp sass:prod"
+  },
+  "dependencies": {},
+  "devDependencies": {
+    "gulp": "^3.9.0",
+    "gulp-sass": "^2.0.4",
+    "gulp-sourcemaps": "^1.5.2",
+    "gulp-autoprefixer": "^2.3.1",
+    "node-sass-globbing": "0.0.23",
+    "gulp-plumber": "^1.0.1",
+    "gulp-cssmin": "^0.1.7",
+    "browser-sync": "^2.9.8",
+    "singularitygs": "^1.6.2",
+    "breakpoint-sass": "^2.6.1",
+    "sassier-buttons": "^1.0.0"
+  },
+   "scripts": {
+    "postinstall": "find node_modules -type f -name '*.info' | xargs rm"
+  }
+}
+
diff --git a/profiles/wcm_base/themes/wcm_omega/preprocess/README.md b/profiles/wcm_base/themes/wcm_omega/preprocess/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..43a31c100dd7de4ab8eb94818968bacbe2f6a5ea
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/preprocess/README.md
@@ -0,0 +1,30 @@
+# Defining preprocess hooks
+Rather than placing your preprocess hooks directly in the template.php file you
+can manage them in automatically discovered and lazy-loaded include files. It is
+even possible to organize them in sub-folders. This feature greatly improves the
+maintainability of large themes that would otherwise contain hundreds of lines
+of unrelated code in your template.php file.
+
+The include files have to follow a certain naming pattern (HOOK.preprocess.inc)
+for them to be automatically discovered:
+
+* THEMENAME_preprocess_html() = html.preprocess.inc
+* THEMENAME_preprocess_page() = page.preprocess.inc
+* THEMENAME_preprocess_node() = node.preprocess.inc
+* THEMENAME_preprocess_comment() = comment.preprocess.inc
+* THEMENAME_preprocess_region() = region.preprocess.inc
+
+As with template files, you should replace underscores from the hook names with
+hyphens:
+
+* THEMENAME_preprocess_comment_wrapper() = comment-wrapper.preprocess.inc
+* THEMENAME_preprocess_html_tag() = html-tag.preprocess.inc
+
+Inside of each of these files you define the preprocess hook just as you would
+otherwise do in your template.php file:
+
+```
+function THEMENAME_preprocess_HOOK(&$variables) {
+  // Your code here.
+}
+```
diff --git a/profiles/wcm_base/themes/wcm_omega/preprocess/html.preprocess.inc b/profiles/wcm_base/themes/wcm_omega/preprocess/html.preprocess.inc
new file mode 100644
index 0000000000000000000000000000000000000000..cd6066f0bb77bb936024b0cf3a854232dc1b45c7
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/preprocess/html.preprocess.inc
@@ -0,0 +1,16 @@
+<?php
+
+/**
+ * @file
+ * Contains a pre-process hook for 'html'.
+ */
+
+/**
+ * Implements hook_preprocess_TEMPLATE().
+ */
+function wcm_omega_preprocess_html(&$vars) {
+  global $base_path;
+  $theme_path = $base_path . drupal_get_path('theme', 'wcm_omega');
+  $vars['favicon'] = $theme_path . '/images/osu-navbar/favicon.ico';
+  $vars['osufonts'] = $theme_path .'/fonts//osu-fonts/webfonts.css';
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/preprocess/page.preprocess.inc b/profiles/wcm_base/themes/wcm_omega/preprocess/page.preprocess.inc
new file mode 100644
index 0000000000000000000000000000000000000000..738a93acd991a735071dfd433bfdbd8c89ad1112
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/preprocess/page.preprocess.inc
@@ -0,0 +1,55 @@
+<?php
+
+/**
+ * Implements hook_preprocess_page().
+ */
+function wcm_omega_preprocess_page(&$vars) {
+  // You can use preprocess hooks to modify the variables before they are passed
+  // to the theme function or template file.
+  $classes = array();
+  $vars['main_classes'] = join(' ', $classes);
+
+
+	//render landing page top and bottom banner images in regions outside of 'content'
+	
+  $vars['landing_page'] = isset($vars['node']) && $vars['node']->type == 'ocio_landing_page';
+
+  if ($vars['landing_page']) {
+    $vars['title_prefix']['wcm_omega'] = array(
+      'type' => 'markup',
+      '#markup' => '<div class="l-constrained max-width">',
+      );
+    $vars['title_suffix']['wcm_omega'] = array(
+      'type' => 'markup',
+      '#markup' => '</div>',
+    );
+
+    $top_banner = field_view_field('node', $vars['node'], 'field_banner_image');
+    if (!empty($top_banner)) {
+      $top_banner['#label_display'] = 'hidden';
+      $top_banner[0]['#item']['alt'] = "";
+
+      $vars['page']['hero']['top_banner']['#markup'] = drupal_render($top_banner);
+
+      $top_banner_text = field_view_field('node', $vars['node'], 'field_banner_image_text');
+      if (!empty($top_banner_text) && !empty($vars['node']->field_banner_image_text_color) && !empty($vars['node']->field_banner_image_text_location)) {
+        $top_banner_text['#label_display'] = 'hidden';
+        
+        $top_banner_url = field_view_field('node', $vars['node'], 'field_banner_image_text_link');
+					if (!empty($top_banner_url)) {
+						$top_banner_text[0]['#markup'] = l($top_banner_text['#items'][0]['value'], $top_banner_url['#items'][0]['url']);
+					}
+      
+        $vars['page']['hero']['top_banner']['#markup'] .= drupal_render($top_banner_text);
+      }
+    }
+
+    $bottom_banner = field_view_field('node', $vars['node'], 'field_pre_footer_banner_image');
+    if (!empty($bottom_banner)) {
+      $bottom_banner['#label_display'] = 'hidden';
+      $bottom_banner[0]['#item']['alt'] = "";
+
+      $vars['page']['pre_footer']['bottom_banner']['#markup'] = drupal_render($bottom_banner);
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/preprocess/region.preprocess.inc b/profiles/wcm_base/themes/wcm_omega/preprocess/region.preprocess.inc
new file mode 100644
index 0000000000000000000000000000000000000000..e72e3780b3d96d5f76df7dcbaa692533e7db1dd3
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/preprocess/region.preprocess.inc
@@ -0,0 +1,45 @@
+<?php
+/**
+ * Implements template_preprocess_region().
+ */
+function wcm_omega_preprocess_region(&$vars) {
+  global $base_url;
+  $theme_path = $base_url . '/' . drupal_get_path('theme', 'wcm_omega');
+  $siteinfo_module = module_exists('ocio_siteinfo');
+
+  switch($vars['region']) {
+    case 'osu_navbar':
+      /* Variables for osu_navbar region */
+      $vars['classes_array'][] = theme_get_setting('wcm_omega_color_navbar');
+      break;
+    case 'masthead':
+      /* Variables for masthead region */
+      $siteinfo = variable_get('ocio_siteinfo');
+      $color = theme_get_setting('wcm_omega_color_masthead');
+      $vars['classes_array'][] = $color;
+      $vars['site_name_prefix'] = $siteinfo_module ? check_plain($siteinfo['basic']['prefix']) : '';
+      $vars['site_slogan'] = variable_get('site_slogan');
+      $vars['logo'] = $theme_path . '/images/osu-logos/osu-stacked-' . $color . '.svg';
+      $vars['site_name'] = $siteinfo_module && !empty($siteinfo['basic']['site_name_markup']) ? $siteinfo['basic']['site_name_markup'] : variable_get('site_name');
+      $vars['site_name_classes'] = $siteinfo_module ? $siteinfo['basic']['site_name_classes'] : '';
+      break;
+    case 'main_menu':
+      /* Variables for main_menu region */
+      $vars['menu_color'] = theme_get_setting('wcm_omega_color_menu');
+      $vars['classes_array'][] = theme_get_setting('wcm_omega_color_menu');
+      break;
+    case 'footer_1':
+      /* Variables for footer_1 region */
+      $vars['logo'] = $theme_path . '/images/osu-logos/osu-footer-wordmark.svg';
+      $vars['content'] = $siteinfo_module ? ocio_siteinfo_address_content() : '';
+      break;
+    case 'footer_2':
+      $vars['content'] = ($siteinfo_module ? ocio_siteinfo_social_content() : '') . $vars['content'] ;
+      break;
+    case 'footer_3':
+      $vars['content'] = ($siteinfo_module ? ocio_siteinfo_footer_block() : '') . $vars['content'];
+      break;
+  }
+  /* Variables for all regions */
+  $vars['front_page'] = $base_url;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/process/README.md b/profiles/wcm_base/themes/wcm_omega/process/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..180a293362fbdb05f862a22ba484f2e0f4369e83
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/process/README.md
@@ -0,0 +1,30 @@
+# Defining process hooks
+Rather than placing your process hooks directly in the template.php file you can
+manage them in automatically discovered and lazy-loaded include files. It is
+even possible to organize them in sub-folders. This feature greatly improves the
+maintainability of large themes that would otherwise contain hundreds of lines
+of unrelated code in your template.php file.
+
+The include files have to follow a certain naming pattern (HOOK.process.inc) for
+them to be automatically discovered:
+
+* THEMENAME_process_html() = html.process.inc
+* THEMENAME_process_page() = page.process.inc
+* THEMENAME_process_node() = node.process.inc
+* THEMENAME_process_comment() = comment.process.inc
+* THEMENAME_process_region() = region.process.inc
+
+As with template files, you should replace underscores from the hook names with
+hyphens:
+
+* THEMENAME_process_comment_wrapper() = comment-wrapper.process.inc
+* THEMENAME_process_html_tag() = html-tag.process.inc
+
+Inside of each of these files you define the process hook just as you would
+otherwise do in your template.php file:
+
+```
+function THEMENAME_process_HOOK(&$variables) {
+  // Your code here.
+}
+```
diff --git a/profiles/wcm_base/themes/wcm_omega/process/page.process.inc b/profiles/wcm_base/themes/wcm_omega/process/page.process.inc
new file mode 100644
index 0000000000000000000000000000000000000000..3597c27b8c147d9b630907954a7ee3a3151546bc
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/process/page.process.inc
@@ -0,0 +1,9 @@
+<?php
+
+/**
+ * Implements hook_process_page().
+ */
+function wcm_omega_process_page(&$variables) {
+  // You can use process hooks to modify the variables before they are passed to
+  // the theme function or template file.
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/README.md b/profiles/wcm_base/themes/wcm_omega/sass/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..59b204decf50502340814c40e733e29676886202
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/README.md
@@ -0,0 +1,60 @@
+# Introduction to [Sass](http://sass-lang.com/)
+Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules,
+variables, mixins, selector inheritance, and more. It’s translated to well-
+formatted, standard CSS using the command line tool or a web-framework plugin.
+
+Sass has two syntaxes. The new main syntax (as of Sass 3) is known as “SCSS”
+(for “Sassy CSS”), and is a superset of CSS3’s syntax. This means that every
+valid CSS3 stylesheet is valid SCSS as well. SCSS files use the extension .scss.
+
+The second, older syntax is known as the indented syntax (or just “Sass”).
+Inspired by Haml’s terseness, it’s intended for people who prefer conciseness
+over similarity to CSS. Instead of brackets and semicolons, it uses the
+indentation of lines to specify blocks. Although no longer the primary syntax,
+the indented syntax will continue to be supported. Files in the indented syntax
+use the extension .sass.
+
+Please refer to the [Sass documentation](http://sass-lang.com/docs.html) for
+further information about the syntax.
+
+## Barebones Sass Structure
+The barebones CSS structure provided in this starterkit uses many of the ideas
+discussed in Jonathan [Snook's SMACSS](http://smacss.com) and is intended to
+provide a starting point for building modular, scalable CSS using Sass and
+Drupal.
+
+Multiple Sass partials are used to help organise the styles, these are combined
+by including them in styles.scss which is compiled into styles.css in the css/
+directory.
+
+All styles are included in order of specificity, this means that as you go down
+the document each section builds upon and inherits sensibly from the previous
+ones. This results in less undoing of styles, less specificity problems and
+all-round better architected and lighter stylesheets.
+
+The file and directory structure contained in this folder looks something like
+this:
+
+### Top level files
+These files are the main entry points for the Sass compiler and shouldn't
+directly contain any CSS code, instead they only serves to combine the Sass
+contained in the partials (see below) through @import directives.
+
+#### wcm-omega.styles.scss
+This file aggregates all the components into a single file.
+
+#### wcm-omega.reset.scss
+This file provides a CSS reset.
+
+### Partials
+#### variables
+This is where you place your Sass variables.
+
+#### abstractions
+This is where you place your functions, mixins and extends.
+
+#### base
+This is where you place all your basic, raw HTML element styling.
+
+#### components
+This is where you place your components.
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/abstractions/README.md b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..7730ffb7c831e0c9500a73ed0d47d92855bc101c
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/README.md
@@ -0,0 +1,3 @@
+# Abstractions
+Abstractions contains Sass mixins, extends and functions for use throughout your
+stylesheets and help to promote code reuse.
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_clearfix.scss b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_clearfix.scss
new file mode 100644
index 0000000000000000000000000000000000000000..9ba5f2304c886bfce00d35ac513f2528bf1bfa57
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_clearfix.scss
@@ -0,0 +1,9 @@
+//to replace compass pie-clearfix
+
+@mixin clearfix {
+  &:after {
+    content: "";
+    display: table;
+    clear: both;
+  }
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_font-size.scss b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_font-size.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b9db074c7fdac81a4729e4de1a325f303b58e23b
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_font-size.scss
@@ -0,0 +1,4 @@
+@mixin font-size($sizeValue: 1.6) {
+  font-size: ($sizeValue * 10) + px;
+  font-size: $sizeValue + rem;
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_grid.scss b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_grid.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_link-colors.scss b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_link-colors.scss
new file mode 100644
index 0000000000000000000000000000000000000000..425e36dda77731f918a793f39932b3f40768e5e1
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/abstractions/_link-colors.scss
@@ -0,0 +1,19 @@
+//to replace compass link-colors
+
+@mixin link-colors($link, $visit, $hover, $active, $focus) {
+  a {
+    color: $link;
+    &:visited {
+      color: $visit;
+    }
+    &:hover {
+      color: $hover;   
+    }
+    &:active {
+      color: $active;
+    }
+    &:focus {
+      color: $focus;
+    }
+  }
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/README.md b/profiles/wcm_base/themes/wcm_omega/sass/base/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..677a7c1530a3aa64023dfae0d6ce3c2b86a9f596
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/README.md
@@ -0,0 +1,12 @@
+# Base styes
+Base styles define the default look for HTML and, to some extent, common Drupal
+elements.
+
+These rules will generally be made up of element selectors for HTML elements
+such as headings, paragraphs and lists. Common Drupal elements, such as basic
+form items, should be covered as well.
+
+The styleguide module (http://drupal.org/project/styleguide) gives you a good
+overview of common Drupal elements for styling. By setting a solid baseline
+before adding any more specific customisations you ensure that as any new
+features are added they will be correctly styled without any extra work.
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_accordions.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_accordions.scss
new file mode 100644
index 0000000000000000000000000000000000000000..a51687a32badbbbc88cbe5d320a1c09d1250bde7
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_accordions.scss
@@ -0,0 +1,42 @@
+//to prevent accordions from overlapping floating elements
+.ui-accordion-header {
+	overflow:auto;
+}
+
+//styling links within accordions and tabs to match page links
+.ui-accordion-content, .ui-tabs-content {
+	a {
+		@extend a;
+	}
+}
+
+body .panels-row.odd .ui-accordion {
+  .ui-accordion-header {
+    background: darken($lt-gray, 10%);
+  }
+
+  .ui-accordion-content {
+    border-color: darken($lt-gray, 10%);
+  }
+}
+
+
+//style ctools collapsible arrows to mimic jquery-ui accordion arrows
+
+.ctools-collapsible-container {
+
+	//expanded arrow
+	.ctools-toggle {
+		background-image: url(../images/jquery-images/ui-icons_222222_256x240.png);
+		background-position: -64px -15px;
+	}
+	
+	.ctools-toggle-collapsed {
+		background-position: -32px -15px;
+		background-image: url(../images/jquery-images/ui-icons_888888_256x240.png);
+		&:hover {
+			background-image: url(../images/jquery-images/ui-icons_222222_256x240.png);
+		}
+	}
+
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_breadcrumbs.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_breadcrumbs.scss
new file mode 100644
index 0000000000000000000000000000000000000000..dba73b1bf1d61503ecf46e7c1df1eb17cfff9bb2
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_breadcrumbs.scss
@@ -0,0 +1,39 @@
+// basic breadcrumb style -- override as needed in subtheme
+ul.breadcrumb {
+  @extend .no-list-style;
+  padding: 0;
+  padding-top: 1.4em;
+  margin: 0;
+  
+
+  li {
+    display: inline-block;
+    margin-right: 0.3 * $horz-spacing-unit;
+    font-weight: 600;
+
+    &:after {
+      content: "|";
+      color: $red;
+      font-weight: 700;
+      margin-left: 0.3 * $horz-spacing-unit;
+    }
+
+    a {
+      @include link-colors($md-gray, $md-gray, $blue, $md-gray, $yellow);
+      text-decoration: none;
+
+      &:hover {
+        text-decoration: underline;
+      }
+    }
+  }
+
+  //remove separator and margin for last item
+  li:last-child {
+    margin-right: 0;
+
+    &:after {
+      content: " ";
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_buttons.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_buttons.scss
new file mode 100644
index 0000000000000000000000000000000000000000..079209402b9ce47a6e82f5ca92bcb59735d0a8ba
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_buttons.scss
@@ -0,0 +1,35 @@
+//sassy-buttons
+
+@import "sassy-buttons";
+
+.red-button {
+  @include sassy-button;
+  text-transform: uppercase;
+  font-family: $proxima;
+  letter-spacing: 0.05em;
+  font-weight: 400;
+  border-radius: 2px;
+  box-shadow: 0px 3px 0px 0px darken($red, 8%);
+  padding-top: 0.7em;
+  padding-bottom: 0.4em;
+  font-weight: normal;
+}
+
+input[type=button],
+html body .button,
+.form-submit,
+#edit-preview,
+#edit-submit,
+#edit-submit--2,
+#edit-submit--3,
+.webform-submit,
+.webform-previous,
+.button-primary {
+  @extend .red-button;
+
+  &.ext .ext {
+    background-image: none;
+    padding: 0;
+    width: 0;
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_colorbox.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_colorbox.scss
new file mode 100644
index 0000000000000000000000000000000000000000..75115f0cae0e1b30d21d6edc6f73fb5680fe3530
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_colorbox.scss
@@ -0,0 +1,39 @@
+#colorbox {
+  #cboxWrapper {
+    border-radius: 0;
+    font-size: 1.1em;
+    #cboxClose,
+    #cboxPrevious,
+    #cboxNext {
+      background-image: none;
+      text-indent: 0;
+      color: transparent;
+      overflow: hidden;
+
+      &:before {
+        font-family: FontAwesome;
+        bottom: -3px;
+        position: absolute;
+        color: $black;
+      }
+    }
+
+    #cboxClose:before {
+      content: "\f00d";
+      right: 0;
+      font-size: 1.2em;
+    }
+
+    #cboxPrevious:before {
+      content: "\f053";
+    }
+
+    #cboxNext:before {
+      content: "\f054";
+    }
+
+    #cboxCurrent {
+      bottom: -3px;
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_extlink.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_extlink.scss
new file mode 100644
index 0000000000000000000000000000000000000000..03d645984f93c090634b750f9a94e6d0db53233a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_extlink.scss
@@ -0,0 +1,4 @@
+span.ext {
+	margin-left: 1px;
+	margin-right: 2px;
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_forms.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_forms.scss
new file mode 100644
index 0000000000000000000000000000000000000000..64cf94e0a84c90fdce41fc13548efed7d853752a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_forms.scss
@@ -0,0 +1,167 @@
+input {
+  max-width: 100%;
+}
+
+input:focus {
+  outline: 1px solid lighten($md-gray, 20%);
+}
+
+textarea {
+  resize: none;
+}
+
+.webform-component {
+  label {
+    text-transform: uppercase;
+    font-weight: 600;
+    font-size: 14px;
+  }
+
+  .description {
+    margin-bottom: 1.5 * $vert-spacing-unit;
+  }
+}
+
+//label style for webcomponents nexted within fieldsets
+.webform-component-fieldset {
+  .webform-component {
+    label {
+      text-transform: uppercase;
+      font-weight: 400;
+      font-size: 13px;
+    }
+  }
+}
+
+//extra bottom margin for certain webfrom components -- add more as needed
+
+.webform-component-fieldset,
+.webform-component-file,
+.webform-component-grid {
+  margin-bottom: 2 * $vert-spacing-unit;
+}
+
+//special style for file upload component
+.webform-component-file {
+  #edit-submitted-file-upload {
+    max-width: 240px;
+  }
+}
+
+@include breakpoint($small, true) {
+  .l-main {
+    input, select, textarea {
+      width: 100%;
+    }
+  }
+}
+
+
+form {
+  .form-text,
+  .chosen-container .chosen-choices {
+    padding: 4px 6px 2px;
+    border: 1px solid #bbb;
+    background-image: none;
+    box-shadow: none;
+    font-size: 0.9em;
+  }
+
+  .chosen-container {
+    font-size: 1em;
+
+    .result-selected {
+      display:none !important;
+    }
+
+    .chosen-results {
+      font-size: 0.9em;
+    }
+
+    .search-field input {
+      width: 0.1px !important;
+      height: 0.1px !important;
+    }
+
+    .chosen-results li {
+      padding: 7px 6px 4px;
+      line-height: 1em;
+
+       &.highlighted {
+        background-image: none;
+      }
+    }
+
+    &.chosen-container-single .chosen-single,
+    &.chosen-container-active.chosen-with-drop .chosen-single,
+    &.chosen-container-multi .chosen-choices li.search-choice {
+      border-radius: 0;
+      background: #eee none;
+      box-shadow: none;
+    }
+
+    &.chosen-container .search-field:after,
+    &.chosen-container-active.chosen-with-drop .chosen-choices li.search-choice + .search-field:after {
+      content: "- Select -";
+      color: #666;
+      cursor: default;
+    }
+
+    &.chosen-container-multi .chosen-choices li.search-choice + .search-field,
+    &.chosen-container-active  .search-field {
+      float: none;
+    }
+
+    &.chosen-container-single {
+      .chosen-results {
+        margin: 0;
+        padding: 0;
+      }
+
+      .chosen-drop {
+        border-radius: 0;
+      }
+
+      .chosen-single {
+        padding: 0 0 0 6px;
+        height: 27px;
+
+        div b {
+          background-size: 52px 40px !important;
+        }
+      }
+    }
+
+    &.chosen-container-multi {
+
+      .chosen-choices {
+        padding: 1px 3px 0px 3px;
+        cursor: default;
+
+        li {
+          &.search-choice {
+            display: inline-block;
+            float: none;
+            line-height: 1em;
+            margin: 2px 4px 2px 0;
+            padding: 4px 20px 2px 4px;
+
+            .search-choice-close {
+              top: 4px;
+            }
+
+            & + .search-field:after {
+              content: "+ Add";
+              cursor: pointer;
+            }
+          }
+
+          &.search-field input[type="text"] {
+            margin: 1px 0 0 2px;
+            cursor: default;
+          }
+        }
+      }
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_images.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_images.scss
new file mode 100644
index 0000000000000000000000000000000000000000..8abca0e82db055ebf23b3a828d347cca44dc8e06
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_images.scss
@@ -0,0 +1,33 @@
+.l-page img {
+  width: inherit;
+}
+
+.image-border {
+  border: 1px solid $md-gray;
+}
+
+//panopoly image styles
+
+.panopoly-image-featured,
+.panopoly-image-full,
+.panopoly-image-half,
+.panopoly-image-original,
+.panopoly-image-quarter,
+.panopoly-image-square,
+.panopoly-image-thumbnail {
+  @extend .image-border;
+}
+
+//default float right in nodes
+.node__content {
+  .panopoly-image-featured,
+  .panopoly-image-full,
+  .panopoly-image-half,
+  .panopoly-image-original,
+  .panopoly-image-quarter,
+  .panopoly-image-square,
+  .panopoly-image-thumbnail {
+    float: right;
+    margin: 0 0 $vert-spacing-unit $horz-spacing-unit;
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_jqueryui.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_jqueryui.scss
new file mode 100644
index 0000000000000000000000000000000000000000..a9ff61275b8870d0db7bb98dc2e12eae087eb68a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_jqueryui.scss
@@ -0,0 +1,305 @@
+.ui-widget {
+	table, td, tr, th {
+		border: 0;
+	}
+}
+
+.ui-datepicker {
+	width: 17em;
+	padding: .2em .2em 0;
+	display: none;
+}
+.ui-datepicker .ui-datepicker-header {
+	position: relative;
+	padding: .4em 0.2em 0;
+}
+.ui-datepicker .ui-datepicker-prev,
+.ui-datepicker .ui-datepicker-next {
+	position: absolute;
+	top: 2px;
+	width: 1.8em;
+	height: 1.8em;
+}
+.ui-datepicker .ui-datepicker-prev-hover,
+.ui-datepicker .ui-datepicker-next-hover {
+	top: 0;
+}
+.ui-datepicker .ui-datepicker-prev {
+	left: 0;
+}
+.ui-datepicker .ui-datepicker-next {
+	right: 0;
+}
+.ui-datepicker .ui-datepicker-prev-hover {
+	left: 0;
+}
+.ui-datepicker .ui-datepicker-next-hover {
+	right: 0;
+}
+.ui-datepicker .ui-datepicker-prev span,
+.ui-datepicker .ui-datepicker-next span {
+	display: block;
+	position: absolute;
+	left: 50%;
+	margin-left: -8px;
+	top: 50%;
+	margin-top: -8px;
+}
+.ui-datepicker .ui-datepicker-title {
+	margin: 0 2.3em;
+	line-height: 1.8em;
+	text-align: center;
+	padding: 0.2em 0;
+}
+.ui-datepicker .ui-datepicker-title select {
+	font-size: 1em;
+	margin: 1px 0;
+}
+.ui-datepicker select.ui-datepicker-month,
+.ui-datepicker select.ui-datepicker-year {
+	width: 45%;
+}
+.ui-datepicker table {
+	width: 100%;
+	font-size: .9em;
+	border-collapse: collapse;
+	margin: 0 0 .4em;
+	border: 0;
+}
+.ui-datepicker th {
+	padding: .7em .3em;
+	text-align: center;
+	font-weight: bold;
+	border: 0;
+}
+.ui-datepicker td {
+	border: 0;
+	padding: 1px;
+}
+.ui-datepicker td span,
+.ui-datepicker td a {
+	display: block;
+	padding: .2em;
+	text-align: right;
+	text-decoration: none;
+}
+.ui-datepicker .ui-datepicker-buttonpane {
+	background-image: none;
+	margin: .7em 0 0 0;
+	padding: 0 .2em;
+	border-left: 0;
+	border-right: 0;
+	border-bottom: 0;
+}
+.ui-datepicker .ui-datepicker-buttonpane button {
+	float: right;
+	margin: .5em .2em .4em;
+	cursor: pointer;
+	padding: .2em .6em .3em .6em;
+	width: auto;
+	overflow: visible;
+}
+.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
+	float: left;
+}
+
+
+
+/* Component containers
+----------------------------------*/
+.ui-widget {
+	font-family: $proxima;
+	font-size: 1.1em;
+}
+.ui-widget .ui-widget {
+	font-size: 1em;
+}
+.ui-widget input,
+.ui-widget select,
+.ui-widget textarea,
+.ui-widget button {
+	font-family: $proxima;
+	font-size: 1em;
+}
+.ui-widget-content {
+	border: 0;
+	background: $lt-gray;
+	color: #2d2d2d;
+}
+.ui-widget-content a {
+	color: #2d2d2d;
+}
+.ui-widget-header {
+	border: 0;
+	background: $md-gray;
+	color: #ffffff;
+	font-weight: bold;
+}
+.ui-widget-header a {
+	color: #ffffff;
+}
+
+/* Interaction states
+----------------------------------*/
+.ui-state-default,
+.ui-widget-content .ui-state-default,
+.ui-widget-header .ui-state-default {
+	border: 0;
+	background: #cccccc;
+	font-weight: normal;
+	color: #2d2d2d;
+}
+.ui-state-default a,
+.ui-state-default a:link,
+.ui-state-default a:visited {
+	color: #2d2d2d;
+	text-decoration: none;
+}
+.ui-state-hover,
+.ui-widget-content .ui-state-hover,
+.ui-widget-header .ui-state-hover,
+.ui-state-focus,
+.ui-widget-content .ui-state-focus,
+.ui-widget-header .ui-state-focus {
+	border: 0;
+	background: #777777;
+	font-weight: normal;
+	color: #ffffff;
+}
+.ui-state-hover a,
+.ui-state-hover a:hover,
+.ui-state-hover a:link,
+.ui-state-hover a:visited,
+.ui-state-focus a,
+.ui-state-focus a:hover,
+.ui-state-focus a:link,
+.ui-state-focus a:visited {
+	color: #ffffff;
+	text-decoration: none;
+}
+.ui-state-active,
+.ui-widget-content .ui-state-active,
+.ui-widget-header .ui-state-active {
+	border: 1px solid #aaaaaa;
+	background: #ffffff url("../images/jquery-images/ui-bg_flat_65_ffffff_40x100.png") 50% 50% repeat-x;
+	font-weight: normal;
+	color: #212121;
+}
+.ui-state-active a,
+.ui-state-active a:link,
+.ui-state-active a:visited {
+	color: #212121;
+	text-decoration: none;
+}
+
+/* Interaction Cues
+----------------------------------*/
+/*
+.ui-state-highlight,
+.ui-widget-content .ui-state-highlight,
+.ui-widget-header .ui-state-highlight {
+	border: 1px solid #bb0000;
+	background: #bb0000 url("../images/jquery-images/ui-bg_flat_55_bb0000_40x100.png") 50% 50% repeat-x;
+	color: #ffffff;
+}
+.ui-state-highlight a,
+.ui-widget-content .ui-state-highlight a,
+.ui-widget-header .ui-state-highlight a {
+	color: #ffffff;
+}
+.ui-state-error,
+.ui-widget-content .ui-state-error,
+.ui-widget-header .ui-state-error {
+	border: 1px solid #cd0a0a;
+	background: #fef1ec url("../images/jquery-images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
+	color: #cd0a0a;
+}
+.ui-state-error a,
+.ui-widget-content .ui-state-error a,
+.ui-widget-header .ui-state-error a {
+	color: #cd0a0a;
+}
+.ui-state-error-text,
+.ui-widget-content .ui-state-error-text,
+.ui-widget-header .ui-state-error-text {
+	color: #cd0a0a;
+}
+.ui-priority-primary,
+.ui-widget-content .ui-priority-primary,
+.ui-widget-header .ui-priority-primary {
+	font-weight: bold;
+}
+*/
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+/*
+.ui-icon {
+	width: 16px;
+	height: 16px;
+}
+.ui-icon,
+.ui-widget-content .ui-icon {
+	background-image: url("../images/jquery-images/ui-icons_2d2d2d_256x240.png");
+}
+.ui-widget-header .ui-icon {
+	background-image: url("../images/jquery-images/ui-icons_ffffff_256x240.png");
+}
+.ui-state-default .ui-icon {
+	background-image: url("../images/jquery-images/ui-icons_2d2d2d_256x240.png");
+}
+.ui-state-hover .ui-icon,
+.ui-state-focus .ui-icon {
+	background-image: url("../images/jquery-images/ui-icons_ffffff_256x240.png");
+}
+.ui-state-active .ui-icon {
+	background-image: url("../images/jquery-images/ui-icons_454545_256x240.png");
+}
+.ui-state-highlight .ui-icon {
+	background-image: url("../images/jquery-images/ui-icons_ffffff_256x240.png");
+}
+.ui-state-error .ui-icon,
+.ui-state-error-text .ui-icon {
+	background-image: url("../images/jquery-images/ui-icons_cd0a0a_256x240.png");
+}
+*/
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Corner radius */
+.ui-corner-all,
+.ui-corner-top,
+.ui-corner-left,
+.ui-corner-tl {
+	border-top-left-radius: 0px;
+}
+.ui-corner-all,
+.ui-corner-top,
+.ui-corner-right,
+.ui-corner-tr {
+	border-top-right-radius: 0px;
+}
+.ui-corner-all,
+.ui-corner-bottom,
+.ui-corner-left,
+.ui-corner-bl {
+	border-bottom-left-radius: 0px;
+}
+.ui-corner-all,
+.ui-corner-bottom,
+.ui-corner-right,
+.ui-corner-br {
+	border-bottom-right-radius: 0px;
+}
+
+#modalBackdrop,
+.ui-widget-overlay,
+.cke_dialog_background_cover {
+  background-image: none !important;
+  background-color: #000 !important;
+  opacity: 0.5 !important;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_layout-base.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_layout-base.scss
new file mode 100644
index 0000000000000000000000000000000000000000..cd23eeafb39e947f90bcd8e5541e471daf774be6
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_layout-base.scss
@@ -0,0 +1,15 @@
+// Setting l-constrained as percent padding
+.l-constrained {
+	margin: 0 auto;
+	@include clearfix;
+}
+
+
+// Setting body and page background color
+body.html {
+  background-color: $dk-gray;
+}
+
+.l-page {
+  background-color: $white;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_lists.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_lists.scss
new file mode 100644
index 0000000000000000000000000000000000000000..2e7c9d1ca50f5d44bf2b5bc880cefcdd320e7ff5
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_lists.scss
@@ -0,0 +1,54 @@
+//reset for all menus
+ul.menu {
+	padding: 0;
+	@extend .no-list-style;
+}
+
+//return padding for non-menu ul
+ul, ol {
+	padding-left: 2 * $horz-spacing-unit;
+}
+
+//style three levels of ul
+ul {
+	list-style-type: square;
+	ul {
+		list-style-type: circle;
+		ul {
+			list-style-type: disc;
+		}
+	}
+}
+
+//style three levels of ol
+ol {
+	ol {
+		list-style-type: lower-alpha;
+		ol {
+			list-style-type: lower-roman;
+		}
+	}
+}
+
+//reusable class to clear list styles
+.no-list-style {
+	list-style-image: none;
+  list-style-type: none;
+  list-style: none;
+}
+
+
+//basic ul in text 
+.field--name-field-ocio-body,
+.field--name-field-basic-text-text,
+.ui-accordion-content {
+	li {
+		margin-bottom: 0.6em;
+	}
+}
+
+.ui-accordion-content {
+	ul {
+		padding-left: 0.6em;
+	}
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_media.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_media.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_messages.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_messages.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b95f6509a61649640c0844f829091fbcafceb829
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_messages.scss
@@ -0,0 +1,57 @@
+/**
+ * @file
+ * Theme for for system messages.
+ */
+
+/* Message */
+.messages {
+  margin: 1.8em 0;
+  padding: 1.2em 1.6em;
+	background-image: none;
+  border: 0;
+  background-color: darken($lt-gray, 7%);
+
+  ul {
+    margin: 0 0 0 1em;
+    padding: 0;
+  }
+  li {
+    list-style-image: none;
+  }
+}
+
+/* Status Messages */
+.messages--status,
+tr.ok {
+  border-left: 8px solid $green;
+}
+.messages--status,
+.ok {
+  color: $dk-gray;
+}
+
+/* Warning Messages */
+
+.messages--warning,
+tr.warning {
+  border-left: 8px solid $yellow;
+}
+.messages--warning,
+.warning {
+  color: $dk-gray;
+}
+
+/* Error Messages */
+
+.messages--error,
+tr.error {
+  border-left: 8px solid $red;
+}
+.messages--error,
+.error {
+  color: $dk-gray;
+}
+
+.error /*p*/.error {
+  color: $dk-gray;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_pager.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_pager.scss
new file mode 100644
index 0000000000000000000000000000000000000000..0189541851c634154cd77f18a673cbd88c5ee0e0
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_pager.scss
@@ -0,0 +1,44 @@
+/**
+ * @file
+ * Theme for markup generated by theme_pager().
+ */
+/*
+.pager {
+  clear: both;
+  padding: 0;
+  text-align: center;
+  margin-top: $vert-spacing-unit;
+  
+  a {
+  	@include link-colors($dk-gray, $dk-gray, $white, $dk-gray, $white);
+  	
+  	&:hover {
+	  	text-decoration: none;
+		}  
+  }
+}
+
+.pager__item {
+  display: inline;
+  padding: 0;
+  background-image: none;
+  list-style-type: none;
+  
+  a {
+  	background: darken($lt-gray, 5%);
+		padding: 0.3em 0.6em;
+		
+		 &:hover {
+	  	background: darken($lt-gray, 12%);
+		}
+  }
+}
+
+.pager__item--current {
+  font-weight: normal;
+  color: $white;
+	background: $red;
+	padding: 0.3em 0.6em;
+}
+*/
+
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_tables.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_tables.scss
new file mode 100644
index 0000000000000000000000000000000000000000..ad92bec28fe03e85f5c908cbf982c94a211dd611
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_tables.scss
@@ -0,0 +1,98 @@
+@import "typography.scss";
+
+table {
+	width: 100%;
+	margin-bottom: $vert-spacing-unit;
+	@include font-size(1.4);
+	line-height: 140%;
+
+	th {
+		background: lighten($dk-gray,3%);
+		color: $white;
+		font-weight: 600;
+
+		a {
+			@extend .reverse-links;
+			text-decoration: none;
+		}
+	}
+
+	&, thead {
+		border: 1px solid lighten($dk-gray, 3%);
+	}
+
+	tbody {
+		border: 1px solid darken($lt-gray, 10%);
+
+		tr {
+			border-bottom: 1px solid darken($lt-gray, 10%);
+
+			&.odd, &:nth-child(odd) {
+				background: $white;
+			}
+			&.even, &:nth-child(even) {
+				background: $lt-gray;
+			}
+		}
+	}
+
+	thead + tbody tr {
+		&.odd, &:nth-child(odd) {
+			background: $lt-gray;
+		}
+		&.even, &:nth-child(even) {
+			background: $white;
+		}
+	}
+
+	td, th {
+		padding: 0.5em 0.8em;
+		border: 0 none;
+	}
+
+	/* Table captions */
+	caption {
+		color:$md-gray;
+		text-align:left;
+		@extend .fine-print;
+		margin-bottom: $vert-spacing-unit/4;
+	}
+}
+
+.panels-row.odd table {
+	tbody tr {
+		&.odd, &:nth-child(odd) {
+			background: $white;
+		}
+		&.even, &:nth-child(even) {
+		  background: lighten($lt-gray, 2%);
+		}
+	}
+
+	thead + tbody tr {
+		&.odd, &:nth-child(odd) {
+			background: lighten($lt-gray, 2%);
+		}
+		&.even, &:nth-child(even) {
+		  background: $white;
+		}
+	}
+}
+
+//adding borders to tables within accordions
+.ui-accordion-content {
+	table td {
+		border: 1px solid $lt-gray;
+	}
+}
+
+
+
+/***************************
+*** special instance tables
+***************************/
+
+/* tables added with the table pane type */
+.pane-bundle-table table {
+	width: 100%;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_tabs.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_tabs.scss
new file mode 100644
index 0000000000000000000000000000000000000000..20212b0d8ba343287c87468dfe6151d08324c05a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_tabs.scss
@@ -0,0 +1,28 @@
+.tabs {
+
+}
+
+
+
+.tabs--primary {
+	padding-top: 2em;
+
+	li {
+		font-weight: 400;
+		background: $lt-gray;
+
+		a {
+			text-decoration: none;
+			 @include link-colors($red, $dk-gray, $blue, $red, $yellow);
+
+			 &:hover {
+				 background: darken($lt-gray, 10%);
+			 }
+		}
+
+		.active {
+			background: darken($lt-gray, 15%);
+		}
+	}
+
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/base/_typography.scss b/profiles/wcm_base/themes/wcm_omega/sass/base/_typography.scss
new file mode 100644
index 0000000000000000000000000000000000000000..081acf66c7ef9a264e208d53f7f9297e728f7ee3
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/base/_typography.scss
@@ -0,0 +1,233 @@
+// base typography
+html, body {
+  font-family: $proxima;
+  color: $dk-gray;
+  font-weight: 300;
+}
+
+p {
+  margin-top: .4em;
+}
+
+//heading sizes
+h1, .alpha {
+  @include font-size(4);
+  margin: .8em 0 0.2em 0;
+  color: $red;
+}
+
+h2, .beta {
+  @include font-size(3.2);
+  margin: .9em 0 0 0;
+}
+
+h3, .gamma {
+  @include font-size(2.6);
+  margin: 1em 0 0 0;
+}
+
+h4, .delta {
+  @include font-size(2.4);
+  margin: 1.2em 0 0 0;
+}
+
+h5, .epsilon {
+  @include font-size(2);
+  margin: 1.4em 0 0 0;
+}
+
+h6, .zeta {
+  @include font-size(1.8);
+  margin: 1.4em 0 0 0;
+}
+
+//headings style
+h1, .alpha,
+h2, .beta,
+h3, .gamma,
+h4, .delta,
+h5, .epsilon,
+h6, .zeta {
+  font-family: $proxima;
+  font-weight: 400;
+  line-height: 100%;
+
+  a,
+  a:visited {
+    @extend .header-links;
+  }
+}
+
+h2.block__title {
+  margin-top: 0;
+}
+
+//base font sizing for various screen sizes
+@include breakpoint($small, true) {
+  html {
+    font-size: 50%;
+  }
+
+  body,
+  .body {
+    @include font-size(1.8);
+    line-height: 150%;
+  }
+}
+
+
+@include breakpoint($tab, true) {
+  html {
+    font-size: 57%;
+  }
+
+  body,
+  .body {
+    @include font-size(1.7);
+    line-height: 150%;
+  }
+}
+
+
+@include breakpoint($desk, true) {
+  html {
+    font-size: 62.5%;
+  }
+
+  body,
+  .body {
+    @include font-size(1.6);
+    line-height: 150%;
+  }
+}
+
+
+@include breakpoint($wide, true) {
+  html {
+    font-size: 66%;
+  }
+
+  body,
+  .body {
+    @include font-size(1.5);
+    line-height: 150%;
+  }
+}
+
+
+//links
+a {
+  @include link-colors($red, $blue, $orange, $red, $orange);
+  font-weight: 500;
+  text-decoration: none;
+
+  &:hover {
+    text-decoration: underline;
+  }
+}
+
+strong a {
+  font-weight: bold;
+}
+
+.header-links {
+  @include link-colors($red, $dk-gray, $orange, $red, $orange);
+  text-decoration: none;
+
+  &:hover {
+    text-decoration: none;
+  }
+}
+
+.reverse-links {
+  @include link-colors($lt-gray, $white, $red, $lt-gray, $orange);
+}
+
+//specific styles
+
+.more-link,
+.more-link a {
+  text-transform: uppercase;
+  font-weight: 600;
+  text-decoration: none;
+  margin-top: 2em;
+}
+
+.fine-print {
+  @include font-size(1.2);
+  line-height: 135%;
+}
+
+.labels {
+  @include font-size(1.3);
+  text-transform: uppercase;
+  font-weight: 400;
+}
+
+.align-left {
+  text-align: left;
+}
+
+.align-right {
+  text-align: right;
+}
+
+.align-center {
+  text-align: center;
+}
+
+
+blockquote {
+  background: #f5f5f5 none repeat scroll 0 0;
+  border-left: 4px solid #ddd;
+  padding: 1.9em 2em;
+  overflow: hidden;
+
+  p, li, ul, ol {
+    margin: 0.4em 0 0 0;
+  }
+
+  h2, h3, h4, h5, div {
+    margin: 0 0 0.4em 0;
+  }
+
+
+  &.pull-quote {
+    @include font-size(2.6);
+    background: transparent none;
+    border-left: 0 none;
+    font-family: $capita;
+    font-style: italic;
+    line-height: 130%;
+    padding: 0;
+    margin: 1.5em 1.5em 1.5em 2em;
+
+    :first-child {
+      margin-top: 0.3em;
+    }
+
+
+    &::before {
+      @include font-size(3.5);
+      color: rgba(0, 0, 0, 0.6);
+      content: "\f10d";
+      font-family: FontAwesome;
+      font-style: normal;
+      margin-left: -1.5em;
+      float: left;
+    }
+
+    cite {
+      @include font-size(1.6);
+      font-family: $proxima;
+      font-style: normal;
+      display: block;
+      padding-top: 0.6em;
+
+      &::before {
+        content: "―";
+        margin-right: 3px;
+      }
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/README.md b/profiles/wcm_base/themes/wcm_omega/sass/components/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..c60898cdc20c3f2d92557a2eb0b6b9d045aa51ac
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/README.md
@@ -0,0 +1,40 @@
+# Components
+This directory should contain full components (modules in SMACSS), their
+sub-components and modifiers.
+
+Components are discrete parts of your page that should sit within the regions
+of your layouts. You should try to abstract your components as much as possible
+to promote reuse throughout the theme. Components should be flexible enough to
+respond to any width and should never rely on context
+(e.g. .sidebar-first .component) for styling. This allows modules to be placed
+throughout the theme with no risk of them breaking.
+
+If you find you need to change the look of a component depending on it's context
+you should avoid using context based classes at all costs. Instead it is better
+to add another "modifier" class to the component to alter the styling. Again,
+this promotes reuse.
+
+Sub-components are the individual parts that make up a component. As a general
+rule, adding a class to target a sub-component is a much better option than
+using descendant selectors or element selectors. In many cases sub-components
+can be made more reusable by making them components in their own right, so they
+can then be used within other components.
+
+Almost everything that doesn't belong in base should be made a component.
+
+## Some common examples throughout Drupal
+
+* Blocks
+* Content Types
+    For example, you may have a generic node component that contains
+    sub-components for the submitted by line and links. Specific components can
+    then be created for each content type to style the specifics of each. Finally,
+    by using entity view modes you can easily apply modifications based on the
+    .node-[view-mode] classes.
+* Forms
+    For instance the log in form.
+* Views
+    Each views output style could be made into a component, the content of each
+    row should be provided by a view mode styled by it's component CSS. Exposed
+    filter forms, views pagers and other views elements are also good candidates
+    for components.
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_basic-page.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_basic-page.scss
new file mode 100644
index 0000000000000000000000000000000000000000..a81eef66b09b3403396d520fc41a3b4b5ceec65f
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_basic-page.scss
@@ -0,0 +1,5 @@
+.node-type-basic-page {
+	.field--name-field-ocio-body {
+		margin-bottom: 3em;
+	}
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_book.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_book.scss
new file mode 100644
index 0000000000000000000000000000000000000000..4c7b950e7c9e54e921e9c5cef18d57af8cefc913
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_book.scss
@@ -0,0 +1,54 @@
+.book-navigation {
+	border-top: 1px solid $lt-gray;
+	border-bottom: 1px solid $lt-gray;
+	padding:0.5em 0;
+	margin:2em 0;
+}
+
+.book-navigation__links {
+	a {
+		color:$dk-gray;
+		text-transform:uppercase;
+		&:hover, &:visited:hover {
+			color:$red;
+			text-decoration:none;
+		}
+		&:visited {
+			color:$dk-gray;
+		}
+		.fa {
+			color:$red;
+		}
+	}
+	>.book-navigation__previous {
+		.fa {
+			margin-right:10px;
+		}
+	}
+	>.book-navigation__next {
+		.fa {
+			margin-left:10px;
+		}
+	}
+}
+
+.book_add_child {
+	a {
+		color:$dk-gray;
+		text-transform:uppercase;
+		min-width:180px;
+	}
+	&:before {
+		content: "\f067";
+		font-family: $fa;
+		color: $blue;
+		float: left;
+		margin-right: 5px;
+	}
+}
+
+
+//temporarily hide printer friendly link
+.book_printer {
+	display:none;
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_landing-page.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_landing-page.scss
new file mode 100644
index 0000000000000000000000000000000000000000..6c6eb1ba26373f7b98c8f1b19c4acc1a0a2fbd7c
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/content-types/_landing-page.scss
@@ -0,0 +1,113 @@
+//removes header padding for banner images on themes that use it
+.node-type-ocio-landing-page {
+  .l-header {
+    padding: 0 !important;
+  }
+
+  h1#page-title {
+    margin-top: 0.8em;
+    padding-bottom: 0.6em;
+  }
+}
+
+//attributes for banner images and banner image text
+.node-type-ocio-landing-page {
+  .l-region--hero-wrapper {
+    position: relative;
+    max-height: 500px;
+
+    .field--name-field-banner-image {
+      position: relative;
+      top: 0;
+      z-index: 9;
+      max-height: 500px;
+      overflow: hidden;
+    }
+
+    .field--name-field-banner-image-text {
+      position: absolute;
+      width: 100%;
+      padding-left: 1em;
+      padding-right: 1em;
+      padding-top: 0.5em;
+      padding-bottom: 0.5em;
+      text-align: center;
+      z-index: 99;
+      @include font-size(2.8);
+      line-height: 120%;
+      
+      @include breakpoint($desk,true) {
+	      @include font-size(3.6);
+      }
+      
+      a:hover {
+	      text-decoration: none;
+      }
+      span.ext {
+	      display: none;
+      }
+
+      //color and position options
+      &.white,
+      &.white a {
+        color: white;
+        &.translucent {
+        	background-color: $dark-translucent;
+        	  &:hover {
+	        	background-color: lighten($dark-translucent, 10%);
+	        	color: white;
+        	}
+      	}
+      }
+
+      &.dk-gray,
+      &.dk-gray a {
+        color: $dk-gray;
+        &.translucent {
+        	background-color: $light-translucent;
+        	&:hover {
+	        	background-color: darken($light-translucent, 8%);
+        	}
+      	}
+      }
+
+      &.black,
+      &.black a {
+        color: black;
+         &.translucent {
+        	background-color: $light-translucent;
+        	  &:hover {
+	        	background-color: darken($light-translucent, 8%);
+        	}
+      	}
+      }
+
+      &.center-top {
+        top: 0;
+        padding-top: 1em;
+        &.translucent {
+	        padding-top: 0.5em;
+        }
+      }
+
+      &.center-middle {
+      	top: 22%;
+      	@include breakpoint($tab,true) {
+	      	top: 30%;
+      	}
+      	@include breakpoint($desk,true) {
+	      	top: 36%;
+      	}
+      }
+
+      &.center-bottom {
+        bottom: 0;
+        padding-bottom: 1em;
+        &.translucent {
+	        padding-bottom: 0.5em;
+        }
+      }
+    
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_content.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_content.scss
new file mode 100644
index 0000000000000000000000000000000000000000..f25e16fc5d0bb44f42c0346b45fe038abde63578
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_content.scss
@@ -0,0 +1,7 @@
+.l-content {
+	min-height: 4em;
+	
+	h1 {
+		margin-top: 1.2em;
+	}
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_footer.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_footer.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b9f385bcaad28a9e6b765bf44318ae7e6f07302b
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_footer.scss
@@ -0,0 +1,135 @@
+.l-footer-wrapper {
+  background: $dk-gray;
+  color: $white;
+
+  .l-region {
+    margin-bottom: $vert-spacing-unit;
+    text-align: left;
+  }
+
+  .l-region--footer-1,
+  .l-region--footer-3 {
+    p {
+      @include font-size(1.3);
+      line-height: 135%;
+      margin: 0;
+    }
+
+    a {
+      @extend .reverse-links;
+      font-weight: 400;
+    }
+  }
+
+  .l-region--footer-2 {
+    text-align: right;
+  }
+
+  #osu-wordmark {
+    margin-bottom: $vert-spacing-unit;
+  }
+
+  .osu-siteinfo-name {
+    font-weight: 600;
+  }
+
+  .osu-siteinfo-address {
+    float: left;
+    font-style: normal;
+
+    .pipe {
+      margin: 0px 2px;
+      color: $md-gray;
+    }
+  }
+
+  .osu-siteinfo-social {
+    margin-top: 0;
+    text-align: right;
+    padding-left: 0;
+
+    li {
+      display: inline-block;
+      list-style-type: none;
+
+      .siteinfo-social-link {
+        color: $white;
+        background-color: $md-gray;
+        margin: 0 0 1em 1em;
+        width: 2.55em;
+        padding: 0.62em 0 0.46em;
+        text-align: center;
+        display: block;
+
+        &:hover, &:focus {
+          background-color: $black;
+        }
+
+        &.link-facebook {
+          &:hover, &:focus {
+            background-color: $facebook;
+          }
+        }
+
+        &.link-twitter {
+          &:hover, &:focus {
+            background-color: $twitter;
+          }
+        }
+
+        &.link-youtube {
+          &:hover, &:focus {
+            background-color: $youtube;
+          }
+        }
+
+        &.link-googleplus {
+          &:hover, &:focus {
+            background-color: $googleplus;
+          }
+        }
+
+        &.link-photos {
+          &:hover, &:focus {
+            background-color: $flickr;
+          }
+        }
+
+        &.link-instagram {
+          &:hover, &:focus {
+            background-color: $instagram;
+          }
+        }
+
+        &.link-linkedin {
+          &:hover, &:focus {
+            background-color: $linkedin;
+          }
+        }
+      }
+    }
+  }
+}
+
+@include breakpoint($small, true) {
+  .l-page .l-footer-wrapper .l-region {
+    text-align: center;
+
+    p {
+      @include font-size(1.7);
+    }
+
+    & > * {
+      float: none;
+      text-align: center;
+    }
+
+    ul {
+      padding: 0;
+
+      li:first-child * {
+        margin-left: 0;
+      }
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_hero.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_hero.scss
new file mode 100644
index 0000000000000000000000000000000000000000..297a37e2f14201e004c71c90d83bc54d1731182f
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_hero.scss
@@ -0,0 +1,10 @@
+.l-region--hero-wrapper {
+  background: white;
+
+  .field--name-field-banner-image {
+    img {
+      display: block;
+      width: 100%;
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_main-menu.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_main-menu.scss
new file mode 100644
index 0000000000000000000000000000000000000000..3cde25fd60c047cbc9b70d8122d8894864c7a118
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_main-menu.scss
@@ -0,0 +1,489 @@
+/* Styles for main menu */
+.l-region--main-menu, .l-region--sidebar-1 {
+  .menu .leaf, .menu .expanded, .menu .collapsed {
+    list-style-image: none;
+    list-style-type: none;
+  }
+}
+
+.l-region--main-menu {
+  position: relative;
+  display: table;
+  width: 100%;
+
+  h2.block__title {
+    display: none;
+  }
+
+  & > * {
+    display: table-cell;
+    vertical-align: middle;
+    width: 100%;
+  }
+
+  ul.sf-main-menu {
+    float: left;
+    clear: left;
+    margin: 0;
+
+    li {
+      float: left;
+      margin: 0;
+      padding: 0.75em 1.6em 0.75em 0em;
+      text-transform: uppercase;
+
+      a,
+      span {
+        font-weight: 500;
+        text-decoration: none;
+      }
+
+      a:hover {
+        text-decoration: none;
+      }
+    }
+
+    ul {
+      margin-top: .75em;
+      display: none;
+      position: absolute;
+      z-index: 99;
+      margin-top: 0.7em;
+      margin-left: -0.9em;
+
+      li {
+        padding: 0;
+
+        a {
+          padding: 0.75em 0.9em 0.65em;
+        }
+      }
+    }
+  }
+
+  ul li:hover > ul {
+    display: block;
+  }
+
+  ul ul.menu li {
+    float: none;
+    position: relative;
+  }
+}
+
+// set menu colors
+
+.l-region--main-menu,
+.l-region--main-menu-wrapper {
+  &, &.white {
+    background-color: $white;
+
+    ul.menu ul {
+      background-color: $lt-gray;
+    }
+
+    .sf-menu ul:before {
+      border-bottom-color: $lt-gray;
+    }
+
+    ul.menu, ul.menu ul {
+      & > li > a {
+        @include link-colors($md-gray, $dk-gray, $dk-gray, $md-gray, $red);
+      }
+
+      li span {
+        color: $md-gray;
+      }
+    }
+
+    #search-block-toggle {
+      @include link-colors($md-gray, $dk-gray, $dk-gray, $md-gray, $red);
+    }
+  }
+
+  &.lt-gray {
+    background-color: $lt-gray;
+
+    ul.menu ul {
+      background-color: darken($lt-gray, 10%);
+    }
+
+    .sf-menu ul:before {
+      border-bottom-color: darken($lt-gray, 10%);
+    }
+
+    ul.menu, ul.menu ul {
+      & > li > a {
+        @include link-colors($md-gray, $black, $dk-gray, $md-gray, $red);
+      }
+
+      li span {
+        color: $md-gray;
+      }
+    }
+
+    #search-block-toggle {
+      @include link-colors($md-gray, $black, $dk-gray, $md-gray, $red);
+    }
+  }
+
+  &.md-gray {
+    background-color: $md-gray;
+
+    ul.menu ul {
+      background-color: darken($md-gray, 10%);
+    }
+
+    .sf-menu ul:before {
+      border-bottom-color: darken($md-gray, 10%);
+    }
+
+    ul.menu, ul.menu ul {
+      & > li > a {
+        @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+      }
+
+      li span {
+        color: $white;
+      }
+    }
+
+    #search-block-toggle {
+      @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+    }
+  }
+
+  &.dk-gray {
+    background-color: $dk-gray;
+
+    ul.menu ul {
+      background-color: $md-gray;
+    }
+
+    .sf-menu ul:before {
+      border-bottom-color: $md-gray;
+    }
+
+    ul.menu, ul.menu ul {
+      & > li > a {
+        @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+      }
+
+      li span {
+        color: $white;
+      }
+    }
+
+    #search-block-toggle {
+      @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+    }
+  }
+
+  &.black {
+    background-color: $black;
+
+    ul.menu ul {
+      background-color: $dk-gray;
+    }
+
+    .sf-menu ul:before {
+      border-bottom-color: $dk-gray;
+    }
+
+    ul.menu, ul.menu ul {
+      & > li > a {
+        @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+      }
+
+      li span {
+        color: $white;
+      }
+    }
+
+    #search-block-toggle {
+      @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+    }
+  }
+
+  &.red {
+    background-color: $red;
+
+    ul.menu {
+      & > li > a {
+        @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+      }
+
+      li span {
+        color: $white;
+      }
+    }
+
+    ul.menu ul {
+      background-color: darken($lt-gray, 10%);
+
+      & > li > a {
+        @include link-colors($md-gray, $dk-gray, $dk-gray, $md-gray, $dk-gray);
+      }
+    }
+
+    #search-block-toggle {
+      @include link-colors($white, darken($lt-gray, 10%), $red, $white, $yellow);
+    }
+
+    .sf-menu ul:before {
+      border-bottom-color: darken($lt-gray, 10%);
+    }
+  }
+}
+
+/* styles to add triangle to top of superfish submenus */
+
+.sf-menu ul:before {
+  content: ' ';
+  height: 0;
+  position: absolute;
+  width: 0;
+  border: 10px solid transparent;
+  /* arrow size */
+  border-bottom-color: darken($lt-gray, 10%);
+  top: -19px;
+  left: 10px;
+  z-index: 2;
+}
+
+@mixin menu-colors($bgcolor: "lt-gray", $fgcolor: "md-gray") {
+  background-color: $white;
+
+  ul.menu ul {
+    background-color: $lt-gray;
+  }
+
+  .sf-menu ul:before {
+    border-bottom-color: $lt-gray;
+  }
+
+  ul.menu, ul.menu ul {
+    & > li > a {
+      @include link-colors($md-gray, $dk-gray, $dk-gray, $md-gray, $red);
+    }
+
+    li span {
+      color: $md-gray;
+    }
+  }
+
+  #search-block-toggle {
+    @include link-colors($md-gray, $dk-gray, $dk-gray, $md-gray, $red);
+  }
+}
+
+@mixin menu-colors-mobile($bgcolor: "lt-gray", $fgcolor: "md-gray") {
+  background: $bgcolor;
+  border-bottom: 1px solid darken($bgcolor, 10%);
+
+  a.meanmenu-reveal, .mean-nav a, .mean-nav span {
+    color: $fgcolor;
+  }
+
+  .mean-bar, .mean-nav {
+    background: $bgcolor;
+  }
+
+  .mean-nav ul li {
+    @if lightness($bgcolor) > 66 {
+      li {
+        background: darken($bgcolor, 10%);
+
+        a, span {
+          color: darken($fgcolor, 30%);
+        }
+      }
+    }
+
+    @else if lightness($bgcolor) > 33 {
+      li {
+        background: darken($bgcolor, 10%);
+
+        a, span {
+          color: lighten($fgcolor, 30%);
+        }
+      }
+    }
+
+    @else {
+      li {
+        background: lighten($bgcolor, 15%);
+
+        a, span {
+          color: lighten($fgcolor, 30%);
+        }
+      }
+    }
+  }
+}
+
+.l-region--main-menu {
+  /* styles for mobile mean menu */
+  &.mean-container {
+    .mean-bar, .mean-nav {
+      background: none;
+    }
+
+    .mean-bar {
+      z-index: 499;
+      padding: 0;
+    }
+
+    a.meanmenu-reveal {
+      color: $white;
+      font-size: 1.5em;
+      padding: 0.9em 1em;
+      text-indent: 0em;
+      text-align: center;
+      left: 0 !important;
+      right: auto !important;
+    }
+
+    .mean-nav {
+      margin-top: 4em;
+
+      ul li {
+        text-transform: uppercase;
+
+        li {
+          display: block;
+          float: left;
+          width: 100%;
+          margin: 0;
+          text-align: left;
+          font-weight: 500;
+          box-sizing: border-box;
+          background: rgba(0, 0, 0, 0.1);
+          color: rgba(0, 0, 0, 0.9);
+        }
+
+        a,
+        span {
+          color: #fff;
+          text-decoration: none;
+          border: 0;
+          padding: 1em 1em 0.9em 1.2em;
+          border: 0 none;
+          box-sizing: border-box;
+          width: 100%;
+          display: block;
+        }
+
+        li a {
+          padding-left: 3em;
+          box-sizing: border-box;
+          width: 100%;
+          color: #222;
+          opacity: 1;
+        }
+
+        a.mean-expand {
+          border: 0 !important;
+          padding: 0.7em 0.9em 1.55em 0.8em !important;
+          width: auto;
+          margin: 0;
+          background-color: transparent;
+          /*
+          visibility: hidden;
+
+          &:after {
+            visibility: visible;
+            font-family: FontAwesome;
+            content: '\f067';
+            font-size: 0.76em;
+          }
+
+          &.mean-clicked:after {
+            content: '\f068';
+          }
+          */
+        }
+
+        a.mean-expand:hover {
+          background: transparent;
+        }
+      }
+    }
+
+    &.white {
+      @include menu-colors-mobile($white, $md-gray);
+    }
+
+    &.lt-gray {
+      @include menu-colors-mobile($lt-gray, $md-gray);
+    }
+
+    &.md-gray {
+      @include menu-colors-mobile($md-gray, $white);
+    }
+
+    &.dk-gray {
+      @include menu-colors-mobile($dk-gray, $white);
+    }
+
+    &.black {
+      @include menu-colors-mobile($black, $white);
+    }
+
+    &.red {
+      @include menu-colors-mobile($red, $white);
+    }
+  }
+}
+
+.l-page .l-constrained .mean-container {
+  a.meanmenu-reveal,
+  .mean-nav ul li a,
+  .mean-nav ul li span,
+  #search-block-toggle {
+    padding-left: 4%;
+    padding-right: 4%;
+  }
+
+  .mean-nav a.mean-expand {
+    padding-left: 4% !important;
+    padding-right: 4% !important;
+    margin-right: -2px;
+  }
+
+  .mean-nav ul li li a {
+    padding-left: 8%;
+    padding-right: 8%;
+  }
+}
+
+@include breakpoint($tab, true) {
+  .l-region--main-menu {
+    & > * {
+      display: table-cell !important;
+    }
+  }
+}
+
+
+@include breakpoint($small, true) {
+  .l-region--main-menu-wrapper {
+    .l-region--main-menu {
+      padding: 0;
+
+      & > * {
+        display: block;
+      }
+    }
+
+    .l-constrained {
+      padding: 0;
+    }
+  }
+}
+
+
+//hide main menu span text that shows up when between breakpoints
+#superfish-1-toggle span {
+  display: none;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_masthead.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_masthead.scss
new file mode 100644
index 0000000000000000000000000000000000000000..616721475691d85243176e1da7ed6b1a8b16ebda
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_masthead.scss
@@ -0,0 +1,92 @@
+.l-region--masthead,
+.l-region--masthead.white {
+  background-color: $white;
+  padding: $vert-spacing-unit 0;
+
+  .l-constrained {
+    display: table;
+    width: 100%;
+  }
+}
+
+.l-region--masthead.dk-gray {
+  background-color: $dk-gray;
+
+  #site-name {
+    .site-name-main {
+      color: $white;
+    }
+
+    .site-name-prefix,
+    .site-name-slogan {
+      color: $lt-gray;
+    }
+  }
+}
+
+.l-region--masthead.lt-gray {
+  background-color: $lt-gray;
+}
+
+#site-name {
+  display: table-cell;
+  vertical-align: middle;
+  @include font-size(4.8);
+  padding-right: 1em;
+
+  .site-name-prefix {
+    display: block;
+    font-size: 0.5em;
+    font-weight: 300;
+    color: $md-gray;
+  }
+
+  .site-name-main {
+    color: $dk-gray;
+    font-weight: 600;
+    display: block;
+    line-height: 1em;
+  }
+
+  a {
+    text-decoration: none;
+    display: block;
+  }
+
+  .site-name-slogan {
+    font-size: 0.5em;
+    font-weight: 400;
+    color: $md-gray;
+    margin-top: $vert-spacing-unit;
+  }
+
+  &.site-name-2-lines {
+    @include font-size(4.4);
+  }
+
+  &.site-name-3-lines {
+    @include font-size(3.2);
+  }
+
+  &.site-name-4-lines {
+    @include font-size(3);
+  }
+}
+
+body #site-logo {
+  display: table-cell;
+  vertical-align: middle;
+  text-align: right;
+
+  img {
+    height: 140px;
+    width: auto;
+    margin-right: -0.5em;
+  }
+}
+
+@include breakpoint($small, true) {
+  body #site-logo {
+    display: none;
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_osu-navbar.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_osu-navbar.scss
new file mode 100644
index 0000000000000000000000000000000000000000..409cfae0e23cafe62f1bd1bd62c96ce35e508491
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_osu-navbar.scss
@@ -0,0 +1,240 @@
+/**
+ * OSU Navbar
+ */
+
+.l-region--osu-navbar {
+  clear: both;
+  margin: 0;
+  padding: 0;
+  background: #eaeaea url(../images/osu-navbar/lt-gray/bg-navbar_red.png) left bottom repeat-x;
+  overflow: hidden;
+}
+
+#osu_navbar * {
+  font-family: 'proximanova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
+  font-size: 13px;
+  line-height: 1.4;
+  font-weight: 400;
+}
+
+/* University info */
+#osu_navbar p {
+  margin: 0;
+  padding: 0;
+}
+
+#osu_navbar .univ_info {
+  float: left;
+  padding: .9em 0 1.1em;
+  margin-left: 0px;
+}
+
+#osu_navbar .univ_links {
+  float: right;
+  clear: none;
+  padding: 1em 0 0;
+  margin-top: -2px;
+}
+
+#osu_navbar .univ_name a {
+  height: 16px;
+  width: 90px;
+  display: block;
+  text-indent: -9999px;
+  background: url(../images/osu-navbar/lt-gray/osu_name.png) 0 0 no-repeat;
+  margin-left: 0px;
+  overflow: hidden;
+}
+
+/* Links */
+#osu_navbar div.links {
+  float: left;
+  margin-bottom: 10px;
+}
+
+#osu_navbar div.links ul {
+  margin: 0;
+  padding: 0;
+}
+
+#osu_navbar div.links ul li {
+  list-style: none;
+  float: left;
+  margin-left: 1em;
+}
+
+#osu_navbar div.links ul li a {
+  color: #333;
+  text-decoration: none;
+  background-position: 0 0;
+}
+
+#osu_navbar div.links ul li a:hover {
+  text-decoration: underline;
+}
+
+.osu-semantic {
+  position: absolute;
+  left: 0;
+  top: -500px;
+  width: 1px;
+  height: 1px;
+  overflow: hidden;
+}
+
+a.osu-semantic:active, a.osu-semantic:focus {
+  position: absolute;
+  left: 0;
+  top: 0;
+  overflow: visible;
+}
+
+a#skip:active, a#skip:focus {
+  position: absolute;
+  top: 0;
+  left: 25%;
+  width: 50%;
+  text-align: center;
+  padding: 0.5em 0 1.5em 0;
+  display: block;
+  color: #fff;
+  z-index: 999999999999999999;
+  text-decoration: none;
+  background: #666;
+  background: rgba(0, 0, 0, 0.8);
+  border: 1px dotted #ccc;
+  border-top: none;
+  border-radius: 0 0 6px 6px;
+}
+
+a#skip:active:hover, a#skip:focus:hover {
+  background: #b00;
+  background: rgba(187, 0, 0, 0.8);
+}
+
+.l-region--osu-navbar.dk-gray {
+  background: #333333 url(../images/osu-navbar/dk-gray/bg-navbar_red.png) left bottom repeat-x;
+
+  #osu_navbar .univ_name a {
+    background-image: url(../images/osu-navbar/dk-gray/osu_name.png);
+  }
+
+  #osu_navbar div.links ul li a {
+    color: #fff;
+  }
+}
+
+/* Mixin sets nav bar icons based on light/dark setting and pixel ratio.*/
+@mixin nav-icons($theme: "lt-gray", $retina: false) {
+  $res: "";
+
+  @if $retina {
+    $res: "@2x";
+
+    #osu_navbar div.links ul li a {
+      -webkit-background-size: 23px;
+      -moz-background-size: 23px;
+      background-size: 23px;
+    }
+
+    #osu_navbar .univ_name a {
+      background-size: contain;
+    }
+  }
+
+  #osu_navbar div.links ul li a {
+    &.help {
+      background-image: url("../images/osu-navbar/#{$theme}/resp-help#{$res}.png");
+    }
+
+    &.buckeyelink {
+      background-image: url("../images/osu-navbar/#{$theme}/resp-buckeyelink#{$res}.png");
+    }
+
+    &.map {
+      background-image: url("../images/osu-navbar/#{$theme}/resp-map#{$res}.png");
+    }
+
+    &.findpeople {
+      background-image: url("../images/osu-navbar/#{$theme}/resp-findpeople#{$res}.png");
+    }
+
+    &.webmail {
+      background-image: url("../images/osu-navbar/#{$theme}/resp-webmail#{$res}.png");
+    }
+
+    &.search {
+      background-image: url("../images/osu-navbar/#{$theme}/resp-search#{$res}.png");
+    }
+  }
+}
+
+/* Replace text links with icons when space runs out at 720px*/
+@include breakpoint($small, true) {
+  #osu_navbar div.links ul {
+    margin-top: -2px;
+  }
+
+  #osu_navbar div.links ul li {
+    list-style: none;
+    float: left;
+    margin-left: .5em;
+  }
+
+  #osu_navbar div.links ul li a {
+    height: 23px;
+    width: 23px;
+    display: block;
+    overflow: hidden;
+    text-indent: -999px;
+  }
+
+  #osu_navbar div.links ul li a:hover {
+    text-decoration: none;
+  }
+
+  .l-region--osu-navbar {
+    &, &.lt-gray {
+      @include nav-icons("lt-gray");
+    }
+
+    &.dk-gray {
+      @include nav-icons("dk-gray");
+    }
+  }
+}
+
+
+/* Retina icons */
+
+@media only screen and (max-width: 720px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 720px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 720px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 720px) and (min-device-pixel-ratio: 2) {
+  .l-region--osu-navbar {
+    &.lt-gray {
+      @include nav-icons("lt-gray", "@2x");
+    }
+
+    &, &.dk-gray {
+      @include nav-icons("dk-gray", "@2x");
+    }
+  }
+}
+
+@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2) {
+  .l-region--osu-navbar {
+    #osu_navbar .univ_name a {
+      background-size: contain;
+    }
+
+    &.lt-gray {
+      #osu_navbar .univ_name a {
+        background-image: url(../images/osu-navbar/lt-gray/osu_name@2x.png);
+      }
+    }
+
+    &, &.dk-gray {
+      #osu_navbar .univ_name a {
+        background-image: url(../images/osu-navbar/dk-gray/osu_name@2x.png);
+      }
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_pre-footer.scss b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_pre-footer.scss
new file mode 100644
index 0000000000000000000000000000000000000000..6aca106223455f70a4e2f8ec77f116b62ff500e8
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/components/regions/_pre-footer.scss
@@ -0,0 +1,4 @@
+.l-region--pre-footer .field--name-field-pre-footer-banner-image img {
+  display: block;
+  width: 100%;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/variables/README.md b/profiles/wcm_base/themes/wcm_omega/sass/variables/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..203e48aa48ea6c5706f621a020485996b16f1679
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/variables/README.md
@@ -0,0 +1,13 @@
+# Variables
+Sass allows you to define variables that can be used throughout your Sass files.
+Using variables makes it much easier to ensure consistency throughout your
+stylesheets for values such as colors and numeric values. Variables are also
+used for configuration by many Sass extensions. Some examples of values that
+should be defined as variables are:
+
+* Colors scheme.
+* Spacing units, for example vertical and horizontal spacing units.
+* Font sizes and related metrics such as line height.
+* Font stacks.
+* Grid sizing
+
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/variables/_colors.scss b/profiles/wcm_base/themes/wcm_omega/sass/variables/_colors.scss
new file mode 100644
index 0000000000000000000000000000000000000000..0db977fa7cc8f208bf49a78d0f54285b81ce8e22
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/variables/_colors.scss
@@ -0,0 +1,44 @@
+// base colors
+$red: #b00;
+$lt-gray: #ededed;
+$md-gray: #666666;
+$dk-gray: #2d2d2d;
+$black: #000;
+$white: #fff;
+$light-translucent: rgba(220,220,220,0.7);
+$dark-translucent: rgba(20,20,20,0.6);
+
+// accent colors
+$blue: #028da9;
+$yellow: #dcaa38;
+$green: #d4df48;
+$purple: #442369;
+
+// social media colors
+$facebook: #3b5998;
+$youtube: $red;
+$googleplus: #dd4b39;
+$twitter: #00aced;
+$linkedin: #007bb6;
+$flickr: #ff0084;
+$instagram: #517fa4;
+$rss: #ff6600;
+
+//misc osu colors
+$orange: #d65828;
+
+// swatch colors
+$swatch-colors: (
+  "white": $white,
+  "lt-gray": darken($lt-gray, 10%),
+  "md-gray": $md-gray,
+  "dk-gray": lighten($dk-gray, 10%),
+  "black": $black,
+  "yellow": $yellow,
+  "green": darken($green, 20%),
+  "purple": lighten($purple, 20%),
+  "blue": $blue,
+  "red": $red,
+  "none": #747474,
+);
+
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/variables/_grid.scss b/profiles/wcm_base/themes/wcm_omega/sass/variables/_grid.scss
new file mode 100644
index 0000000000000000000000000000000000000000..38662db5359a7e2abcfec1187a76f3efa316a843
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/variables/_grid.scss
@@ -0,0 +1,15 @@
+// Set consistent vertical and horizontal spacing units.
+$vert-spacing-unit: 20px;
+$horz-spacing-unit: 1.5em;
+
+$small: max-width 47.5em; // 760px
+$big-phone: 25.875em; //414px
+$tab: 47.5em; //760px
+$desk: 60em; //960px
+$wide: 75em; //1200px
+$x-wide: 85.375em; //1366px
+
+$grids: 4;
+$grids: add-grid(12 at $tab);
+
+$gutters: 1/3;
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/variables/_sassybuttons.scss b/profiles/wcm_base/themes/wcm_omega/sass/variables/_sassybuttons.scss
new file mode 100644
index 0000000000000000000000000000000000000000..abc0534312cf13be2477fc1a140ee7035df58265
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/variables/_sassybuttons.scss
@@ -0,0 +1,11 @@
+$sb-base-color:      $red;      // Base color of your button
+$sb-second-color:    false;        // Optional second color of button gradient
+$sb-border-radius:   2px;         // Button border radius
+$sb-border-width:    1px;          // Button border width
+$sb-padding:         0.6em 1.3em 0.5em 1.3em; // Button padding
+$sb-font-size:       14px;         // Button font-size
+$sb-line-height:     1.2em;        // Button line-height
+$sb-text-color:      white;        // Button text color
+$sb-text-style:      "none";      // Button text shadow style
+$sb-gradient-style:  "flat";      // Button gradient style
+$sb-auto-states:     true;         // Automatically create pseudo styles 
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/variables/_typography.scss b/profiles/wcm_base/themes/wcm_omega/sass/variables/_typography.scss
new file mode 100644
index 0000000000000000000000000000000000000000..756a1a3a9bcb790ccfd208bad86d4f4f09d46148
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/variables/_typography.scss
@@ -0,0 +1,4 @@
+//fonts
+$proxima: 'proximanova', Helvetica, Arial, sans-serif;
+$capita: 'capita', Georgia, serif;
+$fa:'FontAwesome';
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.reset.scss b/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.reset.scss
new file mode 100644
index 0000000000000000000000000000000000000000..bec0b98d7d64c8238b64d2f9f2fe7fb5df007685
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.reset.scss
@@ -0,0 +1,50 @@
+// http://meyerweb.com/eric/tools/css/reset/
+// v2.0 | 20110126
+
+html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
+big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
+dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article,
+aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+  margin: 0;
+  padding: 0;
+  border: 0;
+  font-size: 100%;
+  font: inherit;
+  vertical-align: baseline;
+}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
+  display: block;
+}
+
+body {
+  line-height: 1;
+}
+
+ol, ul {
+  list-style: none;
+}
+
+blockquote, q {
+  quotes: none;
+}
+
+blockquote {
+  &::before, &::after {
+    content: '';
+    content: none;
+  }
+}
+
+q {
+  &::before, &::after {
+    content: '';
+    content: none;
+  }
+}
+
+table {
+  border-collapse: collapse;
+  border-spacing: 0;
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.settings.scss b/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.settings.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b5507378f1670b44b3a4c1d33af27e358b7bb3cf
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.settings.scss
@@ -0,0 +1,46 @@
+@import "variables/colors";
+
+/* Color swatch styles */
+#edit-wcm-omega {
+  .swatch-panel {
+    display: inline-block;
+    line-height: 24px;
+
+    .label {
+      display: inline-block;
+      min-width: 80px;
+    }
+
+    .swatches {
+      display: inline-block;
+    }
+
+    .swatch {
+      display: inline-block;
+      height: 16px;
+      width: 16px;
+      margin-right: 2px;
+      border: 2px #000 solid;
+      margin-bottom: -6px;
+
+      @each $name, $value in $swatch-colors {
+        &.#{$name} {
+          background-color: $value;
+          border-color: darken($value, 20%);
+        }
+      }
+    }
+  }
+
+  .form-item label.option {
+    margin-left: 4px;
+  }
+
+  .form-item input.form-radio-error {
+    outline: 2px solid red;
+    & + label {
+      color: #8c2e0b;
+      font-weight: bold;
+    }
+  }
+}
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.styles.scss b/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.styles.scss
new file mode 100644
index 0000000000000000000000000000000000000000..31aa818e0ee4c6434bc18ab6ff5beba894a2f72b
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/sass/wcm-omega.styles.scss
@@ -0,0 +1,8 @@
+@import "singularitygs";
+@import "breakpoint";
+
+// Import variables, abstractions, base styles and components.
+@import "variables/**/*.scss";
+@import "abstractions/**/*.scss";
+@import "base/**/*.scss";
+@import "components/**/*.scss";
\ No newline at end of file
diff --git a/profiles/wcm_base/themes/wcm_omega/screenshot.png b/profiles/wcm_base/themes/wcm_omega/screenshot.png
new file mode 100644
index 0000000000000000000000000000000000000000..127f551b159bbb9e2cd8696b6ee52886fca9c8e6
Binary files /dev/null and b/profiles/wcm_base/themes/wcm_omega/screenshot.png differ
diff --git a/profiles/wcm_base/themes/wcm_omega/template.php b/profiles/wcm_base/themes/wcm_omega/template.php
new file mode 100644
index 0000000000000000000000000000000000000000..f42fcf98534dda72a2c9590349e61ae9912a8705
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/template.php
@@ -0,0 +1,184 @@
+<?php
+
+/**
+ * @file
+ * Template overrides as well as (pre-)process and alter hooks for the
+ * WCM Omega theme.
+ */
+
+// force regions to display without blocks
+function wcm_omega_page_alter(&$page) {
+  $regions = system_region_list($GLOBALS['theme'], REGIONS_ALL);
+
+  if (array_key_exists('osu_navbar', $regions)) {
+		$page['osu_navbar'] = array(
+			'#region' => 'osu_navbar',
+			'#weight' => '-10',
+			'#theme_wrappers' => array('region'),
+		);
+	}
+
+  if (array_key_exists('masthead', $regions)) {
+		$page['masthead'] = array(
+			'#region' => 'masthead',
+			'#weight' => '-9',
+			'#theme_wrappers' => array('region'),
+		);
+	}
+
+  if (array_key_exists('footer_1', $regions)) {
+		$page['footer_1'] = array(
+			'#region' => 'footer_1',
+			'#weight' => '-7',
+			'#theme_wrappers' => array('region'),
+		);
+	}
+
+  if (empty($page['footer_2']) && array_key_exists('footer_2', $regions)) {
+    $page['footer_2'] = array(
+      '#region' => 'footer_2',
+      '#weight' => '-7',
+      '#theme_wrappers' => array('region'),
+    );
+  }
+
+  if (empty($page['footer_3']) && array_key_exists('footer_3', $regions)) {
+    $page['footer_3'] = array(
+      '#region' => 'footer_3',
+      '#weight' => '-7',
+      '#theme_wrappers' => array('region'),
+    );
+  }
+}
+
+
+//custom file icons
+function wcm_omega_file_icon($variables) {
+	$file = $variables['file'];
+  $icon_directory = drupal_get_path('theme', 'wcm_omega') . '/images/file-icons';
+  $mime = check_plain($file->filemime);
+  $icon_url = file_icon_url($file, $icon_directory);
+  return '<img alt="" class="file-icon" src="' . $icon_url . '" title="' . $mime . '" />';
+}
+
+
+/*
+ * Implements hook_omega_theme_libraries_info().
+ */
+function wcm_omega_omega_theme_libraries_info() {
+  $libraries['modernizr'] = array(
+    'name' => t('Modernizr'),
+    'description' => t('Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user?s browser.'),
+    'vendor' => 'Modernizr',
+    'vendor url' => 'http://modernizr.com/',
+    'package' => t('Polyfills'),
+    'files' => array(
+      'js' => array(
+        'modernizr.min.js' => array(
+          'weight' => 130,
+          'every_page' => TRUE,
+        ),
+      ),
+    ),
+    'variants' => array(
+      'source' => array(
+        'name' => t('Source'),
+        'description' => t('During development it might be useful to include the source files instead of the minified version.'),
+        'files' => array(
+          'js' => array(
+            'modernizr.js' => array(
+              'weight' => 130,
+              'every_page' => TRUE,
+            ),
+          ),
+        ),
+      ),
+    ),
+  );
+
+  return $libraries;
+}
+
+/**
+ * Create variables for custom panels panes created via FPP
+ **
+ * Implements hook_preprocess_fieldable_panels_pane().
+ */
+
+function wcm_omega_preprocess_fieldable_panels_pane(&$vars) {
+  $type = $vars['elements']['#bundle'];
+
+  // Tile panes
+  if (in_array($type, array('tile_pane', 'tile_pane_plus_text_area'))) {
+    if (!empty($vars['content']['title'])) {
+      $vars['tile_title'] = $vars['content']['title']['#value'];
+    }
+    $vars['tile_url'] = NULL;
+    if (!empty($vars['content']['field_tile_link'])) {
+      $link = $vars['content']['field_tile_link']['#items'][0];
+      $vars['tile_url'] = url($link['url'], array('absolute' => TRUE, 'fragment' => $link['fragment'], 'query' => $link['query']));
+    }
+    if (!empty($vars['content']['field_background_color'])) {
+      $vars['classes_array'][] = $vars['content']['field_background_color']['#items'][0]['value'];
+    }
+    if (!empty($vars['content']['field_background_color_2'])) {
+      $vars['classes_array'][] = $vars['content']['field_background_color_2']['#items'][0]['value'];
+    }
+    if (!empty($vars['content']['field_tile_image_style'])) {
+      $style = $vars['content']['field_tile_image_style']['#items'][0]['value'];
+      $vars['tile_icon'] = ($style == 'icon');
+
+      if (!empty($style)) {
+        $vars['classes_array'][] = 'tile-image-style-' . $style;
+      }
+    }
+    if (!empty($vars['tile_url'])) {
+      $vars['classes_array'][] = 'tile-pane-linked';
+    }
+  }
+
+  // Image panes
+  elseif ($type == 'image') {
+    if (!empty($vars['content']['field_basic_image_image'])) {
+      $vars['content']['field_basic_image_image'][0]['#path']['path'] = !empty($vars['elements']['#fieldable_panels_pane']->field_ocio_link) ? $vars['elements']['#fieldable_panels_pane']->field_ocio_link['und'][0]['display_url'] : NULL;
+    }
+  }
+}
+
+/**
+ * Add classes to field_banner_image_text
+ **
+ * Implements hook_preprocess_field().
+ */
+
+function wcm_omega_preprocess_field(&$vars) {
+
+  if ($vars['element']['#field_name'] == 'field_banner_image_text') {
+
+    //print classes based on selected options from field
+    if (isset($vars['element']['#object']->field_banner_image_text_color['und'][0]['value'])) {
+      $vars['classes_array'][] = $vars['element']['#object']->field_banner_image_text_color['und'][0]['value'];
+    }
+    if (isset($vars['element']['#object']->field_banner_image_text_location['und'][0]['value'])) {
+      $vars['classes_array'][] = $vars['element']['#object']->field_banner_image_text_location['und'][0]['value'];
+    }
+    if (isset($vars['element']['#object']->field_banner_image_text_bkground['und'][0]['value'])) {
+      $vars['classes_array'][] = $vars['element']['#object']->field_banner_image_text_bkground['und'][0]['value'];
+    }
+  }
+}
+
+/**
+ * Implements template_preprocess_panels_pane().
+ */
+function wcm_omega_preprocess_panels_pane(&$vars) {
+  $pane = $vars['pane'];
+
+  if ($pane->type == 'mm_widgets_live_pane' && $pane->configuration['single_channel']) {
+    $vars['channel'] = $pane->channel;
+    $vars['classes_array'][] = 'mm-single-channel';
+    if ($pane->channel == 'fw' ) {
+      $vars['classes_array'][] = 'mm-channel-type-undefined';
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/README.md b/profiles/wcm_base/themes/wcm_omega/templates/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..51dd46f5efc186af69b56f0e6d27d7e6ae5aeb46
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/README.md
@@ -0,0 +1,3 @@
+# Overriding template files
+Place your template files in this directory. You can optionally organize them in
+subdirectories.
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/book/book-navigation.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/book/book-navigation.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..70ad4f20d2412112ea6ccd2c625b1f5a04ccbdef
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/book/book-navigation.tpl.php
@@ -0,0 +1,59 @@
+<?php
+
+/* This template is for the outline at the bottom of the books pages */
+
+/**
+ * @file
+ * Default theme implementation to navigate books.
+ *
+ * Presented under nodes that are a part of book outlines.
+ *
+ * Available variables:
+ * - $tree: The immediate children of the current node rendered as an unordered
+ *   list.
+ * - $current_depth: Depth of the current node within the book outline. Provided
+ *   for context.
+ * - $prev_url: URL to the previous node.
+ * - $prev_title: Title of the previous node.
+ * - $parent_url: URL to the parent node.
+ * - $parent_title: Title of the parent node. Not printed by default. Provided
+ *   as an option.
+ * - $next_url: URL to the next node.
+ * - $next_title: Title of the next node.
+ * - $has_links: Flags TRUE whenever the previous, parent or next data has a
+ *   value.
+ * - $book_id: The book ID of the current outline being viewed. Same as the node
+ *   ID containing the entire outline. Provided for context.
+ * - $book_url: The book/node URL of the current outline being viewed. Provided
+ *   as an option. Not used by default.
+ * - $book_title: The book/node title of the current outline being viewed.
+ *   Provided as an option. Not used by default.
+ *
+ * @see template_preprocess_book_navigation()
+ *
+ * @ingroup themeable
+ */
+?>
+<?php if ($tree || $has_links): ?>
+  <div id="book-navigation-<?php print $book_id; ?>" class="book-navigation">
+   <!-- <?php print $tree; ?> --><!--hiding the nav tree from body -->
+
+    <?php if ($has_links): ?>
+    
+    <div class="book-navigation__links clearfix">
+      <?php if ($prev_url): ?>
+        <a href="<?php print $prev_url; ?>" class="book-navigation__previous" title="<?php print t('Go to previous page'); ?>"><i class="fa fa-chevron-left"></i><?php print $prev_title; ?></a>
+      <?php endif; ?>
+      
+     <!-- <?php if ($parent_url): ?>
+        <a href="<?php print $parent_url; ?>" class="book-navigation__up" title="<?php print t('Go to parent page'); ?>"><?php print t('up'); ?></a>
+      <?php endif; ?> --><!--hiding up link -->
+      
+      <?php if ($next_url): ?>
+        <a href="<?php print $next_url; ?>" class="book-navigation__next" title="<?php print t('Go to next page'); ?>"><?php print $next_title; ?> <i class="fa fa-chevron-right"></i></a>
+      <?php endif; ?>
+    </div>
+    <?php endif; ?>
+
+  </div>
+<?php endif; ?>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/node/node.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/node/node.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..77c117a1a10caa914c60f7b5bac1740c86ce45ce
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/node/node.tpl.php
@@ -0,0 +1,110 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation to display a node.
+ *
+ * Available variables:
+ * - $title: the (sanitized) title of the node.
+ * - $content: An array of node items. Use render($content) to print them all,
+ *   or print a subset such as render($content['field_example']). Use
+ *   hide($content['field_example']) to temporarily suppress the printing of a
+ *   given element.
+ * - $user_picture: The node author's picture from user-picture.tpl.php.
+ * - $date: Formatted creation date. Preprocess functions can reformat it by
+ *   calling format_date() with the desired parameters on the $created variable.
+ * - $name: Themed username of node author output from theme_username().
+ * - $node_url: Direct url of the current node.
+ * - $display_submitted: Whether submission information should be displayed.
+ * - $submitted: Submission information created from $name and $date during
+ *   template_preprocess_node().
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions. The default values can be one or more of the
+ *   following:
+ *   - node: The current template type, i.e., "theming hook".
+ *   - node-[type]: The current node type. For example, if the node is a
+ *     "Article" it would result in "node-article". Note that the machine
+ *     name will often be in a short form of the human readable label.
+ *   - node-teaser: Nodes in teaser form.
+ *   - node-preview: Nodes in preview mode.
+ *   The following are controlled through the node publishing options.
+ *   - node-promoted: Nodes promoted to the front page.
+ *   - node-sticky: Nodes ordered above other non-sticky nodes in teaser
+ *     listings.
+ *   - node-unpublished: Unpublished nodes visible only to administrators.
+ * - $title_prefix (array): An array containing additional output populated by
+ *   modules, intended to be displayed in front of the main title tag that
+ *   appears in the template.
+ * - $title_suffix (array): An array containing additional output populated by
+ *   modules, intended to be displayed after the main title tag that appears in
+ *   the template.
+ *
+ * Other variables:
+ * - $node: Full node object. Contains data that may not be safe.
+ * - $type: Node type, i.e. page, article, etc.
+ * - $comment_count: Number of comments attached to the node.
+ * - $uid: User ID of the node author.
+ * - $created: Time the node was published formatted in Unix timestamp.
+ * - $classes_array: Array of html class attribute values. It is flattened
+ *   into a string within the variable $classes.
+ * - $zebra: Outputs either "even" or "odd". Useful for zebra striping in
+ *   teaser listings.
+ * - $id: Position of the node. Increments each time it's output.
+ *
+ * Node status variables:
+ * - $view_mode: View mode, e.g. 'full', 'teaser'...
+ * - $teaser: Flag for the teaser state (shortcut for $view_mode == 'teaser').
+ * - $page: Flag for the full page state.
+ * - $promote: Flag for front page promotion state.
+ * - $sticky: Flags for sticky post setting.
+ * - $status: Flag for published status.
+ * - $comment: State of comment settings for the node.
+ * - $readmore: Flags true if the teaser content of the node cannot hold the
+ *   main body content.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ * - $is_admin: Flags true when the current user is an administrator.
+ *
+ * Field variables: for each field instance attached to the node a corresponding
+ * variable is defined, e.g. $node->body becomes $body. When needing to access
+ * a field's raw values, developers/themers are strongly encouraged to use these
+ * variables. Otherwise they will have to explicitly specify the desired field
+ * language, e.g. $node->body['en'], thus overriding any language negotiation
+ * rule that was previously applied.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_node()
+ * @see template_process()
+ */
+?>
+<article<?php print $attributes; ?>>
+  <?php if (!empty($title_prefix) || !empty($title_suffix) || !$page): ?>
+    <header>
+      <?php print render($title_prefix); ?>
+      <?php if (!$page): ?>
+        <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>" rel="bookmark"><?php print $title; ?></a></h2>
+      <?php endif; ?>
+      <?php print render($title_suffix); ?>
+    </header>
+  <?php endif; ?>
+
+  <?php if ($display_submitted): ?>
+    <footer class="node__submitted">
+      <?php print $user_picture; ?>
+      <p class="submitted"><?php print $submitted; ?></p>
+    </footer>
+  <?php endif; ?>
+
+  <div<?php print $content_attributes; ?>>
+    <?php
+      // We hide the comments and links now so that we can render them later.
+      hide($content['comments']);
+      hide($content['links']);
+      print render($content);
+    ?>
+  </div>
+
+  <?php print render($content['links']); ?>
+  <?php print render($content['comments']); ?>
+</article>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/panes/fieldable-panels-pane--tile-pane-plus-text-area.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/panes/fieldable-panels-pane--tile-pane-plus-text-area.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..746690f1a2390bc69d0ddac2a2112cbb48dca737
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/panes/fieldable-panels-pane--tile-pane-plus-text-area.tpl.php
@@ -0,0 +1,14 @@
+<div<?php print $attributes; ?>>
+  <?php if ($tile_url): ?><a href="<?php print $tile_url; ?>"><?php endif; ?>
+    <?php print render($content['field_tile_background_img']); ?>
+    <?php if ($tile_icon): ?>
+      <h2><?php print $tile_title; ?></h2>
+    <?php endif; ?>
+    <div class="text-areas">
+      <?php if (!$tile_icon): ?>
+        <h2><?php print $tile_title; ?></h2>
+        <?php endif; ?>
+      <?php print render($content['field_tile_text_area']); ?>
+    </div>
+  <?php if ($tile_url): ?></a><?php endif; ?>
+</div>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/panes/fieldable-panels-pane--tile-pane.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/panes/fieldable-panels-pane--tile-pane.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..ae53c75bbb08926d7cf05515f5580ffbef80dc9e
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/panes/fieldable-panels-pane--tile-pane.tpl.php
@@ -0,0 +1,11 @@
+<div<?php print $attributes; ?>>
+  <?php if ($tile_url): ?><a href="<?php print $tile_url; ?>"><?php endif; ?>
+    <?php print render($content['field_tile_background_img']); ?>
+    <?php if ($tile_title): ?>
+      <div class="title-box">
+        <div class="title-text"><h2><?php print $tile_title; ?></h2></div>
+        <?php if ($tile_url): ?><div class="title-icon"><i class="fa fa-angle-right"></i></div><?php endif; ?>
+      </div>
+    <?php endif; ?>
+  <?php if ($tile_url): ?></a><?php endif; ?>
+</div>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/panes/mm-item--single-channel.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/panes/mm-item--single-channel.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..3e187d3f458a15342d9999d22b83ecc1a65bd25a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/panes/mm-item--single-channel.tpl.php
@@ -0,0 +1,8 @@
+<article class="item {{channel.machine_type_name}}">
+  <div class="content">
+    <span class="excerpt"><a href="{{link}}" target="_blank">{{{excerpt}}}<span class="element-invisible"> (link is external)</span></a></span>
+  </div>
+  <div class="network">
+    <span class="attribution"><small>{{formatted_published_at}} via <a href="{{channel.url}}" target="_blank">{{channel.name}}<span class="element-invisible"> (link is external)</span></a>.</small></span>
+  </div>
+</article>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/panes/mm-item.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/panes/mm-item.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..e2009ad8f8c8a058e2bb0733072b7019bd856733
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/panes/mm-item.tpl.php
@@ -0,0 +1,8 @@
+<article class="item {{channel.machine_type_name}}">
+  <div class="content">
+    <span class="excerpt"><a href="{{link}}" target="_blank">{{{excerpt}}}<span class="element-invisible"> (link is external)</span></a></span>
+  </div>
+  <div class="network">
+    <i class="fa fa-{{channel.machine_type_name}}"></i><span class="attribution"><small>{{formatted_published_at}} via <a href="{{channel.url}}" target="_blank">{{channel.name}}<span class="element-invisible"> (link is external)</span></a>.</small></span>
+  </div>
+</article>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/panes/panels-pane--mm-widgets-live-pane.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/panes/panels-pane--mm-widgets-live-pane.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..426dec76fec7752cb0f4cc3290b039cc6809afd9
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/panes/panels-pane--mm-widgets-live-pane.tpl.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * @file panels-pane.tpl.php
+ * Main panel pane template
+ *
+ * Variables available:
+ * - $pane->type: the content type inside this pane
+ * - $pane->subtype: The subtype, if applicable. If a view it will be the
+ *   view name; if a node it will be the nid, etc.
+ * - $title: The title of the content
+ * - $content: The actual content
+ * - $links: Any links associated with the content
+ * - $more: An optional 'more' link (destination only)
+ * - $admin_links: Administrative links associated with the content
+ * - $feeds: Any feed icons or associated with the content
+ * - $display: The complete panels display object containing all kinds of
+ *   data including the contexts and all of the other panes being displayed.
+ */
+?>
+<?php if ($pane_prefix): ?>
+  <?php print $pane_prefix; ?>
+<?php endif; ?>
+<div class="<?php print $classes; ?>" <?php print $id; ?> <?php print $attributes; ?>>
+  <?php if ($admin_links): ?>
+    <?php print $admin_links; ?>
+  <?php endif; ?>
+
+  <?php if ($channel): ?>
+    <i class="mm-channel fa fa-lg fa-<?php print $channel; ?>"></i>
+  <?php endif; ?>
+
+  <?php print render($title_prefix); ?>
+  <?php if ($title): ?>
+    <<?php print $title_heading; ?><?php print $title_attributes; ?>>
+      <?php print $title; ?>
+    </<?php print $title_heading; ?>>
+  <?php endif; ?>
+  <?php print render($title_suffix); ?>
+  <?php if ($feeds): ?>
+    <div class="feed">
+      <?php print $feeds; ?>
+    </div>
+  <?php endif; ?>
+
+  <div class="pane-content">
+
+    <?php print render($content); ?>
+  </div>
+
+  <?php if ($links): ?>
+    <div class="links">
+      <?php print $links; ?>
+    </div>
+  <?php endif; ?>
+
+  <?php if ($more): ?>
+    <div class="more-link">
+      <?php print $more; ?>
+    </div>
+  <?php endif; ?>
+</div>
+<?php if ($pane_suffix): ?>
+  <?php print $pane_suffix; ?>
+<?php endif; ?>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/regions/region--content.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--content.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..e7f1feb4105c9fc4f987f6468dc8dac52be3744d
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--content.tpl.php
@@ -0,0 +1,36 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - $content: The content for this region, typically blocks.
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions. The default values can be one or more of the
+ *   following:
+ *   - region: The current template type, i.e., "theming hook".
+ *   - region-[name]: The name of the region with underscores replaced with
+ *     dashes. For example, the page_top region would have a region-page-top
+ *     class.
+ * - $region: The name of the region variable as defined in the theme's .info
+ *   file.
+ *
+ * Helper variables:
+ * - $classes_array: Array of html class attribute values. It is flattened
+ *   into a string within the variable $classes.
+ * - $is_admin: Flags true when the current user is an administrator.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_region()
+ * @see template_process()
+ */
+?>
+<?php if ($content): ?>
+  <div<?php print $attributes; ?>>
+    <?php print $content; ?>
+  </div>
+<?php endif; ?>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/regions/region--footer-1.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--footer-1.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..e7f43e522831e91a938fdd229a45b2d5d9c2773a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--footer-1.tpl.php
@@ -0,0 +1,41 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions.
+ * - $attributes: array of HTML attributes populated by modules, intended to
+ *   be added to the main container tag of this template. It can be manipulated
+ *   through the variable $attributes_array from preprocess functions.
+ * - $region: The name of the region variable as defined in the theme's .info
+ *   file.
+ * - $rendered_content: content pre-rendered by external modules.
+ *
+ * Helper variables:
+ * - $is_admin: Flags true when the current user is an administrator.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ *
+ * * Site identity:
+ * - $front_page: The URL of the front page. Use this instead of $base_path,
+ *   when linking to the front page. This includes the language domain or
+ *   prefix.
+ * - $logo: The path to the logo image, as defined in theme configuration.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_region()
+ * @see template_process()
+ */
+?>
+<div<?php print $attributes; ?>>
+	<div id="osu-wordmark">
+		<a href="http://osu.edu" alt="The Ohio State University" target="_blank">
+			<img src="<?php print $logo; ?>" alt="">
+		</a>
+	</div><!--/osu-logo -->
+  <?php print $content; ?>
+</div>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/regions/region--main-menu.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--main-menu.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..6dee4d495c0d05225747aab33708bbd2bdea7d68
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--main-menu.tpl.php
@@ -0,0 +1,39 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - $content: The content for this region, typically blocks.
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions. The default values can be one or more of the
+ *   following:
+ *   - region: The current template type, i.e., "theming hook".
+ *   - region-[name]: The name of the region with underscores replaced with
+ *     dashes. For example, the page_top region would have a region-page-top
+ *     class.
+ * - $region: The name of the region variable as defined in the theme's .info
+ *   file.
+ *
+ * Helper variables:
+ * - $classes_array: Array of html class attribute values. It is flattened
+ *   into a string within the variable $classes.
+ * - $is_admin: Flags true when the current user is an administrator.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_region()
+ * @see template_process()
+ */
+?>
+<div class="l-region--main-menu-wrapper <?php print $menu_color ?>">
+	<div class="l-constrained max-width">
+  	<div<?php print $attributes; ?>>
+  		<?php print $content; ?>
+  	</div>
+	</div>
+</div>
+
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/regions/region--masthead.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--masthead.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..a74c94c424688519162c33f9aaa074445a59f09d
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--masthead.tpl.php
@@ -0,0 +1,56 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions.
+ * - $attributes: array of HTML attributes populated by modules, intended to
+ *   be added to the main container tag of this template. It can be manipulated
+ *   through the variable $attributes_array from preprocess functions.
+ * - $region: The name of the region variable as defined in the theme's .info
+ *   file.
+ *
+ * Helper variables:
+ * - $is_admin: Flags true when the current user is an administrator.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ *
+ * * Site identity:
+ * - $front_page: The URL of the front page. Use this instead of $base_path,
+ *   when linking to the front page. This includes the language domain or
+ *   prefix.
+ * - $logo: The path to the logo image, as defined in theme configuration.
+ * - $site_name: The name of the site, empty when display has been disabled
+ *   in theme settings.
+ * - $site_slogan: The slogan of the site, empty when display has been disabled
+ *   in theme settings.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_region()
+ * @see template_process()
+ */
+?>
+<div<?php print $attributes; ?>>
+	<div class="l-constrained max-width">
+		<div id="site-name"<?php print $site_name_classes; ?>>
+			<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home">
+      <?php if ($site_name_prefix): ?>
+        <span class="site-name-prefix"><?php print $site_name_prefix; ?></span>
+      <?php endif; ?>
+        <span class="site-name-main"><?php print $site_name; ?></span>
+      </a>
+			<?php if ($site_slogan): ?>
+				<div class="site-name-slogan"><?php print $site_slogan; ?></div>
+			<?php endif; ?>
+    </div><!--/site-name-->
+    <div id="site-logo">
+      <a href="http://osu.edu" target="_blank">
+        <img src="<?php print $logo; ?>" alt="">
+      </a>
+    </div><!--/site-logo-->
+	</div><!--/l-constrained-->
+</div>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/regions/region--osu-navbar.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--osu-navbar.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..a66445c2b6b4f51b36e4de954a269ebd01b33a79
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/regions/region--osu-navbar.tpl.php
@@ -0,0 +1,53 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions.
+ * - $attributes: array of HTML attributes populated by modules, intended to
+ *   be added to the main container tag of this template. It can be manipulated
+ *   through the variable $attributes_array from preprocess functions.
+ * - $region: The name of the region variable as defined in the theme's .info
+ *   file.
+ *
+ * Helper variables:
+ * - $is_admin: Flags true when the current user is an administrator.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ *
+ * * Site identity:
+ * - $front_page: The URL of the front page. Use this instead of $base_path,
+ *   when linking to the front page. This includes the language domain or
+ *   prefix.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_region()
+ * @see template_process()
+ */
+?>
+<div<?php print $attributes; ?>>
+  <div role="navigation" id="osu_navbar" class="l-constrained max-width" aria-labelledby="osu_navbar_heading">
+
+    <h2 id="osu_navbar_heading" class="osu-semantic">Ohio State nav bar</h2>
+    <a href="#main-content" id="skip" class="osu-semantic">Skip to main content</a>
+    <div class="univ_info">
+      <p class="univ_name"><a href="http://osu.edu" title="The Ohio State University">The Ohio State University</a></p>
+    </div><!-- /univ_info -->
+    <div class="univ_links">
+      <div class="links">
+        <ul>
+          <li><a href="http://www.osu.edu/help.php" class="help">Help</a></li>
+          <li><a href="http://buckeyelink.osu.edu/" class="buckeyelink" >BuckeyeLink</a></li>
+          <li><a href="http://www.osu.edu/map/" class="map">Map</a></li>
+          <li><a href="http://www.osu.edu/findpeople.php" class="findpeople">Find People</a></li>
+          <li><a href="https://email.osu.edu/" class="webmail">Webmail</a></li>
+          <li class="last"><a href="http://www.osu.edu/search/" class="search">Search Ohio State</a></li>
+        </ul>
+      </div><!-- /links -->
+    </div><!-- /univ_links -->
+  </div><!-- /osu_navbar -->
+</div>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/regions/region.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/regions/region.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..e7f1feb4105c9fc4f987f6468dc8dac52be3744d
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/regions/region.tpl.php
@@ -0,0 +1,36 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - $content: The content for this region, typically blocks.
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions. The default values can be one or more of the
+ *   following:
+ *   - region: The current template type, i.e., "theming hook".
+ *   - region-[name]: The name of the region with underscores replaced with
+ *     dashes. For example, the page_top region would have a region-page-top
+ *     class.
+ * - $region: The name of the region variable as defined in the theme's .info
+ *   file.
+ *
+ * Helper variables:
+ * - $classes_array: Array of html class attribute values. It is flattened
+ *   into a string within the variable $classes.
+ * - $is_admin: Flags true when the current user is an administrator.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_region()
+ * @see template_process()
+ */
+?>
+<?php if ($content): ?>
+  <div<?php print $attributes; ?>>
+    <?php print $content; ?>
+  </div>
+<?php endif; ?>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/search/search-result.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/search/search-result.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..dc0646c9fb99b7f8f3aa0fe6081974827af2d68e
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/search/search-result.tpl.php
@@ -0,0 +1,79 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation for displaying a single search result.
+ *
+ * This template renders a single search result and is collected into
+ * search-results.tpl.php. This and the parent template are
+ * dependent to one another sharing the markup for definition lists.
+ *
+ * Available variables:
+ * - $url: URL of the result.
+ * - $title: Title of the result.
+ * - $snippet: A small preview of the result. Does not apply to user searches.
+ * - $info: String of all the meta information ready for print. Does not apply
+ *   to user searches.
+ * - $info_split: Contains same data as $info, split into a keyed array.
+ * - $module: The machine-readable name of the module (tab) being searched, such
+ *   as "node" or "user".
+ * - $title_prefix (array): An array containing additional output populated by
+ *   modules, intended to be displayed in front of the main title tag that
+ *   appears in the template.
+ * - $title_suffix (array): An array containing additional output populated by
+ *   modules, intended to be displayed after the main title tag that appears in
+ *   the template.
+ *
+ * Default keys within $info_split:
+ * - $info_split['type']: Node type (or item type string supplied by module).
+ * - $info_split['user']: Author of the node linked to users profile. Depends
+ *   on permission.
+ * - $info_split['date']: Last update of the node. Short formatted.
+ * - $info_split['comment']: Number of comments output as "% comments", %
+ *   being the count. Depends on comment.module.
+ *
+ * Other variables:
+ * - $classes_array: Array of HTML class attribute values. It is flattened
+ *   into a string within the variable $classes.
+ * - $title_attributes_array: Array of HTML attributes for the title. It is
+ *   flattened into a string within the variable $title_attributes.
+ * - $content_attributes_array: Array of HTML attributes for the content. It is
+ *   flattened into a string within the variable $content_attributes.
+ *
+ * Since $info_split is keyed, a direct print of the item is possible.
+ * This array does not apply to user searches so it is recommended to check
+ * for its existence before printing. The default keys of 'type', 'user' and
+ * 'date' always exist for node searches. Modules may provide other data.
+ * @code
+ *   <?php if (isset($info_split['comment'])): ?>
+ *     <span class="info-comment">
+ *       <?php print $info_split['comment']; ?>
+ *     </span>
+ *   <?php endif; ?>
+ * @endcode
+ *
+ * To check for all available data within $info_split, use the code below.
+ * @code
+ *   <?php print '<pre>'. check_plain(print_r($info_split, 1)) .'</pre>'; ?>
+ * @endcode
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_search_result()
+ * @see template_process()
+ *
+ * @ingroup themeable
+ */
+?>
+<article class="<?php print $classes; ?>"<?php print $attributes; ?>>
+  <?php print render($title_prefix); ?>
+    <h3 <?php print $title_attributes; ?>><a href="<?php print $url; ?>"><?php print $title; ?></a></h3>
+  <?php print render($title_suffix); ?>
+  <?php if ($snippet): ?>
+    <p class="search-result__snippet" <?php print $content_attributes; ?>><?php print $snippet; ?></p>
+  <?php endif; ?>
+<!--
+  <?php if ($info): ?>
+    <footer class="search-result__info"><?php print $info; ?></footer>
+  <?php endif; ?>
+-->
+</article>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/search/search-results.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/search/search-results.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..a7f2eecc3d80d3f3bceb09b97817f2a6ac772008
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/search/search-results.tpl.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * @file
+ * Default theme implementation for displaying search results.
+ *
+ * This template collects each invocation of theme_search_result(). This and
+ * the child template are dependent to one another sharing the markup for
+ * definition lists.
+ *
+ * Note that modules may implement their own search type and theme function
+ * completely bypassing this template.
+ *
+ * Available variables:
+ * - $search_results: All results as it is rendered through
+ *   search-result.tpl.php
+ * - $module: The machine-readable name of the module (tab) being searched, such
+ *   as "node" or "user".
+ *
+ *
+ * @see template_preprocess_search_results()
+ *
+ * @ingroup themeable
+ */
+?>
+<?php if ($search_results): ?>
+  <h2><?php print t('Search results');?></h2>
+  <section class="search-results">
+    <?php print $search_results; ?>
+  </section>
+  <?php print $pager; ?>
+<?php else : ?>
+  <h2><?php print t('Your search yielded no results');?></h2>
+  <?php print search_help('search#noresults', drupal_help_arg()); ?>
+<?php endif; ?>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/system/html.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/system/html.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..30ec042ebea270dd3d0699bb359fb6dcf64ae567
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/system/html.tpl.php
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<?php if (omega_extension_enabled('compatibility') && omega_theme_get_setting('omega_conditional_classes_html', TRUE)): ?>
+  <!--[if IEMobile 7]><html class="no-js ie iem7" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"><![endif]-->
+  <!--[if lte IE 6]><html class="no-js ie lt-ie9 lt-ie8 lt-ie7" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"><![endif]-->
+  <!--[if (IE 7)&(!IEMobile)]><html class="no-js ie lt-ie9 lt-ie8" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"><![endif]-->
+  <!--[if IE 8]><html class="no-js ie lt-ie9" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"><![endif]-->
+  <!--[if (gte IE 9)|(gt IEMobile 7)]><html class="no-js ie" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"<?php print $rdf_namespaces; ?>><![endif]-->
+  <!--[if !IE]><!--><html class="no-js" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"<?php print $rdf_namespaces; ?>><!--<![endif]-->
+<?php else: ?>
+<html class="no-js" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"<?php print $rdf_namespaces; ?>>
+<?php endif; ?>
+  <head>
+    <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
+
+  	<!-- font awesome -->
+  	<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
+
+  	<!-- code font -->
+  	<script src="//use.edgefonts.net/courier-prime.js"></script>
+
+    <!-- osu fonts -->
+    <link rel="shortcut icon" href="<?php print $favicon; ?>" />
+
+    <!-- favicon -->
+    <link rel="stylesheet" href="<?php print $osufonts; ?>">
+
+    <title><?php print $head_title; ?></title>
+    <?php print $head; ?>
+    <?php print $styles; ?>
+    <?php print $scripts; ?>
+  </head>
+  <body<?php print $attributes;?>>
+    <?php print $page_top; ?>
+    <?php print $page; ?>
+    <?php print $page_bottom; ?>
+  </body>
+</html>
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/views/views-view-unformatted.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/views/views-view-unformatted.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..5c140de17a7a012df20512739faae1574fac7468
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/views/views-view-unformatted.tpl.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * @file
+ * Template to display a list of rows.
+ */
+?>
+
+<?php if (!empty($title)): ?>
+  <h3 class="views-group-header"><?php print $title; ?></h3>
+<?php endif; ?>
+
+<div class="views-group">
+<?php foreach ($rows as $delta => $row): ?>
+  <div<?php print $row_attributes[$delta]; ?>>
+    <?php print $row; ?>
+  </div>
+<?php endforeach; ?>
+</div> <!--/views-group-->
diff --git a/profiles/wcm_base/themes/wcm_omega/templates/webform/webform-calendar.tpl.php b/profiles/wcm_base/themes/wcm_omega/templates/webform/webform-calendar.tpl.php
new file mode 100644
index 0000000000000000000000000000000000000000..4985c96b51f275cfe06f635914526b8b5decc25a
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/templates/webform/webform-calendar.tpl.php
@@ -0,0 +1,9 @@
+<?php $theme_path = drupal_get_path('theme', 'ocio_omega_base');
+
+/**
+ * @file
+ * Theme the button for the date component date popup.
+ */
+?>
+
+<input type="image" src="<?php print $GLOBALS['base_path'] ?><?php print $theme_path ?>/images/calendar.svg" class="<?php print implode(' ', $calendar_classes); ?>" alt="<?php print t('Open popup calendar'); ?>" title="<?php print t('Open popup calendar'); ?>" />
diff --git a/profiles/wcm_base/themes/wcm_omega/theme-settings.php b/profiles/wcm_base/themes/wcm_omega/theme-settings.php
new file mode 100644
index 0000000000000000000000000000000000000000..ca85bd1e606887cd9450ed174b7705cd900577cb
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/theme-settings.php
@@ -0,0 +1,104 @@
+<?php
+
+/**
+ * @file
+ * Theme settings file for the WCM Omega theme.
+ */
+
+require_once dirname(__FILE__) . '/template.php';
+
+/**
+ * Implements hook_form_FORM_alter().
+ */
+function wcm_omega_form_system_theme_settings_alter(&$form, $form_state) {
+  // You can use this hook to append your own theme settings to the theme
+  // settings form for your subtheme. You should also take a look at the
+  // 'extensions' concept in the Omega base theme.
+$form['wcm_omega'] = array(
+    '#type' => 'fieldset',
+    '#title' => t('Theme Customization'),
+    '#description' => t('Customize the look and feel of the site.'),
+    'wcm_omega_breadcrumb' => array(
+      '#type'  => 'checkbox',
+      '#title' => t('Show breadcrumbs'),
+      '#default_value' => theme_get_setting('wcm_omega_breadcrumb'),
+    ),
+    'wcm_omega_color_navbar' => array(
+      '#type'  => 'radios',
+      '#title' => t('OSU Nav Bar'),
+      '#default_value' => theme_get_setting('wcm_omega_color_navbar'),
+      '#options' => wcm_omega_generate_color_swatches(
+        array(
+          'lt-gray' => t('Light Gray'),
+          'dk-gray' => t('Dark Gray'),
+        )
+      ),
+    ),
+    'wcm_omega_color_masthead' => array(
+      '#type' => 'radios',
+      '#title' => t('Masthead'),
+      '#default_value' => theme_get_setting('wcm_omega_color_masthead'),
+      '#options' => wcm_omega_generate_color_swatches(
+        array(
+          'white' => t('White'),
+          'lt-gray' => t('Light Gray'),
+          'dk-gray' => t('Dark Gray'),
+        )
+      )
+    ),
+    'wcm_omega_color_menu' => array(
+      '#type' => 'radios',
+      '#title' => t('Menu'),
+      '#default_value' => theme_get_setting('wcm_omega_color_menu'),
+      '#options' => wcm_omega_generate_color_swatches(
+        array(
+          'white' => t('White'),
+          'lt-gray' => t('Light Gray'),
+          'md-gray' => t('Mid Gray'),
+          'dk-gray' => t('Dark Gray'),
+          'black' => t('Black'),
+          'red' => t('Red'),
+        )
+      )
+    ),
+    'wcm_omega_color_body' => array(
+      '#type'  => 'radios',
+      '#title' => t('Body Color'),
+      '#default_value' => theme_get_setting('wcm_omega_color_body'),
+      '#options' => wcm_omega_generate_color_swatches(
+        array(
+	        'white' => t('White'),
+          'lt-gray' => t('Light Gray'),
+        )
+      )
+    ),
+  );
+
+  $form['#attached']['css'][] = drupal_get_path('theme', 'wcm_omega') . '/css/wcm-omega.settings.css';
+  $form['#validate'][] = 'wcm_omega_form_system_theme_settings_validate';
+}
+
+
+// validation to not allow certain color combinations
+function wcm_omega_form_system_theme_settings_validate(&$form, &$form_state) {
+
+  if (!empty($form['ocio_omega']['ocio_omega_color_navbar'])) {  
+	  if ($form_state['values']['ocio_omega_color_navbar'] == 'dk-gray' && $form_state['values']['ocio_omega_color_masthead'] == 'dk-gray') {
+	    form_set_error('ocio_omega_color_masthead', t('Dark masthead cannot be used with dark navbar.'));
+	    $form['ocio_omega']['ocio_omega_color_masthead']['dk-gray']['#attributes']['class'][] = 'form-radio-error';
+	  }
+	}
+}
+
+
+//Generate Color swatches for settings
+function wcm_omega_generate_color_swatches($options = array()) {
+  foreach ($options as $name => $title) {
+    $option = '<span class="' . $name . '-option swatch-panel">';
+    $option .= '<span class="label">' . $title . '</span>';
+    $option .= '<div class="swatch ' . $name . '"></div>';
+    $option .= '</span>';
+    $options[$name] = $option;
+  }
+  return $options;
+}
diff --git a/profiles/wcm_base/themes/wcm_omega/theme/README.md b/profiles/wcm_base/themes/wcm_omega/theme/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..81772435e8edab63bb46ebcc7396947c8c27df08
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/theme/README.md
@@ -0,0 +1,32 @@
+# Overriding theme function
+Instead of defining theme function overrides in your template.php file Omega allows you to split them up into separate include files. These follow the same naming pattern as (pre-)process include files and are automatically lazy-loaded whenever the theme hook is invoked.
+
+This feature greatly improves the maintainability of large themes that would otherwise contain hundreds of lines of unrelated code in your template.php file.
+
+The include files have to follow a certain naming pattern (HOOK.theme.inc) for them to be automatically discovered:
+
+* THEMENAME_breadcrumb() = breadcrumb.theme.inc
+* THEMENAME_button() = button.theme.inc
+
+As with template files, you should replace underscores from the hook names with hyphens:
+
+* THEMENAME_status_messages() = status-messages.theme.inc
+* THEMENAME_menu_link() = menu-link.theme.inc
+
+Inside of each of these files you define the theme function override just as you would otherwise do in your template.php file:
+
+```
+function THEMENAME_HOOK(&$variables) {
+  // Your code here.
+}
+```
+
+Example:
+
+```
+function THEMENAME_menu_link(&$variables) {
+  // Your code here.
+}
+```
+
+You can also provide theme function include files for theme hook suggestions.
diff --git a/profiles/wcm_base/themes/wcm_omega/wcm_omega.info b/profiles/wcm_base/themes/wcm_omega/wcm_omega.info
new file mode 100644
index 0000000000000000000000000000000000000000..8c00e3005efc3bbf814e3459cdca70dd602910f5
--- /dev/null
+++ b/profiles/wcm_base/themes/wcm_omega/wcm_omega.info
@@ -0,0 +1,109 @@
+name = WCM Omega
+description = Please provide a description for your theme.
+base theme = omega
+screenshot = screenshot.png
+engine = phptemplate
+core = 7.x
+
+; ========================================
+; Stylesheets
+; ========================================
+stylesheets[all][] = css/wcm-omega.reset.css
+stylesheets[all][] = css/wcm-omega.styles.css
+
+; ========================================
+; Scripts
+; ========================================
+scripts[] = js/wcm-omega.behaviors.js
+
+; ========================================
+; Regions
+; ========================================
+regions[osu_navbar] = OSU Navbar
+regions[masthead] = Masthead
+regions[main_menu] = Main Menu
+regions[hero] = Hero
+regions[workbench] = Workbench Info
+regions[content] = Content
+regions[sidebar_1] = Sidebar 1
+regions[sidebar_2] = Sidebar 2
+regions[pre_footer] = Pre-Footer
+regions[footer_1] = Footer 1
+regions[footer_2] = Footer 2
+regions[footer_3] = Footer 3
+regions[user] = User
+
+; ========================================
+; Settings
+; ========================================
+settings[toggle_logo] = 1
+settings[toggle_name] = 1
+settings[toggle_slogan] = 1
+settings[toggle_node_user_picture] = 1
+settings[toggle_comment_user_picture] = 1
+settings[toggle_comment_user_verification] = 1
+settings[toggle_favicon] = 1
+settings[toggle_main_menu] = 1
+settings[toggle_secondary_menu] = 1
+settings[omega_toggle_front_page_content] = 1
+settings[default_logo] = 1
+settings[logo_path] = ""
+settings[logo_upload] = ""
+settings[default_favicon] = 1
+settings[favicon_path] = ""
+settings[favicon_upload] = ""
+settings[omega_enable_warning] = 1
+settings[omega_toggle_extension_layouts] = 1
+settings[omega_layout] = ocio-4
+settings[omega_toggle_extension_development] = 1
+settings[omega_enable_export_reminder] = 0
+settings[omega_rebuild_theme_registry] = 0
+settings[omega_rebuild_aggregates] = 0
+settings[omega_browser_width_indicator] = 1
+settings[omega_livereload] = 0
+settings[omega_livereload_script] = http://localhost:35729/livereload.js
+settings[omega_livereload_host] = localhost
+settings[omega_livereload_port] = 35729
+settings[omega_demo_regions] = 0
+settings[omega_demo_regions_list][osu_navbar] = osu_navbar
+settings[omega_demo_regions_list][masthead] = masthead
+settings[omega_demo_regions_list][main_menu] = main_menu
+settings[omega_demo_regions_list][hero] = hero
+settings[omega_demo_regions_list][workbench] = workbench
+settings[omega_demo_regions_list][content] = content
+settings[omega_demo_regions_list][sidebar_1] = sidebar_1
+settings[omega_demo_regions_list][sidebar_2] = sidebar_2
+settings[omega_demo_regions_list][pre_footer] = pre_footer
+settings[omega_demo_regions_list][footer_1] = footer_1
+settings[omega_demo_regions_list][footer_2] = footer_2
+settings[omega_demo_regions_list][footer_3] = footer_3
+settings[omega_demo_regions_list][user] = user
+settings[omega_toggle_extension_compatibility] = 1
+settings[omega_conditional_classes_html] = 1
+settings[omega_apple_touch] = 1
+settings[omega_cleartype] = 1
+settings[omega_handheld_friendly] = 1
+settings[omega_mobile_optimized] = 1
+settings[omega_viewport] = 1
+settings[omega_viewport_initial_scale] = _default
+settings[omega_viewport_user_scaleable] = 1
+settings[omega_viewport_minimum_scale] = _default
+settings[omega_viewport_maximum_scale] = _default
+settings[omega_chrome_edge] = 1
+settings[omega_internet_explorer_support] = _none
+settings[omega_toggle_extension_assets] = 1
+settings[omega_libraries][selectivizr][status] = 0
+settings[omega_libraries][selectivizr][variant] = _default
+settings[omega_libraries][respond][status] = 0
+settings[omega_libraries][respond][variant] = _default
+settings[omega_libraries][pie][status] = 0
+settings[omega_libraries][pie][variant] = _default
+settings[omega_libraries][html5shiv][status] = 0
+settings[omega_libraries][html5shiv][variant] = _default
+settings[omega_libraries][modernizr][status] = 0
+settings[omega_libraries][modernizr][variant] = _default
+settings[wcm_omega_breadcrumb] = 1
+settings[wcm_omega_color_navbar] = lt-gray
+settings[wcm_omega_color_masthead] = dk-gray
+settings[wcm_omega_color_menu] = lt-gray
+settings[wcm_omega_color_body] = white
diff --git a/profiles/wcm_base/wcm_base.make b/profiles/wcm_base/wcm_base.make
index 47f9e1fd141e41a6418c7ce928eb996970a362b7..f89156da928eb0dded7fa0f3f6090c3b596bba65 100644
--- a/profiles/wcm_base/wcm_base.make
+++ b/profiles/wcm_base/wcm_base.make
@@ -414,6 +414,11 @@ projects[ocio_seven][download][type] = "git"
 projects[ocio_seven][download][url] = git@code.osu.edu:ocio_odee_web/ocio_seven.git
 projects[ocio_seven][download][branch] = 7.x-1.x
 
+projects[wcm_omega][type] = theme
+projects[wcm_omega][download][type] = "git"
+projects[wcm_omega][download][url] = git@code.osu.edu:ocio_odee_web/wcm_omega.git
+projects[wcm_omega][download][branch] = 7.x-1.x
+
 
 ;libraries
 libraries[ocio_modernizr][directory_name] = modernizr