Merge with mathjax/master (bringing branch up to date)
This commit is contained in:
commit
ff5aab74db
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -12,5 +12,5 @@
|
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
(function(c){var h="1.1";var a=MathJax.Hub.CombineConfig("MMLorHTML",{prefer:{MSIE:"MML",Firefox:"MML",Opera:"HTML",other:"HTML"}});var e={Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4};var b=(c.Browser.version==="0.0"||c.Browser.versionAtLeast(e[c.Browser]||0));var g=false;if(!c.Browser.isIE9){try{new ActiveXObject("MathPlayer.Factory.1");g=true}catch(f){}}var d=(c.Browser.isFirefox&&c.Browser.versionAtLeast("1.5"))||(c.Browser.isMSIE&&g)||(c.Browser.isOpera&&c.Browser.versionAtLeast("9.52"));c.Register.StartupHook("End Config",function(){var i=(a.prefer&&typeof(a.prefer)==="object"?a.prefer[MathJax.Hub.Browser]||a.prefer.other||"HTML":a.prefer);if(b||d){if(d&&(i==="MML"||!b)){if(MathJax.OutputJax.NativeMML){MathJax.OutputJax.NativeMML.Register("jax/mml")}else{c.config.jax.unshift("output/NativeMML")}}else{if(MathJax.OutputJax["HTML-CSS"]){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}else{c.config.jax.unshift("output/HTML-CSS")}}}else{c.PreProcess.disabled=true;c.prepareScripts.disabled=true;MathJax.Message.Set("Your browser does not support MathJax",null,4000);c.Startup.signal.Post("MathJax not supported")}})})(MathJax.Hub);MathJax.Ajax.loadComplete("[MathJax]/config/MMLorHTML.js");
|
||||
(function(c){var h="1.1.1";var a=MathJax.Hub.CombineConfig("MMLorHTML",{prefer:{MSIE:"MML",Firefox:"MML",Opera:"HTML",other:"HTML"}});var e={Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4};var b=(c.Browser.version==="0.0"||c.Browser.versionAtLeast(e[c.Browser]||0));var g=false;if(!c.Browser.isIE9){try{new ActiveXObject("MathPlayer.Factory.1");g=true}catch(f){}}var d=(c.Browser.isFirefox&&c.Browser.versionAtLeast("1.5"))||(c.Browser.isMSIE&&g)||(c.Browser.isOpera&&c.Browser.versionAtLeast("9.52"));c.Register.StartupHook("End Config",function(){var i=(a.prefer&&typeof(a.prefer)==="object"?a.prefer[MathJax.Hub.Browser]||a.prefer.other||"HTML":a.prefer);if(b||d){if(d&&(i==="MML"||!b)){if(MathJax.OutputJax.NativeMML){MathJax.OutputJax.NativeMML.Register("jax/mml")}else{c.config.jax.unshift("output/NativeMML")}c.Startup.signal.Post("NativeMML output selected")}else{if(MathJax.OutputJax["HTML-CSS"]){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}else{c.config.jax.unshift("output/HTML-CSS")}c.Startup.signal.Post("HTML-CSS output selected")}}else{c.PreProcess.disabled=true;c.prepareScripts.disabled=true;MathJax.Message.Set("Your browser does not support MathJax",null,4000);c.Startup.signal.Post("MathJax not supported")}})})(MathJax.Hub);MathJax.Ajax.loadComplete("[MathJax]/config/MMLorHTML.js");
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -444,6 +444,15 @@ MathJax.Hub.Config({
|
|||
//
|
||||
imageFont: "TeX",
|
||||
|
||||
//
|
||||
// This is the font-family CSS value used for characters that are not
|
||||
// in the selected font (e.g., for web-based fonts, this is where to
|
||||
// look for characters not included in the MathJax_* fonts). IE will
|
||||
// stop looking after the first font that exists on the system (even
|
||||
// if it doesn't contain the needed character), so order these carefully.
|
||||
//
|
||||
undefinedFamily: "STIXGeneral,'Arial Unicode MS',serif",
|
||||
|
||||
//
|
||||
// This controls whether the MathJax contextual menu will be available
|
||||
// on the mathematics in the page. If true, then right-clicking (on
|
||||
|
|
|
@ -63,7 +63,7 @@ Properties
|
|||
.. describe:: loadHooks
|
||||
|
||||
An object containing the load hooks for the various files, set up by
|
||||
the :meth:`loadHook()` method, or by the
|
||||
the :meth:`LoadHook()` method, or by the
|
||||
:meth:`MathJax.Hub.Register.LoadHook()` method.
|
||||
|
||||
|
||||
|
@ -142,7 +142,7 @@ Methods
|
|||
- **file** --- the name of the file that failed to load
|
||||
:Returns: ``null``
|
||||
|
||||
.. method:: loadHook(file,callback)
|
||||
.. method:: LoadHook(file,callback)
|
||||
|
||||
Registers a callback to be executed when the given file is
|
||||
loaded. The file load operation needs to be started when this
|
||||
|
|
|
@ -83,10 +83,10 @@ A callback specification is any one of the following:
|
|||
|
||||
.. code-block:: javascript
|
||||
|
||||
["length",[1,2,3,4]]
|
||||
["toString",[1,2,3,4]]
|
||||
|
||||
would call the `length` method on the array ``[1,2,3,4]`` when
|
||||
the callback is called, returning ``4``.
|
||||
would call the `toString` method on the array ``[1,2,3,4]`` when
|
||||
the callback is called, returning ``1,2,3,4``.
|
||||
|
||||
.. describe:: ["method", object, data...]
|
||||
|
||||
|
@ -220,7 +220,7 @@ MathJax.Callback Methods
|
|||
- **callback** --- the callback specification
|
||||
:Returns: the callback object
|
||||
|
||||
.. method:: executeHooks(hooks[, data[,reset]])
|
||||
.. method:: ExecuteHooks(hooks[, data[,reset]])
|
||||
|
||||
Calls each callback in the `hooks` array (or the single hook if it
|
||||
is not an array), passing it the arguments stored in the data
|
||||
|
@ -229,7 +229,7 @@ MathJax.Callback Methods
|
|||
executed. If any of the hooks returns a `Callback` object, then
|
||||
it collects those callbacks and returns a new callback that will
|
||||
execute when all the ones returned by the hooks have been
|
||||
completed. Otherwise, :meth:`MathJax.Callback.executeHooks()`
|
||||
completed. Otherwise, :meth:`MathJax.Callback.ExecuteHooks()`
|
||||
returns ``null``.
|
||||
|
||||
:Parameters:
|
||||
|
|
|
@ -39,7 +39,7 @@ Methods
|
|||
var div = MathJax.HTML.Element(
|
||||
"div",
|
||||
{id: "MathDiv", style:{border:"1px solid", padding:"5px"}},
|
||||
["Here is math: $x+1$",["br"],"and a display $$x+1\\over x-1$$"]
|
||||
["Here is math: \\(x+1\\)",["br"],"and a display $$x+1\\over x-1$$"]
|
||||
);
|
||||
|
||||
:Parameters:
|
||||
|
@ -81,7 +81,7 @@ Methods
|
|||
- **text** --- the text for the new node
|
||||
:Returns: the new text node
|
||||
|
||||
.. method:: setText(script,text)
|
||||
.. method:: setScript(script,text)
|
||||
|
||||
Sets the contents of the ``script`` element to be the given
|
||||
``text``, properly taking into account the browser limitations and
|
||||
|
|
|
@ -16,7 +16,7 @@ For example:
|
|||
.. code-block:: javascript
|
||||
|
||||
MathJax.Object.Foo = MathJax.Object.Subclass({
|
||||
Init: function (x) {this.SetX(x)},
|
||||
Init: function (x) {this.setX(x)},
|
||||
getX: function () {return this.x},
|
||||
setX: function (x) {this.x = x}
|
||||
});
|
||||
|
|
|
@ -37,11 +37,11 @@ Main MathJax Components
|
|||
Contains the code for managing MathJax callbacks, queues and
|
||||
signals.
|
||||
|
||||
.. describe:: MathJax.Extensions
|
||||
.. describe:: MathJax.Extension
|
||||
|
||||
Initially empty, this is where extensions can load their code.
|
||||
For example, the `tex2jax` preprocessor creates
|
||||
``MathJax.Extensions.tex2jax`` for its code and variables.
|
||||
``MathJax.Extension.tex2jax`` for its code and variables.
|
||||
|
||||
.. describe:: MathJax.Object
|
||||
|
||||
|
|
|
@ -77,6 +77,15 @@ would set the ``preferredFont`` option to the :term:`STIX` fonts.
|
|||
and later, and Opera10 and later. Note that Firefox3.0 is **not**
|
||||
on this list.
|
||||
|
||||
.. describe:: undefinedFamily: "STIXGeneral, 'Arial Unicode MS', serif"
|
||||
|
||||
This is the font-family CSS value used for characters that are not
|
||||
in the selected font (e.g., for web-based fonts, this is where to
|
||||
look for characters not included in the MathJax web fonts). IE
|
||||
will stop looking after the first font that exists on the system
|
||||
(even if it doesn't contain the needed character), so order these
|
||||
carefully.
|
||||
|
||||
.. describe:: styles: {}
|
||||
|
||||
This is a list of CSS declarations for styling the HTML-CSS
|
||||
|
|
|
@ -161,7 +161,7 @@ behavior of MathJax. They are given with their default values.
|
|||
that act as the defaults for the user's settings in that menu.
|
||||
The possible values are:
|
||||
|
||||
.. describe:: zoom: "none"
|
||||
.. describe:: zoom: "None"
|
||||
|
||||
This indicates when typeset mathematics should be zoomed. It
|
||||
can be set to ``"None"``, ``"Hover"``, ``"Click"``, or
|
||||
|
|
|
@ -57,6 +57,30 @@ sure to read that before linking to the MathJax CDN server.
|
|||
To see how to enter mathematics in your web pages, see `Putting
|
||||
mathematics in a web page`_ below.
|
||||
|
||||
Secure Access to the CDN
|
||||
------------------------
|
||||
|
||||
When the the MathJax CDN is accessed via the address
|
||||
``http://cdn.mathjax.org``, data is downloaded over a regular, insecure
|
||||
HTTP connection. This introduces a security risk, since it is
|
||||
possible a hostile 3rd party could intercept the MathJax program data,
|
||||
and replace it. This is sometimes called a
|
||||
`man-in-the-middle <http://en.wikipedia.org/wiki/Man-in-the-middle_attack>`_ attack.
|
||||
|
||||
To prevent such attacks, it is necessary to access the MathJax CDN
|
||||
over a secure HTTPS connection. This can be easily done by using the
|
||||
following ``<script>`` tag instead of the one listed above:
|
||||
|
||||
.. code-block:: html
|
||||
|
||||
<script type="text/javascript"
|
||||
src="https://d3eoax9i5htok0.cloudfront.net/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
|
||||
</script>
|
||||
|
||||
Currently, the Amazon Cloudfront service used by the MathJax CDN does
|
||||
not support the use of a human-friendly name like cdn.mathjax.org for
|
||||
secure connections. However, this address is stable and safe to use.
|
||||
|
||||
|
||||
Installing Your Own Copy of MathJax
|
||||
===================================
|
||||
|
|
|
@ -103,14 +103,14 @@ pushed into the queue:
|
|||
|
||||
6. Load the extension files:
|
||||
|
||||
- Post the ``Begin Extension`` startup signal
|
||||
- Post the ``Begin Extensions`` startup signal
|
||||
- Load the files from the ``MathJax.Hub.config.extensions`` array
|
||||
|
||||
- Most extensions will post a ``Extension [name] Ready``
|
||||
startup message when they are loaded (where ``[name]`` is
|
||||
the name of the extension)
|
||||
- Most extensions will post a ``[name] Ready`` or ``Extension
|
||||
[name] Ready`` startup message when they are loaded (where
|
||||
``[name]`` is the name of the extension)
|
||||
|
||||
- Post the ``End Extension`` startup signal
|
||||
- Post the ``End Extensions`` startup signal
|
||||
|
||||
..
|
||||
|
||||
|
|
|
@ -371,6 +371,7 @@ Symbols
|
|||
{
|
||||
}
|
||||
~
|
||||
'
|
||||
|
||||
\ (backslash-space)
|
||||
\!
|
||||
|
|
|
@ -87,14 +87,14 @@ For example, suppose you have the following HTML in your document
|
|||
.. code-block:: html
|
||||
|
||||
<div id="MathDiv">
|
||||
The answer you provided is: ${}$.
|
||||
The answer you provided is: \({}\).
|
||||
</div>
|
||||
|
||||
and MathJax has already preprocessed and typeset the mathematics
|
||||
within dollar signs (it will be blank). A student has typed
|
||||
something elsewhere on the page, and you want to typeset their answer
|
||||
in the location of the mathematics that is already there. You could
|
||||
replace the entire contents of the `MathDiv` element and call
|
||||
within the div. A student has typed something elsewhere on the page,
|
||||
and you want to typeset their answer in the location of the
|
||||
mathematics that is already there. You could replace the entire
|
||||
contents of the `MathDiv` element and call
|
||||
:meth:`MathJax.Hub.Typeset()` as described above, but there is a more
|
||||
efficient approach, which is to ask MathJax for the element jax for
|
||||
the mathematics, and call its method for replacing the formula shown
|
||||
|
|
|
@ -118,7 +118,7 @@ additional internal data.</p>
|
|||
<dt>
|
||||
<tt class="descname">loadHooks</tt></dt>
|
||||
<dd><p>An object containing the load hooks for the various files, set up by
|
||||
the <a class="reference internal" href="#loadHook" title="loadHook"><tt class="xref py py-meth docutils literal"><span class="pre">loadHook()</span></tt></a> method, or by the
|
||||
the <a class="reference internal" href="#LoadHook" title="LoadHook"><tt class="xref py py-meth docutils literal"><span class="pre">LoadHook()</span></tt></a> method, or by the
|
||||
<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Register.LoadHook()</span></tt> method.</p>
|
||||
</dd></dl>
|
||||
|
||||
|
@ -257,8 +257,8 @@ puts a warning message into the MathJax message box on screen.</p>
|
|||
</dd></dl>
|
||||
|
||||
<dl class="method">
|
||||
<dt id="loadHook">
|
||||
<tt class="descname">loadHook</tt><big>(</big><em>file</em>, <em>callback</em><big>)</big><a class="headerlink" href="#loadHook" title="Permalink to this definition">¶</a></dt>
|
||||
<dt id="LoadHook">
|
||||
<tt class="descname">LoadHook</tt><big>(</big><em>file</em>, <em>callback</em><big>)</big><a class="headerlink" href="#LoadHook" title="Permalink to this definition">¶</a></dt>
|
||||
<dd><p>Registers a callback to be executed when the given file is
|
||||
loaded. The file load operation needs to be started when this
|
||||
method is called, so it can be used to register a hook for a file
|
||||
|
|
|
@ -128,11 +128,11 @@ the function as well.</p>
|
|||
<div><p>Here, <cite>object</cite> is an object that has a method called <cite>method</cite>, and
|
||||
the callback will execute that method (with the object as
|
||||
<cite>this</cite>) when it is called. For example,</p>
|
||||
<div class="highlight-javascript"><div class="highlight"><pre><span class="p">[</span><span class="s2">"length"</span><span class="p">,[</span><span class="mi">1</span><span class="p">,</span><span class="mi">2</span><span class="p">,</span><span class="mi">3</span><span class="p">,</span><span class="mi">4</span><span class="p">]]</span>
|
||||
<div class="highlight-javascript"><div class="highlight"><pre><span class="p">[</span><span class="s2">"toString"</span><span class="p">,[</span><span class="mi">1</span><span class="p">,</span><span class="mi">2</span><span class="p">,</span><span class="mi">3</span><span class="p">,</span><span class="mi">4</span><span class="p">]]</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>would call the <cite>length</cite> method on the array <tt class="docutils literal"><span class="pre">[1,2,3,4]</span></tt> when
|
||||
the callback is called, returning <tt class="docutils literal"><span class="pre">4</span></tt>.</p>
|
||||
<p>would call the <cite>toString</cite> method on the array <tt class="docutils literal"><span class="pre">[1,2,3,4]</span></tt> when
|
||||
the callback is called, returning <tt class="docutils literal"><span class="pre">1,2,3,4</span></tt>.</p>
|
||||
</div></blockquote>
|
||||
<dl class="describe">
|
||||
<dt>
|
||||
|
@ -289,8 +289,8 @@ commands.</p>
|
|||
</dd></dl>
|
||||
|
||||
<dl class="method">
|
||||
<dt id="executeHooks">
|
||||
<tt class="descname">executeHooks</tt><big>(</big><em>hooks</em><span class="optional">[</span>, <em>data</em><span class="optional">[</span>, <em>reset</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#executeHooks" title="Permalink to this definition">¶</a></dt>
|
||||
<dt id="ExecuteHooks">
|
||||
<tt class="descname">ExecuteHooks</tt><big>(</big><em>hooks</em><span class="optional">[</span>, <em>data</em><span class="optional">[</span>, <em>reset</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#ExecuteHooks" title="Permalink to this definition">¶</a></dt>
|
||||
<dd><p>Calls each callback in the <cite>hooks</cite> array (or the single hook if it
|
||||
is not an array), passing it the arguments stored in the data
|
||||
array. If <cite>reset</cite> is <tt class="docutils literal"><span class="pre">true</span></tt>, then the callback’s
|
||||
|
@ -298,7 +298,7 @@ array. If <cite>reset</cite> is <tt class="docutils literal"><span class="pre">
|
|||
executed. If any of the hooks returns a <cite>Callback</cite> object, then
|
||||
it collects those callbacks and returns a new callback that will
|
||||
execute when all the ones returned by the hooks have been
|
||||
completed. Otherwise, <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Callback.executeHooks()</span></tt>
|
||||
completed. Otherwise, <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Callback.ExecuteHooks()</span></tt>
|
||||
returns <tt class="docutils literal"><span class="pre">null</span></tt>.</p>
|
||||
<table class="docutils field-list" frame="void" rules="none">
|
||||
<col class="field-name" />
|
||||
|
|
|
@ -86,7 +86,7 @@ describes the contents to create for the element. For example</p>
|
|||
<div class="highlight-javascript"><div class="highlight"><pre><span class="kd">var</span> <span class="nx">div</span> <span class="o">=</span> <span class="nx">MathJax</span><span class="p">.</span><span class="nx">HTML</span><span class="p">.</span><span class="nx">Element</span><span class="p">(</span>
|
||||
<span class="s2">"div"</span><span class="p">,</span>
|
||||
<span class="p">{</span><span class="nx">id</span><span class="o">:</span> <span class="s2">"MathDiv"</span><span class="p">,</span> <span class="nx">style</span><span class="o">:</span><span class="p">{</span><span class="nx">border</span><span class="o">:</span><span class="s2">"1px solid"</span><span class="p">,</span> <span class="nx">padding</span><span class="o">:</span><span class="s2">"5px"</span><span class="p">}},</span>
|
||||
<span class="p">[</span><span class="s2">"Here is math: $x+1$"</span><span class="p">,[</span><span class="s2">"br"</span><span class="p">],</span><span class="s2">"and a display $$x+1\\over x-1$$"</span><span class="p">]</span>
|
||||
<span class="p">[</span><span class="s2">"Here is math: \\(x+1\\)"</span><span class="p">,[</span><span class="s2">"br"</span><span class="p">],</span><span class="s2">"and a display $$x+1\\over x-1$$"</span><span class="p">]</span>
|
||||
<span class="p">);</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
|
@ -177,8 +177,8 @@ provided. It is equivalent to</p>
|
|||
</dd></dl>
|
||||
|
||||
<dl class="method">
|
||||
<dt id="setText">
|
||||
<tt class="descname">setText</tt><big>(</big><em>script</em>, <em>text</em><big>)</big><a class="headerlink" href="#setText" title="Permalink to this definition">¶</a></dt>
|
||||
<dt id="setScript">
|
||||
<tt class="descname">setScript</tt><big>(</big><em>script</em>, <em>text</em><big>)</big><a class="headerlink" href="#setScript" title="Permalink to this definition">¶</a></dt>
|
||||
<dd><p>Sets the contents of the <tt class="docutils literal"><span class="pre">script</span></tt> element to be the given
|
||||
<tt class="docutils literal"><span class="pre">text</span></tt>, properly taking into account the browser limitations and
|
||||
bugs.</p>
|
||||
|
|
|
@ -61,7 +61,7 @@ subclasses of <cite>MathJax.Object</cite> or one of its subclasses, and are
|
|||
instantiated by calling the object class as you would a function.</p>
|
||||
<p>For example:</p>
|
||||
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nb">Object</span><span class="p">.</span><span class="nx">Foo</span> <span class="o">=</span> <span class="nx">MathJax</span><span class="p">.</span><span class="nb">Object</span><span class="p">.</span><span class="nx">Subclass</span><span class="p">({</span>
|
||||
<span class="nx">Init</span><span class="o">:</span> <span class="kd">function</span> <span class="p">(</span><span class="nx">x</span><span class="p">)</span> <span class="p">{</span><span class="k">this</span><span class="p">.</span><span class="nx">SetX</span><span class="p">(</span><span class="nx">x</span><span class="p">)},</span>
|
||||
<span class="nx">Init</span><span class="o">:</span> <span class="kd">function</span> <span class="p">(</span><span class="nx">x</span><span class="p">)</span> <span class="p">{</span><span class="k">this</span><span class="p">.</span><span class="nx">setX</span><span class="p">(</span><span class="nx">x</span><span class="p">)},</span>
|
||||
<span class="nx">getX</span><span class="o">:</span> <span class="kd">function</span> <span class="p">()</span> <span class="p">{</span><span class="k">return</span> <span class="k">this</span><span class="p">.</span><span class="nx">x</span><span class="p">},</span>
|
||||
<span class="nx">setX</span><span class="o">:</span> <span class="kd">function</span> <span class="p">(</span><span class="nx">x</span><span class="p">)</span> <span class="p">{</span><span class="k">this</span><span class="p">.</span><span class="nx">x</span> <span class="o">=</span> <span class="nx">x</span><span class="p">}</span>
|
||||
<span class="p">});</span>
|
||||
|
|
|
@ -97,10 +97,10 @@ signals.</p>
|
|||
|
||||
<dl class="describe">
|
||||
<dt>
|
||||
<tt class="descname">MathJax.Extensions</tt></dt>
|
||||
<tt class="descname">MathJax.Extension</tt></dt>
|
||||
<dd><p>Initially empty, this is where extensions can load their code.
|
||||
For example, the <cite>tex2jax</cite> preprocessor creates
|
||||
<tt class="docutils literal"><span class="pre">MathJax.Extensions.tex2jax</span></tt> for its code and variables.</p>
|
||||
<tt class="docutils literal"><span class="pre">MathJax.Extension.tex2jax</span></tt> for its code and variables.</p>
|
||||
</dd></dl>
|
||||
|
||||
<dl class="describe">
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
<dt><a href="api/signal.html#ExecuteHook">ExecuteHook()</a></dt>
|
||||
</dl></td>
|
||||
<td style="width: 33%" valign="top"><dl>
|
||||
<dt><a href="api/callback.html#executeHooks">executeHooks()</a></dt>
|
||||
<dt><a href="api/callback.html#ExecuteHooks">ExecuteHooks()</a></dt>
|
||||
</dl></td>
|
||||
</tr></table>
|
||||
|
||||
|
@ -154,7 +154,7 @@
|
|||
<dt><a href="api/ajax.html#loadError">loadError()</a></dt>
|
||||
</dl></td>
|
||||
<td style="width: 33%" valign="top"><dl>
|
||||
<dt><a href="api/ajax.html#loadHook">loadHook()</a></dt>
|
||||
<dt><a href="api/ajax.html#LoadHook">LoadHook()</a></dt>
|
||||
<dt><a href="api/ajax.html#loadTimeout">loadTimeout()</a></dt>
|
||||
<dt><a href="api/message.html#Log">Log()</a></dt>
|
||||
</dl></td>
|
||||
|
@ -215,7 +215,7 @@
|
|||
<table style="width: 100%" class="indextable genindextable"><tr>
|
||||
<td style="width: 33%" valign="top"><dl>
|
||||
<dt><a href="api/message.html#Set">Set()</a></dt>
|
||||
<dt><a href="api/html.html#setText">setText()</a></dt>
|
||||
<dt><a href="api/html.html#setScript">setScript()</a></dt>
|
||||
<dt><a href="api/callback.html#Signal">Signal()</a></dt>
|
||||
<dt><a href="api/elementjax.html#SourceElement">SourceElement()</a></dt>
|
||||
<dt><a href="api/jax.html#Startup">Startup()</a></dt>
|
||||
|
|
|
@ -121,7 +121,7 @@ MathML that works in all modern browsers.</p>
|
|||
</li>
|
||||
</ul>
|
||||
<hr class="docutils" />
|
||||
<p>This version of the documentation was built April 05, 2011.</p>
|
||||
<p>This version of the documentation was built July 20, 2011.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -134,6 +134,17 @@ and later, and Opera10 and later. Note that Firefox3.0 is <strong>not</strong>
|
|||
on this list.</p>
|
||||
</dd></dl>
|
||||
|
||||
<dl class="describe">
|
||||
<dt>
|
||||
<tt class="descname">undefinedFamily: "STIXGeneral, 'Arial Unicode MS', serif"</tt></dt>
|
||||
<dd><p>This is the font-family CSS value used for characters that are not
|
||||
in the selected font (e.g., for web-based fonts, this is where to
|
||||
look for characters not included in the MathJax web fonts). IE
|
||||
will stop looking after the first font that exists on the system
|
||||
(even if it doesn’t contain the needed character), so order these
|
||||
carefully.</p>
|
||||
</dd></dl>
|
||||
|
||||
<dl class="describe">
|
||||
<dt>
|
||||
<tt class="descname">styles: {}</tt></dt>
|
||||
|
|
|
@ -228,7 +228,7 @@ that act as the defaults for the user’s settings in that menu.
|
|||
The possible values are:</p>
|
||||
<dl class="describe">
|
||||
<dt>
|
||||
<tt class="descname">zoom: "none"</tt></dt>
|
||||
<tt class="descname">zoom: "None"</tt></dt>
|
||||
<dd><p>This indicates when typeset mathematics should be zoomed. It
|
||||
can be set to <tt class="docutils literal"><span class="pre">"None"</span></tt>, <tt class="docutils literal"><span class="pre">"Hover"</span></tt>, <tt class="docutils literal"><span class="pre">"Click"</span></tt>, or
|
||||
<tt class="docutils literal"><span class="pre">"Double-Click"</span></tt> to set the zoom trigger.</p>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -92,6 +92,26 @@ the configurations to your needs. More details can be found in the
|
|||
sure to read that before linking to the MathJax CDN server.</p>
|
||||
<p>To see how to enter mathematics in your web pages, see <a class="reference internal" href="#putting-mathematics-in-a-web-page">Putting
|
||||
mathematics in a web page</a> below.</p>
|
||||
<div class="section" id="secure-access-to-the-cdn">
|
||||
<h3>Secure Access to the CDN<a class="headerlink" href="#secure-access-to-the-cdn" title="Permalink to this headline">¶</a></h3>
|
||||
<p>When the the MathJax CDN is accessed via the address
|
||||
<tt class="docutils literal"><span class="pre">http://cdn.mathjax.org</span></tt>, data is downloaded over a regular, insecure
|
||||
HTTP connection. This introduces a security risk, since it is
|
||||
possible a hostile 3rd party could intercept the MathJax program data,
|
||||
and replace it. This is sometimes called a
|
||||
<a class="reference external" href="http://en.wikipedia.org/wiki/Man-in-the-middle_attack">man-in-the-middle</a> attack.</p>
|
||||
<p>To prevent such attacks, it is necessary to access the MathJax CDN
|
||||
over a secure HTTPS connection. This can be easily done by using the
|
||||
following <tt class="docutils literal"><span class="pre"><script></span></tt> tag instead of the one listed above:</p>
|
||||
<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
|
||||
<span class="na">src=</span><span class="s">"https://d3eoax9i5htok0.cloudfront.net/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
|
||||
<span class="nt"></script></span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>Currently, the Amazon Cloudfront service used by the MathJax CDN does
|
||||
not support the use of a human-friendly name like cdn.mathjax.org for
|
||||
secure connections. However, this address is stable and safe to use.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="installing-your-own-copy-of-mathjax">
|
||||
<h2>Installing Your Own Copy of MathJax<a class="headerlink" href="#installing-your-own-copy-of-mathjax" title="Permalink to this headline">¶</a></h2>
|
||||
|
@ -380,7 +400,10 @@ MathJax, you could visit the <a class="reference internal" href="community.html#
|
|||
<h3><a href="index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">Getting Started</a><ul>
|
||||
<li><a class="reference internal" href="#using-the-mathjax-content-delivery-network-cdn">Using the MathJax Content Delivery Network (CDN)</a></li>
|
||||
<li><a class="reference internal" href="#using-the-mathjax-content-delivery-network-cdn">Using the MathJax Content Delivery Network (CDN)</a><ul>
|
||||
<li><a class="reference internal" href="#secure-access-to-the-cdn">Secure Access to the CDN</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference internal" href="#installing-your-own-copy-of-mathjax">Installing Your Own Copy of MathJax</a><ul>
|
||||
<li><a class="reference internal" href="#obtaining-and-installing-mathjax">Obtaining and Installing MathJax</a></li>
|
||||
<li><a class="reference internal" href="#configuring-your-copy-of-mathjax">Configuring your copy of MathJax</a></li>
|
||||
|
|
|
@ -143,14 +143,14 @@ pushed into the queue:</p>
|
|||
</ol>
|
||||
<ol class="arabic simple" start="6">
|
||||
<li>Load the extension files:<ul>
|
||||
<li>Post the <tt class="docutils literal"><span class="pre">Begin</span> <span class="pre">Extension</span></tt> startup signal</li>
|
||||
<li>Post the <tt class="docutils literal"><span class="pre">Begin</span> <span class="pre">Extensions</span></tt> startup signal</li>
|
||||
<li>Load the files from the <tt class="docutils literal"><span class="pre">MathJax.Hub.config.extensions</span></tt> array<ul>
|
||||
<li>Most extensions will post a <tt class="docutils literal"><span class="pre">Extension</span> <span class="pre">[name]</span> <span class="pre">Ready</span></tt>
|
||||
startup message when they are loaded (where <tt class="docutils literal"><span class="pre">[name]</span></tt> is
|
||||
the name of the extension)</li>
|
||||
<li>Most extensions will post a <tt class="docutils literal"><span class="pre">[name]</span> <span class="pre">Ready</span></tt> or <tt class="docutils literal"><span class="pre">Extension</span>
|
||||
<span class="pre">[name]</span> <span class="pre">Ready</span></tt> startup message when they are loaded (where
|
||||
<tt class="docutils literal"><span class="pre">[name]</span></tt> is the name of the extension)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Post the <tt class="docutils literal"><span class="pre">End</span> <span class="pre">Extension</span></tt> startup signal</li>
|
||||
<li>Post the <tt class="docutils literal"><span class="pre">End</span> <span class="pre">Extensions</span></tt> startup signal</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
|
|
|
@ -350,6 +350,7 @@ be loaded automatically when the macro or environment is first used.</p>
|
|||
<span class="nb">{</span>
|
||||
<span class="nb">}</span>
|
||||
~
|
||||
'
|
||||
|
||||
<span class="k">\ </span> (backslash-space)
|
||||
<span class="k">\!</span>
|
||||
|
|
|
@ -115,15 +115,15 @@ find the <cite>element jax</cite> for the math element on the page, and use its
|
|||
methods to modify and update the mathematics that it displays.</p>
|
||||
<p>For example, suppose you have the following HTML in your document</p>
|
||||
<div class="highlight-html"><div class="highlight"><pre><span class="nt"><div</span> <span class="na">id=</span><span class="s">"MathDiv"</span><span class="nt">></span>
|
||||
The answer you provided is: ${}$.
|
||||
The answer you provided is: \({}\).
|
||||
<span class="nt"></div></span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>and MathJax has already preprocessed and typeset the mathematics
|
||||
within dollar signs (it will be blank). A student has typed
|
||||
something elsewhere on the page, and you want to typeset their answer
|
||||
in the location of the mathematics that is already there. You could
|
||||
replace the entire contents of the <cite>MathDiv</cite> element and call
|
||||
within the div. A student has typed something elsewhere on the page,
|
||||
and you want to typeset their answer in the location of the
|
||||
mathematics that is already there. You could replace the entire
|
||||
contents of the <cite>MathDiv</cite> element and call
|
||||
<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Typeset()</span></tt> as described above, but there is a more
|
||||
efficient approach, which is to ask MathJax for the element jax for
|
||||
the mathematics, and call its method for replacing the formula shown
|
||||
|
|
|
@ -63,7 +63,7 @@ Properties
|
|||
.. describe:: loadHooks
|
||||
|
||||
An object containing the load hooks for the various files, set up by
|
||||
the :meth:`loadHook()` method, or by the
|
||||
the :meth:`LoadHook()` method, or by the
|
||||
:meth:`MathJax.Hub.Register.LoadHook()` method.
|
||||
|
||||
|
||||
|
@ -142,7 +142,7 @@ Methods
|
|||
- **file** --- the name of the file that failed to load
|
||||
:Returns: ``null``
|
||||
|
||||
.. method:: loadHook(file,callback)
|
||||
.. method:: LoadHook(file,callback)
|
||||
|
||||
Registers a callback to be executed when the given file is
|
||||
loaded. The file load operation needs to be started when this
|
||||
|
|
|
@ -83,10 +83,10 @@ A callback specification is any one of the following:
|
|||
|
||||
.. code-block:: javascript
|
||||
|
||||
["length",[1,2,3,4]]
|
||||
["toString",[1,2,3,4]]
|
||||
|
||||
would call the `length` method on the array ``[1,2,3,4]`` when
|
||||
the callback is called, returning ``4``.
|
||||
would call the `toString` method on the array ``[1,2,3,4]`` when
|
||||
the callback is called, returning ``1,2,3,4``.
|
||||
|
||||
.. describe:: ["method", object, data...]
|
||||
|
||||
|
@ -220,7 +220,7 @@ MathJax.Callback Methods
|
|||
- **callback** --- the callback specification
|
||||
:Returns: the callback object
|
||||
|
||||
.. method:: executeHooks(hooks[, data[,reset]])
|
||||
.. method:: ExecuteHooks(hooks[, data[,reset]])
|
||||
|
||||
Calls each callback in the `hooks` array (or the single hook if it
|
||||
is not an array), passing it the arguments stored in the data
|
||||
|
@ -229,7 +229,7 @@ MathJax.Callback Methods
|
|||
executed. If any of the hooks returns a `Callback` object, then
|
||||
it collects those callbacks and returns a new callback that will
|
||||
execute when all the ones returned by the hooks have been
|
||||
completed. Otherwise, :meth:`MathJax.Callback.executeHooks()`
|
||||
completed. Otherwise, :meth:`MathJax.Callback.ExecuteHooks()`
|
||||
returns ``null``.
|
||||
|
||||
:Parameters:
|
||||
|
|
|
@ -39,7 +39,7 @@ Methods
|
|||
var div = MathJax.HTML.Element(
|
||||
"div",
|
||||
{id: "MathDiv", style:{border:"1px solid", padding:"5px"}},
|
||||
["Here is math: $x+1$",["br"],"and a display $$x+1\\over x-1$$"]
|
||||
["Here is math: \\(x+1\\)",["br"],"and a display $$x+1\\over x-1$$"]
|
||||
);
|
||||
|
||||
:Parameters:
|
||||
|
@ -81,7 +81,7 @@ Methods
|
|||
- **text** --- the text for the new node
|
||||
:Returns: the new text node
|
||||
|
||||
.. method:: setText(script,text)
|
||||
.. method:: setScript(script,text)
|
||||
|
||||
Sets the contents of the ``script`` element to be the given
|
||||
``text``, properly taking into account the browser limitations and
|
||||
|
|
|
@ -16,7 +16,7 @@ For example:
|
|||
.. code-block:: javascript
|
||||
|
||||
MathJax.Object.Foo = MathJax.Object.Subclass({
|
||||
Init: function (x) {this.SetX(x)},
|
||||
Init: function (x) {this.setX(x)},
|
||||
getX: function () {return this.x},
|
||||
setX: function (x) {this.x = x}
|
||||
});
|
||||
|
|
|
@ -37,11 +37,11 @@ Main MathJax Components
|
|||
Contains the code for managing MathJax callbacks, queues and
|
||||
signals.
|
||||
|
||||
.. describe:: MathJax.Extensions
|
||||
.. describe:: MathJax.Extension
|
||||
|
||||
Initially empty, this is where extensions can load their code.
|
||||
For example, the `tex2jax` preprocessor creates
|
||||
``MathJax.Extensions.tex2jax`` for its code and variables.
|
||||
``MathJax.Extension.tex2jax`` for its code and variables.
|
||||
|
||||
.. describe:: MathJax.Object
|
||||
|
||||
|
|
|
@ -199,6 +199,7 @@
|
|||
<li id="menu-item-858" class="menu-item menu-item-type-post_type"><a href="http://www.mathjax.org/demos/mathml-samples/">MathML Samples</a></li>
|
||||
<li id="menu-item-1078" class="menu-item menu-item-type-post_type"><a href="http://www.mathjax.org/demos/scaling-math/">Scaling Math</a></li>
|
||||
<li id="menu-item-1097" class="menu-item menu-item-type-post_type"><a href="http://www.mathjax.org/demos/copy-and-paste/">Copy and Paste Math</a></li>
|
||||
<li id="menu-item-2398" class="menu-item menu-item-type-post_type"><a href="http://www.mathjax.org/demos/use-in-web-platforms/">Use in Web Platforms</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li id="menu-item-848" class="menu-item menu-item-type-post_type"><a href="http://www.mathjax.org/resources/">Resources</a>
|
||||
|
|
|
@ -77,6 +77,15 @@ would set the ``preferredFont`` option to the :term:`STIX` fonts.
|
|||
and later, and Opera10 and later. Note that Firefox3.0 is **not**
|
||||
on this list.
|
||||
|
||||
.. describe:: undefinedFamily: "STIXGeneral, 'Arial Unicode MS', serif"
|
||||
|
||||
This is the font-family CSS value used for characters that are not
|
||||
in the selected font (e.g., for web-based fonts, this is where to
|
||||
look for characters not included in the MathJax web fonts). IE
|
||||
will stop looking after the first font that exists on the system
|
||||
(even if it doesn't contain the needed character), so order these
|
||||
carefully.
|
||||
|
||||
.. describe:: styles: {}
|
||||
|
||||
This is a list of CSS declarations for styling the HTML-CSS
|
||||
|
|
|
@ -161,7 +161,7 @@ behavior of MathJax. They are given with their default values.
|
|||
that act as the defaults for the user's settings in that menu.
|
||||
The possible values are:
|
||||
|
||||
.. describe:: zoom: "none"
|
||||
.. describe:: zoom: "None"
|
||||
|
||||
This indicates when typeset mathematics should be zoomed. It
|
||||
can be set to ``"None"``, ``"Hover"``, ``"Click"``, or
|
||||
|
|
|
@ -57,6 +57,30 @@ sure to read that before linking to the MathJax CDN server.
|
|||
To see how to enter mathematics in your web pages, see `Putting
|
||||
mathematics in a web page`_ below.
|
||||
|
||||
Secure Access to the CDN
|
||||
------------------------
|
||||
|
||||
When the the MathJax CDN is accessed via the address
|
||||
``http://cdn.mathjax.org``, data is downloaded over a regular, insecure
|
||||
HTTP connection. This introduces a security risk, since it is
|
||||
possible a hostile 3rd party could intercept the MathJax program data,
|
||||
and replace it. This is sometimes called a
|
||||
`man-in-the-middle <http://en.wikipedia.org/wiki/Man-in-the-middle_attack>`_ attack.
|
||||
|
||||
To prevent such attacks, it is necessary to access the MathJax CDN
|
||||
over a secure HTTPS connection. This can be easily done by using the
|
||||
following ``<script>`` tag instead of the one listed above:
|
||||
|
||||
.. code-block:: html
|
||||
|
||||
<script type="text/javascript"
|
||||
src="https://d3eoax9i5htok0.cloudfront.net/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
|
||||
</script>
|
||||
|
||||
Currently, the Amazon Cloudfront service used by the MathJax CDN does
|
||||
not support the use of a human-friendly name like cdn.mathjax.org for
|
||||
secure connections. However, this address is stable and safe to use.
|
||||
|
||||
|
||||
Installing Your Own Copy of MathJax
|
||||
===================================
|
||||
|
|
|
@ -103,14 +103,14 @@ pushed into the queue:
|
|||
|
||||
6. Load the extension files:
|
||||
|
||||
- Post the ``Begin Extension`` startup signal
|
||||
- Post the ``Begin Extensions`` startup signal
|
||||
- Load the files from the ``MathJax.Hub.config.extensions`` array
|
||||
|
||||
- Most extensions will post a ``Extension [name] Ready``
|
||||
startup message when they are loaded (where ``[name]`` is
|
||||
the name of the extension)
|
||||
- Most extensions will post a ``[name] Ready`` or ``Extension
|
||||
[name] Ready`` startup message when they are loaded (where
|
||||
``[name]`` is the name of the extension)
|
||||
|
||||
- Post the ``End Extension`` startup signal
|
||||
- Post the ``End Extensions`` startup signal
|
||||
|
||||
..
|
||||
|
||||
|
|
|
@ -371,6 +371,7 @@ Symbols
|
|||
{
|
||||
}
|
||||
~
|
||||
'
|
||||
|
||||
\ (backslash-space)
|
||||
\!
|
||||
|
|
|
@ -87,14 +87,14 @@ For example, suppose you have the following HTML in your document
|
|||
.. code-block:: html
|
||||
|
||||
<div id="MathDiv">
|
||||
The answer you provided is: ${}$.
|
||||
The answer you provided is: \({}\).
|
||||
</div>
|
||||
|
||||
and MathJax has already preprocessed and typeset the mathematics
|
||||
within dollar signs (it will be blank). A student has typed
|
||||
something elsewhere on the page, and you want to typeset their answer
|
||||
in the location of the mathematics that is already there. You could
|
||||
replace the entire contents of the `MathDiv` element and call
|
||||
within the div. A student has typed something elsewhere on the page,
|
||||
and you want to typeset their answer in the location of the
|
||||
mathematics that is already there. You could replace the entire
|
||||
contents of the `MathDiv` element and call
|
||||
:meth:`MathJax.Hub.Typeset()` as described above, but there is a more
|
||||
efficient approach, which is to ask MathJax for the element jax for
|
||||
the mathematics, and call its method for replacing the formula shown
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -12,5 +12,5 @@
|
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Extension.mml2jax={version:"1.1.1",config:{preview:"alttext"},MMLnamespace:"http://www.w3.org/1998/Math/MathML",PreProcess:function(e){if(!this.configured){this.config=MathJax.Hub.CombineConfig("mml2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}this.InitBrowser();this.configured=true}if(typeof(e)==="string"){e=document.getElementById(e)}if(!e){e=document.body}this.ProcessMathArray(e.getElementsByTagName("math"));if(e.getElementsByTagNameNS){this.ProcessMathArray(e.getElementsByTagNameNS(this.MMLnamespace,"math"))}var d=document.getElementsByTagName("html")[0];if(d){for(var c=0,b=d.attributes.length;c<b;c++){var a=d.attributes[c];if(a.nodeName.substr(0,6)==="xmlns:"&&a.nodeValue===this.MMLnamespace){this.ProcessMathArray(e.getElementsByTagName(a.nodeName.substr(6)+":math"))}}}},ProcessMathArray:function(b){var a;if(b.length){if(this.msieMathTagBug){for(a=b.length-1;a>=0;a--){if(b[a].nodeName==="MATH"){this.msieProcessMath(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.msieScriptBug){var b=this.msieOuterHTML(e);b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");MathJax.HTML.setScript(a,b.replace(/ /g," "));d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},msieProcessMath:function(e){var c=e.parentNode;var a=document.createElement("script");a.type="math/mml";c.insertBefore(a,e);var b="",d;while(e&&e.nodeName!=="/MATH"){d=e;e=e.nextSibling;b+=this.msieNodeHTML(d);d.parentNode.removeChild(d)}if(e&&e.nodeName==="/MATH"){e.parentNode.removeChild(e)}a.text=b+"</math>";if(this.config.preview!=="none"){this.createPreview(e,a)}},msieNodeHTML:function(d){var c,b,a;if(d.nodeName==="#text"){c=d.nodeValue.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}else{if(d.nodeName==="#comment"){c="<!--"+d.nodeValue+"-->"}else{if(this.msieAttributeBug){c="<"+d.nodeName.toLowerCase();for(b=0,a=d.attributes.length;b<a;b++){if(d.attributes[b].specified){c+=" "+d.attributes[b].nodeName.toLowerCase()+"=";c+='"'+d.attributes[b].nodeValue.replace(/\"/g,'\\"')+'"'}}c+=">"}else{c=this.toLowerCase(d.outerHTML);var e=c.split(/\"/);for(b=0,a=e.length;b<a;b+=2){e[b]=e[b].toLowerCase()}c=e.join('"')}}}return c},msieOuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.msieNodeHTML(d)}if(!this.msieAttributeBug){return d.outerHTML}var c=this.msieNodeHTML(d);for(var b=0,a=d.childNodes.length;b<a;b++){c+=this.msieOuterHTML(d.childNodes[b])}c+="</"+d.nodeName.toLowerCase()+">";return c},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){MathJax.Hub.Browser.Select({MSIE:function(a){var b=MathJax.HTML.Element("span",{className:"mathjax"});MathJax.Hub.Insert(MathJax.Extension.mml2jax,{msieScriptBug:true,msieMathTagBug:(MathJax.HTML.Element("span",{innerHTML:"<math><mi>x</mi></math>"}).childNodes.length!==1),msieAttributeBug:(b.outerHTML.substr(12)!=='"')})}})}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js");
|
||||
MathJax.Extension.mml2jax={version:"1.1.2",config:{preview:"alttext"},MMLnamespace:"http://www.w3.org/1998/Math/MathML",PreProcess:function(e){if(!this.configured){this.config=MathJax.Hub.CombineConfig("mml2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}this.InitBrowser();this.configured=true}if(typeof(e)==="string"){e=document.getElementById(e)}if(!e){e=document.body}this.ProcessMathArray(e.getElementsByTagName("math"));if(e.getElementsByTagNameNS){this.ProcessMathArray(e.getElementsByTagNameNS(this.MMLnamespace,"math"))}var d=document.getElementsByTagName("html")[0];if(d){for(var c=0,b=d.attributes.length;c<b;c++){var a=d.attributes[c];if(a.nodeName.substr(0,6)==="xmlns:"&&a.nodeValue===this.MMLnamespace){this.ProcessMathArray(e.getElementsByTagName(a.nodeName.substr(6)+":math"))}}}},ProcessMathArray:function(b){var a;if(b.length){if(this.MathTagBug){for(a=b.length-1;a>=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"</math>";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c="<!--"+e.nodeValue+"-->"}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b<a;b++){var d=e.attributes[b];if(d.specified){c+=" "+d.nodeName.toLowerCase().replace(/xmlns:xmlns/,"xmlns")+"=";var f=d.nodeValue;if(f==null&&d.nodeName==="style"&&e.style){f=e.style.cssText}c+='"'+this.quoteHTML(f)+'"'}}c+=">";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b<a;b++){c+=this.OuterHTML(e.childNodes[b])}c+="</"+e.nodeName.toLowerCase()+">"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b<a;b++){c+=this.OuterHTML(d.childNodes[b])}c+="</"+d.nodeName.toLowerCase()+">";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""")},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"<math><mi>x</mi><mspace /></math>"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js");
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -12,5 +12,5 @@
|
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f<c;f++){if(this.data[f]){j.push(this.data[f].toMathML(h))}else{if(!this.isToken){j.push(h+"<mrow />")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+"</"+e+">"}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+"</"+e+">"},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h<f;h++){if(this[c[h]]!=null){j.push(c[h]+'="'+this.quoteHTML(this[c[h]])+'"')}}if(j.length){return" "+j.join(" ")}else{return""}},copyAttributes:["fontfamily","fontsize","fontweight","fontstyle","color","background","id","class","href","style"],skipAttributes:{texClass:1,useHeight:1,texprimestyle:1},quoteHTML:function(e){e=String(e).split("");for(var f=0,d=e.length;f<d;f++){var h=e[f].charCodeAt(0);if(h<32||h>126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f<c;f++){if(this.data[f]){g.push(this.data[f].toMathML(h+" "))}}return h+"<"+e+d+">\n"+g.join("\n")+"\n"+h+"</"+e+">"}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f<c;f++){if(this.data[f]){g.push(this.data[f].toMathML(h+" "))}}return h+"<"+e+d+">\n"+g.join("\n")+"\n"+h+"</"+e+">"}});a.TeXAtom.Augment({toMathML:function(c){return c+"<mrow>\n"+this.data[0].toMathML(c+" ")+"\n"+c+"</mrow>"}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";<!-- "+this.toString()+" -->"}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js");
|
||||
MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f<c;f++){if(this.data[f]){j.push(this.data[f].toMathML(h))}else{if(!this.isToken){j.push(h+"<mrow />")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+"</"+e+">"}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+"</"+e+">"},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h<f;h++){if(this[c[h]]!=null){j.push(c[h]+'="'+this.quoteHTML(this[c[h]])+'"')}}if(j.length){return" "+j.join(" ")}else{return""}},copyAttributes:["fontfamily","fontsize","fontweight","fontstyle","color","background","id","class","href","style"],skipAttributes:{texClass:1,useHeight:1,texprimestyle:1},quoteHTML:function(e){e=String(e).split("");for(var f=0,d=e.length;f<d;f++){var h=e[f].charCodeAt(0);if(h<32||h>126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f<c;f++){if(this.data[f]){g.push(this.data[f].toMathML(h+" "))}}return h+"<"+e+d+">\n"+g.join("\n")+"\n"+h+"</"+e+">"}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f<c;f++){if(this.data[f]){g.push(this.data[f].toMathML(h+" "))}}return h+"<"+e+d+">\n"+g.join("\n")+"\n"+h+"</"+e+">"}});a.TeXAtom.Augment({toMathML:function(c){return c+"<mrow>\n"+this.data[0].toMathML(c+" ")+"\n"+c+"</mrow>"}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";<!-- "+this.toString()+" -->"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js");
|
||||
|
||||
|
|
|
@ -12,5 +12,5 @@
|
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
(function(b,e){var d="1.1";var a={style:{position:"fixed",bottom:"4em",left:"3em",width:"40em",border:"3px solid #880000","background-color":"#E0E0E0",padding:"1em","font-size":"small","white-space":"normal","border-radius":".75em","-webkit-border-radius":".75em","-moz-border-radius":".75em","-khtml-border-radius":".75em","box-shadow":"4px 4px 10px #AAAAAA","-webkit-box-shadow":"4px 4px 10px #AAAAAA","-moz-box-shadow":"4px 4px 10px #AAAAAA","-khtml-box-shadow":"4px 4px 10px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=3, OffY=3, Color='gray', Positive='true')"}};if(b.Browser.isIE9&&document.documentMode>=9){delete a.style.filter}var c;b.Register.StartupHook("onLoad",function(){var f=document.body;if(b.Browser.isMSIE){MathJax.Message.Init();f=document.getElementById("MathJax_MSIE_frame");a.style.position="absolute"}else{delete a.style.filter}a.style.maxWidth=(document.body.clientWidth-75)+"px";c=e.addElement(f,"div",{id:"MathJax_ConfigWarning",style:a.style},[["div",{style:{position:"absolute",overflow:"hidden",top:".1em",right:".1em",border:"1px outset",width:"1em",height:"1em","text-align":"center",cursor:"pointer","background-color":"#EEEEEE",color:"#606060","border-radius":".5em","-webkit-border-radius":".5em","-moz-border-radius":".5em","-khtml-border-radius":".5em"},onclick:function(){c.style.display="none"}},[["span",{style:{position:"relative",bottom:".2em"}},["x"]]]],"MathJax no longer loads a default configuration file; you must specify such files explicitly. This page seems to use the older default ",["code",{},["config/MathJax.js"]]," file, and so needs to be updated. This is explained further at",["p",{style:{"text-align":"center"}},[["a",{href:"http://www.mathjax.org/help/configuration"},["http://www.mathjax.org/help/configuration"]]]]])})})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/v1.0-warning.js");
|
||||
(function(b,e){var d="1.1";var a={style:{position:"fixed",bottom:"4em",left:"3em",width:"40em",border:"3px solid #880000","background-color":"#E0E0E0",padding:"1em","font-size":"small","white-space":"normal","border-radius":".75em","-webkit-border-radius":".75em","-moz-border-radius":".75em","-khtml-border-radius":".75em","box-shadow":"4px 4px 10px #AAAAAA","-webkit-box-shadow":"4px 4px 10px #AAAAAA","-moz-box-shadow":"4px 4px 10px #AAAAAA","-khtml-box-shadow":"4px 4px 10px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=3, OffY=3, Color='gray', Positive='true')"}};if(b.Browser.isIE9&&document.documentMode>=9){delete a.style.filter}var c;b.Register.StartupHook("onLoad",function(){var f=document.body;if(b.Browser.isMSIE){MathJax.Message.Init();f=document.getElementById("MathJax_MSIE_frame")||f;a.style.position="absolute"}else{delete a.style.filter}a.style.maxWidth=(document.body.clientWidth-75)+"px";c=e.addElement(f,"div",{id:"MathJax_ConfigWarning",style:a.style},[["div",{style:{position:"absolute",overflow:"hidden",top:".1em",right:".1em",border:"1px outset",width:"1em",height:"1em","text-align":"center",cursor:"pointer","background-color":"#EEEEEE",color:"#606060","border-radius":".5em","-webkit-border-radius":".5em","-moz-border-radius":".5em","-khtml-border-radius":".5em"},onclick:function(){c.style.display="none"}},[["span",{style:{position:"relative",bottom:".2em"}},["x"]]]],"MathJax no longer loads a default configuration file; you must specify such files explicitly. This page seems to use the older default ",["code",{},["config/MathJax.js"]]," file, and so needs to be updated. This is explained further at",["p",{style:{"text-align":"center"}},[["a",{href:"http://www.mathjax.org/help/configuration"},["http://www.mathjax.org/help/configuration"]]]]])})})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/v1.0-warning.js");
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 151 KiB |
|
@ -9,119 +9,124 @@
|
|||
alphabetic="0" />
|
||||
<missing-glyph horiz-adv-x="250" d="M50 0V533H200V0H50ZM100 50H150V483H100V50Z" />
|
||||
<glyph unicode=" " glyph-name="space" horiz-adv-x="250" />
|
||||
<glyph unicode="0" glyph-name="zero" horiz-adv-x="575" d="M259 460H279Q352 460 403 444T491 378Q528 320 528 219Q528 100 475 45Q417 -17 287 -17Q152 -17 99 44T46 219Q46 246 47 265T57 318T82 376T131 422T210 454Q234 460 259 460ZM389 229V271Q389 351
|
||||
371 380T280 409Q232 409 208 385Q194 371 190 345T185 229V210Q185 108 194 83Q208 35 287 35Q317 35 336 42Q372 55 380 85T389 204V229Z" />
|
||||
<glyph unicode="1" glyph-name="one" horiz-adv-x="575" d="M119 417Q191 417 240 428T310 450T338 461Q353 461 357 452T361 400Q361 389 361 342T360 254V62H420H456Q483 62 488 58T494 35V29Q494 13 491 7T473 0Q468 0 424 1T295 2T167 1T117 0Q114 0 111 0T107
|
||||
1Q96 8 96 27V35Q96 54 102 58T140 62H170H229V213Q229 363 228 363Q220 360 196 358T150 356L130 355H93Q84 360 82 365T80 386Q80 404 81 407T95 417H119Z" />
|
||||
<glyph unicode="2" glyph-name="two" horiz-adv-x="575" d="M214 399Q202 399 191 398T175 395T170 392L171 390Q172 389 174 386T178 379T181 369T182 355Q182 328 165 312T123 296Q99 296 82 312T64 356Q64 397 105 428T253 460Q301 460 337 456T411 441T476
|
||||
403T514 338Q516 328 516 310V304Q516 257 470 227Q456 217 427 205T376 184L354 176Q350 174 325 162T277 139L254 128Q414 129 428 130H439Q450 148 453 166T460 188T486 193H493Q515 193 517 178Q517 171 502 94T484 11Q481 3 472 2T410 0H269Q65 0 62 2Q55
|
||||
5 53 10T51 32Q51 54 56 58Q60 62 173 131Q296 207 318 224Q368 264 368 308Q368 342 342 363T283 392T214 399Z" />
|
||||
<glyph unicode="3" glyph-name="three" horiz-adv-x="575" d="M80 309Q80 367 131 414T276 461Q388 461 441 417T494 313Q494 265 463 223T373 155L361 151L376 147Q436 132 480 92T525 -15T487 -127T393 -192T274 -211Q179 -211 114 -167T48 -53Q48 -18 69 5T128
|
||||
29Q168 29 188 5T208 -50Q208 -59 207 -67T203 -81T197 -92T190 -101T183 -109T177 -114T170 -118L167 -121Q160 -125 164 -127Q167 -129 176 -133Q215 -152 268 -152H273Q337 -152 356 -92Q364 -69 364 -14Q364 45 352 74T303 120Q287 125 240 125H230Q201 125
|
||||
196 127T191 146V152Q192 170 196 173T233 178Q234 178 241 178T252 179T262 181T274 183T285 188T297 195T308 205T319 218T328 235T337 257Q345 280 345 320V330Q345 345 343 355T335 379T312 399T270 407Q226 407 177 377Q226 356 226 310Q226 270 204 253T153
|
||||
235Q123 235 102 253T80 309Z" />
|
||||
<glyph unicode="4" glyph-name="four" horiz-adv-x="575" d="M180 0Q155 0 124 0T84 -1Q48 -1 40 3T32 27V37Q32 59 34 63T204 265T377 465Q380 468 383 468H387Q391 468 398 468T411 469Q432 469 438 468T449 459Q451 455 451 258V62H489H498Q531 62 536 58T542
|
||||
31Q542 9 537 5T504 0H489H451V-132H489H498Q530 -132 536 -136T542 -163Q542 -181 538 -187T522 -194Q518 -194 483 -193T378 -192Q281 -192 256 -193L217 -194Q203 -189 203 -169V-163V-158Q203 -140 209 -136T246 -132H265H314V0H180ZM325 62V320L105 63L215
|
||||
62H325Z" />
|
||||
<glyph unicode="5" glyph-name="five" horiz-adv-x="575" d="M131 29Q159 26 175 12T194 -13T197 -35V-41Q197 -58 195 -66Q191 -76 185 -84T173 -97T161 -105T152 -109L148 -110Q148 -112 158 -121T195 -141T252 -152Q274 -152 280 -151Q335 -137 349 -104T363
|
||||
9Q363 85 356 114T322 157Q305 166 286 166Q251 166 223 154T182 131T162 109Q154 98 150 96T130 93Q107 93 102 104Q100 107 100 279V371V424Q100 461 110 461Q114 461 123 458T149 450T183 441Q234 429 286 429Q313 429 340 432T387 440T422 449T447 457T458
|
||||
461Q472 461 472 435Q472 420 470 418Q464 405 438 379T352 325T226 297Q189 297 171 301H168V182Q169 182 174 185T190 194T213 205T248 213T292 217Q391 217 454 159T517 5Q517 -92 444 -151T255 -211Q167 -211 112 -160T57 -44Q57 -12 76 8T131 29Z" />
|
||||
<glyph unicode="6" glyph-name="six" horiz-adv-x="575" d="M48 316Q48 398 70 462T124 562T198 621T274 652T339 660Q377 660 384 659Q497 632 497 532Q497 507 482 487T431 466Q397 466 381 486T365 530Q365 569 405 593Q382 603 381 603Q361 607 350 607Q316
|
||||
607 279 589T221 533Q199 489 196 385L195 370Q196 371 203 379T217 395T237 410T263 424Q283 431 313 431Q409 431 468 368Q526 310 526 208Q526 131 492 81T405 5Q359 -17 289 -17Q256 -17 227 -11T163 17T105 73T65 170T48 316ZM293 380Q244 380 220 331T196
|
||||
212Q196 104 216 80Q240 41 292 41Q295 41 301 41T309 42Q338 46 355 62Q372 81 375 108T379 230Q378 314 372 333Q358 375 299 380H293Z" />
|
||||
<glyph unicode="7" glyph-name="seven" horiz-adv-x="575" d="M95 210H88Q66 210 64 225Q64 229 82 345T102 465Q106 476 125 476H131Q162 476 162 458Q162 451 213 448Q221 448 238 447T260 446Q261 446 410 444Q436 444 468 444T509 445Q544 445 551 440T558
|
||||
413V404Q558 395 547 380T478 301L392 202Q354 150 339 81T321 -104V-132Q321 -187 286 -203Q273 -211 255 -211Q236 -211 217 -199T190 -160Q189 -153 189 -130Q194 17 282 156Q309 200 370 270Q404 307 400 307H293Q151 306 146 303Q140 300 132 259T120 215Q115
|
||||
210 95 210Z" />
|
||||
<glyph unicode="8" glyph-name="eight" horiz-adv-x="575" d="M48 164Q48 199 59 228T92 277T128 307T163 329Q159 332 155 336Q135 346 110 382Q80 427 80 477Q80 564 147 620Q202 660 264 660Q266 660 275 660T290 661Q384 661 439 619T494 506Q494 486 489
|
||||
468T477 437T459 413T440 395T421 380T406 370L410 368Q414 365 421 361T437 351T456 335T476 316T495 291T511 262T522 228T526 189Q526 93 460 38T282 -17Q242 -17 205 -9T130 19T71 75T48 164ZM406 506Q406 545 379 576T283 607Q218 606 193 585T168 536Q168
|
||||
522 172 513T195 490T224 471T275 443L346 403Q406 446 406 506ZM291 42Q365 42 395 70T425 134V141Q425 170 401 190T319 242Q308 248 302 251Q286 260 266 271T235 288L225 294Q222 292 217 289T198 274T175 249T157 212T148 163Q148 116 179 79T291 42Z" />
|
||||
<glyph unicode="9" glyph-name="nine" horiz-adv-x="575" d="M175 -140Q198 -152 236 -152Q294 -152 332 -116Q356 -91 366 -54T379 62V78L376 74Q372 70 366 64T352 50T333 35T308 23Q289 17 262 17Q168 17 108 77T48 235Q48 273 59 317Q81 381 141 421T276 461Q279
|
||||
461 285 461T295 460Q326 460 354 454T415 426T471 371T510 277T526 136Q526 42 501 -28T432 -136T341 -192T240 -210Q199 -210 169 -201T121 -178T94 -146T80 -112T77 -82Q77 -51 95 -33T143 -15Q170 -15 189 -33T209 -81Q209 -116 175 -140ZM377 244V274Q377
|
||||
300 376 316T368 352T348 384T312 405Q307 406 283 406Q257 406 238 396T213 376T205 361Q196 341 196 259V233V181Q196 122 211 96T278 69H298Q330 82 345 104Q367 134 376 190Q377 200 377 244Z" />
|
||||
<glyph unicode="A" glyph-name="A" horiz-adv-x="921" d="M761 751Q784 751 784 728V711Q784 570 795 417T820 191Q844 76 865 76Q868 76 902 93T962 112H973Q989 104 989 94Q989 92 987 86Q978 47 846 -11Q812 -25 779 -26Q722 -26 708 9Q688 47 669 161H524L379
|
||||
162L359 136Q286 43 234 -3T142 -49T71 -19T39 55Q39 92 60 131T103 174Q113 174 117 167T124 149T136 128T166 110Q183 105 190 105Q230 105 341 246Q401 322 453 397T531 514T582 601T611 651H640V663Q640 692 676 718T745 750Q747 750 752 750T761 751ZM658
|
||||
266Q653 312 649 377T644 489T641 541V556L557 415Q500 325 448 253Q467 261 524 261H568H658V266Z" />
|
||||
<glyph unicode="B" glyph-name="B" horiz-adv-x="748" d="M441 83Q571 83 571 195Q571 246 538 279T466 322T386 333Q378 333 357 330T329 327Q307 327 307 345Q307 354 313 365T347 396T419 430Q546 472 581 498Q594 508 594 535Q594 574 567 589T508 604Q469
|
||||
604 442 583Q390 546 342 457T265 256Q237 148 186 60Q167 29 144 13Q105 -15 68 -17H65Q40 -17 40 1Q40 7 53 29T87 100T124 210Q162 373 190 575Q188 575 174 567T138 550T98 542Q75 542 75 560Q75 588 123 618Q135 625 203 659T281 696Q299 703 316 703Q339
|
||||
703 339 685Q339 656 328 583L333 588Q338 592 346 599T367 615T394 634T428 654T467 674T511 690T559 701T611 705Q651 704 681 689Q739 659 739 598Q739 507 595 427L584 421Q585 420 595 416T610 410T626 402T644 392T660 380T677 365T691 347T703 325T710 299T715
|
||||
268Q717 193 665 130Q622 73 531 28T348 -17Q275 -17 225 10Q206 19 200 24T193 36Q193 57 231 86T311 119H322Q386 83 441 83Z" />
|
||||
<glyph unicode="C" glyph-name="C" horiz-adv-x="613" d="M243 -20Q135 -20 78 48T20 218Q20 280 39 344T98 470T193 580T324 661T488 702H490Q491 702 493 702T498 703T507 703T518 702H526Q599 702 599 631Q599 597 577 550T541 486Q523 463 490 447T431 430Q423
|
||||
430 419 433Q409 437 409 450Q410 456 432 499T454 567Q454 586 446 594T415 603Q316 603 254 532Q216 487 190 421T164 284Q164 228 181 186T226 122T282 90T340 80Q377 80 405 96T449 131T492 167T553 187H555Q580 187 580 168Q580 153 551 123T476 60T367 4T243
|
||||
-20Z" />
|
||||
<glyph unicode="D" glyph-name="D" horiz-adv-x="892" d="M107 0Q92 5 92 18Q92 33 113 53T160 86Q170 91 182 94T197 100L206 120Q248 226 273 337T304 501T309 585Q278 585 234 577T179 557Q172 550 166 532T156 509Q140 484 105 466T44 447Q20 447 20 465Q20
|
||||
482 34 510T76 565Q122 608 173 632Q281 686 447 686H480H517Q692 686 784 631Q885 571 885 450Q885 339 805 239T586 75T286 1Q276 0 187 0H107ZM741 391Q741 424 731 452T694 510T613 558T481 584Q476 584 468 584T457 585L449 586V579Q441 501 425 424T391 292T357
|
||||
193T330 125T319 100H324Q511 100 628 175Q688 215 714 275T741 391Z" />
|
||||
<glyph unicode="E" glyph-name="E" horiz-adv-x="607" d="M495 516Q485 516 478 520T470 532Q470 537 476 550T482 570Q482 589 465 596T401 603Q344 603 319 582Q295 558 295 519Q295 493 312 474T355 445T407 432T455 427Q477 427 477 409Q477 395 453 371T389
|
||||
333Q380 330 345 327T279 312T223 272Q181 223 181 176Q181 131 225 107T324 83Q366 83 395 98T448 136T487 167Q517 185 547 187H551Q574 187 574 170Q574 151 535 113T421 36T271 -15Q260 -16 226 -16Q181 -16 152 -9Q104 4 71 33T37 111Q37 140 50 176T106 263T216
|
||||
356Q215 357 207 362T190 374T172 392T156 419T150 456Q150 521 208 580T341 670T474 702Q475 703 499 703Q528 703 547 701T586 693T615 673T627 637Q627 584 581 550T495 516Z" />
|
||||
<glyph unicode="F" glyph-name="F" horiz-adv-x="814" d="M812 567Q804 567 795 570T786 579Q786 586 647 586H559L558 582Q558 575 539 510T506 407L498 384H775Q788 378 790 368Q790 328 746 298T665 268Q646 268 642 284H457L447 261Q396 150 360 94Q329 46
|
||||
270 8T149 -30Q123 -30 100 -24T63 -10T37 9T22 26T17 36Q17 59 56 88T135 119Q145 119 149 117T165 104Q187 78 227 72Q232 72 234 76Q245 93 273 145T350 323T424 570L428 586H276Q265 575 239 563T190 551Q180 551 174 556T167 569Q167 580 179 597T213 634T278
|
||||
668T371 685Q374 686 624 686Q863 685 888 682Q917 678 927 663Q930 658 930 650Q930 624 888 596T812 567Z" />
|
||||
<glyph unicode="G" glyph-name="G" horiz-adv-x="682" d="M50 279Q50 361 88 438T190 570T335 661T503 702H514Q524 703 532 703Q671 703 671 626Q671 580 614 514T495 447Q472 447 472 465Q472 477 499 511T527 562Q527 582 507 592T433 602Q351 602 302 569Q252
|
||||
535 223 469T194 344Q194 266 237 217T352 168Q401 168 442 205T505 316Q515 345 551 368T622 393H625Q649 393 649 376Q649 371 635 318T612 237Q580 129 540 62T442 -49Q353 -114 264 -114Q259 -114 252 -114L246 -113Q190 -113 142 -107T81 -96Q71 -90 71 -81Q71
|
||||
-57 110 -30T187 2Q196 2 236 -4T338 -14Q371 -14 377 -9Q410 24 446 113L451 127Q353 68 253 68Q157 68 104 129T50 279Z" />
|
||||
<glyph unicode="H" glyph-name="H" horiz-adv-x="987" d="M42 447Q20 447 20 465Q20 481 47 515T119 589T239 657T392 686Q443 686 463 664T484 616Q484 570 473 506T452 401L441 360Q441 359 550 359H660L663 370Q684 435 716 522T758 624Q771 646 806 666T870
|
||||
686Q894 686 894 668Q894 667 867 597T804 416T752 218Q737 135 737 93Q737 77 746 65T778 53Q799 53 803 54T814 63Q831 86 864 103T924 120Q946 120 946 100Q945 85 931 63T888 16T806 -27T684 -48H681Q625 -48 603 -10Q593 4 593 29Q593 71 603 131T624 230L634
|
||||
269Q632 269 624 266Q610 261 600 261T507 259H411L399 222Q344 62 322 21Q301 -7 268 -24T209 -41H207Q187 -41 185 -25Q185 -17 192 2T220 71T261 184Q284 256 284 258Q284 259 227 259H170Q169 259 166 261T162 264T158 266T156 271T155 277Q155 296 184 320T250
|
||||
356Q259 358 286 359Q312 359 312 360Q314 372 318 385Q332 450 339 526Q339 530 339 535T340 543Q340 586 296 586Q255 586 227 576T188 553T165 523T146 497Q127 476 97 462T42 447Z" />
|
||||
<glyph unicode="I" glyph-name="I" horiz-adv-x="642" d="M56 499Q32 499 32 516Q32 540 64 580T165 649Q241 682 365 685Q366 685 376 685T405 685T445 686T496 686T553 686H732Q746 677 746 668Q746 646 711 620T642 587L572 586H503Q479 546 458 479T424 352T383
|
||||
224T318 111L309 101L412 100H514L523 109Q567 150 618 153Q644 153 644 135Q644 132 642 124Q629 86 581 52T476 6Q454 2 433 2T216 0Q-11 0 -15 2Q-27 6 -27 18Q-27 37 2 61T59 93Q77 100 142 100H198Q255 177 299 369Q337 513 382 574L391 586H348Q261 586 176
|
||||
576Q163 543 124 521T56 499Z" />
|
||||
<glyph unicode="J" glyph-name="J" horiz-adv-x="779" d="M286 390Q263 390 263 407Q263 432 293 481T367 566Q511 687 724 687Q738 687 761 687T793 686H923Q937 677 937 668Q937 648 905 623T842 589Q829 587 817 586T802 585T795 583T788 578Q709 506 632 189Q622
|
||||
153 615 134T588 81T537 17Q482 -39 404 -76T247 -114Q192 -114 158 -100Q53 -61 53 32Q53 59 58 73T79 102Q126 147 177 147Q200 147 200 128Q200 123 198 112T196 96Q196 47 238 17T345 -13Q362 -13 377 -9T404 0T426 16T444 34T459 55T470 76T478 97T483 116T488
|
||||
132L490 141Q511 222 520 257T554 364T608 486T675 576L685 586H634H612Q532 586 484 564Q453 549 436 526T409 478T395 447Q378 424 345 407T286 390Z" />
|
||||
<glyph unicode="K" glyph-name="K" horiz-adv-x="871" d="M98 542Q75 542 75 560Q75 588 123 618Q132 624 199 657T275 694Q291 703 315 703Q327 703 332 699T338 690T339 670Q339 596 323 505T283 337T237 194T198 90L181 53Q170 31 136 8T68 -17H65Q40 -17 40
|
||||
0L76 92Q112 185 150 322T194 564V578L168 565Q125 542 98 542ZM834 142Q834 125 819 100T774 48T692 3T576 -16H560Q540 -16 508 6Q469 33 422 108T342 267T309 398Q309 411 310 417T320 442T347 482Q401 542 517 615T710 702Q712 702 721 702T735 703Q772 703
|
||||
791 690Q819 674 819 646T792 597T733 574H722Q704 584 704 599Q706 607 700 610T672 617L660 613Q609 595 524 538T423 450V440Q423 376 488 247T604 83Q621 70 640 70Q677 70 701 82Q713 87 718 101T737 132T783 160Q792 163 807 163Q834 163 834 142Z" />
|
||||
<glyph unicode="L" glyph-name="L" horiz-adv-x="788" d="M63 -17Q41 -17 41 0Q41 22 85 54Q101 68 113 92T133 141T154 219T182 315Q230 462 306 553Q345 599 391 632T478 678T543 697T582 703Q584 703 589 703T598 702Q643 702 666 676T689 613Q689 588 683
|
||||
575Q674 551 632 524T552 496Q530 496 530 512Q530 517 531 525T533 538Q533 559 522 577T480 596H476Q462 596 451 588T415 544Q350 447 310 281Q284 181 261 136L255 124H285Q342 123 441 107T583 90L596 89Q603 116 647 144T729 173Q751 173 751 157Q751 118
|
||||
685 60T523 -15Q514 -16 479 -16Q421 -16 320 0T171 18H155L142 10Q98 -17 63 -17Z" />
|
||||
<glyph unicode="M" glyph-name="M" horiz-adv-x="1378" d="M38 20Q38 59 60 99T104 139Q106 139 126 125T176 106H181Q200 106 221 139T286 281Q322 370 342 451T368 581T376 634Q384 657 420 680T487 703Q502 703 507 696T522 649Q538 589 554 537Q579 453 609
|
||||
372T660 248T686 202Q687 201 739 244T830 322L1166 642Q1225 700 1230 701Q1230 701 1237 703Q1258 703 1258 667L1253 637Q1248 607 1241 558T1227 451T1214 326T1209 202Q1209 77 1232 77Q1237 77 1269 94T1326 112H1329Q1353 112 1353 94Q1353 81 1334 60Q1311
|
||||
37 1248 7T1150 -24H1141H1135Q1085 -24 1074 26Q1064 75 1064 134Q1064 239 1086 426Q1087 430 1087 434L1061 410Q871 227 783 149L694 76Q653 44 647 40T631 34Q620 34 616 37T594 63Q546 125 514 198Q467 307 423 449L418 466L412 444Q376 310 306 153Q278
|
||||
88 251 45T201 -18T163 -43T131 -49Q102 -48 70 -31T38 20Z" />
|
||||
<glyph unicode="N" glyph-name="N" horiz-adv-x="937" d="M47 139Q81 105 122 105Q137 105 147 117Q159 134 182 199T234 381T274 610Q275 634 284 647Q297 666 327 684T389 703Q403 703 408 695T428 645Q480 490 567 298Q628 163 673 103Q674 102 674 102T675
|
||||
106Q732 331 803 551Q842 674 875 725Q908 775 966 807T1081 840H1084Q1105 840 1105 803Q1105 768 1088 733T1051 689Q1045 686 1032 686Q986 683 948 663T901 624Q881 579 837 430T760 154L726 28Q725 28 725 28T723 25Q716 0 682 -24T611 -48Q600 -48 595 -45T576
|
||||
-23Q522 44 480 124Q417 243 332 463L328 473L325 457Q291 293 227 124Q159 -49 72 -49Q38 -49 5 -28Q-24 -8 -24 21Q-24 58 -3 98T41 139H47Z" />
|
||||
<glyph unicode="O" glyph-name="O" horiz-adv-x="906" d="M433 703Q456 703 456 685Q456 672 441 655T407 627Q402 623 378 611T328 579T276 524Q207 434 207 324Q207 222 270 153T441 84Q566 84 651 177T737 400V405Q737 496 693 549T576 603Q542 603 510 560Q490
|
||||
537 472 502T442 454Q397 412 346 409Q320 409 320 427Q320 430 322 436Q331 465 360 507T433 594T542 671T677 703Q776 703 829 636T882 468Q882 369 831 277T702 122T528 21T343 -17Q214 -17 139 61T63 257Q63 336 94 409T173 534T272 625T367 684T432 703H433Z"
|
||||
/>
|
||||
<glyph unicode="P" glyph-name="P" horiz-adv-x="810" d="M170 -67Q147 -67 147 -49Q147 -42 162 -8T204 99T253 254Q274 332 288 415T305 542L308 585Q277 585 234 577T179 557Q172 550 166 532T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76
|
||||
565Q122 608 173 632Q279 686 448 686H495H537Q622 686 678 677T784 637Q846 598 846 533Q846 452 776 375T597 252T378 206H366L358 181Q341 130 316 68T282 -7Q262 -33 230 -50T170 -67ZM701 468Q701 512 661 540T570 577T461 586H448V582Q446 576 443 545T428
|
||||
447T395 301L389 280Q390 280 398 284T419 295T441 303Q443 304 484 306T572 321T651 359Q701 402 701 468Z" />
|
||||
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="939" d="M874 453Q874 372 836 298T750 177T638 89T543 33T486 8L483 7Q485 5 523 -7T622 -32T726 -46Q741 -46 746 -45T755 -41T762 -27Q770 -1 806 23T878 50H890Q905 42 905 33Q905 -8 838 -68T670 -145Q662
|
||||
-146 628 -146Q538 -146 389 -100T164 -50Q132 -50 132 -32T162 11T227 47Q231 48 286 51T394 62T518 100T641 180Q730 271 730 387Q730 478 673 540T520 602Q410 602 337 525T264 355Q264 284 310 244T420 203Q476 203 568 222Q594 222 594 204Q594 184 565 161T508
|
||||
128Q433 103 316 103Q227 103 174 157T120 290Q120 382 182 471T343 620T548 697Q578 703 601 703Q604 703 611 703T623 702Q663 702 687 696Q760 679 817 618T874 453Z" />
|
||||
<glyph unicode="R" glyph-name="R" horiz-adv-x="990" d="M159 0Q159 5 172 34T205 114T245 229T284 386T309 575V585H304Q303 585 295 585T282 584Q233 579 207 570T175 553T165 531T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76 565Q122
|
||||
608 173 632Q279 686 448 686H505H582Q683 686 745 672T834 611Q842 594 842 565Q842 523 824 484T780 419T722 370T669 336T632 318L619 312L626 302Q640 279 667 227T696 172Q717 133 735 112T762 88T784 84Q824 84 872 118T957 153Q981 153 981 136Q981 114
|
||||
937 78T820 13T684 -17Q646 -17 616 8T569 66T526 151T477 234Q461 256 446 265Q437 272 421 274Q400 274 400 291Q400 311 430 336T495 371Q496 371 543 374T627 392T681 436Q699 467 699 503Q699 550 644 568T471 586H449V582Q449 581 447 559T438 499T422 413T393
|
||||
298T348 165Q313 73 296 45Q282 24 249 4T185 -17Q159 -17 159 0Z" />
|
||||
<glyph unicode="S" glyph-name="S" horiz-adv-x="696" d="M204 476Q204 525 248 577T372 666T539 703T674 683T721 612Q721 588 714 569Q704 547 669 524T601 499Q573 499 573 516Q573 521 575 527T577 543Q577 563 568 574T548 588L539 590Q490 603 444 603Q418
|
||||
603 394 597T364 583Q348 567 348 533Q348 493 382 466T459 425T555 387T633 330Q662 292 662 249Q662 153 544 69T257 -16Q218 -16 208 -15Q118 1 64 46Q25 76 25 126Q25 185 82 235T203 290H207Q229 290 231 274Q231 243 180 213Q173 209 172 206T170 189T171
|
||||
170T183 150T216 121Q273 83 356 83Q412 83 459 100Q493 111 507 141Q518 165 518 185Q518 208 506 228T478 262T437 288T398 306T360 320Q316 335 285 352T239 384T215 416T205 443T204 467V476Z" />
|
||||
<glyph unicode="T" glyph-name="T" horiz-adv-x="644" d="M61 462H59Q38 462 38 479Q38 528 109 594T289 683L304 685L837 687L846 693Q889 720 923 720Q947 720 947 702Q945 671 892 631T776 583Q774 583 772 583T769 582T766 582L764 581H758Q753 581 744 581T722
|
||||
580T693 580T662 580H563L514 385Q507 355 493 299T475 225T460 172T443 119T426 76T402 24Q386 -11 355 -33T304 -61T266 -69Q242 -69 242 -50Q243 -45 253 -25T278 32T307 115L364 340Q405 511 413 538T436 580H207Q202 572 200 568T197 561T195 552T190 537Q176
|
||||
511 135 487T61 462Z" />
|
||||
<glyph unicode="U" glyph-name="U" horiz-adv-x="715" d="M124 586Q107 586 74 569T15 552H13Q-10 552 -10 570Q-10 605 70 645T222 686Q283 686 283 631Q283 590 246 504T172 326T135 181Q135 130 157 107T205 83Q221 83 259 106Q347 165 453 301T604 548Q607
|
||||
557 612 569T619 587T624 600T628 612T632 621T637 628T641 634T647 640T654 645T662 652Q706 686 748 686Q771 686 771 669Q771 656 754 614T700 467T630 229Q615 168 610 105Q610 88 617 78L641 90Q681 111 706 112Q733 112 733 95Q733 82 714 60Q694 40 633
|
||||
10Q567 -23 532 -24Q507 -24 495 -17Q466 -4 466 32Q466 96 500 225Q277 -17 102 -17Q56 -17 23 17T-10 118Q-10 164 13 234T64 363T115 481T139 567Q139 586 124 586Z" />
|
||||
<glyph unicode="V" glyph-name="V" horiz-adv-x="737" d="M25 608Q25 628 60 657T148 686Q184 683 213 671T273 625T327 538T363 394T380 184L381 134L399 148Q503 226 574 302T667 415T689 467Q688 474 684 482T672 502T645 521T600 532Q576 532 576 567Q576
|
||||
604 597 644T641 685H649Q701 685 737 648T774 545Q774 457 703 333T461 66Q397 13 332 -32T255 -77Q237 -77 237 -30V-23Q241 20 241 109Q241 483 115 569Q91 586 50 589Q25 589 25 608Z" />
|
||||
<glyph unicode="W" glyph-name="W" horiz-adv-x="1169" d="M25 607Q25 629 62 657T142 686Q205 686 248 647T312 541T339 411T347 275Q347 249 345 203V189Q375 219 449 316T587 516Q629 584 629 587Q629 589 626 597T622 607Q622 629 658 656T732 686H744Q755
|
||||
680 757 678Q757 677 769 649T799 577T835 475T874 339T904 183Q908 157 910 151L925 169Q997 252 1059 343T1121 474Q1120 498 1103 513T1059 532Q1036 532 1036 568Q1036 600 1053 636T1090 683L1097 686H1109Q1147 684 1176 652T1206 551Q1206 460 1131 320T897
|
||||
7Q859 -33 840 -52T816 -74T804 -77Q788 -77 784 -32Q783 -28 783 -26Q774 108 744 239T691 436T665 501Q664 501 649 475T602 400T528 289T420 146T280 -15Q243 -56 231 -66T210 -77Q191 -77 191 -40Q191 -38 195 -4T204 91T209 217Q209 290 202 351T177 469T126
|
||||
557T45 589Q25 589 25 607Z" />
|
||||
<glyph unicode="X" glyph-name="X" horiz-adv-x="817" d="M762 562Q762 579 737 584T711 604Q711 630 753 658T834 686Q864 686 885 669T906 627Q906 580 834 522T614 379L584 362V357Q585 354 589 315T597 233T603 183Q610 132 627 116T671 100Q678 100 704 113T754
|
||||
126T778 107Q776 79 733 45T626 2Q615 1 578 1Q542 1 535 3Q521 7 510 15T491 31T477 54T467 78T460 108T456 137T452 170T449 201Q447 220 445 240T442 270L441 281Q435 281 357 233Q240 165 206 135Q200 128 200 124Q200 113 208 108T226 101T244 96T252 82Q252
|
||||
61 214 31T129 1H120Q97 1 77 16T56 60Q56 105 133 168T414 345Q428 352 431 354T433 359Q422 493 414 522Q407 551 395 566T373 583T350 586H341L332 580Q290 560 265 560Q243 560 243 577Q243 585 248 596T269 624T306 653T365 676T447 686H456Q472 686 484 683T514
|
||||
671T543 637T562 576Q565 557 570 501L577 437Q577 436 613 457T694 506T756 551Q762 558 762 562Z" />
|
||||
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="759" d="M73 555Q49 555 49 573Q49 602 110 644T239 686Q319 686 376 624Q416 584 444 511T483 361T499 240T503 173Q503 165 504 165Q506 165 524 184T556 218Q631 297 674 377T718 485Q718 505 699 526Q673 552
|
||||
628 552Q619 552 613 562T607 590Q607 617 621 645T658 685Q661 686 671 686Q718 686 757 652T797 545Q797 476 749 369T602 146Q500 29 371 -67T176 -164Q112 -164 74 -120T36 -29Q36 5 55 36T95 67Q104 67 108 59T115 39T128 12T154 -12Q183 -30 216 -30Q239
|
||||
-30 305 7L361 44L367 49V54Q367 95 364 143T351 273T312 429T243 546Q206 581 156 588L146 581Q108 555 73 555Z" />
|
||||
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="818" d="M622 574Q522 579 420 579H396Q373 579 364 574T351 550Q339 516 297 490T218 462Q195 462 195 479Q195 487 197 492Q218 565 313 625T509 685Q564 685 650 683T755 680Q787 680 807 683T831 686Q853 686
|
||||
853 669Q853 657 826 626Q742 532 641 437L619 415L622 414Q626 414 631 414T642 414Q697 411 697 388Q697 367 670 345T607 323Q605 323 592 325T546 329H522L490 302Q457 274 400 226T289 136L260 113L318 112Q345 111 452 109T587 106H627Q650 143 656 170Q666
|
||||
197 710 225T788 253Q811 253 811 237Q811 211 781 160T710 77Q619 0 515 0Q507 0 497 0T484 1Q434 1 319 3T177 6Q123 6 95 2Q83 2 71 0H68Q46 0 46 17Q46 28 58 44Q68 56 100 80T210 165T383 307L408 329H361L314 330Q297 338 297 350Q297 368 320 388T368 413Q375
|
||||
415 441 415H506L647 555L664 574H622Z" />
|
||||
<glyph unicode="0" glyph-name="zero" horiz-adv-x="575" d="M412 -17T287 -17T104 39T46 219Q46 323 85 380T210 454Q234 460 259 460H279Q328 460 337 459Q443 445 491 378Q528 321 528 219Q528 95 470 39ZM366 385Q339 409 280 409Q232 409 208 385Q196 374
|
||||
192 358T186 297Q186 293 186 270T185 229Q185 157 187 131Q189 97 194 83Q208 35 287 35T380 83Q385 97 387 131Q389 157 389 229Q389 246 389 269T388 297Q387 341 383 357T366 385Z" />
|
||||
<glyph unicode="1" glyph-name="one" horiz-adv-x="575" d="M80 386Q80 392 80 395T80 402T81 406T83 410T85 412T89 414T95 417H119Q246 417 319 455Q331 461 338 461Q354 461 358 451Q360 447 360 254V62H420Q480 62 484 60Q494 54 494 35V29Q494 12 491 6T473
|
||||
0Q451 0 395 1T295 2T196 1T117 0Q103 0 100 6T96 29V35Q96 56 107 60Q110 62 170 62H229V213Q229 363 228 363Q218 360 181 357Q178 357 170 357T150 356T130 355H93Q83 359 82 363T80 386Z" />
|
||||
<glyph unicode="2" glyph-name="two" horiz-adv-x="575" d="M149 296T123 296T81 313T64 356Q64 384 78 403Q117 460 253 460Q313 460 325 459Q429 447 477 401Q516 365 516 310Q516 279 506 262T470 227Q446 211 392 191Q357 177 354 176Q350 174 325 162T277
|
||||
139L254 128Q414 129 428 130H439Q447 144 454 169Q457 186 462 189T486 193Q503 193 507 191Q516 186 517 178Q517 171 502 94T484 11Q482 5 476 2Q472 0 269 0Q65 0 62 2Q55 5 53 10T51 32Q51 54 56 58Q60 62 173 131Q273 192 296 208T335 239Q368 272 368 308Q368
|
||||
368 288 390Q256 399 214 399Q170 399 170 392Q171 390 173 388Q182 375 182 355Q182 329 166 313Z" />
|
||||
<glyph unicode="3" glyph-name="three" horiz-adv-x="575" d="M177 377Q226 358 226 310Q226 275 207 255T153 235T100 255T80 309Q80 326 84 341Q98 394 150 427T276 461Q353 461 406 437T482 367Q494 342 494 313Q494 264 462 222Q432 181 373 155L361 151L376
|
||||
147Q461 126 501 66Q525 32 525 -15Q525 -83 481 -134Q449 -170 394 -190T274 -211Q189 -211 125 -174T49 -70Q48 -64 48 -53Q48 -17 69 6T128 29Q164 29 186 7T208 -50Q208 -92 179 -113L167 -121Q160 -125 164 -127Q167 -129 176 -133Q215 -152 268 -152Q337
|
||||
-152 356 -92Q364 -69 364 -14Q364 61 341 92Q328 109 303 120Q287 125 240 125Q202 125 198 127Q191 132 191 152Q192 170 196 173T233 178Q267 180 279 185Q320 201 337 257Q345 280 345 320Q345 367 329 387T270 407Q225 407 177 377Z" />
|
||||
<glyph unicode="4" glyph-name="four" horiz-adv-x="575" d="M217 -194Q207 -190 205 -186T203 -163V-154Q203 -140 212 -134Q217 -132 265 -132H314V0H180Q47 0 43 2Q37 5 34 11Q32 14 32 37Q32 59 34 63T204 265T377 465Q380 468 383 468H387Q391 468 398 468T411
|
||||
469Q437 469 440 467Q446 464 449 459Q451 455 451 258V62H489Q528 62 532 60Q542 55 542 31T532 2Q528 0 489 0H451V-132H489Q528 -132 531 -134Q542 -139 542 -163Q542 -181 539 -187T522 -194Q504 -194 459 -193T378 -192Q281 -192 256 -193L217 -194ZM325 62V320L105
|
||||
63L215 62H325Z" />
|
||||
<glyph unicode="5" glyph-name="five" horiz-adv-x="575" d="M458 461Q472 461 472 435Q472 420 470 418Q468 413 444 387Q370 313 261 299Q245 297 226 297Q189 297 171 301H168V182Q169 182 176 187Q226 217 292 217Q351 217 406 192Q456 166 486 118T517 5Q517
|
||||
-96 443 -153T255 -211Q164 -211 103 -152Q57 -104 57 -44Q57 -11 76 9T131 29Q197 21 197 -41Q197 -58 195 -66Q183 -99 153 -108L148 -110L150 -113Q153 -116 157 -120T166 -127Q204 -152 252 -152Q274 -152 280 -151Q332 -138 348 -105Q363 -76 363 9Q363 105
|
||||
351 129Q333 166 286 166Q201 166 162 109Q154 98 150 96T130 93Q107 93 102 104Q100 107 100 279V371Q100 456 105 458Q106 459 107 459Q112 462 131 456Q202 429 286 429Q365 429 443 457Q457 461 458 461Z" />
|
||||
<glyph unicode="6" glyph-name="six" horiz-adv-x="575" d="M405 593Q385 603 381 603Q361 607 350 607Q306 607 272 586T221 533Q199 489 196 385L195 370L197 372Q220 402 245 416T313 431Q409 431 468 368Q526 310 526 208Q526 131 492 81T405 5Q359 -17 289
|
||||
-17Q217 -17 161 19Q48 94 48 316Q48 458 113 546Q185 648 322 660H339Q377 660 384 659Q497 633 497 532Q497 502 479 484T431 466T383 484T365 530Q365 569 405 593ZM357 359Q336 378 299 380Q275 380 264 376T240 358Q196 314 196 212Q196 146 202 110Q206 92
|
||||
216 80Q240 41 292 41Q295 41 301 41T309 42Q338 46 355 62Q368 76 372 90Q379 115 379 230Q378 304 375 324T357 359Z" />
|
||||
<glyph unicode="7" glyph-name="seven" horiz-adv-x="575" d="M162 458Q162 451 213 448Q221 448 238 447T260 446Q261 446 410 444Q543 444 545 443Q558 441 558 413Q558 395 556 393Q553 386 478 301L392 202Q336 127 326 -3Q322 -43 321 -104Q321 -154 319
|
||||
-162Q314 -182 296 -196T255 -211Q231 -211 213 -197T190 -160Q189 -153 189 -130Q194 17 282 156Q309 200 370 270Q404 307 400 307H293Q151 306 146 303Q138 299 129 242Q124 218 120 215Q115 210 95 210Q78 210 74 212Q65 217 64 225Q64 229 82 345T102 465Q105
|
||||
473 110 474T131 476Q152 476 157 470Q162 467 162 458Z" />
|
||||
<glyph unicode="8" glyph-name="eight" horiz-adv-x="575" d="M526 189Q526 92 458 38T282 -17Q241 -17 196 -7Q125 10 87 54T48 164Q48 204 65 238Q92 290 163 329Q159 332 155 336Q134 349 110 382Q80 427 80 477Q80 533 110 581Q122 599 147 620Q190 651 246
|
||||
658Q260 660 264 660Q266 660 275 660T290 661Q384 661 439 619T494 506Q494 424 414 376L406 370Q406 368 414 365Q466 336 496 289T526 189ZM406 506Q406 555 373 581T283 607Q191 605 173 560Q168 547 168 536Q168 507 199 486Q215 475 275 443L346 403Q362
|
||||
415 368 421Q406 456 406 506ZM291 42Q352 42 388 64T425 134V141Q425 179 384 204Q374 212 302 251Q286 260 266 271T235 288L225 294Q218 294 192 268Q148 224 148 163Q148 103 186 73T291 42Z" />
|
||||
<glyph unicode="9" glyph-name="nine" horiz-adv-x="575" d="M240 -210Q166 -210 122 -179T77 -82Q77 -52 95 -34T143 -15T191 -33T209 -81Q209 -118 175 -140Q198 -152 236 -152Q294 -152 332 -116Q356 -91 366 -54T379 62V78Q378 78 373 71Q347 36 308 23Q289
|
||||
17 262 17Q168 17 108 77Q76 109 62 144T48 235Q48 273 59 317Q72 356 104 389T177 441Q225 461 276 461Q279 461 285 461T295 460Q327 460 352 454Q429 434 470 373Q526 286 526 136Q526 -101 365 -183Q308 -210 240 -210ZM312 405Q307 406 283 406Q245 406 224
|
||||
387Q208 373 205 361Q200 351 197 317Q196 307 196 233Q196 158 197 148Q199 110 212 95T238 75T278 69H298Q323 79 334 90Q366 122 376 190Q377 200 377 244Q377 307 373 334Q370 358 353 377T312 405Z" />
|
||||
<glyph unicode="A" glyph-name="A" horiz-adv-x="921" d="M142 -49Q102 -49 71 -20T39 55Q39 81 51 112T81 161Q94 173 103 174Q118 174 123 152Q127 133 146 119T190 105Q195 105 197 106Q240 117 341 246Q487 431 606 643L611 651H640V663Q640 673 644 682Q654
|
||||
703 685 723T745 750Q747 750 752 750T761 751Q770 751 774 748Q777 747 782 742Q784 739 784 711Q784 583 794 423T820 191Q837 112 849 89Q856 76 865 76Q869 76 893 88Q937 111 962 112H973Q989 104 989 94Q989 68 944 39Q915 20 846 -11Q812 -25 779 -26Q722
|
||||
-26 708 9Q699 25 687 75T669 161H524L379 162L359 136Q266 16 206 -25Q168 -49 142 -49ZM448 253Q466 261 493 261H568H658V266Q647 359 643 492Q643 500 643 518T641 541V556L557 415Q494 316 448 253Z" />
|
||||
<glyph unicode="B" glyph-name="B" horiz-adv-x="748" d="M571 195Q571 264 519 298T386 333Q378 333 357 330T329 327Q307 327 307 345Q307 360 325 379T372 412Q386 419 419 430Q546 472 581 498Q594 508 594 535Q594 568 571 586T508 604T442 583Q390 546 342
|
||||
457T265 256Q237 148 186 60Q167 29 144 13Q105 -15 68 -17Q40 -17 40 1Q40 9 52 29Q98 106 124 210Q164 380 187 551L190 575Q187 575 165 563Q124 542 98 542Q75 542 75 560Q75 588 123 618Q135 625 203 659T281 696Q299 703 316 703Q339 703 339 685Q339 682
|
||||
328 583Q330 584 332 586T337 591T344 597Q451 688 576 703Q592 705 611 705Q651 704 681 689Q740 659 739 595Q734 504 595 427L584 421L593 417Q709 376 715 268Q717 193 665 130Q645 104 617 82Q512 -2 378 -16Q370 -17 348 -17Q275 -17 225 10Q196 23 194 30Q193
|
||||
33 193 36Q193 51 214 72Q258 116 311 119H322Q385 83 441 83Q571 83 571 195Z" />
|
||||
<glyph unicode="C" glyph-name="C" horiz-adv-x="613" d="M553 187Q580 187 580 168Q580 157 561 134Q520 88 462 51Q366 -10 268 -19Q261 -20 243 -20Q138 -20 79 45T20 218Q20 248 23 268Q38 387 111 490Q252 681 488 702H490Q491 702 493 702T498 703T507 703T518
|
||||
702Q548 702 563 695Q599 677 599 631Q599 612 593 593Q588 574 570 537T541 486Q523 463 490 447T431 430Q423 430 419 433Q409 437 409 450Q410 457 419 474Q445 521 452 546Q454 552 454 567Q454 603 415 603Q316 603 254 532Q182 445 166 323Q164 303 164 284Q164
|
||||
177 229 120Q276 80 340 80Q401 80 450 133Q499 183 553 187Z" />
|
||||
<glyph unicode="D" glyph-name="D" horiz-adv-x="892" d="M107 0Q92 7 92 18Q92 24 95 31Q105 52 133 71T193 98L197 100L206 120Q295 345 308 565Q309 576 309 585Q271 585 230 576T179 557T164 528Q160 515 156 509Q143 489 114 472T59 449Q47 447 43 447Q20
|
||||
447 20 465Q20 468 22 478Q35 522 76 565Q119 607 173 632Q262 677 385 685Q386 685 420 685T480 686Q505 686 540 686T578 685Q885 667 885 450Q885 371 840 290Q785 196 673 123Q503 13 286 1Q276 0 187 0H107ZM741 391Q741 566 481 584Q476 584 468 584T457
|
||||
585L449 586V579Q425 346 328 122Q319 102 319 100H324Q510 100 628 175Q704 226 729 314Q741 359 741 391Z" />
|
||||
<glyph unicode="E" glyph-name="E" horiz-adv-x="607" d="M216 356Q185 375 168 397T150 456Q150 520 210 582Q255 629 323 661T460 701Q466 702 474 702Q475 703 499 703Q562 703 583 694Q607 685 617 668Q626 656 627 637Q627 624 625 616Q616 581 584 553T512
|
||||
518Q506 516 495 516Q471 516 471 530Q471 535 476 550T482 570Q482 590 466 596Q440 603 401 603Q344 603 319 582Q295 558 295 519Q295 491 316 470Q335 450 374 439T455 427Q477 427 477 409Q477 403 473 395Q464 377 440 360T389 333Q374 328 344 326Q267 322
|
||||
223 272Q190 234 182 189Q181 185 181 176Q181 131 224 107T324 83Q365 83 391 96T448 137Q468 157 487 167Q517 185 547 187Q574 187 574 170Q574 154 545 125Q493 73 421 35T271 -15Q260 -16 226 -16Q181 -16 152 -9Q37 22 37 111Q37 128 41 144Q67 251 185 335Q189
|
||||
338 216 356Z" />
|
||||
<glyph unicode="F" glyph-name="F" horiz-adv-x="814" d="M17 36Q17 61 58 89T135 119Q140 119 143 119T148 118T152 116T156 113T160 109T165 104Q192 77 227 72Q232 72 234 76Q263 121 304 212Q387 392 424 570L428 586H276Q262 572 238 562T190 551Q180 551
|
||||
174 556T167 569Q167 580 179 598Q196 624 235 648Q293 682 371 685Q374 686 624 686Q876 685 895 681Q909 679 919 671T930 650Q930 647 928 641Q920 619 887 596T823 568Q805 565 796 570Q786 574 786 579Q786 586 690 586H647H559L558 582L555 570Q536 491 506
|
||||
407L498 384H775Q789 378 790 368Q790 350 781 334Q765 308 730 288T665 268Q647 268 642 284H457L447 261Q396 150 360 94Q329 47 276 12T170 -29Q165 -30 149 -30Q127 -30 113 -28Q60 -17 26 20Q17 29 17 36Z" />
|
||||
<glyph unicode="G" glyph-name="G" horiz-adv-x="682" d="M527 562Q527 576 519 585T494 597T466 601T433 602Q351 602 302 569Q230 521 203 411Q194 376 194 344Q194 268 236 218T352 168Q386 168 415 185Q477 222 505 316Q516 345 552 368T622 393Q649 393 649
|
||||
376Q649 371 635 318T612 237Q580 129 540 62T442 -49Q373 -100 296 -112Q285 -113 246 -113Q175 -113 109 -102Q88 -99 81 -96Q71 -90 71 -81Q71 -66 89 -47Q108 -28 135 -14T187 2Q199 2 219 -2Q276 -11 338 -14Q371 -14 377 -9Q410 24 446 113L451 127Q408 101
|
||||
354 85T253 68Q160 68 105 126T50 279Q50 306 53 324Q68 422 128 504T287 639Q389 696 503 702H514Q524 703 532 703Q618 703 647 678Q671 658 671 626Q671 609 663 588Q643 544 599 498Q578 476 549 462T495 447Q472 447 472 465Q472 479 490 498Q519 531 526
|
||||
553Q527 556 527 562Z" />
|
||||
<glyph unicode="H" glyph-name="H" horiz-adv-x="987" d="M42 447Q20 447 20 465Q20 474 34 496Q87 575 173 626T367 685Q369 686 392 686Q437 686 464 662Q483 642 484 616Q484 591 479 552Q472 480 448 388L441 360Q441 359 550 359H660L663 370Q732 584 758
|
||||
624Q771 645 807 665T870 686Q894 686 894 668Q894 664 883 636Q840 532 804 415T752 218Q737 135 737 93Q737 53 778 53H788Q803 54 806 55T814 63Q831 86 864 103T924 120Q946 120 946 100Q943 65 885 14Q805 -44 684 -48Q651 -48 636 -40Q613 -28 603 -10Q593
|
||||
4 593 29Q593 71 603 131T624 230L634 269Q632 269 624 266Q610 261 600 261T507 259H411L399 222Q367 128 340 64Q327 32 322 21Q310 4 294 -8Q248 -41 209 -41Q188 -41 185 -25Q185 -19 201 22Q234 103 261 184Q284 256 284 258Q284 259 227 259H170Q155 268
|
||||
155 277Q155 296 184 320T250 356Q259 358 286 359Q312 359 312 360Q314 372 318 385Q332 450 339 526Q339 530 339 535T340 543Q340 586 296 586Q242 586 215 572T161 517Q145 490 109 469T42 447Z" />
|
||||
<glyph unicode="I" glyph-name="I" horiz-adv-x="642" d="M56 499Q32 499 32 516Q32 520 34 528Q41 550 56 570Q93 619 165 649Q241 682 365 685Q366 685 376 685T405 685T445 686T496 686T553 686H732Q746 676 746 668Q746 661 738 648Q725 628 698 611T642 587L572
|
||||
586H503Q486 558 476 530Q455 476 428 368Q384 191 318 111L309 101L412 100H514L523 109Q567 150 618 153Q644 153 644 135Q644 132 642 124Q629 86 581 52T476 6Q454 2 433 2T216 0Q-11 0 -15 2Q-27 6 -27 18Q-27 34 -4 55Q23 82 59 93Q77 100 142 100H198Q256
|
||||
178 299 369Q337 513 382 574L391 586H348Q260 586 176 576Q167 555 144 535T91 506Q73 499 56 499Z" />
|
||||
<glyph unicode="J" glyph-name="J" horiz-adv-x="779" d="M200 127Q200 122 198 111T196 96Q196 46 240 17T345 -13Q369 -13 386 -7Q436 8 468 73Q478 93 498 169T519 250Q583 479 675 576L685 586H634Q574 586 546 583T484 564Q429 537 408 474Q402 457 395 447Q378
|
||||
424 345 407T286 390Q263 390 263 407Q263 412 268 430Q296 510 367 566Q452 636 557 667Q605 681 660 685Q662 686 793 686H923Q937 676 937 668Q937 661 929 648Q917 630 892 614T842 589Q828 587 817 586Q795 585 788 578Q753 547 713 454Q674 361 632 189Q615
|
||||
126 597 95Q535 -12 413 -72Q326 -114 247 -114Q191 -114 158 -100Q81 -71 60 -14Q53 6 53 32Q53 59 58 73T79 102Q126 147 177 147Q200 147 200 127Z" />
|
||||
<glyph unicode="K" glyph-name="K" horiz-adv-x="871" d="M98 542Q75 542 75 560Q75 588 123 618Q132 624 199 657T275 694Q295 703 315 703Q325 703 330 700Q337 696 338 692T339 670Q339 572 317 471Q289 335 222 155Q192 73 181 53Q170 30 135 8T68 -17Q40
|
||||
-17 40 0Q40 7 47 21Q118 192 162 366Q189 469 194 564V578L168 565Q125 542 98 542ZM807 163Q834 163 834 142Q834 135 831 126Q812 66 740 25T576 -16Q550 -16 544 -14Q530 -9 508 6Q477 27 439 81Q396 143 359 225T311 369Q309 377 309 398Q309 417 311 423Q319
|
||||
449 347 482Q419 562 562 642Q650 692 710 702Q712 702 721 702T735 703Q772 703 791 690Q819 674 819 646T791 598T733 574H722Q704 584 704 599Q706 609 699 612T672 617L660 613Q624 601 567 566T467 496Q430 465 423 450V440Q423 410 441 359Q489 218 565 122Q589
|
||||
93 604 83Q621 70 640 70Q675 70 701 82Q715 88 722 108Q733 142 783 160Q792 163 807 163Z" />
|
||||
<glyph unicode="L" glyph-name="L" horiz-adv-x="788" d="M63 -17Q41 -17 41 0Q41 7 45 14Q55 32 85 54Q99 65 110 85Q130 121 153 212Q167 266 182 315Q230 462 306 553Q358 616 430 656T573 702H576Q579 703 582 703Q584 703 589 703T598 702Q640 702 664 678T689
|
||||
613Q689 588 683 575Q674 550 632 523T552 496Q530 496 530 512Q530 515 531 524T533 538Q533 564 520 580T480 596H473Q460 596 448 584Q434 571 415 544Q350 447 310 281Q284 181 261 136L255 124H285Q341 123 465 103Q544 91 583 90L596 89Q602 115 646 144T729
|
||||
173Q751 173 751 157Q751 154 749 146Q733 89 664 43T523 -15Q514 -16 479 -16Q422 -16 338 -3Q218 16 171 18H155L142 10Q98 -17 63 -17Z" />
|
||||
<glyph unicode="M" glyph-name="M" horiz-adv-x="1378" d="M38 20Q38 58 60 98T104 139Q109 139 117 132Q140 110 176 106Q189 105 199 111Q226 131 286 281Q350 440 371 604Q375 630 376 634Q384 657 418 680T487 703Q501 703 505 699T514 678Q576 438 649 272Q682
|
||||
203 686 202Q687 201 739 244T830 322L1166 642Q1224 698 1226 699Q1229 701 1237 703Q1258 703 1258 667Q1258 650 1252 631Q1237 567 1223 422T1209 202Q1209 148 1216 106Q1220 77 1232 77Q1234 77 1260 89Q1301 111 1326 112Q1353 112 1353 94Q1353 90 1352
|
||||
86T1349 79T1346 73T1340 67T1334 60Q1314 40 1258 12Q1213 -11 1191 -17Q1169 -24 1150 -24H1141Q1122 -24 1116 -22Q1081 -8 1074 26Q1064 75 1064 134Q1064 257 1086 426Q1087 430 1087 434L1061 410Q871 227 783 149L694 76Q653 44 647 40T631 34Q623 34 618
|
||||
36Q612 39 594 63Q546 125 514 198Q467 307 423 449L418 466L412 444Q376 310 306 153Q236 -7 169 -41Q150 -49 131 -49Q103 -48 77 -34T42 -2Q38 6 38 20Z" />
|
||||
<glyph unicode="N" glyph-name="N" horiz-adv-x="937" d="M47 139Q81 105 122 105Q137 105 147 117Q164 141 197 245Q256 424 274 610Q275 634 284 647Q299 668 328 685T389 703Q396 703 400 702T407 698T411 693T414 684T418 673Q476 499 567 298Q607 211 633
|
||||
166Q659 120 673 103Q674 102 674 102T675 106Q732 331 803 551Q842 674 875 725Q920 793 1000 824Q1041 840 1081 840Q1105 840 1105 803Q1105 768 1087 733T1051 689Q1045 686 1032 686Q963 681 914 640Q903 629 901 624Q889 596 855 488Q791 281 738 72L726
|
||||
28L725 29Q725 30 724 28Q724 27 723 25Q716 0 681 -24T611 -48Q600 -48 596 -45Q590 -42 576 -23Q522 44 480 124Q417 243 332 463L328 473L325 457Q292 295 227 124Q168 -26 97 -46Q86 -49 72 -49Q38 -49 5 -28Q-24 -8 -24 21Q-24 48 -12 78T18 127Q30 139 41
|
||||
139H47Z" />
|
||||
<glyph unicode="O" glyph-name="O" horiz-adv-x="906" d="M737 405Q737 491 696 547T576 603Q556 603 543 593Q527 583 510 560Q485 530 464 485Q453 465 442 454Q397 412 346 409Q321 409 321 428Q321 433 322 436Q331 466 362 510Q411 586 484 636T635 700Q653
|
||||
703 677 703Q707 703 723 699Q798 683 840 622T882 468T840 292Q803 217 735 152T580 43Q462 -17 343 -17Q313 -17 295 -15Q207 -1 147 54T69 195Q63 225 63 257Q63 311 79 365Q106 460 182 544T363 681Q396 698 416 701Q422 703 432 703Q449 703 453 695Q460 687
|
||||
453 673Q440 644 382 613Q319 583 276 524Q217 446 208 346Q208 342 208 335T207 324Q207 286 216 255Q235 178 294 131T441 84Q469 84 495 89Q598 109 667 196T737 400V405Z" />
|
||||
<glyph unicode="P" glyph-name="P" horiz-adv-x="810" d="M170 -67Q147 -67 147 -49Q147 -44 163 -5Q284 274 307 567Q309 585 308 585Q270 585 229 576T179 557T164 528Q160 515 156 509Q143 489 114 472T59 449Q47 447 43 447Q20 447 20 465Q20 468 22 478Q35
|
||||
522 76 565Q119 607 173 632Q262 677 385 685L425 686Q465 686 495 686Q614 686 672 678T784 637Q846 598 846 533Q846 509 838 482Q812 390 713 319T498 221Q430 206 378 206H366L358 181Q341 130 316 68T282 -7Q265 -29 231 -48T170 -67ZM638 554Q574 586 461
|
||||
586H448V582Q448 581 447 577T446 567T444 556Q431 437 395 301L389 280L401 286Q433 304 469 306Q597 314 651 359Q687 390 700 445Q701 451 701 468Q701 483 699 490Q685 532 638 554Z" />
|
||||
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="939" d="M568 222Q594 222 594 204Q594 188 571 166Q541 138 501 126T393 107Q345 103 316 103Q295 103 279 105Q209 118 165 166T120 290Q120 343 145 402Q196 525 332 612Q438 680 548 697Q574 703 601 703Q604
|
||||
703 611 703T623 702Q663 702 687 696Q771 676 822 612T874 453Q874 372 837 298Q792 209 699 132Q669 108 636 87T576 51T529 27T495 12L483 7Q483 5 558 -17Q660 -46 726 -46Q752 -46 757 -38Q760 -35 762 -27Q770 -1 806 23T878 50H890Q905 42 905 33Q905 27
|
||||
904 24Q883 -54 777 -109Q729 -135 670 -145Q662 -146 628 -146Q593 -146 583 -145Q509 -137 385 -98Q296 -70 249 -61Q205 -51 164 -50Q131 -50 131 -33Q131 -27 135 -19Q144 0 171 19T227 47Q235 49 265 50Q520 61 641 180Q720 261 729 367Q730 374 730 387Q730
|
||||
482 672 542T520 602Q459 602 405 576Q352 549 314 497T266 385Q264 369 264 355Q264 287 304 248T413 203H420Q473 203 568 222Z" />
|
||||
<glyph unicode="R" glyph-name="R" horiz-adv-x="990" d="M187 -17Q159 -17 159 0Q159 6 170 31Q290 298 309 575V585H304Q303 585 295 585T282 584Q198 576 179 557Q170 548 164 528Q160 515 156 509Q143 489 114 472T59 449Q47 447 43 447Q20 447 20 465Q20
|
||||
468 22 478Q35 522 76 565Q119 607 173 632Q262 677 385 685Q388 685 406 685T452 686T505 686H575Q653 686 700 681T782 658Q818 640 834 611Q842 594 842 565Q842 544 840 533Q827 475 785 426Q729 359 632 318L619 312L626 302Q638 284 669 224Q692 178 696
|
||||
172Q736 97 768 86Q776 84 784 84Q828 84 867 115Q913 153 957 153Q981 153 981 136Q981 134 979 126Q973 110 946 87Q888 39 817 11T684 -17Q663 -17 654 -14Q617 -1 590 36Q569 63 535 130Q494 210 477 234Q461 256 446 265Q437 272 421 274Q400 274 400 291Q400
|
||||
298 403 304Q412 324 439 343T495 371Q501 373 525 374Q650 381 681 436Q699 467 699 503Q699 550 646 568Q589 586 471 586H449V582Q448 579 446 559Q425 367 348 165Q313 73 296 45Q281 23 247 4T187 -17Z" />
|
||||
<glyph unicode="S" glyph-name="S" horiz-adv-x="696" d="M203 290Q229 290 231 274Q231 260 221 248Q206 229 180 213Q173 209 172 206T170 189Q170 175 172 169Q179 145 216 121Q273 83 356 83Q414 83 459 100Q493 111 507 141Q518 165 518 185Q518 215 499
|
||||
240Q467 283 360 320Q290 343 253 372Q217 401 206 440Q204 448 204 467V476Q204 491 211 513Q225 554 263 592T357 658Q445 703 539 703Q635 703 674 683Q721 664 721 612Q721 588 714 569Q704 547 669 524T601 499Q573 499 573 516Q573 520 575 529T577 543Q577
|
||||
566 564 579Q559 585 539 590Q490 603 444 603Q419 603 395 597T364 583Q348 567 348 533Q348 507 363 485Q378 466 404 450Q426 436 473 420Q593 378 633 330Q662 292 662 249Q662 189 616 133T490 37Q387 -16 257 -16Q218 -16 208 -15Q118 0 64 46Q25 75 25 126Q25
|
||||
152 39 181Q76 254 160 281Q183 289 203 290Z" />
|
||||
<glyph unicode="T" glyph-name="T" horiz-adv-x="644" d="M61 462Q38 462 38 479Q38 485 41 494Q61 571 163 634Q222 669 289 683L304 685L837 687L846 693Q876 712 907 718Q913 720 923 720Q947 720 947 702Q945 675 904 640Q845 591 776 583Q774 583 772 583T769
|
||||
582T766 582L764 581H758Q753 581 744 581T722 580T693 580T662 580H563L514 385Q463 182 461 174Q437 94 402 24Q392 2 385 -6Q367 -29 334 -47T266 -69Q242 -69 242 -50Q244 -42 253 -25Q287 47 307 115L364 340Q413 545 418 554Q423 567 436 580H207Q199 568
|
||||
194 552Q193 546 190 537Q180 518 153 498T95 468Q76 462 61 462Z" />
|
||||
<glyph unicode="U" glyph-name="U" horiz-adv-x="715" d="M15 552Q-10 552 -10 570Q-10 583 10 605Q43 635 98 657T202 685Q204 686 222 686Q283 686 283 631Q283 592 254 521Q245 497 213 425Q158 299 144 246Q135 212 135 181Q135 127 161 101Q181 83 205 83Q221
|
||||
83 259 106Q337 158 431 272T583 499Q587 508 599 539T623 597L634 624Q649 647 685 666T748 686Q771 686 771 669Q771 646 738 574Q731 559 713 506Q667 377 630 229Q615 168 610 105Q610 89 617 78L641 90Q681 111 706 112Q733 112 733 94Q733 81 714 60Q694
|
||||
40 633 10Q567 -23 532 -24Q466 -24 466 32Q466 52 469 74Q474 127 500 225Q274 -17 102 -17Q76 -17 53 -5Q-10 26 -10 118Q-10 164 10 225Q29 280 76 389Q117 481 132 528Q139 549 139 567Q139 587 123 587Q108 587 88 577Q41 552 15 552Z" />
|
||||
<glyph unicode="V" glyph-name="V" horiz-adv-x="737" d="M50 589Q25 589 25 608Q25 628 55 652T119 684Q127 686 148 686Q229 681 280 618Q350 532 371 339Q379 277 380 184L381 134L399 148Q548 260 631 366Q672 417 686 454Q689 460 689 467Q686 494 660 511T600
|
||||
532Q576 532 576 567Q576 596 588 626T618 674Q630 685 641 685H649Q706 685 740 645T774 545Q774 515 765 479Q716 280 461 66Q358 -20 280 -66Q262 -77 255 -77Q237 -77 237 -23Q241 20 241 109Q241 191 237 235Q217 499 115 569Q91 586 50 589Z" />
|
||||
<glyph unicode="W" glyph-name="W" horiz-adv-x="1169" d="M25 607Q25 631 63 658T142 686Q191 686 232 658Q326 596 343 375Q347 321 347 275Q347 249 345 203V189Q348 192 351 196T361 207T373 221Q491 362 587 516Q629 584 629 587Q629 588 626 597T622 607Q622
|
||||
630 659 656T732 686H744Q745 686 750 683T757 678Q757 677 760 670T769 651T778 630Q871 412 904 183Q908 157 910 151L925 169Q1043 304 1097 407Q1111 435 1118 456Q1121 464 1121 474Q1120 498 1103 514T1059 532Q1036 532 1036 568Q1036 592 1045 616Q1063
|
||||
671 1097 686H1109Q1156 684 1181 647T1206 551Q1206 535 1204 519Q1193 442 1144 345Q1065 189 897 7Q829 -66 817 -73Q807 -77 804 -77T797 -75Q787 -69 783 -26Q769 176 710 373Q671 501 665 501Q664 501 650 476Q493 213 280 -15Q233 -66 223 -73Q215 -77 210
|
||||
-77Q191 -77 191 -40Q191 -26 192 -20Q209 55 209 217Q209 504 108 571Q81 589 45 589Q37 589 31 594T25 607Z" />
|
||||
<glyph unicode="X" glyph-name="X" horiz-adv-x="817" d="M265 560Q243 560 243 577Q243 601 275 630T350 673Q388 686 447 686Q455 686 466 686L478 685Q502 681 522 663Q551 637 562 576Q565 557 570 501L577 437Q577 436 613 457T694 506T756 551Q762 558 762
|
||||
562Q762 582 730 586Q717 587 712 596Q709 604 712 613Q720 637 758 661T834 686Q863 686 884 670T906 627Q906 602 885 574Q868 550 834 522Q766 466 614 379L584 362V357Q585 355 594 270T603 183Q609 141 623 121T671 100Q680 100 687 104Q721 126 754 126Q778
|
||||
126 778 107Q776 86 752 62Q701 13 626 2Q615 1 578 1Q542 1 535 3Q496 15 477 53Q466 73 462 96T449 201Q447 220 445 240T442 270L441 281Q435 281 357 233Q240 165 206 135Q200 128 200 124Q200 115 208 107Q212 104 224 102T244 95T252 82Q252 67 232 47Q199
|
||||
14 155 3Q148 1 129 1H120Q93 1 75 18T56 60Q56 83 77 113Q96 138 128 164Q205 228 414 345Q428 352 431 354T433 359Q422 493 414 522Q405 558 387 575Q376 586 350 586H341L332 580Q294 560 265 560Z" />
|
||||
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="759" d="M73 555Q49 555 49 573Q49 589 71 612Q149 686 239 686Q263 686 283 681Q335 668 376 624Q405 595 430 542Q475 449 494 290Q503 207 503 173Q503 165 504 165Q506 165 524 184T556 218Q661 328 707 445Q718
|
||||
476 718 485Q718 514 690 533T628 552Q618 552 613 564T607 590Q607 617 622 646T658 685Q661 686 671 686Q722 686 754 655T795 577Q797 568 797 545Q797 507 783 460Q738 305 602 146Q490 16 352 -81Q258 -147 203 -161Q191 -164 176 -164Q123 -164 87 -133T40
|
||||
-56Q36 -36 36 -29Q36 5 55 36T95 67Q109 67 114 44Q125 5 154 -12Q183 -30 216 -30Q224 -30 227 -29Q253 -23 305 7L361 44L367 49V54Q367 73 366 89Q357 345 292 475Q272 516 243 546Q206 581 156 588L146 581Q108 555 73 555Z" />
|
||||
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="818" d="M622 574Q494 579 420 579H397Q372 579 364 575T351 550Q341 523 314 502T253 470Q236 463 218 462Q194 462 194 478Q194 484 197 492Q214 547 275 597Q371 674 484 685H509Q538 685 634 683T755 680Q791
|
||||
680 812 684Q828 686 831 686Q853 686 853 669Q853 657 826 626Q742 532 641 437L619 415L622 414Q626 414 631 414T642 414Q675 413 684 407Q697 400 697 388Q697 386 695 378Q688 358 663 341T607 323Q600 323 598 324Q591 328 546 329H522L517 325Q432 248 289
|
||||
136L260 113L318 112Q341 111 446 110T587 106H627Q649 141 656 170Q666 198 711 225T788 253Q811 253 811 237Q811 232 808 221Q797 181 770 142T710 77Q640 17 560 3Q547 1 484 1Q443 1 325 3T177 6Q123 6 95 2Q83 2 71 0Q46 0 46 17Q46 28 58 44Q71 58 106 84Q252
|
||||
196 383 307L408 329H361L314 330Q297 337 297 350Q297 356 302 366Q310 382 329 395T368 413Q375 415 441 415H506L647 555L664 574H622Z" />
|
||||
<glyph unicode=" " glyph-name="uni00A0" horiz-adv-x="250" />
|
||||
<glyph unicode="" glyph-name="uniEFFD" horiz-adv-x="500" d="M0 0V100H100V0H0ZM400 0V100H500V0H400Z" />
|
||||
<glyph unicode="" glyph-name="uniEFFE" horiz-adv-x="300" d="M0 0V100H100V0H0ZM200 0V100H300V0H200Z" />
|
||||
|
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 25 KiB |
|
@ -9,116 +9,122 @@
|
|||
alphabetic="0" />
|
||||
<missing-glyph horiz-adv-x="250" d="M50 0V533H200V0H50ZM100 50H150V483H100V50Z" />
|
||||
<glyph unicode=" " glyph-name="space" horiz-adv-x="250" />
|
||||
<glyph unicode="0" glyph-name="zero" horiz-adv-x="500" d="M39 213Q39 274 53 319T89 389T139 429T192 448T242 452Q347 452 400 400Q460 335 460 213Q460 -22 250 -22Q39 -22 39 213ZM364 242Q364 279 363 301T355 348T338 385T306 406T254 415Q250 415 245
|
||||
415T238 416Q217 416 190 404T150 368Q136 339 136 221Q136 114 146 78T200 23Q219 16 250 16Q280 16 299 23Q341 41 352 77T364 221V242Z" />
|
||||
<glyph unicode="1" glyph-name="one" horiz-adv-x="500" d="M116 410Q176 412 215 423T269 443T288 453H291Q293 453 301 447V254Q301 62 303 60Q307 52 322 49T394 46Q418 46 422 43T426 23Q426 8 424 4T411 0Q407 0 369 1T258 2T148 1T106 0Q96 0 94 4T91 23Q91
|
||||
40 95 43T123 46Q180 46 195 49T215 61Q216 63 216 220V376Q192 367 119 364H93L86 371V403L92 410H116Z" />
|
||||
<glyph unicode="2" glyph-name="two" horiz-adv-x="500" d="M55 334Q55 386 105 419T236 453Q333 453 390 413T448 307Q448 278 437 256T406 218T365 193T318 172T277 151L248 134Q219 118 191 102T163 84T267 83L382 85H391Q399 99 406 126Q410 143 413 145T429
|
||||
148Q440 148 442 147T449 139Q449 137 435 73T420 7Q420 6 414 0H233Q94 0 71 0T46 5Q46 5 46 6Q44 8 44 24Q44 39 46 41Q47 44 98 78T212 155T294 212Q347 257 347 304Q347 354 306 380T203 407Q150 407 120 377Q118 375 123 373Q146 362 146 332Q146 315 133
|
||||
302T101 288Q85 288 70 298T55 334Z" />
|
||||
<glyph unicode="3" glyph-name="three" horiz-adv-x="500" d="M69 312Q69 377 122 414T233 452Q333 452 381 409T430 313Q430 268 402 223T311 149L301 144Q307 143 317 140T355 123T402 92T439 44T456 -25Q456 -101 396 -158T241 -216Q154 -216 98 -173T42 -68Q42
|
||||
-58 44 -50T50 -35T57 -25T66 -17T75 -13T82 -10L87 -8Q92 -7 102 -7Q132 -7 147 -25T162 -66Q162 -112 118 -125L113 -126Q113 -129 127 -140T173 -162T239 -173Q268 -173 292 -158Q345 -124 345 -24Q345 33 329 67Q298 125 229 125H210H172Q166 131 166 142Q166
|
||||
159 172 161Q178 161 208 164T244 169Q251 169 263 176T291 199T316 245T327 314Q327 413 238 413Q182 413 130 369Q177 350 181 312Q181 289 166 273T125 257Q102 257 86 272T69 312Z" />
|
||||
<glyph unicode="4" glyph-name="four" horiz-adv-x="500" d="M163 0Q139 0 109 0T71 -1Q43 -1 36 2T28 15V27V46L190 270Q325 457 330 462Q333 464 352 464H371L377 458V46H464L471 40V6L464 0H377V-65V-108Q377 -131 379 -137T391 -144Q409 -148 446 -148H464Q468
|
||||
-151 471 -155V-187L464 -194H453Q395 -192 325 -192Q222 -192 210 -194H199L193 -188V-154L199 -148H228Q241 -148 250 -148T265 -146T275 -145T281 -143T284 -141T286 -138T289 -134V0H163ZM295 46V350L75 46H295Z" />
|
||||
<glyph unicode="5" glyph-name="five" horiz-adv-x="500" d="M159 -44Q159 -66 145 -80T109 -96H102L107 -105Q148 -173 228 -173Q255 -173 280 -162Q351 -128 351 -6V8Q351 67 344 98T316 151Q288 176 255 176Q175 176 136 109Q129 100 114 100Q97 100 95 106Q93
|
||||
110 93 277V403Q93 451 98 451Q100 452 103 452Q105 452 124 445T177 431T251 423Q294 423 328 430T380 445T401 453Q410 453 410 435V422Q332 331 203 331Q152 331 140 339Q139 339 139 254V168Q194 214 256 214Q332 214 390 154T448 0Q448 -95 381 -155T229 -216Q153
|
||||
-216 104 -166T50 -49Q50 -15 66 -1T105 13Q128 13 143 -3T159 -44Z" />
|
||||
<glyph unicode="6" glyph-name="six" horiz-adv-x="500" d="M42 313Q42 401 68 472T133 583T215 644T296 665H304Q317 665 329 664T360 657T393 640T418 608T432 557Q432 533 422 519T401 502T380 498Q358 498 343 512T328 550Q328 591 367 601L372 602Q372 604
|
||||
365 609T341 620T307 626Q260 626 226 600T174 537Q147 483 143 376V356Q192 434 266 434Q317 434 357 409Q406 375 435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM251 396Q211 396 178 354T145
|
||||
217Q145 159 152 122T166 73T187 47Q216 21 252 21Q294 21 321 47Q342 68 349 99T356 203V232Q356 264 354 285T345 331T322 373T280 395Q274 396 251 396Z" />
|
||||
<glyph unicode="7" glyph-name="seven" horiz-adv-x="500" d="M75 246Q64 246 62 247T55 255Q55 259 72 357T90 458L94 462H99Q104 463 109 463H121Q128 460 128 452Q128 445 134 441T165 435T233 432T356 431H478L485 425V392L414 298Q408 290 385 260T358 223T337
|
||||
191T317 154T302 116T289 68T282 14T275 -55T274 -137Q274 -173 272 -177Q262 -216 223 -216Q170 -216 170 -157V-148Q172 -78 189 -12T237 109T288 196T338 266Q345 275 348 279Q395 340 395 342Q396 343 376 343T274 343Q122 342 117 339T103 294T90 248Q88 246
|
||||
75 246Z" />
|
||||
<glyph unicode="8" glyph-name="eight" horiz-adv-x="500" d="M69 496Q69 570 124 618T247 666Q321 666 375 624T429 515Q429 468 405 433T320 361L346 344Q385 320 403 301T439 250Q456 212 456 181V172V160Q456 141 449 119T426 71T386 26T326 -8T246 -21Q160
|
||||
-21 102 30T43 155Q43 265 167 332L176 337L161 347Q105 384 87 423Q69 458 69 496ZM371 513Q371 567 334 596T249 626Q198 626 163 598T127 532Q127 521 129 511T138 492T150 476T167 460T185 447T207 433T228 420L284 384L294 391Q346 424 363 469Q371 486 371
|
||||
513ZM190 21T250 21T351 56T393 140Q393 180 362 213Q354 221 317 246T246 292L212 313Q210 313 200 307T173 287T142 256T117 212T106 157Q106 100 148 61Z" />
|
||||
<glyph unicode="9" glyph-name="nine" horiz-adv-x="500" d="M171 -101Q171 -118 163 -130T146 -146T134 -151Q132 -151 132 -152Q132 -154 140 -159T167 -168T206 -173Q274 -173 317 -108Q356 -50 356 79V86L350 77Q308 9 231 9Q150 9 92 81Q42 141 42 228Q42
|
||||
289 64 333Q93 390 142 421T235 452Q237 452 244 452T255 453Q289 453 321 439T386 391T437 290T457 128Q457 -29 381 -122T206 -216Q148 -216 108 -187T67 -104Q67 -75 84 -62T119 -49Q141 -49 156 -63T171 -101ZM242 46Q293 46 324 94T355 223Q355 323 337 356Q316
|
||||
401 275 410Q267 412 248 412Q206 412 179 386Q155 360 149 328T143 224Q143 120 163 88Q192 46 242 46Z" />
|
||||
<glyph unicode="A" glyph-name="A" horiz-adv-x="798" d="M576 668Q576 688 606 708T660 728Q676 728 675 712V571Q675 409 688 252Q696 122 720 57Q722 53 723 50T728 46T732 43T737 41T743 39L754 45Q788 61 803 61Q819 61 819 47Q818 43 814 35Q799 15 755
|
||||
-7T675 -30Q659 -30 648 -25T630 -8T621 11T614 34Q603 77 599 106T594 146T591 160V163H460L329 164L316 145Q241 35 196 -7T119 -50T59 -24T30 43Q30 75 46 100T74 125Q81 125 83 120T88 104T96 84Q118 57 151 57Q189 57 277 182Q432 400 542 625L559 659H567Q574
|
||||
659 575 660T576 668ZM584 249Q579 333 577 386T575 473T574 520V581L563 560Q497 426 412 290L372 228L370 224H371L383 228L393 232H586L584 249Z" />
|
||||
<glyph unicode="B" glyph-name="B" horiz-adv-x="657" d="M304 342Q292 342 292 353Q292 372 323 391Q331 396 417 428T533 487Q563 512 563 555V562Q563 575 557 589T530 618T475 636Q429 636 396 613T330 539Q263 446 210 238Q196 183 173 120Q135 31 121 16Q108
|
||||
1 85 -10T47 -22T32 -10Q32 -5 44 18T77 93T112 206Q135 296 154 395T182 550T191 615Q191 616 190 616Q188 616 179 611T157 601T131 594Q113 594 113 605Q113 623 144 644Q154 650 205 676T267 703Q277 705 279 705Q295 705 295 693Q295 686 288 635T278 575Q278
|
||||
572 287 582Q336 635 402 669T540 704Q603 704 633 673T664 599Q664 559 638 523T580 462Q553 440 504 413L491 407L504 402Q566 381 596 338T627 244Q627 172 575 110T444 13T284 -22Q208 -22 158 28Q144 42 146 50Q150 67 178 85T230 103Q236 103 246 95T267
|
||||
75T302 56T357 47Q436 47 486 93Q526 136 526 198V210Q526 228 518 249T491 292T436 330T350 345Q335 345 321 344T304 342Z" />
|
||||
<glyph unicode="C" glyph-name="C" horiz-adv-x="527" d="M201 -25Q167 -25 136 -14T75 23T29 94T12 202Q12 290 50 394T161 574Q227 642 303 673T433 704Q435 705 457 705Q533 701 533 640Q533 606 507 548T464 474Q431 444 396 444Q381 444 381 453Q381 459
|
||||
388 473T407 513T428 563Q433 580 433 594Q433 636 381 636Q314 636 260 594T175 489T128 363T112 247Q112 157 153 101T273 44Q347 44 398 121Q413 144 437 157T481 171Q496 171 496 160Q496 150 476 123Q426 56 350 16T201 -25Z" />
|
||||
<glyph unicode="D" glyph-name="D" horiz-adv-x="771" d="M37 475Q19 475 19 487Q19 536 103 604T327 682H356Q386 683 408 683H419Q475 683 506 681T582 668T667 633Q766 571 766 450Q766 365 723 287T611 152T455 57T279 6Q248 1 160 0Q148 0 131 0T108 -1Q72
|
||||
-1 72 11Q72 24 90 40T133 64L144 68L152 88Q247 328 272 587Q275 613 272 613Q272 613 269 613Q225 610 195 602T149 579T129 556T119 532Q118 530 116 525T113 518Q102 502 80 490T37 475ZM665 407Q665 596 412 613Q403 614 383 614Q370 614 370 612Q370 598
|
||||
363 542T323 357T242 103L228 69H265Q391 73 481 119Q536 148 575 188T633 268T658 338T665 392V407Z" />
|
||||
<glyph unicode="E" glyph-name="E" horiz-adv-x="528" d="M144 470Q144 556 240 630T451 705Q564 705 564 637Q564 611 540 573Q529 559 505 547T464 534Q448 534 448 545Q448 552 455 562Q463 577 463 591Q463 600 462 604T456 616T436 627T400 635Q396 635 390
|
||||
635T380 636Q291 636 258 568Q245 544 245 516Q245 463 290 438T391 410Q415 410 415 398Q415 392 407 380T376 356T326 341Q288 340 260 327Q218 311 187 276T143 208T130 151Q130 113 156 88T211 55T268 47Q349 47 403 125Q415 144 439 157T483 171Q499 171 499
|
||||
160Q499 148 475 120T413 59T315 3T197 -22Q124 -22 77 14T30 105Q30 126 39 154T66 216T122 288T209 354L223 362Q144 400 144 470Z" />
|
||||
<glyph unicode="F" glyph-name="F" horiz-adv-x="719" d="M199 579Q181 579 181 590Q181 598 188 611T212 639T260 666T335 682Q336 682 349 682T383 682T431 682T493 683T561 683Q776 682 784 681Q826 673 829 647Q829 620 797 600T744 580Q728 580 728 595Q729
|
||||
607 713 610Q698 613 598 614H500L499 610Q499 598 467 486T428 367Q428 365 551 365H674Q683 360 684 355Q687 346 677 329Q666 312 642 299T598 285Q586 285 582 296H402L394 277Q386 258 373 229T346 167T315 102T286 51Q265 22 225 -5T133 -32Q108 -32 87 -25T54
|
||||
-7T33 15T21 35T18 47Q18 60 44 80T98 103Q108 103 111 101T119 88Q130 66 150 54T179 39T195 37Q199 37 203 43Q217 67 245 125T318 300T391 532Q393 543 398 564T406 598T409 613T339 614H269Q229 579 199 579Z" />
|
||||
<glyph unicode="G" glyph-name="G" horiz-adv-x="595" d="M216 68Q155 68 115 100T59 177T44 273Q44 299 50 333T73 421T133 533T239 632Q346 704 466 704Q508 704 515 703Q555 696 577 681T599 635Q599 605 570 560T523 496Q490 466 455 466Q440 466 440 475T469
|
||||
526T499 589Q499 605 489 617Q460 636 403 636Q343 636 295 611T220 548T174 464T150 382T144 318Q144 241 180 189T287 137Q325 137 359 160Q428 205 466 322Q472 342 501 359T551 376Q557 376 560 373T564 368L565 365Q560 341 551 302T512 173T451 31Q359 -119
|
||||
204 -119Q163 -118 127 -109T74 -91T53 -77Q52 -75 52 -71Q52 -54 79 -35T132 -14H140L151 -19Q210 -49 281 -49H289Q312 -49 329 -31Q351 -7 372 36T405 109T416 142L408 136Q401 131 392 125T369 111T338 96T303 82T261 72T216 68Z" />
|
||||
<glyph unicode="H" glyph-name="H" horiz-adv-x="845" d="M18 487Q18 496 29 517T67 566T127 621T216 665T330 683Q359 683 376 669T397 643T400 622Q400 584 382 488T348 343Q348 342 467 342H587L594 366Q615 440 648 534T690 641Q701 656 723 669T764 683Q783
|
||||
683 783 672L750 578Q716 485 677 346T625 101Q624 92 623 82T622 65T621 56Q621 20 658 20Q666 20 701 25Q709 52 736 69T785 87Q803 87 803 75T791 44T754 3T685 -33T588 -48Q568 -48 562 -46Q522 -31 522 13V23Q531 129 562 250L569 281L565 280Q561 278 556
|
||||
277T549 274L438 273H328L321 249Q307 202 275 107T232 0Q219 -16 196 -28T155 -41Q149 -41 145 -39T140 -34T139 -29Q139 -24 148 -3T181 86T233 247Q240 270 240 272Q240 273 194 273H169Q139 273 139 285Q139 295 153 308T187 332Q206 341 236 342L260 343L264
|
||||
359Q278 414 289 482T300 578Q300 613 260 613H254Q198 613 169 592Q148 578 127 544T104 508Q72 478 37 475Q18 475 18 487Z" />
|
||||
<glyph unicode="I" glyph-name="I" horiz-adv-x="545" d="M174 0H31Q-13 0 -21 2T-30 12Q-30 23 -17 36Q9 60 42 68L155 70Q187 102 214 179T257 333T302 491T366 610L369 614H305Q221 611 188 607T145 596T128 569Q119 543 94 529T47 512Q28 512 28 524Q28 527
|
||||
32 539Q56 614 159 654Q218 678 312 682Q314 682 339 682T404 682T481 683H632Q642 678 642 671Q642 657 621 641T577 617Q570 615 507 614H444Q427 592 406 542Q382 478 355 366T310 209Q280 123 238 78L230 69H330Q442 70 442 74Q443 74 443 77T447 87T460 105Q490
|
||||
134 527 137Q545 137 545 125Q545 120 542 112Q531 78 491 49T399 7Q379 2 360 2T174 0Z" />
|
||||
<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M148 78Q148 16 189 -17T286 -50Q319 -50 348 -33T396 10T426 59T444 101L471 204Q498 306 521 372Q575 532 649 605L659 614H591Q517 613 494 607Q433 591 400 550T360 477Q353 454 325 437T275 419Q256
|
||||
419 260 435Q280 523 376 597T583 681Q603 683 713 683H830Q839 674 839 671Q839 654 810 634T754 614Q735 614 721 601Q688 571 654 495T600 351T561 209T541 132Q507 29 412 -45T213 -119Q141 -119 94 -77T47 33Q47 55 50 69T58 90T71 103Q105 131 135 131Q152
|
||||
131 152 120Q152 119 151 114T149 99T148 78Z" />
|
||||
<glyph unicode="K" glyph-name="K" horiz-adv-x="762" d="M194 618Q193 618 182 613T156 601T131 594Q113 594 113 605Q113 623 144 644Q154 650 205 676T267 703Q277 705 279 705Q295 705 295 691Q295 569 250 397Q225 306 197 217T151 81T128 25Q120 8 94 -7T47
|
||||
-22Q32 -22 32 -10L64 76Q95 163 133 295T185 530Q198 611 194 618ZM331 429Q331 383 364 290T449 117T542 36Q574 36 607 51T652 103Q660 124 677 133T709 143Q727 143 727 128Q727 119 723 111Q704 56 639 17T497 -22H493Q463 -22 425 16Q401 40 382 71Q335 138
|
||||
296 243T256 399Q256 434 288 473Q342 540 471 622T670 705Q691 704 703 696Q732 678 732 644Q732 613 714 600T677 586Q671 586 667 587T660 592T657 604V619Q657 647 629 647Q623 647 620 646Q576 635 495 583T365 482Q331 448 331 429Z" />
|
||||
<glyph unicode="L" glyph-name="L" horiz-adv-x="690" d="M62 -22T47 -22T32 -11Q32 -1 56 24T83 55Q113 96 138 172T180 320T234 473T323 609Q364 649 419 677T531 705Q559 705 578 696T604 671T615 645T618 623V611Q618 582 615 571T598 548Q581 531 558 520T518
|
||||
509Q503 509 503 520Q503 523 505 536T507 560Q507 590 494 610T452 630Q423 630 410 617Q367 578 333 492T271 301T233 170Q211 123 204 112L198 103L224 102Q281 102 369 79T509 52H523Q535 64 544 87T579 128Q616 152 641 152Q656 152 656 142Q656 101 588 40T433
|
||||
-22Q381 -22 289 1T156 28L141 29L131 20Q111 0 87 -11Z" />
|
||||
<glyph unicode="M" glyph-name="M" horiz-adv-x="1201" d="M28 9Q28 37 43 63T73 90Q77 90 83 84T103 70T141 57H146Q162 57 178 79T222 167Q266 279 295 371T334 513T349 598T358 651T371 677Q397 705 432 705Q442 705 445 699T452 666Q453 661 453 659Q475 538
|
||||
509 405T568 207L574 192Q581 178 587 164T594 150Q596 150 635 189T693 248Q765 324 863 438T1024 626T1089 701Q1093 705 1100 705Q1111 705 1111 682Q1111 675 1108 660T1099 611T1086 540Q1041 277 1041 144Q1041 98 1044 75T1050 48T1059 42Q1064 41 1075
|
||||
46Q1102 61 1121 61Q1137 61 1137 50Q1137 28 1087 0T1000 -29Q983 -29 972 -23T955 -9T945 16T942 45T941 83V96Q941 158 952 256T974 422L985 489Q984 489 939 436T821 300T698 164Q665 128 620 85T568 37Q564 34 558 34Q550 34 546 37T535 54Q512 91 496 127T450
|
||||
259T389 498L384 518Q349 367 294 223T198 15Q155 -50 117 -50Q87 -50 61 -35T30 -6Q28 2 28 9Z" />
|
||||
<glyph unicode="N" glyph-name="N" horiz-adv-x="820" d="M343 705Q358 705 358 698Q360 696 370 658T411 524T484 319Q536 174 590 82L595 73L615 152Q646 274 683 407Q729 571 752 637T799 727Q852 780 937 788Q939 788 947 788T958 789H962Q979 789 979 765Q979
|
||||
722 951 692Q942 683 924 683Q888 681 859 672T818 654T803 639Q784 608 708 322T631 15Q631 14 630 15Q630 17 629 15Q628 14 628 12Q621 -4 601 -17T560 -31Q550 -31 546 -28T530 -7Q484 67 458 123T398 272Q352 392 314 514L306 535V534Q306 533 296 488T272
|
||||
379T234 239T185 100T127 -7T61 -50Q34 -50 4 -34T-27 8Q-27 33 -12 61T18 90Q21 90 36 77T87 57H92Q109 57 123 78T162 173Q206 299 232 417T265 599T276 667Q284 681 304 693T343 705Z" />
|
||||
<glyph unicode="O" glyph-name="O" horiz-adv-x="796" d="M308 428Q289 428 289 438Q289 457 318 508T378 593Q417 638 475 671T599 705Q688 705 732 643T777 483Q777 380 733 285T620 123T464 18T293 -22Q188 -22 123 51T58 245Q58 327 87 403T159 533T249 626T333
|
||||
685T388 705Q404 705 404 693Q404 674 363 649Q333 632 304 606T239 537T181 429T158 290Q158 179 214 114T364 48Q489 48 583 165T677 438Q677 473 670 505T648 568T601 617T528 636Q518 636 513 635Q486 629 460 600T419 544T392 490Q383 470 372 459Q341 430
|
||||
308 428Z" />
|
||||
<glyph unicode="P" glyph-name="P" horiz-adv-x="696" d="M37 475Q19 475 19 487Q19 536 103 604T327 682Q329 682 344 682T380 682T421 683H463Q625 683 695 615Q718 591 726 564Q733 547 733 525Q733 412 607 312T321 205H312Q293 205 293 217Q293 224 302 236T333
|
||||
260T385 274Q558 287 614 407Q633 445 633 477Q633 515 612 543T556 585T481 607T399 614H370L368 603Q352 463 312 312T242 82T202 -13Q190 -33 164 -45T121 -57Q108 -57 108 -45Q108 -40 120 -10T151 73T192 190T233 349T266 539Q267 546 269 565T272 598T274
|
||||
613H270Q209 613 163 588Q131 572 113 518Q102 502 80 490T37 475Z" />
|
||||
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="817" d="M114 286Q114 358 151 433T249 569T392 667T558 705Q653 705 713 641T774 460Q774 389 750 322T687 206T600 114T504 46T412 4L399 -2Q542 -62 636 -62Q660 -62 670 -54T686 -27T700 0Q734 34 770 34Q787
|
||||
34 787 23Q787 -18 720 -74T563 -131Q485 -131 350 -83T145 -34Q127 -34 127 -22Q127 -12 144 5T190 31L200 34L237 35Q386 38 467 79Q550 120 612 210T675 416Q675 510 625 573T484 636Q410 636 346 587T248 469T214 333Q214 306 221 281T243 229T288 188T360
|
||||
172Q403 172 441 188T490 205Q510 205 510 192Q505 162 432 132T287 102Q206 102 160 155T114 286Z" />
|
||||
<glyph unicode="R" glyph-name="R" horiz-adv-x="848" d="M37 475Q19 475 19 487Q19 503 35 530T83 589T180 647T327 682H374Q387 682 417 682T464 683Q519 683 559 679T642 663T708 625T731 557Q731 481 668 411T504 300Q506 296 512 286T528 257T553 202Q594
|
||||
105 611 82Q635 47 665 47Q708 47 742 93Q758 113 786 128Q804 136 819 137Q837 137 837 125Q837 115 818 92T767 43T687 -2T589 -22Q549 -22 517 22T467 120T422 221T362 273Q346 273 346 287Q348 301 373 320T436 342Q437 342 446 343T462 345T481 348T504 353T527
|
||||
362T553 375T577 393Q598 412 614 443T630 511Q630 545 613 566T541 600T393 614Q370 614 370 613L366 584Q349 446 311 307T243 96L213 25Q205 8 179 -7T132 -22Q125 -22 120 -18T117 -8Q117 -5 130 26T163 113T205 239T246 408T274 606V614Q273 614 259 613T231
|
||||
609T198 602T163 588Q131 572 113 518Q102 502 80 490T37 475Z" />
|
||||
<glyph unicode="S" glyph-name="S" horiz-adv-x="606" d="M554 512Q536 512 536 522Q536 525 539 539T542 564Q542 588 528 604Q515 616 482 625T410 635Q374 635 349 624T312 594T295 561T290 532Q290 505 303 482T342 442T378 419T409 404Q435 391 451 383T494
|
||||
357T535 323T562 282T574 231Q574 133 464 56T220 -22Q138 -22 78 21T18 123Q18 184 61 227T156 274Q178 274 178 263Q178 260 177 258Q172 247 164 239T151 227T136 218L127 213L124 202Q118 186 118 163Q120 124 165 86T292 48Q374 48 423 86T473 186V193Q473
|
||||
267 347 327Q268 364 239 389Q191 431 191 486Q191 547 242 600T356 679T470 705Q472 705 478 705T489 704Q551 704 596 682T642 610Q642 566 621 545Q592 516 554 512Z" />
|
||||
<glyph unicode="T" glyph-name="T" horiz-adv-x="545" d="M49 475Q34 475 34 490Q34 552 106 611T261 681Q272 683 507 683H742Q790 717 816 717Q833 717 833 708Q833 682 795 653T714 615Q691 610 588 609Q490 609 490 607L483 580Q476 554 462 496T435 392Q410
|
||||
289 395 231T363 116T335 34T309 -15T279 -47T242 -64Q231 -68 218 -68Q203 -68 203 -57Q203 -52 211 -38Q224 -7 234 20T251 66T268 123T283 179T304 261T328 360Q342 415 360 488Q380 567 384 582T397 605Q400 607 401 609H302H244Q200 609 188 607T167 596Q145
|
||||
572 145 541Q145 520 109 498T49 475Z" />
|
||||
<glyph unicode="U" glyph-name="U" horiz-adv-x="626" d="M8 592Q8 616 70 649T193 683Q246 683 246 631Q246 587 205 492T124 297T83 143Q83 101 100 75T154 48Q202 48 287 135T450 342T560 553Q589 635 593 640Q603 656 626 668T669 683H670Q687 683 687 672T670
|
||||
616T617 463T547 220Q525 137 521 68Q521 54 522 50T533 42L543 47Q573 61 588 61Q604 61 604 47Q599 16 506 -22Q486 -28 468 -28T436 -18T421 18Q421 92 468 258Q468 259 467 257T459 248Q426 206 391 167T303 81T194 6T83 -22Q66 -22 58 -20Q25 -11 4 19T-17
|
||||
99Q-17 146 8 220T64 358T120 488T146 586Q146 604 141 608T123 613H120Q99 613 72 597T25 580Q8 580 8 592Z" />
|
||||
<glyph unicode="V" glyph-name="V" horiz-adv-x="613" d="M25 633Q25 647 47 665T100 683Q291 683 291 306Q291 264 288 213T282 132L279 102Q281 102 308 126T378 191T464 279T545 381T596 479Q600 490 600 502Q600 527 581 550T523 577Q505 577 505 601Q505
|
||||
622 516 647T542 681Q546 683 558 683Q605 679 631 645T658 559Q658 423 487 215Q409 126 308 37T190 -52Q177 -52 177 -28Q177 -26 183 15T196 127T203 270Q203 356 192 421T165 523T126 583T83 613T41 620Q25 620 25 633Z" />
|
||||
<glyph unicode="W" glyph-name="W" horiz-adv-x="988" d="M25 633Q25 647 46 665T103 683Q168 683 207 632Q228 608 243 568Q269 485 269 374Q269 324 265 271T256 184L251 150L252 152Q254 153 257 157T264 167T274 180T286 197Q359 293 424 398T519 558T549
|
||||
616Q549 618 547 624T545 638Q550 654 572 668T615 683Q626 683 632 672T657 595Q726 370 741 128L742 110Q752 122 767 142T823 217T894 321T950 424T976 511Q976 544 958 560T918 577Q906 577 906 602Q906 629 918 651T942 681Q948 683 954 683Q983 683 1008
|
||||
658T1034 569T999 421T915 257T813 109T724 -3T681 -49Q666 -59 660 -45Q659 -41 657 35T639 233T591 477Q573 551 570 551Q569 551 554 523T507 439T433 315T323 155T182 -25Q160 -52 151 -53Q137 -53 137 -30Q137 -29 148 25T170 168T181 338Q181 424 168 483T131
|
||||
571T87 609T40 620Q25 620 25 633Z" />
|
||||
<glyph unicode="X" glyph-name="X" horiz-adv-x="713" d="M324 614Q291 576 250 573Q231 573 231 584Q231 589 232 592Q235 601 244 614T271 643T324 671T400 683H403Q462 683 481 610Q485 594 490 545T498 454L501 413Q504 413 551 442T648 509T705 561Q707 565
|
||||
707 578Q707 610 682 614Q667 614 667 626Q667 641 695 662T755 683Q765 683 775 680T796 662T807 623Q807 596 792 572T713 499T530 376L505 361V356Q508 346 511 278T524 148T557 75Q569 69 580 69Q585 69 593 77Q624 108 660 110Q667 110 670 110T676 106T678
|
||||
94Q668 59 624 30T510 0Q487 0 471 9T445 32T430 71T422 117T417 173Q416 183 416 188Q413 214 411 244T407 286T405 299Q403 299 344 263T223 182T154 122Q152 118 152 105Q152 69 180 69Q183 69 187 66T191 60L192 58V56Q192 41 163 21T105 0Q94 0 84 3T63 21T52
|
||||
60Q52 77 56 90T85 131T155 191Q197 223 259 263T362 327T402 352L391 489Q391 492 390 505T387 526T384 547T379 568T372 586T361 602T348 611Q346 612 341 613T333 614H324Z" />
|
||||
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="668" d="M65 599Q65 618 107 650T204 683Q267 683 312 643T380 533T414 385T424 217Q424 186 423 160T422 123Q426 123 468 170T567 304T650 469Q661 503 661 519Q661 546 639 570Q615 591 583 591Q569 591 569
|
||||
616Q569 640 582 661T613 683Q624 683 638 679T671 664T702 625T714 558Q714 472 639 329T426 45Q361 -21 282 -82T154 -143Q97 -143 64 -104T31 -20Q31 4 44 25T70 46Q78 46 81 39T87 16T97 -9Q127 -51 182 -51Q184 -51 187 -50H190Q233 -41 314 25Q330 36 330
|
||||
40Q336 79 336 178Q336 508 223 594Q199 614 158 619L148 620L139 611Q111 586 83 586Q65 586 65 599Z" />
|
||||
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="725" d="M694 220Q708 220 708 210Q708 195 695 167T658 105T593 42T502 3Q492 1 458 1Q400 1 293 11T150 22Q116 22 92 11T51 0Q37 0 37 10Q37 21 63 44T179 146T367 319L391 343H343L296 344Q285 350 285 358Q285
|
||||
365 289 372T300 383T313 392T324 398L329 400H450L561 518Q597 558 607 571L621 587H596Q553 589 484 599T383 609Q342 609 326 596T301 555Q294 533 263 514T208 492Q189 492 189 503Q189 510 197 528T215 559Q249 607 318 645T466 683Q504 683 573 673T669 662L690
|
||||
661Q734 682 748 683Q767 683 767 673Q767 666 746 640Q655 531 555 428L529 400Q529 399 543 399Q604 397 604 366Q604 350 587 337T551 322Q541 322 539 323Q529 328 529 334Q529 339 487 342L470 343L446 320Q272 153 200 96L235 95Q297 95 392 86T533 74H554Q586
|
||||
116 597 159Q604 179 635 199T694 220Z" />
|
||||
<glyph unicode="0" glyph-name="zero" horiz-adv-x="500" d="M242 452Q355 452 407 392T460 213Q460 -22 250 -22Q39 -22 39 213Q39 325 89 388T242 452ZM364 242Q364 279 363 301T355 348T338 385T306 406T254 415Q250 415 245 415T238 416Q208 416 184 402T150
|
||||
368Q142 351 137 304Q136 294 136 221V173Q136 107 147 74T200 23Q219 16 250 16Q283 16 305 26T338 49T356 92T363 143T364 209V221V242Z" />
|
||||
<glyph unicode="1" glyph-name="one" horiz-adv-x="500" d="M86 403L92 410H116Q158 411 182 416Q234 423 274 447Q284 453 288 453Q293 453 301 447V254Q301 62 303 60Q307 53 313 51Q330 46 394 46Q418 46 422 43T426 23Q426 7 424 4T411 0Q392 0 344 1T258
|
||||
2T173 1T106 0Q95 0 93 3T91 23Q91 40 95 43T123 46Q187 46 204 51Q212 55 215 61Q216 63 216 220V376Q193 366 119 364H93L86 371V403Z" />
|
||||
<glyph unicode="2" glyph-name="two" horiz-adv-x="500" d="M55 334Q55 392 108 422T236 453Q320 453 376 423T447 331Q448 325 448 307Q448 286 446 280Q442 263 432 249T413 225T384 205T353 188T316 170Q310 167 301 163T285 155T277 151Q269 147 216 116T163
|
||||
84T267 83L382 85H391Q398 96 406 126Q410 143 413 145T429 148Q441 148 443 147T449 139Q449 137 435 73T420 7Q420 6 414 0H233Q94 0 71 0T46 5Q46 5 46 6Q44 8 44 24Q44 39 46 41Q47 44 98 78T212 155T294 212Q347 257 347 304Q347 352 308 379T203 407Q150
|
||||
407 120 377Q118 375 123 373Q146 362 146 332Q146 313 134 301T101 288T68 301T55 334Z" />
|
||||
<glyph unicode="3" glyph-name="three" horiz-adv-x="500" d="M104 -7Q129 -7 145 -24T162 -66Q162 -87 149 -103T118 -125L113 -126Q113 -129 126 -138T150 -153Q192 -173 239 -173Q268 -173 292 -158Q345 -124 345 -24Q345 33 329 67Q303 115 257 123Q251 125
|
||||
210 125H172Q166 131 166 142Q166 159 172 161Q176 161 208 164T244 169Q250 169 260 175Q290 190 308 227T327 314Q327 413 238 413Q180 413 130 369Q154 362 167 350T181 312Q181 289 165 273T125 257T85 272T69 312Q69 327 72 339Q81 380 115 409T201 449Q218
|
||||
452 233 452Q316 452 368 417Q430 377 430 313Q430 276 413 242Q382 180 311 149L301 144L303 143Q305 142 308 142T314 140Q432 101 454 4Q456 -4 456 -25Q456 -47 454 -55Q441 -117 394 -159T277 -214Q261 -216 241 -216Q124 -216 64 -138Q42 -105 42 -68Q42
|
||||
-39 58 -23T104 -7Z" />
|
||||
<glyph unicode="4" glyph-name="four" horiz-adv-x="500" d="M193 -154L199 -148H228Q232 -148 238 -148T248 -148T257 -147T264 -147T270 -146T276 -145T280 -143T284 -141T286 -138L289 -134V0H163Q61 0 47 0T30 6Q28 8 28 27V46L190 270Q325 457 330 462Q333
|
||||
464 352 464H371L377 458V46H464L471 40V6L464 0H377V-65Q377 -132 378 -134Q380 -143 391 -144Q409 -148 446 -148H464L468 -151L471 -155V-187L464 -194H453Q395 -192 325 -192Q227 -192 210 -194H199L193 -188V-154ZM295 46V350L75 46H295Z" />
|
||||
<glyph unicode="5" glyph-name="five" horiz-adv-x="500" d="M159 -44Q159 -67 145 -80T109 -96H102L107 -105Q148 -173 228 -173Q255 -173 280 -162Q321 -141 336 -102T351 8Q351 67 344 98T316 151Q290 176 255 176Q175 176 136 109Q129 100 114 100Q97 100
|
||||
95 106Q93 110 93 277Q93 306 93 346T92 397Q92 451 98 451Q100 452 103 452Q107 452 110 451Q178 423 251 423Q290 423 314 428Q354 434 388 449Q397 453 401 453Q410 453 410 435V422Q333 331 203 331Q156 331 140 339Q139 339 139 254V168Q164 189 182 197Q218
|
||||
214 256 214Q345 214 400 143Q448 84 448 0Q448 -60 416 -113Q389 -157 339 -186T229 -216Q207 -216 184 -211Q128 -195 91 -153T50 -49Q50 -20 64 -4T105 13Q129 13 144 -2T159 -44Z" />
|
||||
<glyph unicode="6" glyph-name="six" horiz-adv-x="500" d="M143 356Q166 394 194 414T266 434Q317 434 357 409Q406 375 435 317Q456 268 456 210V192Q456 169 451 149Q439 90 389 38Q346 -7 293 -18Q277 -22 253 -22Q234 -22 219 -19Q145 -5 101 61Q42 154 42
|
||||
313Q42 421 80 502T186 628Q240 665 296 665Q423 665 432 557Q432 531 418 515T380 498Q357 498 343 513T328 550Q328 573 342 587Q352 597 367 601L372 602Q372 605 355 615Q335 626 307 626Q290 626 265 619Q205 600 174 537Q147 483 143 376V356ZM280 395Q274
|
||||
396 251 396H241Q196 389 171 339T145 217Q145 131 157 95Q166 64 192 43T252 21Q293 21 321 47Q342 68 349 99T356 203Q356 271 351 311Q338 381 280 395Z" />
|
||||
<glyph unicode="7" glyph-name="seven" horiz-adv-x="500" d="M75 246Q63 246 61 247T55 255Q55 259 72 357T90 458L94 462H99Q104 463 109 463H121Q128 456 128 452Q128 438 165 434Q204 431 356 431H478L485 425V392L414 298Q341 200 338 195Q287 112 277 -29Q274
|
||||
-65 274 -137Q274 -173 272 -177Q262 -216 223 -216Q181 -216 171 -177Q170 -172 170 -148Q174 2 258 149Q282 189 316 236T373 312T395 342Q396 343 376 343T274 343Q122 342 117 339Q109 335 98 272Q94 251 90 248Q88 246 75 246Z" />
|
||||
<glyph unicode="8" glyph-name="eight" horiz-adv-x="500" d="M122 616Q172 666 247 666Q316 666 365 631T428 539Q429 533 429 515Q429 471 405 434Q380 398 320 361L346 344Q386 318 403 301T439 250Q456 211 456 172V160Q456 144 451 127Q435 63 380 21T246
|
||||
-21Q168 -21 114 20T45 125Q43 133 43 155Q43 219 83 265Q116 304 167 332L176 337L161 347Q134 364 121 377Q97 401 87 423Q69 458 69 496Q69 568 122 616ZM249 626Q203 626 165 601T127 532Q127 500 151 474Q159 465 228 420L284 384L294 391Q346 424 363 469Q371
|
||||
486 371 513Q371 531 369 539Q359 577 327 601T249 626ZM250 21Q310 21 351 56T393 140Q393 179 362 213Q354 221 317 246T246 292L212 313Q207 313 184 295Q127 254 111 194Q106 172 106 157Q106 100 149 61T250 21Z" />
|
||||
<glyph unicode="9" glyph-name="nine" horiz-adv-x="500" d="M119 -49Q142 -49 156 -64T171 -101Q171 -124 157 -138Q144 -151 134 -151Q131 -151 131 -152Q131 -155 140 -159T168 -168T206 -173Q273 -173 317 -108Q356 -49 356 79V86L350 77Q307 9 231 9Q215
|
||||
9 201 11Q138 23 92 81Q42 141 42 228Q42 288 64 333Q79 362 106 389T160 431Q199 452 235 452Q237 452 244 452T255 453Q260 453 267 453T276 452Q352 442 396 378T451 219Q457 179 457 128Q457 24 421 -56T320 -180Q263 -216 206 -216Q146 -216 107 -187T67 -104Q67
|
||||
-79 82 -64T119 -49ZM303 397Q283 412 248 412Q207 412 179 386Q155 360 149 328T143 224Q143 185 144 173Q147 114 163 88Q190 46 242 46Q281 46 308 74Q355 121 355 223Q355 322 337 356Q326 381 303 397Z" />
|
||||
<glyph unicode="A" glyph-name="A" horiz-adv-x="798" d="M30 43Q30 71 45 98T74 125Q84 125 87 106Q89 85 109 71T151 57Q160 57 164 59Q201 75 277 182Q432 400 542 625L559 659H567Q574 659 575 660T576 668Q576 672 578 680Q586 696 611 712T660 728Q676 728
|
||||
675 712V571Q675 409 688 252Q693 174 706 113Q707 108 710 94T716 70T720 57Q725 46 743 39L754 45Q788 61 803 61Q819 61 819 47Q818 43 814 35Q802 19 761 -4Q734 -18 713 -24Q695 -30 675 -30Q642 -30 627 -6Q623 0 614 34Q600 92 594 139Q592 158 591 160V163H460L329
|
||||
164L316 145Q281 93 266 75Q174 -50 119 -50Q84 -50 57 -24T30 43ZM584 249Q580 322 574 520V581L563 560Q497 426 412 290L372 228L370 224H371L383 228L393 232H586L584 249Z" />
|
||||
<glyph unicode="B" glyph-name="B" horiz-adv-x="657" d="M305 342Q292 342 292 353Q292 370 323 391Q337 400 381 415Q421 430 429 432Q506 461 533 487Q563 513 563 555V562Q563 576 556 590Q535 631 475 636Q452 636 432 630Q381 616 330 539Q313 515 296 480Q248
|
||||
387 210 238Q196 183 173 120Q135 31 121 16Q108 1 85 -10T47 -22T32 -10Q32 -6 42 16Q88 106 112 206Q160 399 187 585Q188 592 189 599T190 611L191 615Q191 616 190 616Q188 616 179 611T157 601T131 594Q113 594 113 606Q113 624 144 644Q150 649 199 673T255
|
||||
700Q264 703 267 703Q277 705 279 705Q295 705 295 693Q295 687 288 635T278 575Q278 572 287 582Q382 685 507 703Q515 704 540 704Q638 704 661 626Q664 616 664 599Q664 589 662 579Q653 542 630 511Q584 457 504 413L491 407L504 402Q559 384 593 343T627 244Q627
|
||||
213 616 180Q592 108 510 51T331 -19Q312 -22 284 -22Q208 -22 158 28Q144 42 146 50Q150 67 178 85T230 103Q237 103 251 89Q293 47 357 47Q435 47 486 93Q526 135 526 198V210Q526 226 521 241Q503 293 458 319Q414 345 350 345Q345 345 328 344T305 342Z" />
|
||||
<glyph unicode="C" glyph-name="C" horiz-adv-x="527" d="M481 171Q496 171 496 160Q496 150 476 123Q426 56 350 16T201 -25Q135 -25 88 12Q12 68 12 202Q12 260 29 326Q68 478 161 574Q214 628 281 662T418 703Q424 704 433 704Q435 705 457 705Q533 702 533
|
||||
640Q533 636 531 620Q524 578 485 506Q472 481 458 469T419 448Q403 444 396 444Q385 444 381 452Q379 456 390 478Q414 522 428 563Q433 580 433 594Q433 617 421 626T381 636Q334 636 289 615Q213 576 159 456Q112 348 112 247Q112 156 153 100T273 44Q347 44
|
||||
398 121Q411 141 434 156T481 171Z" />
|
||||
<glyph unicode="D" glyph-name="D" horiz-adv-x="771" d="M37 475Q19 475 19 487Q19 489 20 494T22 502Q44 571 132 623T327 682H356Q386 683 408 683Q505 683 560 674T667 633Q766 571 766 450Q766 416 757 375Q725 236 586 132Q449 29 279 6Q248 1 160 0Q83
|
||||
0 79 2Q72 6 72 12Q72 23 88 37Q108 56 133 64L144 68L152 88Q247 328 272 587Q275 613 272 613Q272 613 269 613Q205 609 169 592T119 532Q118 530 116 525T113 518Q102 502 80 490T37 475ZM665 407Q665 524 558 580Q482 614 383 614Q370 614 370 612Q370 597
|
||||
355 502Q320 299 242 103L228 69H265Q385 72 481 119Q631 197 660 347Q665 371 665 392V407Z" />
|
||||
<glyph unicode="E" glyph-name="E" horiz-adv-x="528" d="M223 362Q144 402 144 470Q144 520 176 564Q213 619 282 658T424 704Q427 704 436 704T451 705Q538 705 557 664Q564 651 564 637Q564 610 540 573Q529 559 505 547T464 534Q448 534 448 545Q448 552 455
|
||||
562Q463 577 463 591Q463 636 380 636Q290 636 258 568Q245 544 245 516Q245 468 288 439Q328 413 391 410Q415 410 415 398Q415 388 400 374Q370 344 326 341Q288 340 260 327Q180 296 144 209Q130 175 130 151Q130 105 168 76T268 47Q349 47 403 125Q413 141
|
||||
438 156T483 171Q499 171 499 160Q499 152 483 130Q432 62 353 20T197 -22Q128 -22 79 13T30 105Q30 142 51 186Q95 286 209 354L223 362Z" />
|
||||
<glyph unicode="F" glyph-name="F" horiz-adv-x="719" d="M269 614Q229 580 197 580Q181 580 181 591Q181 595 186 607Q202 638 243 658T335 682Q336 682 349 682T383 682T431 682T493 683T561 683Q776 682 784 681Q826 673 829 647Q829 621 799 601T744 580Q728
|
||||
580 728 595Q729 606 719 608Q702 613 598 614H500L499 610Q499 609 491 577Q472 499 442 406Q430 368 428 367Q428 365 551 365H674Q683 359 684 355Q687 346 677 329Q666 312 642 299T598 285Q586 285 582 296H402L399 290Q328 114 286 51Q263 21 229 -1T160
|
||||
-31Q154 -32 133 -32Q54 -32 22 32Q18 40 18 47Q18 56 29 67Q60 100 98 103Q109 103 111 101T119 88Q137 52 171 42Q186 37 195 37Q199 37 203 43Q224 77 261 161Q344 346 391 532Q393 543 398 564T406 598T409 613T339 614H269Z" />
|
||||
<glyph unicode="G" glyph-name="G" horiz-adv-x="595" d="M144 318Q144 238 180 188T287 137Q325 137 359 160Q417 198 451 278Q455 287 466 322Q471 339 499 357T551 376Q565 376 565 365Q565 355 539 260Q497 107 451 31Q382 -83 269 -112Q243 -119 204 -119Q129
|
||||
-116 69 -87Q53 -76 52 -71Q52 -61 65 -47Q96 -17 132 -14H140L151 -19Q210 -49 281 -49H289Q312 -49 329 -31Q365 8 398 92Q416 136 416 142Q406 134 389 122T319 89T216 68Q145 68 101 112Q44 167 44 273Q44 318 57 369Q86 487 170 574T373 692Q418 704 466 704Q508
|
||||
704 515 703Q555 696 574 684T598 647Q599 643 599 635Q599 608 572 563T523 496Q491 466 455 466Q440 466 440 476Q440 487 453 502Q467 520 481 544T498 580Q499 583 499 589Q499 605 489 617Q465 636 403 636Q328 636 279 602Q225 567 187 491T144 327V318Z"
|
||||
/>
|
||||
<glyph unicode="H" glyph-name="H" horiz-adv-x="845" d="M37 475Q18 475 18 487Q18 502 45 539Q89 603 163 643T330 683Q379 683 393 649Q400 635 400 622Q400 605 391 540Q376 427 348 343Q348 342 467 342H587L594 366Q615 440 648 534T690 641Q701 656 723
|
||||
669T764 683Q783 683 783 672Q783 669 774 645Q718 498 675 341Q636 201 625 101Q624 92 623 82T622 65T621 56Q621 20 658 20Q666 20 701 25Q707 44 718 55Q745 82 782 87Q803 89 803 75Q803 66 792 46Q769 4 713 -22T588 -48Q568 -48 562 -46Q522 -30 522 13V23Q531
|
||||
129 562 250L569 281Q566 278 549 274L438 273H328L321 249Q294 158 258 62Q238 7 232 0Q219 -16 196 -28T155 -41Q139 -41 139 -29Q139 -28 140 -25T147 -7T159 26Q195 120 233 247Q240 270 240 272Q240 273 194 273Q158 273 152 273T141 279Q139 283 139 285Q139
|
||||
295 153 308T187 332Q206 341 236 342L260 343L264 359Q300 498 300 578Q300 613 254 613Q198 613 169 592Q143 575 119 531Q112 517 104 508Q72 478 37 475Z" />
|
||||
<glyph unicode="I" glyph-name="I" horiz-adv-x="545" d="M330 69Q437 70 441 72Q442 73 442 74Q443 74 443 77T447 87T460 105Q490 134 527 137Q545 137 545 125Q545 120 542 112Q531 78 491 49T399 7Q379 2 360 2T174 0Q-20 0 -23 1Q-30 5 -30 12Q-30 23 -17
|
||||
36Q10 61 42 68L155 70Q179 94 198 138Q222 194 256 329Q278 418 298 478Q328 569 366 610L369 614H305Q292 614 273 614T242 613T228 612Q168 607 146 597Q136 593 128 569Q123 554 112 543Q83 516 47 512Q28 512 28 523Q28 530 32 539Q56 614 159 654Q218 678
|
||||
312 682Q314 682 339 682T404 682T481 683H632Q642 677 642 671Q642 667 639 661Q633 649 615 636T577 617Q570 615 507 614H444Q429 595 406 542Q383 481 354 364Q325 249 310 209Q280 123 238 78L230 69H330Z" />
|
||||
<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M830 683Q839 674 839 671Q839 666 837 663Q829 645 803 630T754 614Q735 614 721 601Q668 553 618 404Q589 318 557 192Q549 156 541 132Q521 69 475 16Q432 -36 372 -71T253 -116Q234 -119 213 -119Q160
|
||||
-119 121 -96T62 -35Q47 1 47 33Q47 83 71 103Q101 128 132 131Q152 133 152 120Q152 118 150 108Q148 100 148 78Q148 18 186 -16T286 -50Q323 -50 353 -29Q416 13 444 101Q446 107 460 159Q501 326 543 434T649 605L659 614H591Q517 613 494 607Q402 584 366
|
||||
495Q361 483 360 477Q355 458 334 443Q304 419 275 419Q255 419 260 435Q268 469 288 501Q330 572 412 622T583 681Q603 683 713 683H830Z" />
|
||||
<glyph unicode="K" glyph-name="K" horiz-adv-x="762" d="M267 703Q277 705 279 705Q295 705 295 691Q295 660 289 604Q277 501 250 397Q207 237 159 105Q129 27 128 25Q120 8 94 -7T47 -22Q32 -22 32 -10Q32 -6 42 21Q93 152 136 306Q172 432 185 530Q198 611
|
||||
194 618L174 609Q147 595 131 594Q113 594 113 606Q113 624 144 644Q150 649 199 673T255 700Q264 703 267 703ZM677 586Q666 586 661 590T657 604V619Q657 632 649 639T629 647Q623 647 620 646Q576 635 495 583T365 482Q344 461 338 451T331 429Q331 393 354
|
||||
322Q386 222 434 141T519 41Q530 36 542 36Q584 36 613 53T652 103Q658 120 674 131T709 143Q727 143 727 128Q727 120 723 111Q704 55 641 17T497 -22Q484 -22 481 -21Q429 -5 382 71Q342 128 302 228T257 386Q257 389 257 393T256 399Q256 434 288 473Q331 525
|
||||
425 591T595 688Q639 705 670 705Q699 703 715 688T732 644Q732 618 717 603T677 586Z" />
|
||||
<glyph unicode="L" glyph-name="L" horiz-adv-x="690" d="M503 519Q503 524 505 538T507 560Q507 630 452 630Q424 630 410 617Q363 575 322 464Q296 393 267 280Q250 212 233 170Q211 123 204 112L198 103L224 102Q279 102 370 78Q462 54 509 52H523Q536 65 544
|
||||
87Q552 110 579 128Q616 152 641 152Q656 152 656 142Q656 140 653 128Q637 80 584 37T471 -19Q456 -22 433 -22Q403 -22 379 -18Q344 -13 255 10Q201 25 156 28L141 29L131 20Q115 4 90 -9T47 -22Q32 -22 32 -11Q32 -9 34 -3Q40 9 63 32Q99 68 117 111T157 236Q203
|
||||
411 247 499Q280 564 323 609Q410 695 513 704Q515 704 521 704T531 705Q592 705 612 654Q618 640 618 623V611Q618 584 615 572T598 548Q581 531 558 520T518 509Q503 509 503 519Z" />
|
||||
<glyph unicode="M" glyph-name="M" horiz-adv-x="1201" d="M941 96Q941 158 952 256T974 422L985 489Q984 489 939 436T821 300T698 164Q665 128 620 85T568 37Q564 34 558 34Q550 34 546 37T535 54Q494 122 468 199Q452 247 431 327T397 462L384 518Q348 366
|
||||
291 217Q238 78 198 15Q161 -40 128 -49Q125 -50 117 -50Q91 -50 64 -36T30 -6Q28 2 28 9Q28 53 58 83Q66 90 73 90Q78 90 83 84Q102 63 141 57Q153 56 161 61Q196 84 265 280Q330 457 355 635Q361 667 371 677Q396 705 432 705Q437 705 439 704Q444 701 446 696T453
|
||||
659Q487 472 539 294Q553 245 568 207Q589 150 594 150Q596 150 635 189T693 248Q816 379 1056 664Q1086 700 1089 701Q1093 705 1100 705Q1111 705 1111 682Q1111 664 1106 649Q1093 585 1086 540Q1041 277 1041 144Q1041 73 1047 55Q1051 42 1061 42Q1067 42
|
||||
1075 46Q1097 62 1123 62Q1137 62 1137 50Q1137 37 1116 19Q1103 8 1081 -3Q1044 -22 1015 -28Q1010 -29 1000 -29Q974 -29 959 -14Q946 -1 943 39Q941 69 941 96Z" />
|
||||
<glyph unicode="N" glyph-name="N" horiz-adv-x="820" d="M343 705Q358 705 358 698Q361 695 366 674Q415 500 484 319Q538 171 590 82L595 73L615 152Q646 274 683 407Q729 571 752 637T799 727Q851 779 937 788Q939 788 947 788T958 789Q971 789 975 784T979
|
||||
765Q979 722 951 692Q942 683 924 683Q870 680 834 662Q807 648 803 639Q798 630 780 575Q740 447 685 237Q631 28 631 15Q631 14 630 15Q630 17 629 15Q628 14 628 12Q621 -3 602 -17T560 -31Q550 -31 546 -28T530 -7Q484 67 461 115T398 272Q352 392 314 514L306
|
||||
535V534Q304 531 299 500Q266 330 208 163Q158 19 111 -26Q85 -50 61 -50Q29 -50 1 -33T-27 8Q-27 26 -18 48T3 83Q11 90 18 90Q22 90 28 84Q49 63 87 57Q101 56 108 61Q129 75 162 173Q243 404 268 627Q272 659 276 667Q284 681 304 693T343 705Z" />
|
||||
<glyph unicode="O" glyph-name="O" horiz-adv-x="796" d="M599 705Q687 705 732 644T777 483Q777 408 753 334Q719 225 631 135T430 3Q362 -22 293 -22Q236 -22 191 0Q128 29 93 92T58 245Q58 277 59 286Q71 390 118 471Q190 598 329 682Q356 699 377 704Q379
|
||||
704 382 704T388 705Q404 705 404 693Q404 689 401 683Q392 666 363 649Q281 601 226 518T159 331Q158 322 158 290Q158 150 244 85Q294 48 364 48Q420 48 474 74Q533 103 583 165T656 302Q677 370 677 438Q677 527 641 581T528 636Q507 636 495 630T466 607Q423
|
||||
564 392 490Q383 470 372 459Q341 430 308 428Q295 428 290 433Q286 439 296 462Q327 536 378 593Q458 685 566 703Q586 705 599 705Z" />
|
||||
<glyph unicode="P" glyph-name="P" horiz-adv-x="696" d="M37 475Q19 475 19 487Q19 489 20 494T22 502Q44 571 132 623T327 682Q329 682 344 682T380 682T421 683T461 683T498 682T515 682Q634 674 695 615Q718 591 726 564Q733 547 733 525Q733 518 731 504Q722
|
||||
437 669 372Q645 343 620 322Q558 270 479 239T321 205Q299 205 295 211Q293 215 293 217Q293 227 306 241T340 264T385 274Q469 280 527 314T614 407Q633 444 633 477Q633 525 597 558Q536 614 399 614H370L368 603Q342 365 254 118Q213 3 202 -13Q192 -30 168
|
||||
-43T121 -57Q116 -57 112 -53T108 -45Q108 -40 121 -7Q232 268 266 539Q267 546 269 565T272 598T274 613Q272 614 269 613Q205 609 169 592T119 532Q118 530 116 525T113 518Q102 502 80 490T37 475Z" />
|
||||
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="817" d="M675 416Q675 513 625 574T484 636Q392 636 315 559Q246 490 222 397Q214 368 214 333Q214 254 259 209Q297 172 360 172Q405 172 453 193Q476 204 490 205Q510 205 510 192Q509 183 497 171Q469 141 404
|
||||
122T287 102Q243 102 211 118Q114 163 114 286Q114 403 201 515Q256 587 336 636T497 700Q527 705 558 705Q625 705 678 670Q774 605 774 460Q774 428 773 418Q760 310 697 221T545 71Q525 58 503 46T463 25T430 11T407 1L399 -2Q402 -5 474 -29Q570 -62 636 -62Q659
|
||||
-62 669 -54T687 -23Q692 -9 700 0Q729 29 767 34Q787 36 787 23Q787 18 784 8Q768 -41 714 -79T602 -128Q586 -131 563 -131Q525 -131 482 -123Q435 -113 333 -76Q241 -44 192 -38Q158 -34 145 -34Q127 -34 127 -22Q127 -11 142 2Q162 22 190 31L200 34L237 35Q324
|
||||
36 376 48Q428 59 467 79Q518 104 562 148T634 246Q675 330 675 416Z" />
|
||||
<glyph unicode="R" glyph-name="R" horiz-adv-x="848" d="M37 475Q19 475 19 487Q19 489 20 494T22 502Q39 557 99 602T242 668Q292 682 374 682H458Q545 682 597 675T686 642Q731 614 731 557Q731 544 728 529Q714 453 651 393T504 300Q506 296 509 291Q526 266
|
||||
553 202Q594 105 611 82Q635 47 665 47Q683 47 698 54T722 70T742 93Q758 113 786 128Q804 136 819 137Q837 137 837 125Q837 112 807 80Q738 7 645 -16Q618 -22 589 -22Q578 -22 574 -21Q536 -12 505 39Q488 68 455 148Q424 226 399 253Q382 270 362 273Q346 273
|
||||
346 287Q348 298 361 310T394 332T436 342Q440 342 449 342T462 344Q531 353 577 393Q630 442 630 511Q630 557 596 579Q544 614 393 614Q370 614 370 613L366 584Q336 339 240 91Q218 36 213 25Q205 8 179 -7T132 -22Q125 -22 120 -18T117 -8Q117 -5 128 21Q248
|
||||
313 274 606V614L269 613Q205 609 169 592T119 532Q118 530 116 525T113 518Q102 502 80 490T37 475Z" />
|
||||
<glyph unicode="S" glyph-name="S" horiz-adv-x="606" d="M489 704Q552 704 597 682T642 610Q642 597 637 575Q632 556 621 545Q592 516 554 512Q545 512 541 514Q534 520 538 536Q542 549 542 564Q542 588 528 604Q514 616 479 625T410 635Q320 635 295 562Q290
|
||||
545 290 532Q290 490 327 455Q354 430 409 404Q482 370 517 340Q574 293 574 231Q574 218 571 204Q559 145 509 93Q482 68 456 51Q349 -22 220 -22Q102 -22 39 60Q18 87 18 123Q18 184 62 228Q105 271 156 274Q178 274 178 263Q178 254 173 249Q158 227 132 216L127
|
||||
213L124 202Q118 186 118 163Q119 138 138 114Q191 48 292 48Q421 48 460 130Q473 155 473 186Q473 204 471 211Q453 275 347 327Q275 361 252 379Q203 416 193 461Q191 467 191 486Q191 504 193 512Q202 552 230 587Q267 633 328 665T461 704H464Q467 705 470
|
||||
705Q472 705 478 705T489 704Z" />
|
||||
<glyph unicode="T" glyph-name="T" horiz-adv-x="545" d="M742 683Q790 717 816 717Q833 717 833 708Q833 694 817 674Q801 655 772 638T714 615Q691 610 588 609Q490 609 490 607L483 580Q476 554 462 496T435 392Q382 178 377 160Q351 67 314 -8Q295 -46 242
|
||||
-64Q231 -68 218 -68Q203 -68 203 -57Q203 -52 211 -38Q247 44 267 116Q269 124 298 241T355 471T388 592L401 609H302Q193 609 180 605Q165 600 155 580T145 541Q145 536 142 529Q135 516 113 501T70 479Q57 474 49 474Q34 474 34 490Q34 526 61 564Q92 608 149
|
||||
641T261 681Q272 683 507 683H742Z" />
|
||||
<glyph unicode="U" glyph-name="U" horiz-adv-x="626" d="M25 580Q8 580 8 592Q8 616 75 651Q133 683 193 683Q246 683 246 631Q246 596 219 526Q204 486 169 406Q108 268 93 210Q83 177 83 143Q83 100 100 74T154 48Q177 48 211 70Q283 118 372 234T525 475Q547
|
||||
517 560 553Q589 635 593 640Q603 656 626 668T669 683Q687 683 687 672L683 656Q675 625 659 586Q608 464 547 220Q525 137 521 68Q521 53 523 50T533 42L543 47Q573 61 588 61Q604 61 604 47Q599 16 506 -22Q486 -28 468 -28Q446 -28 434 -16T421 18Q421 89 468
|
||||
258Q468 259 467 257T459 248Q346 102 239 33Q170 -10 113 -20Q97 -22 83 -22Q66 -22 58 -20Q22 -10 3 21T-17 99Q-17 132 -6 174Q13 240 76 384Q122 489 137 536Q146 566 146 586Q146 602 141 607T120 613Q98 613 78 600Q49 580 25 580Z" />
|
||||
<glyph unicode="V" glyph-name="V" horiz-adv-x="613" d="M25 633Q25 649 49 666T100 683Q159 683 202 643Q291 560 291 306Q291 264 288 213T282 132L279 102Q306 124 325 141Q432 236 504 325T596 479Q600 490 600 502Q600 532 578 553T523 577Q505 577 505
|
||||
601Q505 622 516 647T542 681Q546 683 558 683Q604 679 631 645T658 559Q658 548 654 520Q632 389 487 215Q411 127 311 39Q218 -41 196 -51Q194 -52 190 -52Q177 -52 177 -28Q177 -22 179 -8Q188 35 195 122T203 270Q203 473 145 560Q114 605 73 615Q56 620 41
|
||||
620Q25 620 25 633Z" />
|
||||
<glyph unicode="W" glyph-name="W" horiz-adv-x="988" d="M25 633Q25 651 49 667T103 683Q168 683 207 632Q228 608 243 568Q269 488 269 374Q269 274 253 168L251 150L252 152Q254 153 257 157T264 167T274 180T286 197Q395 342 484 497Q549 608 549 616Q549
|
||||
619 546 625Q544 633 545 638Q550 654 572 668T615 683Q627 683 630 677Q635 670 657 595Q726 370 741 128L742 110L745 114Q775 148 830 225Q945 387 972 482Q976 495 976 511Q976 540 961 558T918 577Q906 577 906 602T916 649T942 681Q948 683 954 683Q970 683
|
||||
982 677Q1034 653 1034 569Q1034 551 1032 535Q1007 371 815 113Q705 -34 681 -49Q666 -59 660 -45Q659 -40 656 32Q648 262 591 477Q573 551 570 551Q567 545 563 539Q409 244 182 -25Q160 -52 151 -53Q137 -53 137 -30Q137 -15 143 3Q151 28 164 123Q181 244
|
||||
181 338Q181 394 175 441T153 530T109 596T40 620Q25 620 25 633Z" />
|
||||
<glyph unicode="X" glyph-name="X" horiz-adv-x="713" d="M324 614Q290 575 250 573Q231 573 231 585Q231 589 232 592Q244 633 293 658T400 683Q430 683 449 667Q471 650 481 610Q485 594 490 545T498 454L501 413Q504 413 551 442T648 509T705 561Q707 565 707
|
||||
578Q707 610 682 614Q667 614 667 626Q667 642 696 662T755 683Q780 683 793 667T807 623Q807 593 788 569Q772 547 739 519Q667 460 530 376L505 361V356Q506 354 514 251T528 125Q541 69 580 69Q585 69 593 77Q624 108 660 110Q671 110 675 107T678 94Q667 57
|
||||
634 37Q584 0 510 0Q489 0 474 7Q443 23 433 60T417 172Q416 182 416 188Q415 197 413 228T408 279T405 299Q398 299 272 216Q162 143 154 122Q152 118 152 105Q152 69 180 69Q183 69 187 66T191 60Q194 54 187 44Q176 27 152 14T105 0Q80 0 66 16T52 60Q52 98
|
||||
93 139Q132 178 209 230T344 316T402 352L391 489Q387 529 385 545T374 582T348 611Q346 612 341 613T333 614H324Z" />
|
||||
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="668" d="M83 586Q65 586 65 599Q65 610 85 630Q136 683 204 683Q288 683 338 614Q424 497 424 217Q424 204 423 168T422 123Q424 123 464 168Q603 325 650 469Q661 503 661 519Q661 546 639 570Q616 591 583 591Q569
|
||||
591 569 616Q569 637 578 656T600 681Q606 683 613 683Q645 683 670 663Q714 628 714 558Q714 528 706 496Q678 388 606 271T426 45Q350 -33 278 -84T166 -142Q162 -143 154 -143Q132 -143 114 -137Q80 -125 56 -93T31 -20Q31 3 44 24T70 46T85 24Q100 -44 173
|
||||
-50Q184 -51 190 -50Q233 -41 314 25Q330 36 330 40Q336 78 336 178Q336 245 332 289Q314 524 223 594Q199 614 158 619L148 620L139 611Q111 586 83 586Z" />
|
||||
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="725" d="M51 0Q37 0 37 10Q37 22 63 45Q228 186 367 319L391 343H343L296 344Q285 350 285 358Q285 381 321 396L329 400H450L561 518Q597 558 607 571L621 587H596Q555 588 488 598Q411 609 383 609Q346 609 329
|
||||
598T301 555Q294 534 265 515Q235 494 208 492Q189 492 189 503Q189 510 197 528T215 559Q249 606 313 641T439 682Q440 682 449 682T466 683Q511 683 580 672Q648 663 669 662L690 661Q734 682 748 683Q767 683 767 673Q767 671 766 669Q764 662 746 640Q655 531
|
||||
555 428L529 400Q529 399 543 399Q590 397 602 375Q604 369 604 366Q604 350 586 337T551 322Q541 322 539 323Q529 328 529 334Q529 339 487 342L470 343L446 320Q319 198 205 100L200 96L235 95Q295 95 398 85Q482 77 533 74H554Q587 118 597 159Q603 178 626
|
||||
194T676 218Q682 220 694 220Q702 220 706 217Q710 212 706 197Q688 141 656 101Q593 22 502 3Q492 1 458 1Q403 1 301 11Q197 22 150 22Q120 22 94 12Q73 0 51 0Z" />
|
||||
<glyph unicode=" " glyph-name="uni00A0" horiz-adv-x="250" />
|
||||
<glyph unicode="" glyph-name="uniEFFD" horiz-adv-x="300" d="M0 0V100H100V0H0ZM200 0V100H300V0H200Z" />
|
||||
<glyph unicode="" glyph-name="uniEFFE" horiz-adv-x="300" d="M0 0V100H100V0H0ZM200 0V100H300V0H200Z" />
|
||||
|
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 25 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user